<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bytearray - Programming, Computers and Technology &#187; Web/HTML</title>
	<atom:link href="http://bytearray.brixtonjunkies.com/category/code/webhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://bytearray.brixtonjunkies.com</link>
	<description></description>
	<lastBuildDate>Tue, 03 Nov 2009 11:52:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CXF Raw SOAP Envelope via Interceptor</title>
		<link>http://bytearray.brixtonjunkies.com/2009/11/03/cxf-raw-soap-envelope-via-interceptor/</link>
		<comments>http://bytearray.brixtonjunkies.com/2009/11/03/cxf-raw-soap-envelope-via-interceptor/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 11:18:43 +0000</pubDate>
		<dc:creator>alchemist</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Web/HTML]]></category>
		<category><![CDATA[cxf]]></category>
		<category><![CDATA[interceptor]]></category>
		<category><![CDATA[raw soap envelope]]></category>
		<category><![CDATA[soap]]></category>

		<guid isPermaLink="false">http://bytearray.brixtonjunkies.com/?p=675</guid>
		<description><![CDATA[Recently I started using the CXF SOAP library from Apache and was stumped on a simple problem, that being, how to view/modify a raw SOAP envelope. This sounds like a relatively simple task (not too bad when you know how) however it does in fact require some know-how.
The CXF SOAP library gives you access to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="size-full wp-image-318 alignleft" title="CXF SOAP" src="http://bytearray.brixtonjunkies.com/wp-content/uploads/2009/11/soap-bar.jpg" alt="CXF SOAP" width="144" height="144" />Recently I started using the <a href="http://cxf.apache.org" target="_blank" rel="nofollow">CXF</a> SOAP library from Apache and was stumped on a simple problem, that being, how to view/modify a raw SOAP envelope. This sounds like a relatively simple task <em>(not too bad when you know how)</em> however it does in fact require some know-how.</p>
<p>The CXF SOAP library gives you access to all parts of the SOAP request and response life-cycle <em>(via HTTP)</em> using CXF <strong>Interceptors</strong>. The different points in time are referred to as <strong>phases</strong> and an interceptor can be placed at any one of the defined phases and automatically gain access to the SOAP message object and it&#8217;s current state.</p>
<p>For this example I have chosen <strong>Phase.RECEIVE</strong> which is one of the first phases which is essentially unprocessed by the CXF SOAP stack, which means I have free rain to pre-process the SOAP envelope <em>(if I want to)</em>. Particularly handy if you need to maintain backwards compatibility with old SOAP API&#8217;s, poorly defined complex SOAP objects, dodgy WSDL definitions or maybe you simply want to view raw SOAP envelope <em>(handy for debugging)</em>.</p>
<p>The crux to this problem is manipulating InputStream&#8217;s, once an InputStream has been read it is not available, which obviously causes a problem as the rest of the CXF SOAP stack expects it to be available. The solution is to use the CXF provided  <strong>CachedOutputStream</strong> and <strong>IOUtils.copy</strong> which takes a cache copy of the InputStream making it available for future use <img src='http://bytearray.brixtonjunkies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Once the Interceptor is implemented all that remains is to add it to the CXF SOAP client pror to usage. </p>
<p>This is an example of gaining access to an incoming client SOAP envelope, the interceptor could quite easily be in the <strong>sent phase</strong> or even part of the SOAP server implementation&#8230;it&#8217;s up to you.</p>
<pre class="brush: java;">
package CXFSoap;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;

import org.apache.cxf.helpers.IOUtils;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.io.CachedOutputStream;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.AbstractPhaseInterceptor;
import org.apache.cxf.phase.Phase;

public class PacketInterceptor extends AbstractPhaseInterceptor&amp;amp;lt;Message&amp;amp;gt;{

	public PacketInterceptor(){
		super(Phase.RECEIVE);
	}

	public void handleMessage(Message message) throws Fault{
		// Get the supplied SOAP envelope in the form of an InputStream
		InputStream inputStream = message.getContent(InputStream.class);

		if (inputStream != null){
			String processedSoapEnv = &amp;amp;quot;&amp;amp;quot;;
			// Cache InputStream so it can be read independently
			CachedOutputStream cachedInputStream = new CachedOutputStream();
			try {
				IOUtils.copy(inputStream,cachedInputStream);
				inputStream.close();
				cachedInputStream.close();

				InputStream tmpInputStream = cachedInputStream.getInputStream();
				try{
					String inputBuffer = &amp;amp;quot;&amp;amp;quot;;
					int data;
					while((data = tmpInputStream.read()) != -1){
						byte x = (byte)data;
						inputBuffer += (char)x;
					}
					/**
					  * At this point you can choose to reformat the SOAP
					  * envelope or simply view it just make sure you put
 					  * an InputStream back when you done (see below)
 					  * otherwise CXF will complain.
					  */
					processedSoapEnv = fixSoapEnvelope(inputBuffer);
				}
				catch(IOException e){

				}
			}
			catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}

			// Re-set the SOAP InputStream with the new envelope
			message.setContent(InputStream.class,new ByteArrayInputStream(processSoapEnv.getBytes()));

			/**
			 * If you just want to read the InputStream and not
			 * modify it then you just need to put it back where
			 * it was using the CXF cached inputstream
			 *
			 * message.setContent(InputStream.class,cachedInputStream.getInputStream());
			*/
		}
	}

	private String fixSoapEnvelope(String xml){
		...
	}
}
</pre>
<pre class="brush: java;">

import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;

import Stuff.StuffObj;
import CXFSoap.PacketInterceptor;
import CXFSoap.VIPCoreAPI;

public class CXFTest{

	    public static void main(String args[]) throws Exception{
	    		JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
		    	factory.setServiceClass(VIPCoreAPI.class);
		    	factory.setAddress(&amp;amp;quot;http://x.x.x.x/SOAP/API&amp;amp;quot;);
		    	factory.setWsdlLocation(&amp;amp;quot;http://x.x.x.x/SOAP/API?wsdl&amp;amp;quot;);
		    	factory.setUsername(&amp;amp;quot;xxx&amp;amp;quot;);
		    	factory.setPassword(&amp;amp;quot;xxx&amp;amp;quot;);

		    	/**
		    	 * This is the important part, the interceptor needs
		    	 * to be added to the CXF SOAP client prior to
		    	 * the SOAP call being made.
		    	 */
		    	factory.getInInterceptors().add(new PacketInterceptor());

		    	API client = (API)factory.create();
		    	StuffObj stuff = client.getStuff();
		    	System.out.print(stuff.toString());
	    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bytearray.brixtonjunkies.com/2009/11/03/cxf-raw-soap-envelope-via-interceptor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOAP Debugging with tcpdump</title>
		<link>http://bytearray.brixtonjunkies.com/2009/10/27/soap-debugging-with-tcpdump/</link>
		<comments>http://bytearray.brixtonjunkies.com/2009/10/27/soap-debugging-with-tcpdump/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 09:49:39 +0000</pubDate>
		<dc:creator>alchemist</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web/HTML]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[tcpdump]]></category>

		<guid isPermaLink="false">http://bytearray.brixtonjunkies.com/?p=646</guid>
		<description><![CDATA[You are on a Linux box (SOAP client) making a SOAP request to a SOAP server somewhere on port 80, to view the request and response with tcpdump here are the commands execute at shell. 
Incoming SOAP envelope (server response)

tcpdump  -nnvvlXSs 4096 src port 80

Outgoing SOAP envelope (client request)

tcpdump  -nnvvlXSs 4096 dst port [...]]]></description>
			<content:encoded><![CDATA[<p>You are on a Linux box <em>(SOAP client)</em> making a SOAP request to a SOAP server somewhere on port 80, to view the request and response with tcpdump here are the commands execute at shell. </p>
<p><strong>Incoming SOAP envelope <em>(server response)</em></strong></p>
<pre class="brush: plain;">
tcpdump  -nnvvlXSs 4096 src port 80
</pre>
<p><strong>Outgoing SOAP envelope <em>(client request)</em></strong></p>
<pre class="brush: plain;">
tcpdump  -nnvvlXSs 4096 dst port 80
</pre>
<p>Of course if you have additional traffic going in and out from this box you can use the &#8220;and&#8221; operator to fine tune what you are after.</p>
]]></content:encoded>
			<wfw:commentRss>http://bytearray.brixtonjunkies.com/2009/10/27/soap-debugging-with-tcpdump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Escape Codes</title>
		<link>http://bytearray.brixtonjunkies.com/2009/08/12/html-escape-codes/</link>
		<comments>http://bytearray.brixtonjunkies.com/2009/08/12/html-escape-codes/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:21:41 +0000</pubDate>
		<dc:creator>alchemist</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web/HTML]]></category>
		<category><![CDATA[escape codes]]></category>

		<guid isPermaLink="false">http://bytearray.brixtonjunkies.com/?p=418</guid>
		<description><![CDATA[

Onscreen Symbol
Code
Entity Name


&#8364;
&#160;
&#38;euro;


Space
&#38;#32;
&#160;


&#33;
&#38;#33;
&#160;


&#8220;
&#38;#34;
&#38;quot;


&#35;
&#38;#35;
&#160;


&#36;
&#38;#36;
&#160;


&#37;
&#38;#37;
&#160;


&#38;
&#38;#38;
&#38;amp;


&#39;
&#38;#39;
&#160;


&#40;
&#38;#40;
&#160;


&#41;
&#38;#41;
&#160;


&#42;
&#38;#42;
&#160;


&#43;
&#38;#43;
&#160;


&#44;
&#38;#44;
&#160;


&#45;
&#38;#45;
&#160;


&#46;
&#38;#46;
&#160;


&#47;
&#38;#47;
&#160;


&#48;
&#38;#48;
&#160;


&#49;
&#38;#49;
&#160;


&#50;
&#38;#50;
&#160;


&#51;
&#38;#51;
&#160;


&#52;
&#38;#52;
&#160;


&#53;
&#38;#53;
&#160;


&#54;
&#38;#54;
&#160;


&#55;
&#38;#55;
&#160;


&#56;
&#38;#56;
&#160;


&#57;
&#38;#57;
&#160;


&#58;
&#38;#58;
&#160;


&#59;
&#38;#59;
&#160;


&#60;
&#38;#60;
&#38;lt;


&#61;
&#38;#61;
&#160;


&#62;
&#38;#62;
&#38;gt;


&#63;
&#38;#63;
&#160;


&#64;
&#38;#64;
&#160;


&#65;
&#38;#65;
&#160;


&#66;
&#38;#66;
&#160;


&#67;
&#38;#67;
&#160;


&#68;
&#38;#68;
&#160;


&#69;
&#38;#69;
&#160;


&#70;
&#38;#70;
&#160;


&#71;
&#38;#71;
&#160;


&#72;
&#38;#72;
&#160;


&#73;
&#38;#73;
&#160;


&#74;
&#38;#74;
&#160;


&#75;
&#38;#75;
&#160;


&#76;
&#38;#76;
&#160;


&#77;
&#38;#77;
&#160;


&#78;
&#38;#78;
&#160;


&#79;
&#38;#79;
&#160;


&#80;
&#38;#80;
&#160;


&#81;
&#38;#81;
&#160;


&#82;
&#38;#82;
&#160;


&#83;
&#38;#83;
&#160;


&#84;
&#38;#84;
&#160;


&#85;
&#38;#85;
&#160;


&#86;
&#38;#86;
&#160;


&#87;
&#38;#87;
&#160;


&#88;
&#38;#88;
&#160;


&#89;
&#38;#89;
&#160;


&#90;
&#38;#90;
&#160;


&#91;
&#38;#91;
&#160;


&#92;
&#38;#92;
&#160;


&#93;
&#38;#93;
&#160;


&#94;
&#38;#94;
&#160;


&#95;
&#38;#95;
&#160;


&#96;
&#38;#96;
&#160;


&#97;
&#38;#97;
&#160;


&#98;
&#38;#98;
&#160;


&#99;
&#38;#99;
&#160;


&#100;
&#38;#100;
&#160;


&#101;
&#38;#101;
&#160;


&#102;
&#38;#102;
&#160;


&#103;
&#38;#103;
&#160;


&#104;
&#38;#104;
&#160;


&#105;
&#38;#105;
&#160;


&#106;
&#38;#106;
&#160;


&#107;
&#38;#107;
&#160;


&#108;
&#38;#108;
&#160;


&#109;
&#38;#109;
&#160;


&#110;
&#38;#110;
&#160;


&#111;
&#38;#111;
&#160;


&#112;
&#38;#112;
&#160;


&#113;
&#38;#113;
&#160;


&#114;
&#38;#114;
&#160;


&#115;
&#38;#115;
&#160;


&#116;
&#38;#116;
&#160;


&#117;
&#38;#117;
&#160;


&#118;
&#38;#118;
&#160;


&#119;
&#38;#119;
&#160;


&#120;
&#38;#120;
&#160;


&#121;
&#38;#121;
&#160;


&#122;
&#38;#122;
&#160;


&#123;
&#38;#123;
&#160;


&#124;
&#38;#124;
&#160;


&#125;
&#38;#125;
&#160;


&#126;
&#38;#126;
&#160;


Non-breaking space
&#38;#160;
&#38;nbsp;


&#161;
&#38;#161;
&#38;iexcl;


&#162;
&#38;#162;
&#38;cent;


&#163;
&#38;#163;
&#38;pound;


&#164;
&#38;#164;
&#38;curren;


&#165;
&#38;#165;
&#38;yen;


&#166;
&#38;#166;
&#38;brvbar;


&#167;
&#38;#167;
&#38;sect;


&#168;
&#38;#168;
&#38;uml;


&#169;
&#38;#169;
&#38;copy;


&#170;
&#38;#170;
&#38;ordf;


&#171;
&#38;#171;
&#160;


&#172;
&#38;#172;
&#38;not;


&#173;
&#38;#173;
&#38;shy;


&#174;
&#38;#174;
&#38;reg;


&#175;
&#38;#175;
&#38;macr;


&#176;
&#38;#176;
&#38;deg;


&#177;
&#38;#177;
&#38;plusmn;


&#178;
&#38;#178;
&#38;sup2;


&#179;
&#38;#179;
&#38;sup3;


&#180;
&#38;#180;
&#38;acute;


&#181;
&#38;#181;
&#38;micro;


&#182;
&#38;#182;
&#38;para;


&#183;
&#38;#183;
&#38;middot;


&#184;
&#38;#184;
&#38;cedil;


&#185;
&#38;#185;
&#38;sup1;


&#186;
&#38;#186;
&#38;ordm;


&#187;
&#38;#187;
&#38;raquo;


&#188;
&#38;#188;
&#38;frac14;


&#189;
&#38;#189;
&#38;frac12;


&#190;
&#38;#190;
&#38;frac34;


&#191;
&#38;#191;
&#38;iquest;


&#192;
&#38;#192;
&#38;Agrave;


&#193;
&#38;#193;
&#38;Aacute;


&#194;
&#38;#194;
&#38;Acirc;


&#195;
&#38;#195;
&#38;Atilde;


&#196;
&#38;#196;
&#38;Auml;


&#197;
&#38;#197
&#38;Aring;


&#198;
&#38;#198;
&#38;AElig;


&#199;
&#38;#199;
&#38;Ccedil;


&#200;
&#38;#200;
&#38;Egrave;


&#201;
&#38;#201;
&#38;Eacute;


&#202;
&#38;#202;
&#38;Ecirc;


&#203;
&#38;#203;
&#38;Euml;


&#204;
&#38;#204;
&#38;Igrave;


&#205;
&#38;#205;
&#38;Iacute;


&#206;
&#38;#206;
&#38;Icirc;


&#207;
&#38;#207;
&#38;Iuml;


&#208;
&#38;#208;
&#38;ETH;


&#209;
&#38;#209;
&#38;Ntilde;


&#210;
&#38;#210;
&#38;Ograve;


&#211;
&#38;#211;
&#38;Oacute;


&#212;
&#38;#212;
&#38;Ocirc;


&#213;
&#38;#213;
&#38;Otilde;


&#214;
&#38;#214;
&#38;Ouml;


&#215;
&#38;#215;
&#38;times;


&#216;
&#38;#216;
&#38;Oslash;


&#217;
&#38;#217;
&#38;Ugrave;


&#218;
&#38;#218;
&#38;Uacute;


&#219;
&#38;#219;
&#38;Ucirc;


&#220;
&#38;#220;
&#38;Uuml;


&#221;
&#38;#221;
&#38;Yacute;


&#222;
&#38;#222;
&#38;THORN;


&#223;
&#38;#223;
&#38;szlig;


&#224;
&#38;#224;
&#38;agrave;


&#225;
&#38;#225;
&#38;aacute;


&#226;
&#38;#226;
&#38;acirc;


&#227;
&#38;#227;
&#38;atilde;


&#228;
&#38;#228;
&#38;auml;


&#229;
&#38;#229;
&#38;aring;


&#230;
&#38;#230;
&#38;aelig;


&#231;
&#38;#231;
&#38;ccedil;


&#232;
&#38;#232;
&#38;egrave;


&#233;
&#38;#233;
&#38;eacute;


&#234;
&#38;#234;
&#38;ecirc;


&#235;
&#38;#235;
&#38;euml;


&#236;
&#38;#236;
&#38;igrave;


&#237;
&#38;#237
&#38;iacute;


&#238;
&#38;#238;
&#38;icirc;


&#239;
&#38;#239;
&#38;iuml;


&#240;
&#38;#240;
&#38;eth;


&#241;
&#38;#241;
&#38;ntilde;


&#242;
&#38;#242;
&#38;ograve;


&#243;
&#38;#243;
&#38;oacute;


&#244;
&#38;#244;
&#38;ocirc;


&#245;
&#38;#245;
&#38;otilde;


&#246;
&#38;#246;
&#38;ouml;


&#247;
&#38;#247;
&#38;divide;


&#248;
&#38;#248;
&#38;oslash;


&#249;
&#38;#249;
&#38;ugrave;


&#250;
&#38;#250;
&#38;uacute;


&#251;
&#38;#251;
&#38;ucirc;


&#252;
&#38;#252;
&#38;uuml;


&#253;
&#38;#253;
&#38;yacute;


&#254;
&#38;#254;
&#38;thorn;


&#255;
&#38;#255;
&#160;


&#256;
&#38;#256;
&#160;


&#257;
&#38;#257;
&#160;


&#258;
&#38;#258;
&#160;


&#259;
&#38;#259;
&#160;


&#260;
&#38;#260;
&#160;


&#261;
&#38;#261;
&#160;


&#262;
&#38;#262;
&#160;


&#263;
&#38;#263;
&#160;


&#264;
&#38;#264;
&#160;


&#265;
&#38;#265;
&#160;


&#266;
&#38;#266;
&#160;


&#267;
&#38;#267;
&#160;


&#268;
&#38;#268;
&#160;


&#269;
&#38;#269;
&#160;


&#270;
&#38;#270;
&#160;


&#271;
&#38;#271;
&#160;


&#272;
&#38;#272;
&#160;


&#273;
&#38;#273;
&#160;


&#274;
&#38;#274;
&#160;


&#275;
&#38;#275;
&#160;


&#276;
&#38;#276;
&#160;


&#277;
&#38;#277
&#160;


&#278;
&#38;#278;
&#160;


&#279;
&#38;#279;
&#160;


&#280;
&#38;#280;
&#160;


&#281;
&#38;#281;
&#160;


&#282;
&#38;#282;
&#160;


&#283;
&#38;#283;
&#160;


&#284;
&#38;#284;
&#160;


&#285;
&#38;#285;
&#160;


&#286;
&#38;#286;
&#160;


&#287;
&#38;#287;
&#160;


&#288;
&#38;#288;
&#160;


&#289;
&#38;#289;
&#160;


&#290;
&#38;#290;
&#160;


&#291;
&#38;#291;
&#160;


&#292;
&#38;#292;
&#160;


&#293;
&#38;#293;
&#160;


&#294;
&#38;#294;
&#160;


&#295;
&#38;#295;
&#160;


&#296;
&#38;#296;
&#160;


&#297;
&#38;#297;
&#160;


&#298;
&#38;#298;
&#160;


&#299;
&#38;#299;
&#160;


&#300;
&#38;#300;
&#160;


&#301;
&#38;#301;
&#160;


&#302;
&#38;#302;
&#160;


&#303;
&#38;#303;
&#160;


&#304;
&#38;#304;
&#160;


&#305;
&#38;#305;
&#160;


&#306;
&#38;#306;
&#160;


&#307;
&#38;#307;
&#160;


&#308;
&#38;#308;
&#160;


&#309;
&#38;#309;
&#160;


&#310;
&#38;#310;
&#160;


&#311;
&#38;#311;
&#160;


&#312;
&#38;#312;
&#160;


&#313;
&#38;#313;
&#160;


&#314;
&#38;#314;
&#160;


&#315;
&#38;#315;
&#160;


&#316;
&#38;#316;
&#160;


&#317;
&#38;#317
&#160;


&#318;
&#38;#318;
&#160;


&#319;
&#38;#319;
&#160;


&#320;
&#38;#320;
&#160;


&#321;
&#38;#321;
&#160;


&#322;
&#38;#322;
&#160;


&#323;
&#38;#323;
&#160;


&#324;
&#38;#324;
&#160;


&#325;
&#38;#325;
&#160;


&#326;
&#38;#326;
&#160;


&#327;
&#38;#327;
&#160;


&#328;
&#38;#328;
&#160;


&#329;
&#38;#329;
&#160;


&#330;
&#38;#330;
&#160;


&#331;
&#38;#331;
&#160;


&#332;
&#38;#332;
&#160;


&#333;
&#38;#333;
&#160;


&#334;
&#38;#334;
&#160;


&#335;
&#38;#335;
&#160;


&#336;
&#38;#336;
&#160;


&#337;
&#38;#337;
&#160;


&#338;
&#38;#338;
&#160;


&#339;
&#38;#339;
&#160;


&#340;
&#38;#340;
&#160;


&#341;
&#38;#341;
&#160;


&#342;
&#38;#342;
&#160;


&#343;
&#38;#343;
&#160;


&#344;
&#38;#344;
&#160;


&#345;
&#38;#345;
&#160;


&#346;
&#38;#346;
&#160;


&#347;
&#38;#347;
&#160;


&#348;
&#38;#348;
&#160;


&#349;
&#38;#349;
&#160;


&#350;
&#38;#350;
&#160;


&#351;
&#38;#351;
&#160;


&#352;
&#38;#352;
&#160;


&#353;
&#38;#353;
&#160;


&#354;
&#38;#354;
&#160;


&#355;
&#38;#355;
&#160;


&#356;
&#38;#356;
&#160;


&#357;
&#38;#357
&#160;


&#358;
&#38;#358;
&#160;


&#359;
&#38;#359;
&#160;


&#360;
&#38;#360;
&#160;


&#361;
&#38;#361;
&#160;


&#362;
&#38;#362;
&#160;


&#363;
&#38;#363;
&#160;


&#364;
&#38;#364;
&#160;


&#365;
&#38;#365;
&#160;


&#366;
&#38;#366;
&#160;


&#367;
&#38;#367;
&#160;


&#368;
&#38;#368;
&#160;


&#369;
&#38;#369;
&#160;


&#370;
&#38;#370;
&#160;


&#371;
&#38;#371;
&#160;


&#372;
&#38;#372;
&#160;


&#373;
&#38;#373;
&#160;


&#374;
&#38;#374;
&#160;


&#375;
&#38;#375;
&#160;


&#376;
&#38;#376;
&#160;


&#377;
&#38;#377;
&#160;


&#378;
&#38;#378;
&#160;


&#379;
&#38;#379;
&#160;


&#380;
&#38;#380;
&#160;


&#381;
&#38;#381;
&#160;


&#382;
&#38;#382;
&#160;


&#383;
&#38;#383;
&#160;


&#340;
&#38;#340;
&#160;


&#341;
&#38;#341;
&#160;


&#342;
&#38;#342;
&#160;


&#343;
&#38;#343;
&#160;


&#344;
&#38;#344;
&#160;


&#345;
&#38;#345;
&#160;


&#346;
&#38;#346;
&#160;


&#347;
&#38;#347;
&#160;


&#348;
&#38;#348;
&#160;


&#349;
&#38;#349;
&#160;


&#350;
&#38;#350;
&#160;


&#351;
&#38;#351;
&#160;


&#352;
&#38;#352;
&#160;


&#353;
&#38;#353;
&#160;


&#354;
&#38;#354;
&#160;


&#355;
&#38;#355;
&#160;


&#356;
&#38;#356;
&#160;


&#357;
&#38;#577;
&#160;


&#358;
&#38;#358;
&#160;


&#359;
&#38;#359;
&#160;


&#360;
&#38;#360;
&#160;


&#361;
&#38;#361;
&#160;


&#362;
&#38;#362;
&#160;


&#363;
&#38;#363;
&#160;


&#364;
&#38;#364;
&#160;


&#365;
&#38;#365;
&#160;


&#366;
&#38;#366;
&#160;


&#367;
&#38;#367;
&#160;


&#368;
&#38;#368;
&#160;


&#369;
&#38;#369;
&#160;


&#370;
&#38;#370;
&#160;


&#371;
&#38;#371;
&#160;


&#372;
&#38;#372;
&#160;


&#373;
&#38;#373;
&#160;


&#374;
&#38;#374;
&#160;


&#375;
&#38;#375;
&#160;


&#376;
&#38;#376;
&#160;


&#377;
&#38;#377
&#160;


&#378;
&#38;#378;
&#160;


&#379;
&#38;#379;
&#160;


&#380;
&#38;#380;
&#160;


&#381;
&#38;#381;
&#160;


&#382;
&#38;#382;
&#160;


&#383;
&#38;#383;
&#160;



]]></description>
			<content:encoded><![CDATA[<p><center></p>
<table>
<tr>
<th>Onscreen Symbol</th>
<th>Code</th>
<th>Entity Name</th>
</tr>
<tr>
<td>&euro;</td>
<td>&nbsp;</td>
<td>&amp;euro;</td>
</tr>
<tr>
<td>Space</td>
<td>&amp;#32;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#33;</td>
<td>&amp;#33;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#8220;</td>
<td>&amp;#34;</td>
<td>&amp;quot;</td>
</tr>
<tr>
<td>&#35;</td>
<td>&amp;#35;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#36;</td>
<td>&amp;#36;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#37;</td>
<td>&amp;#37;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&amp;</td>
<td>&amp;#38;</td>
<td>&amp;amp;</td>
</tr>
<tr>
<td>&#39;</td>
<td>&amp;#39;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#40;</td>
<td>&amp;#40;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#41;</td>
<td>&amp;#41;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#42;</td>
<td>&amp;#42;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#43;</td>
<td>&amp;#43;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#44;</td>
<td>&amp;#44;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#45;</td>
<td>&amp;#45;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#46;</td>
<td>&amp;#46;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#47;</td>
<td>&amp;#47;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#48;</td>
<td>&amp;#48;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#49;</td>
<td>&amp;#49;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#50;</td>
<td>&amp;#50;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#51;</td>
<td>&amp;#51;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#52;</td>
<td>&amp;#52;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#53;</td>
<td>&amp;#53;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#54;</td>
<td>&amp;#54;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#55;</td>
<td>&amp;#55;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#56;</td>
<td>&amp;#56;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#57;</td>
<td>&amp;#57;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#58;</td>
<td>&amp;#58;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#59;</td>
<td>&amp;#59;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#60;</td>
<td>&amp;#60;</td>
<td>&amp;lt;</td>
</tr>
<tr>
<td>&#61;</td>
<td>&amp;#61;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#62;</td>
<td>&amp;#62;</td>
<td>&amp;gt;</td>
</tr>
<tr>
<td>&#63;</td>
<td>&amp;#63;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#64;</td>
<td>&amp;#64;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#65;</td>
<td>&amp;#65;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#66;</td>
<td>&amp;#66;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#67;</td>
<td>&amp;#67;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#68;</td>
<td>&amp;#68;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#69;</td>
<td>&amp;#69;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#70;</td>
<td>&amp;#70;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#71;</td>
<td>&amp;#71;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#72;</td>
<td>&amp;#72;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#73;</td>
<td>&amp;#73;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#74;</td>
<td>&amp;#74;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#75;</td>
<td>&amp;#75;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#76;</td>
<td>&amp;#76;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#77;</td>
<td>&amp;#77;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#78;</td>
<td>&amp;#78;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#79;</td>
<td>&amp;#79;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#80;</td>
<td>&amp;#80;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#81;</td>
<td>&amp;#81;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#82;</td>
<td>&amp;#82;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#83;</td>
<td>&amp;#83;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#84;</td>
<td>&amp;#84;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#85;</td>
<td>&amp;#85;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#86;</td>
<td>&amp;#86;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#87;</td>
<td>&amp;#87;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#88;</td>
<td>&amp;#88;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#89;</td>
<td>&amp;#89;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#90;</td>
<td>&amp;#90;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#91;</td>
<td>&amp;#91;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#92;</td>
<td>&amp;#92;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#93;</td>
<td>&amp;#93;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#94;</td>
<td>&amp;#94;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#95;</td>
<td>&amp;#95;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#96;</td>
<td>&amp;#96;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#97;</td>
<td>&amp;#97;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#98;</td>
<td>&amp;#98;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#99;</td>
<td>&amp;#99;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#100;</td>
<td>&amp;#100;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#101;</td>
<td>&amp;#101;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#102;</td>
<td>&amp;#102;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#103;</td>
<td>&amp;#103;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#104;</td>
<td>&amp;#104;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#105;</td>
<td>&amp;#105;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#106;</td>
<td>&amp;#106;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#107;</td>
<td>&amp;#107;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#108;</td>
<td>&amp;#108;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#109;</td>
<td>&amp;#109;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#110;</td>
<td>&amp;#110;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#111;</td>
<td>&amp;#111;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#112;</td>
<td>&amp;#112;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#113;</td>
<td>&amp;#113;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#114;</td>
<td>&amp;#114;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#115;</td>
<td>&amp;#115;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#116;</td>
<td>&amp;#116;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#117;</td>
<td>&amp;#117;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#118;</td>
<td>&amp;#118;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#119;</td>
<td>&amp;#119;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#120;</td>
<td>&amp;#120;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#121;</td>
<td>&amp;#121;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#122;</td>
<td>&amp;#122;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#123;</td>
<td>&amp;#123;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#124;</td>
<td>&amp;#124;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#125;</td>
<td>&amp;#125;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#126;</td>
<td>&amp;#126;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Non-breaking space</td>
<td>&amp;#160;</td>
<td>&amp;nbsp;</td>
</tr>
<tr>
<td>&#161;</td>
<td>&amp;#161;</td>
<td>&amp;iexcl;</td>
</tr>
<tr>
<td>&#162;</td>
<td>&amp;#162;</td>
<td>&amp;cent;</td>
</tr>
<tr>
<td>&#163;</td>
<td>&amp;#163;</td>
<td>&amp;pound;</td>
</tr>
<tr>
<td>&#164;</td>
<td>&amp;#164;</td>
<td>&amp;curren;</td>
</tr>
<tr>
<td>&#165;</td>
<td>&amp;#165;</td>
<td>&amp;yen;</td>
</tr>
<tr>
<td>&#166;</td>
<td>&amp;#166;</td>
<td>&amp;brvbar;</td>
</tr>
<tr>
<td>&#167;</td>
<td>&amp;#167;</td>
<td>&amp;sect;</td>
</tr>
<tr>
<td>&#168;</td>
<td>&amp;#168;</td>
<td>&amp;uml;</td>
</tr>
<tr>
<td>&#169;</td>
<td>&amp;#169;</td>
<td>&amp;copy;</td>
</tr>
<tr>
<td>&#170;</td>
<td>&amp;#170;</td>
<td>&amp;ordf;</td>
</tr>
<tr>
<td>&#171;</td>
<td>&amp;#171;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#172;</td>
<td>&amp;#172;</td>
<td>&amp;not;</td>
</tr>
<tr>
<td>&#173;</td>
<td>&amp;#173;</td>
<td>&amp;shy;</td>
</tr>
<tr>
<td>&#174;</td>
<td>&amp;#174;</td>
<td>&amp;reg;</td>
</tr>
<tr>
<td>&#175;</td>
<td>&amp;#175;</td>
<td>&amp;macr;</td>
</tr>
<tr>
<td>&#176;</td>
<td>&amp;#176;</td>
<td>&amp;deg;</td>
</tr>
<tr>
<td>&#177;</td>
<td>&amp;#177;</td>
<td>&amp;plusmn;</td>
</tr>
<tr>
<td>&#178;</td>
<td>&amp;#178;</td>
<td>&amp;sup2;</td>
</tr>
<tr>
<td>&#179;</td>
<td>&amp;#179;</td>
<td>&amp;sup3;</td>
</tr>
<tr>
<td>&#180;</td>
<td>&amp;#180;</td>
<td>&amp;acute;</td>
</tr>
<tr>
<td>&#181;</td>
<td>&amp;#181;</td>
<td>&amp;micro;</td>
</tr>
<tr>
<td>&#182;</td>
<td>&amp;#182;</td>
<td>&amp;para;</td>
</tr>
<tr>
<td>&#183;</td>
<td>&amp;#183;</td>
<td>&amp;middot;</td>
</tr>
<tr>
<td>&#184;</td>
<td>&amp;#184;</td>
<td>&amp;cedil;</td>
</tr>
<tr>
<td>&#185;</td>
<td>&amp;#185;</td>
<td>&amp;sup1;</td>
</tr>
<tr>
<td>&#186;</td>
<td>&amp;#186;</td>
<td>&amp;ordm;</td>
</tr>
<tr>
<td>&#187;</td>
<td>&amp;#187;</td>
<td>&amp;raquo;</td>
</tr>
<tr>
<td>&#188;</td>
<td>&amp;#188;</td>
<td>&amp;frac14;</td>
</tr>
<tr>
<td>&#189;</td>
<td>&amp;#189;</td>
<td>&amp;frac12;</td>
</tr>
<tr>
<td>&#190;</td>
<td>&amp;#190;</td>
<td>&amp;frac34;</td>
</tr>
<tr>
<td>&#191;</td>
<td>&amp;#191;</td>
<td>&amp;iquest;</td>
</tr>
<tr>
<td>&#192;</td>
<td>&amp;#192;</td>
<td>&amp;Agrave;</td>
</tr>
<tr>
<td>&#193;</td>
<td>&amp;#193;</td>
<td>&amp;Aacute;</td>
</tr>
<tr>
<td>&#194;</td>
<td>&amp;#194;</td>
<td>&amp;Acirc;</td>
</tr>
<tr>
<td>&#195;</td>
<td>&amp;#195;</td>
<td>&amp;Atilde;</td>
</tr>
<tr>
<td>&#196;</td>
<td>&amp;#196;</td>
<td>&amp;Auml;</td>
</tr>
<tr>
<td>&#197;</td>
<td>&amp;#197</td>
<td>&amp;Aring;</td>
</tr>
<tr>
<td>&#198;</td>
<td>&amp;#198;</td>
<td>&amp;AElig;</td>
</tr>
<tr>
<td>&#199;</td>
<td>&amp;#199;</td>
<td>&amp;Ccedil;</td>
</tr>
<tr>
<td>&#200;</td>
<td>&amp;#200;</td>
<td>&amp;Egrave;</td>
</tr>
<tr>
<td>&#201;</td>
<td>&amp;#201;</td>
<td>&amp;Eacute;</td>
</tr>
<tr>
<td>&#202;</td>
<td>&amp;#202;</td>
<td>&amp;Ecirc;</td>
</tr>
<tr>
<td>&#203;</td>
<td>&amp;#203;</td>
<td>&amp;Euml;</td>
</tr>
<tr>
<td>&#204;</td>
<td>&amp;#204;</td>
<td>&amp;Igrave;</td>
</tr>
<tr>
<td>&#205;</td>
<td>&amp;#205;</td>
<td>&amp;Iacute;</td>
</tr>
<tr>
<td>&#206;</td>
<td>&amp;#206;</td>
<td>&amp;Icirc;</td>
</tr>
<tr>
<td>&#207;</td>
<td>&amp;#207;</td>
<td>&amp;Iuml;</td>
</tr>
<tr>
<td>&#208;</td>
<td>&amp;#208;</td>
<td>&amp;ETH;</td>
</tr>
<tr>
<td>&#209;</td>
<td>&amp;#209;</td>
<td>&amp;Ntilde;</td>
</tr>
<tr>
<td>&#210;</td>
<td>&amp;#210;</td>
<td>&amp;Ograve;</td>
</tr>
<tr>
<td>&#211;</td>
<td>&amp;#211;</td>
<td>&amp;Oacute;</td>
</tr>
<tr>
<td>&#212;</td>
<td>&amp;#212;</td>
<td>&amp;Ocirc;</td>
</tr>
<tr>
<td>&#213;</td>
<td>&amp;#213;</td>
<td>&amp;Otilde;</td>
</tr>
<tr>
<td>&#214;</td>
<td>&amp;#214;</td>
<td>&amp;Ouml;</td>
</tr>
<tr>
<td>&#215;</td>
<td>&amp;#215;</td>
<td>&amp;times;</td>
</tr>
<tr>
<td>&#216;</td>
<td>&amp;#216;</td>
<td>&amp;Oslash;</td>
</tr>
<tr>
<td>&#217;</td>
<td>&amp;#217;</td>
<td>&amp;Ugrave;</td>
</tr>
<tr>
<td>&#218;</td>
<td>&amp;#218;</td>
<td>&amp;Uacute;</td>
</tr>
<tr>
<td>&#219;</td>
<td>&amp;#219;</td>
<td>&amp;Ucirc;</td>
</tr>
<tr>
<td>&#220;</td>
<td>&amp;#220;</td>
<td>&amp;Uuml;</td>
</tr>
<tr>
<td>&#221;</td>
<td>&amp;#221;</td>
<td>&amp;Yacute;</td>
</tr>
<tr>
<td>&#222;</td>
<td>&amp;#222;</td>
<td>&amp;THORN;</td>
</tr>
<tr>
<td>&#223;</td>
<td>&amp;#223;</td>
<td>&amp;szlig;</td>
</tr>
<tr>
<td>&#224;</td>
<td>&amp;#224;</td>
<td>&amp;agrave;</td>
</tr>
<tr>
<td>&#225;</td>
<td>&amp;#225;</td>
<td>&amp;aacute;</td>
</tr>
<tr>
<td>&#226;</td>
<td>&amp;#226;</td>
<td>&amp;acirc;</td>
</tr>
<tr>
<td>&#227;</td>
<td>&amp;#227;</td>
<td>&amp;atilde;</td>
</tr>
<tr>
<td>&#228;</td>
<td>&amp;#228;</td>
<td>&amp;auml;</td>
</tr>
<tr>
<td>&#229;</td>
<td>&amp;#229;</td>
<td>&amp;aring;</td>
</tr>
<tr>
<td>&#230;</td>
<td>&amp;#230;</td>
<td>&amp;aelig;</td>
</tr>
<tr>
<td>&#231;</td>
<td>&amp;#231;</td>
<td>&amp;ccedil;</td>
</tr>
<tr>
<td>&#232;</td>
<td>&amp;#232;</td>
<td>&amp;egrave;</td>
</tr>
<tr>
<td>&#233;</td>
<td>&amp;#233;</td>
<td>&amp;eacute;</td>
</tr>
<tr>
<td>&#234;</td>
<td>&amp;#234;</td>
<td>&amp;ecirc;</td>
</tr>
<tr>
<td>&#235;</td>
<td>&amp;#235;</td>
<td>&amp;euml;</td>
</tr>
<tr>
<td>&#236;</td>
<td>&amp;#236;</td>
<td>&amp;igrave;</td>
</tr>
<tr>
<td>&#237;</td>
<td>&amp;#237</td>
<td>&amp;iacute;</td>
</tr>
<tr>
<td>&#238;</td>
<td>&amp;#238;</td>
<td>&amp;icirc;</td>
</tr>
<tr>
<td>&#239;</td>
<td>&amp;#239;</td>
<td>&amp;iuml;</td>
</tr>
<tr>
<td>&#240;</td>
<td>&amp;#240;</td>
<td>&amp;eth;</td>
</tr>
<tr>
<td>&#241;</td>
<td>&amp;#241;</td>
<td>&amp;ntilde;</td>
</tr>
<tr>
<td>&#242;</td>
<td>&amp;#242;</td>
<td>&amp;ograve;</td>
</tr>
<tr>
<td>&#243;</td>
<td>&amp;#243;</td>
<td>&amp;oacute;</td>
</tr>
<tr>
<td>&#244;</td>
<td>&amp;#244;</td>
<td>&amp;ocirc;</td>
</tr>
<tr>
<td>&#245;</td>
<td>&amp;#245;</td>
<td>&amp;otilde;</td>
</tr>
<tr>
<td>&#246;</td>
<td>&amp;#246;</td>
<td>&amp;ouml;</td>
</tr>
<tr>
<td>&#247;</td>
<td>&amp;#247;</td>
<td>&amp;divide;</td>
</tr>
<tr>
<td>&#248;</td>
<td>&amp;#248;</td>
<td>&amp;oslash;</td>
</tr>
<tr>
<td>&#249;</td>
<td>&amp;#249;</td>
<td>&amp;ugrave;</td>
</tr>
<tr>
<td>&#250;</td>
<td>&amp;#250;</td>
<td>&amp;uacute;</td>
</tr>
<tr>
<td>&#251;</td>
<td>&amp;#251;</td>
<td>&amp;ucirc;</td>
</tr>
<tr>
<td>&#252;</td>
<td>&amp;#252;</td>
<td>&amp;uuml;</td>
</tr>
<tr>
<td>&#253;</td>
<td>&amp;#253;</td>
<td>&amp;yacute;</td>
</tr>
<tr>
<td>&#254;</td>
<td>&amp;#254;</td>
<td>&amp;thorn;</td>
</tr>
<tr>
<td>&#255;</td>
<td>&amp;#255;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#256;</td>
<td>&amp;#256;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#257;</td>
<td>&amp;#257;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#258;</td>
<td>&amp;#258;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#259;</td>
<td>&amp;#259;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#260;</td>
<td>&amp;#260;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#261;</td>
<td>&amp;#261;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#262;</td>
<td>&amp;#262;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#263;</td>
<td>&amp;#263;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#264;</td>
<td>&amp;#264;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#265;</td>
<td>&amp;#265;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#266;</td>
<td>&amp;#266;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#267;</td>
<td>&amp;#267;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#268;</td>
<td>&amp;#268;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#269;</td>
<td>&amp;#269;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#270;</td>
<td>&amp;#270;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#271;</td>
<td>&amp;#271;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#272;</td>
<td>&amp;#272;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#273;</td>
<td>&amp;#273;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#274;</td>
<td>&amp;#274;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#275;</td>
<td>&amp;#275;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#276;</td>
<td>&amp;#276;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#277;</td>
<td>&amp;#277</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#278;</td>
<td>&amp;#278;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#279;</td>
<td>&amp;#279;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#280;</td>
<td>&amp;#280;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#281;</td>
<td>&amp;#281;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#282;</td>
<td>&amp;#282;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#283;</td>
<td>&amp;#283;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#284;</td>
<td>&amp;#284;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#285;</td>
<td>&amp;#285;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#286;</td>
<td>&amp;#286;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#287;</td>
<td>&amp;#287;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#288;</td>
<td>&amp;#288;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#289;</td>
<td>&amp;#289;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#290;</td>
<td>&amp;#290;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#291;</td>
<td>&amp;#291;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#292;</td>
<td>&amp;#292;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#293;</td>
<td>&amp;#293;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#294;</td>
<td>&amp;#294;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#295;</td>
<td>&amp;#295;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#296;</td>
<td>&amp;#296;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#297;</td>
<td>&amp;#297;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#298;</td>
<td>&amp;#298;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#299;</td>
<td>&amp;#299;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#300;</td>
<td>&amp;#300;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#301;</td>
<td>&amp;#301;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#302;</td>
<td>&amp;#302;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#303;</td>
<td>&amp;#303;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#304;</td>
<td>&amp;#304;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#305;</td>
<td>&amp;#305;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#306;</td>
<td>&amp;#306;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#307;</td>
<td>&amp;#307;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#308;</td>
<td>&amp;#308;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#309;</td>
<td>&amp;#309;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#310;</td>
<td>&amp;#310;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#311;</td>
<td>&amp;#311;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#312;</td>
<td>&amp;#312;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#313;</td>
<td>&amp;#313;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#314;</td>
<td>&amp;#314;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#315;</td>
<td>&amp;#315;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#316;</td>
<td>&amp;#316;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#317;</td>
<td>&amp;#317</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#318;</td>
<td>&amp;#318;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#319;</td>
<td>&amp;#319;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#320;</td>
<td>&amp;#320;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#321;</td>
<td>&amp;#321;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#322;</td>
<td>&amp;#322;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#323;</td>
<td>&amp;#323;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#324;</td>
<td>&amp;#324;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#325;</td>
<td>&amp;#325;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#326;</td>
<td>&amp;#326;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#327;</td>
<td>&amp;#327;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#328;</td>
<td>&amp;#328;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#329;</td>
<td>&amp;#329;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#330;</td>
<td>&amp;#330;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#331;</td>
<td>&amp;#331;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#332;</td>
<td>&amp;#332;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#333;</td>
<td>&amp;#333;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#334;</td>
<td>&amp;#334;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#335;</td>
<td>&amp;#335;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#336;</td>
<td>&amp;#336;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#337;</td>
<td>&amp;#337;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#338;</td>
<td>&amp;#338;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#339;</td>
<td>&amp;#339;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#340;</td>
<td>&amp;#340;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#341;</td>
<td>&amp;#341;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#342;</td>
<td>&amp;#342;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#343;</td>
<td>&amp;#343;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#344;</td>
<td>&amp;#344;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#345;</td>
<td>&amp;#345;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#346;</td>
<td>&amp;#346;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#347;</td>
<td>&amp;#347;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#348;</td>
<td>&amp;#348;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#349;</td>
<td>&amp;#349;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#350;</td>
<td>&amp;#350;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#351;</td>
<td>&amp;#351;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#352;</td>
<td>&amp;#352;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#353;</td>
<td>&amp;#353;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#354;</td>
<td>&amp;#354;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#355;</td>
<td>&amp;#355;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#356;</td>
<td>&amp;#356;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#357;</td>
<td>&amp;#357</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#358;</td>
<td>&amp;#358;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#359;</td>
<td>&amp;#359;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#360;</td>
<td>&amp;#360;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#361;</td>
<td>&amp;#361;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#362;</td>
<td>&amp;#362;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#363;</td>
<td>&amp;#363;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#364;</td>
<td>&amp;#364;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#365;</td>
<td>&amp;#365;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#366;</td>
<td>&amp;#366;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#367;</td>
<td>&amp;#367;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#368;</td>
<td>&amp;#368;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#369;</td>
<td>&amp;#369;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#370;</td>
<td>&amp;#370;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#371;</td>
<td>&amp;#371;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#372;</td>
<td>&amp;#372;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#373;</td>
<td>&amp;#373;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#374;</td>
<td>&amp;#374;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#375;</td>
<td>&amp;#375;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#376;</td>
<td>&amp;#376;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#377;</td>
<td>&amp;#377;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#378;</td>
<td>&amp;#378;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#379;</td>
<td>&amp;#379;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#380;</td>
<td>&amp;#380;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#381;</td>
<td>&amp;#381;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#382;</td>
<td>&amp;#382;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#383;</td>
<td>&amp;#383;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#340;</td>
<td>&amp;#340;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#341;</td>
<td>&amp;#341;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#342;</td>
<td>&amp;#342;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#343;</td>
<td>&amp;#343;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#344;</td>
<td>&amp;#344;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#345;</td>
<td>&amp;#345;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#346;</td>
<td>&amp;#346;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#347;</td>
<td>&amp;#347;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#348;</td>
<td>&amp;#348;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#349;</td>
<td>&amp;#349;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#350;</td>
<td>&amp;#350;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#351;</td>
<td>&amp;#351;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#352;</td>
<td>&amp;#352;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#353;</td>
<td>&amp;#353;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#354;</td>
<td>&amp;#354;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#355;</td>
<td>&amp;#355;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#356;</td>
<td>&amp;#356;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#357;</td>
<td>&amp;#577;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#358;</td>
<td>&amp;#358;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#359;</td>
<td>&amp;#359;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#360;</td>
<td>&amp;#360;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#361;</td>
<td>&amp;#361;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#362;</td>
<td>&amp;#362;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#363;</td>
<td>&amp;#363;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#364;</td>
<td>&amp;#364;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#365;</td>
<td>&amp;#365;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#366;</td>
<td>&amp;#366;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#367;</td>
<td>&amp;#367;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#368;</td>
<td>&amp;#368;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#369;</td>
<td>&amp;#369;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#370;</td>
<td>&amp;#370;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#371;</td>
<td>&amp;#371;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#372;</td>
<td>&amp;#372;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#373;</td>
<td>&amp;#373;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#374;</td>
<td>&amp;#374;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#375;</td>
<td>&amp;#375;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#376;</td>
<td>&amp;#376;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#377;</td>
<td>&amp;#377</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#378;</td>
<td>&amp;#378;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#379;</td>
<td>&amp;#379;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#380;</td>
<td>&amp;#380;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#381;</td>
<td>&amp;#381;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#382;</td>
<td>&amp;#382;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#383;</td>
<td>&amp;#383;</td>
<td>&nbsp;</td>
</tr>
</table>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://bytearray.brixtonjunkies.com/2009/08/12/html-escape-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
