<?xml version="1.0" encoding="UTF-8"?>
  <feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html"><![CDATA[卿搏人生]]></title>
  <subtitle type="html"><![CDATA[有志者事竟成，破釜沉舟，百二秦关终属楚。 苦心人天不负，卧薪尝胆，千三越甲可吞吴。]]></subtitle>
  <id>http://www.yacosoft.com/</id>
  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/" /> 
  <link rel="self" type="application/atom+xml" href="http://www.yacosoft.com/atom.asp" /> 
  <generator uri="http://www.pjhome.net/" version="2.8">PJBlog3</generator> 
  <updated>2010-07-28T15:00:44+08:00</updated>

  <entry>
	  <title type="html"><![CDATA[由于工作关系，最近比较忙！]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=3" label="公告" /> 
	  <updated>2010-07-28T15:00:44+08:00</updated>
	  <published>2010-07-28T15:00:44+08:00</published>
		  <summary type="html"><![CDATA[<p>最近由于工作关系，比较忙，也比较少有时间来关系自己个的那些网站，希望忙过这段时间后可以好好的有时间打理一下。</p>
<p>另外最近在学习SharePoint的相关开发，还是挺有趣的，希望有兴趣的朋友能够一起来学习进步！</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=46" /> 
	  <id>http://www.yacosoft.com/default.asp?id=46</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[Log4net 和 Log2Console 结合使用时出现的问题修改]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=4" label="经典源码" /> 
	  <updated>2010-05-05T16:53:57+08:00</updated>
	  <published>2010-05-05T16:53:57+08:00</published>
		  <summary type="html"><![CDATA[最近开发一个项目，用到了Log2Console来显示Log4Net的日志记录，Log4Net使用的是Xml方式记录日志，这下问题就来了。<br/>一、&#160;&#160;&#160;&#160;Log4Net不能输出中文的日志<br/>问题出现原因：源代码问题出在 Util\Transform.cs 文件 <br/>public static string MaskXmlInvalidCharacters ( string textData, string mask ) <br/>这个函数上. 这个函数本意是将输出消息中的无效字符替换为&#34;?&#34;.但是不幸的是这个正则写的有问题 <br/>private static Regex INVALIDCHARS = new Regex ( @&#34;[^\x09\x0A\x0D\x20-\xFF\u00FF-\u07FF\uE000-\uFFFD]&#34;, RegexOptions.Compiled ); <br/>这个正则将很大一部分字符都替换掉了,其中就包含中文,还有日文韩文等<br/>解决办法：我直接把正则替换那句话注释掉了.然后重新编译生成,搞定<br/>二、&#160;&#160;&#160;&#160;Log2Console不能显示中文日志<br/>出现问题原因：在创建_fileReader的时候没有指定Encoding<br/>解决办法：修改FileReceiver.cs文件的Initialize方法，把_fileReader =<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new StreamReader(new FileStream(_fileToWatch, FileMode.Open, FileAccess.Read, FileShare.ReadWrite));<br/>改为：<br/>_fileReader =<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new StreamReader(new FileStream(_fileToWatch, FileMode.Open, FileAccess.Read, FileShare.ReadWrite), System.Text.Encoding.Default);<br/>然后重新编译即可<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=44" /> 
	  <id>http://www.yacosoft.com/default.asp?id=44</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[常用Sql语句]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=4" label="经典源码" /> 
	  <updated>2010-03-22T16:22:08+08:00</updated>
	  <published>2010-03-22T16:22:08+08:00</published>
		  <summary type="html"><![CDATA[<p>今天整理硬盘资料，发现了原来在网上淘的一些常用Sql语句，特此记录：</p>
<p>获取所有的触发器状态<br />
select&nbsp;&nbsp; 表名=object_name(parent_obj),触发器名=name&nbsp; ,状态=case&nbsp;&nbsp; status&nbsp;&nbsp; &amp;&nbsp;&nbsp; power(2,11)&nbsp;&nbsp; when&nbsp;&nbsp; 0&nbsp;&nbsp; then&nbsp;&nbsp; N'启用'&nbsp;&nbsp; else&nbsp;&nbsp; N'禁用'&nbsp;&nbsp; end&nbsp;&nbsp; from&nbsp;&nbsp; sysobjects&nbsp; where&nbsp;&nbsp; type='TR'</p>
<p>禁用/开启触发器<br />
Alter&nbsp;&nbsp; TABLE&nbsp;&nbsp; MARR_RECORD&nbsp;&nbsp; DISABLE&nbsp;&nbsp; TRIGGER&nbsp;&nbsp; all&nbsp;&nbsp; <br />
Alter&nbsp;&nbsp; TABLE&nbsp;&nbsp; MARR_RECORD&nbsp;&nbsp; ENABLE&nbsp;&nbsp; TRIGGER&nbsp;&nbsp; all <br />
加密存储过程 <br />
自动将当前数据库的用户存储过程加密。&nbsp; <br />
&nbsp;<br />
DECLARE&nbsp; @sp_name&nbsp; nvarchar(400)&nbsp; <br />
DECLARE&nbsp; @sp_content&nbsp; nvarchar(2000)&nbsp; <br />
DECLARE&nbsp; @asbegin&nbsp; int&nbsp; <br />
declare&nbsp; @now&nbsp; datetime&nbsp; <br />
select&nbsp; @now&nbsp; =&nbsp; getdate()&nbsp; <br />
DECLARE&nbsp; sp_cursor&nbsp; CURSOR&nbsp; FOR&nbsp;&nbsp;&nbsp; <br />
Select&nbsp; object_name(id)&nbsp; <br />
FROM&nbsp; sysobjects&nbsp; <br />
Where&nbsp; xtype&nbsp; =&nbsp; 'P'&nbsp;&nbsp;&nbsp; <br />
AND&nbsp; type&nbsp; =&nbsp; 'P'&nbsp;&nbsp;&nbsp; <br />
AND&nbsp; crdate&nbsp; &lt;&nbsp; @now&nbsp; <br />
AND&nbsp; OBJECTPROPERTY(id,&nbsp; 'IsMSShipped')=0&nbsp; <br />
&nbsp;<br />
OPEN&nbsp; sp_cursor&nbsp; <br />
&nbsp;<br />
FETCH&nbsp; NEXT&nbsp; FROM&nbsp; sp_cursor&nbsp;&nbsp;&nbsp; <br />
INTO&nbsp; @sp_name&nbsp; <br />
&nbsp;<br />
WHILE&nbsp; @@FETCH_STATUS&nbsp; =&nbsp; 0&nbsp; <br />
BEGIN&nbsp; <br />
Select&nbsp; @sp_content&nbsp; =&nbsp; text&nbsp; FROM&nbsp; syscomments&nbsp; Where&nbsp; id&nbsp; =&nbsp; OBJECT_ID(@sp_name)&nbsp;&nbsp;&nbsp; <br />
Select&nbsp; @asbegin&nbsp; =&nbsp; PATINDEX&nbsp; (&nbsp; '%AS'&nbsp; +&nbsp; char(13)&nbsp; +&nbsp; '%',&nbsp; @sp_content)&nbsp;&nbsp;&nbsp; <br />
Select&nbsp; @sp_content&nbsp; =&nbsp; SUBSTRING(@sp_content,&nbsp; 1,&nbsp; @asbegin&nbsp; -&nbsp; 1)&nbsp;&nbsp;&nbsp; <br />
+&nbsp; '&nbsp; WITH&nbsp; ENCRYPTION&nbsp; AS'&nbsp; <br />
+&nbsp; SUBSTRING&nbsp; (@sp_content,&nbsp; @asbegin+2,&nbsp; LEN(@sp_content))&nbsp; <br />
Select&nbsp; @sp_name&nbsp; =&nbsp; 'Drop&nbsp; PROCEDURE&nbsp; ['&nbsp; +&nbsp; @sp_name&nbsp; +&nbsp; ']'&nbsp; <br />
EXEC&nbsp; sp_executesql&nbsp; @sp_name&nbsp;&nbsp;&nbsp; <br />
EXEC&nbsp; sp_executesql&nbsp; @sp_content&nbsp; <br />
FETCH&nbsp; NEXT&nbsp; FROM&nbsp; sp_cursor&nbsp;&nbsp;&nbsp; <br />
INTO&nbsp; @sp_name&nbsp; <br />
END&nbsp; <br />
&nbsp;<br />
CLOSE&nbsp; sp_cursor&nbsp;&nbsp;&nbsp; <br />
DEALLOCATE&nbsp; sp_cursor&nbsp;</p>
<p>解密存储过程<br />
Create PROCEDURE sp_decrypt(@objectName varchar(50))</p>
<p><br />
AS<br />
begin<br />
set nocount on<br />
--CSDN：j9988 copyright:2004.04.15 <br />
--V3.1 <br />
--破解字节不受限制，适用于SQLSERVER2000存储过程，函数，视图，触发器<br />
--修正上一版视图触发器不能正确解密错误<br />
--发现有错，请E_MAIL：<a href="http://www.yacosoft.com/mailto:CSDNj9988@tom.com">CSDNj9988@tom.com</a><br />
begin tran<br />
declare @objectname1 varchar(100),@orgvarbin varbinary(8000)<br />
declare @sql1 nvarchar(4000),@sql2 varchar(8000),@sql3 nvarchar(4000),@sql4 nvarchar(4000)<br />
DECLARE @OrigSpText1 nvarchar(4000), @OrigSpText2 nvarchar(4000) , @OrigSpText3 nvarchar(4000), @resultsp nvarchar(4000)<br />
declare @i int,@status int,@type varchar(10),@parentid int<br />
declare @colid int,@n int,@q int,@j int,@k int,@encrypted int,@number int<br />
select @type=xtype,@parentid=parent_obj from sysobjects where id=object_id(@ObjectName)</p>
<p>create table #temp(number int,colid int,ctext varbinary(8000),encrypted int,status int)<br />
insert #temp Select number,colid,ctext,encrypted,status FROM syscomments Where id = object_id(@objectName)<br />
select @number=max(number) from #temp<br />
set @k=0</p>
<p>while @k&lt;<a href="http://www.yacosoft.com/mailto:=@number">=@number</a> <br />
begin<br />
if exists(select 1 from syscomments where id=object_id(@objectname) and <a href="http://www.yacosoft.com/mailto:number=@k">number=@k</a>)<br />
begin<br />
if @type='P'<br />
set @sql1=(case when @number&gt;1 then 'Alter PROCEDURE '+ @objectName +';'+rtrim(@k)+' WITH ENCRYPTION AS '<br />
else 'Alter PROCEDURE '+ @objectName+' WITH ENCRYPTION AS '<br />
end)<br />
if @type='TR'<br />
begin<br />
declare @parent_obj varchar(255),@tr_parent_xtype varchar(10)<br />
select @parent_obj=parent_obj from sysobjects where id=object_id(@objectName)<br />
select @tr_parent_xtype=xtype from sysobjects where <a href="http://www.yacosoft.com/mailto:id=@parent_obj">id=@parent_obj</a><br />
if @tr_parent_xtype='V'<br />
begin<br />
set @sql1='Alter TRIGGER <a href="http://www.yacosoft.com/mailto:'+@objectname+'">'+@objectname+'</a> ON '+OBJECT_NAME(@parentid)+' WITH ENCRYPTION INSTERD OF Insert AS PRINT 1 '<br />
end<br />
else<br />
begin<br />
set @sql1='Alter TRIGGER <a href="http://www.yacosoft.com/mailto:'+@objectname+'">'+@objectname+'</a> ON '+OBJECT_NAME(@parentid)+' WITH ENCRYPTION FOR Insert AS PRINT 1 '<br />
end</p>
<p>end<br />
if @type='FN' or @type='TF' or @type='IF'<br />
set @sql1=(case @type when 'TF' then <br />
'Alter FUNCTION '+ @objectName+'(@a char(1)) returns @b table(a varchar(10)) with encryption as begin insert @b select @a return end '<br />
when 'FN' then<br />
'Alter FUNCTION '+ @objectName+'(@a char(1)) returns char(1) with encryption as begin return @a end'<br />
when 'IF' then<br />
'Alter FUNCTION '+ @objectName+'(@a char(1)) returns table with encryption as return select @a as a'<br />
end)</p>
<p>if @type='V'<br />
set @sql1='Alter VIEW <a href="http://www.yacosoft.com/mailto:'+@objectname+'">'+@objectname+'</a> WITH ENCRYPTION AS Select 1 as f'</p>
<p>set @q=len(@sql1)<br />
set @sql1=@sql1+REPLICATE('-',4000-@q)<br />
select @sql2=REPLICATE('-',8000)<br />
set @sql3='exec(@sql1'<br />
select @colid=max(colid) from #temp where <a href="http://www.yacosoft.com/mailto:number=@k">number=@k</a> <br />
set @n=1<br />
while @n&lt;=CEILING(1.0*(@colid-1)/2) and len(@sQL3)&lt;=3996<br />
begin <br />
set @sql3=@sql3+'+@'<br />
set @n=@n+1<br />
end<br />
set @sql3=@sql3+')'<br />
exec sp_executesql @sql3,N'@Sql1 nvarchar(4000),@ varchar(8000)',@sql1=@sql1,@=@sql2</p>
<p>end<br />
set @k=@k+1<br />
end</p>
<p>set @k=0<br />
while @k&lt;<a href="http://www.yacosoft.com/mailto:=@number">=@number</a> <br />
begin<br />
if exists(select 1 from syscomments where id=object_id(@objectname) and <a href="http://www.yacosoft.com/mailto:number=@k">number=@k</a>)<br />
begin<br />
select @colid=max(colid) from #temp where <a href="http://www.yacosoft.com/mailto:number=@k">number=@k</a> <br />
set @n=1</p>
<p>while @n&lt;<a href="http://www.yacosoft.com/mailto:=@colid">=@colid</a><br />
begin<br />
select @OrigSpText1=ctext,@encrypted=encrypted,@status=status FROM #temp Where <a href="http://www.yacosoft.com/mailto:colid=@n">colid=@n</a> and <a href="http://www.yacosoft.com/mailto:number=@k">number=@k</a></p>
<p>SET @OrigSpText3=(Select ctext FROM syscomments Where id=object_id(@objectName) and <a href="http://www.yacosoft.com/mailto:colid=@n">colid=@n</a> and <a href="http://www.yacosoft.com/mailto:number=@k">number=@k</a>)<br />
if @n=1<br />
begin<br />
if @type='P'<br />
SET @OrigSpText2=(case when @number&gt;1 then 'Create PROCEDURE '+ @objectName +';'+rtrim(@k)+' WITH ENCRYPTION AS '<br />
else 'Create PROCEDURE '+ @objectName +' WITH ENCRYPTION AS '<br />
end)</p>
<p><br />
if @type='FN' or @type='TF' or @type='IF'<br />
SET @OrigSpText2=(case @type when 'TF' then <br />
'Create FUNCTION '+ @objectName+'(@a char(1)) returns @b table(a varchar(10)) with encryption as begin insert @b select @a return end '<br />
when 'FN' then<br />
'Create FUNCTION '+ @objectName+'(@a char(1)) returns char(1) with encryption as begin return @a end'<br />
when 'IF' then<br />
'Create FUNCTION '+ @objectName+'(@a char(1)) returns table with encryption as return select @a as a'<br />
end)</p>
<p>if @type='TR' <br />
begin</p>
<p>if @tr_parent_xtype='V'<br />
begin<br />
set @OrigSpText2='Create TRIGGER <a href="http://www.yacosoft.com/mailto:'+@objectname+'">'+@objectname+'</a> ON '+OBJECT_NAME(@parentid)+' WITH ENCRYPTION INSTEAD OF Insert AS PRINT 1 '<br />
end<br />
else<br />
begin<br />
set @OrigSpText2='Create TRIGGER <a href="http://www.yacosoft.com/mailto:'+@objectname+'">'+@objectname+'</a> ON '+OBJECT_NAME(@parentid)+' WITH ENCRYPTION FOR Insert AS PRINT 1 '<br />
end<br />
end</p>
<p>if @type='V'<br />
set @OrigSpText2='Create VIEW <a href="http://www.yacosoft.com/mailto:'+@objectname+'">'+@objectname+'</a> WITH ENCRYPTION AS Select 1 as f'</p>
<p>set @q=4000-len(@OrigSpText2)<br />
set @OrigSpText2=@OrigSpText2+REPLICATE('-',@q)<br />
end<br />
else<br />
begin<br />
SET @OrigSpText2=REPLICATE('-', 4000)<br />
end<br />
SET @i=1</p>
<p>SET @resultsp = replicate(N'A', (datalength(@OrigSpText1) / 2))</p>
<p>WHILE @i&lt;=datalength(@OrigSpText1)/2<br />
BEGIN</p>
<p>SET @resultsp = stuff(@resultsp, @i, 1, NCHAR(UNICODE(substring(@OrigSpText1, @i, 1)) ^<br />
(UNICODE(substring(@OrigSpText2, @i, 1)) ^<br />
UNICODE(substring(@OrigSpText3, @i, 1)))))<br />
SET @i=@i+1<br />
END<br />
set @orgvarbin=cast(@OrigSpText1 as varbinary(8000))<br />
set @resultsp=(case when @encrypted=1 <br />
then @resultsp <br />
else convert(nvarchar(4000),case when @status&amp;2=2 then uncompress(@orgvarbin) else @orgvarbin end)<br />
end)<br />
print @resultsp</p>
<p>set @n=@n+1</p>
<p>end</p>
<p>end<br />
set @k=@k+1<br />
end</p>
<p>drop table #temp<br />
rollback tran<br />
end</p>
<p>调用解密<br />
--解密指定存储过程</p>
<p>&nbsp;&nbsp;&nbsp; exec sp_decrypt 'AppSP_test'</p>
<p>&nbsp;&nbsp;&nbsp; --对所有的存储过程解密<br />
&nbsp;&nbsp;&nbsp; declare tb cursor for<br />
&nbsp;&nbsp;&nbsp; select name from sysobjects where xtype='P' and status&gt;0 and name&lt;&gt;'sp_decrypt'<br />
&nbsp;&nbsp;&nbsp; declare @name sysname<br />
&nbsp;&nbsp;&nbsp; open tb<br />
&nbsp;&nbsp;&nbsp; fetch next from tb into @name<br />
&nbsp;&nbsp;&nbsp; while @@fetch_status=0<br />
&nbsp;&nbsp;&nbsp; begin<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print '/*-------存储过程 ['+@name+'] -----------*/'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exec sp_decrypt @name<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fetch next from tb into @name<br />
&nbsp;&nbsp;&nbsp; end<br />
&nbsp;&nbsp;&nbsp; close tb<br />
&nbsp;&nbsp;&nbsp; deallocate tb</p>
<p>更改列名<br />
sp_rename 'Sales.SalesTerritory.TerritoryID', 'TerrID', 'COLUMN';<br />
&nbsp;</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=43" /> 
	  <id>http://www.yacosoft.com/default.asp?id=43</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[FastReport.Net报表设计读取Linq对象]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=4" label="经典源码" /> 
	  <updated>2010-03-10T08:52:54+08:00</updated>
	  <published>2010-03-10T08:52:54+08:00</published>
		  <summary type="html"><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><font size="3"><span style="font-family: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">为了使</span><span lang="EN-US"><font face="Times New Roman">FastReport.Net</font></span><span style="font-family: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报表设计器能够读取</span><span lang="EN-US"><font face="Times New Roman">Linq</font></span><span style="font-family: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">对象，所以对</span><span lang="EN-US"><font face="Times New Roman">FastReport.Net</font></span><span style="font-family: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报表设计器进行了扩展，闲话少说，见图：</span></font></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt">&nbsp;</p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span lang="EN-US"><v:shapetype id="_x0000_t75" stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype></span></p>
<p><img alt="" src="http://www.yacosoft.com/attachments/month_1003/h201031084954.jpg" /></p>
<p><img alt="" src="http://www.yacosoft.com/attachments/month_1003/m201031085016.jpg" /></p>
<p><img alt="" src="http://www.yacosoft.com/attachments/month_1003/1201031085032.jpg" /></p>
<p><img alt="" src="http://www.yacosoft.com/attachments/month_1003/l201031085044.jpg" /></p>
<p><img alt="" src="http://www.yacosoft.com/attachments/month_1003/u201031085056.jpg" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div>核心代码：</div>
<div>private void Build(Assembly assembly)</div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; List&lt;Type&gt; types = assembly.GetTypes().ToList();</span></div>
<div>&nbsp;</div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var DataContext = (from c in types where c.BaseType.Name == &quot;DataContext&quot; select c).FirstOrDefault();</span></div>
<div>&nbsp;</div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.Data.Linq.DataContext db = new System.Data.Linq.DataContext(Definition.ConnectionString);</span></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach (Type type in types)</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (type.IsPublic &amp;&amp; (type.BaseType!=null &amp;&amp; type.BaseType.Name == &quot;LinqEntityBase&quot;))</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PropertyInfo[] properties = type.GetProperties(BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance);</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (properties.Length != 0)</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></div>
<div>&nbsp;</div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IQueryable&nbsp;list =db.GetTable(type).AsQueryable ();</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var query = list.Take(50);</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; report.RegisterData(query, type.Name);</span></div>
<div>&nbsp;</div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></div>
<div>&nbsp;</div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=41" /> 
	  <id>http://www.yacosoft.com/default.asp?id=41</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[给朋友们拜年啦！]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=3" label="公告" /> 
	  <updated>2010-02-14T11:45:46+08:00</updated>
	  <published>2010-02-14T11:45:46+08:00</published>
		  <summary type="html"><![CDATA[<p>给大家拜年啦！祝福大家在虎年里身体健康，万事如意！</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=40" /> 
	  <id>http://www.yacosoft.com/default.asp?id=40</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[.Net FrameWork 3.5下面 sdkvars.bat 不存在解决方案]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=14" label="软件技术" /> 
	  <updated>2009-12-16T11:10:03+08:00</updated>
	  <published>2009-12-16T11:10:03+08:00</published>
		  <summary type="html"><![CDATA[.Net FrameWork 3.5下面找不到这个文件，2.0版本里面有。在3.5下可以手动建立这个文件。<br/><br/>1.确认这个目录存在<br/><br/>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727<br/><br/>2.确认这个目录也存在<br/><br/>C:\Program Files\Microsoft SDKs\Windows\v6.0A<br/><br/>3.建立名为sdkvars.bat的文件，并把下列代码复制进去即可。<br/><br/>@Set NetPath=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 <br/>@Set NetSamplePath=C:\Program Files\Microsoft SDKs\Windows\v6.0A <br/>@Set Path=%NetPath%;%NetSamplePath%;%NetSamplePath%\Bin;%PATH% <br/>@Set LIB=%NetSamplePath%\Lib;%LIB% <br/>@Set INCLUDE=%NetSamplePath%\include;%INCLUDE%<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=39" /> 
	  <id>http://www.yacosoft.com/default.asp?id=39</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[姜的二十种食疗功­]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=11" label="感悟人生" /> 
	  <updated>2009-12-04T19:06:53+08:00</updated>
	  <published>2009-12-04T19:06:53+08:00</published>
		  <summary type="html"><![CDATA[<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　研究证明，生姜含姜辣素、芳香醇、姜烯、水芳烯、茨烯、氨基酸、尼克酸、柠檬酸、抗坏血酸、蛋白质、脂肪、硫胺素、核黄素、胡萝卜素、粗纤维素及钙、铁、磷等，具有较高的营养价值。生姜具有特殊的辣味和香味，可调味添香，是生活中不可缺少的调配菜，可做腥味较强的鱼肉之调配菜，可生食、熟食，可腌渍、盐渍、醋渍，可加工成姜汁、姜粉、姜酒、姜干，可提炼制作香料的原料。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　生姜甘辛而温，具有散寒发汗、温胃止吐、杀菌镇痛、抗炎之功效，还能舒张毛细血管，增强血液循环，兴奋肠胃，帮助消化。鲜姜可用于&ldquo;风寒邪热、伤寒头痛、鼻塞、咳逆止气、止呕、祛痰下气&rdquo;。干姜适于&ldquo;寒冷腹痛、中恶霍乱、胀满、风邪消毒、皮肤间结气、止唾血&rdquo;。民间在生活实践和医疗实践中，逐步摸索出许多用生姜治病的验方，而且具有良好疗效。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　l、&nbsp;治呕吐不止：生姜汁一汤匙，蜂蜜2汤匙，加开水3汤匙调匀，煮沸后一次服下。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　2、&nbsp;治风寒骨疼、关节疼：&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　①生姜、葱白各适量，捣烂炒热，用布包好熨敷患处，一日数次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　②生姜数片放患处，用艾条灸之。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　3、&nbsp;治胃病发作：生姜、桂皮各12克，加水适量煎汤服下，一日2次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　4、&nbsp;治胃、十二指肠溃疡：生姜25克切碎，放在一个猪肚中，加水用文火炖烂，分数次食用。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　5、&nbsp;治中暑昏厥：生姜、韭菜各适量，大蒜1头，共捣烂取汁灌服。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　6、&nbsp;治急性菌痢：生姜25克，红糖50克，共捣成糊状，一日3次分服，连服数日。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　7、&nbsp;治产后腹疼：生姜、当归各150克，羊肉1000克，加水适量炖汤，分次服下。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　8、&nbsp;治跌打损伤、腰扭伤：生姜、芋头各半捣成泥状，加面粉适量调匀，贴敷患处，每日更换2次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　9、&nbsp;治急性肠胃炎：生姜5片，茶叶20克，大蒜1头，捣碎，煎水调红糖适量饮下，每日3次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　10、&nbsp;治寒痢：生姜4片，茶叶15克，煎浓加半汤匙食醋，趁热饮服，每日3次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　11、&nbsp;治热痢：生姜&nbsp;4片，茶叶15克，黄连6克，煎水晾凉饮服，每日3次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　12、&nbsp;治疟疾：生姜&nbsp;4片，茶叶15克，煎水调红糖适量，趁热饮下，每日2次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　13、&nbsp;治晕车晕船：生姜1片贴于肚脐，外贴1张伤湿止痛膏，有明显的缓解作用。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　14、&nbsp;治冻疮、冻伤：生姜适量捣烂，泡在适量的白酒中，取汁液加温擦拭患处，每日3次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　15、&nbsp;治脚汗太多：生姜15克，枯矾15克，熬水洗泡脚，每日1次。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　16、&nbsp;治伤风咳嗽、虚寒久咳：生姜5片，加适量核桃肉、红糖捣烂食之。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　17、&nbsp;治红白痢疾：生姜、绿茶等份，加水适量煎浓饮之。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　18、&nbsp;治妇女虚寒腹疼：生姜、红糖适量煎水服用。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　19、&nbsp;发汗解表、温肺止咳：生姜10片，茶叶7克，煎水趁热饮服。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　20、&nbsp;治风寒感冒：&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　①生姜数片，白萝卜250克，红糖适量，煎汤趁热饮下，出汗即解。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　②生姜6克，葱白5根，红糖适量，煎汤热服，对感冒初起或症状轻有效。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　③生姜90克，白萝卜60克，荸荠60克，捣烂取汁，分3次用开水冲服，每日一剂。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　④生姜6克，葱白2恨，大枣4枚，煎汤服用，对症轻无汗、身困者有效。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　⑤生姜5克，葱白1根，绿豆15克，萝卜30克，大枣&nbsp;4枚，煎水服用，每日3次，开水冲服，对感冒发烧、口渴而表未解者有效。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　⑥生姜、葱白各30克，食盐6克，白酒一盅。将生姜、葱白、食盐共捣成泥状，加白酒调匀，涂擦前胸、后背、肘窝、手心、脚心，对&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　感冒身疼、关节酸疼、发热不降有效。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　⑦老姜10克煨热，切开擦百会、大椎或由大椎向下擦至命门，以皮肤微红为度，可消除恶寒怕冷、全身酸疼。&shy;</font></font></font></font></p>
<p><font color="#717171" face="Arial" style="line-height: normal"><font color="#8b0000" style="line-height: 1.8em"><font face="黑体" style="line-height: 1.8em"><font size="3" style="line-height: 1.8em">　　生姜在细菌作用下可发酵腐烂，产生黄樟素物质，能诱发食道癌、肝癌，对人体健康有严重危害，故腐烂的生姜不能吃。</font></font></font></font></p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=38" /> 
	  <id>http://www.yacosoft.com/default.asp?id=38</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[HTML符号、常规符号及其代码对照表]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=4" label="经典源码" /> 
	  <updated>2009-09-09T14:23:07+08:00</updated>
	  <published>2009-09-09T14:23:07+08:00</published>
		  <summary type="html"><![CDATA[<table border="0" cellspacing="0" cellpadding="0" width="98%" align="center" style="table-layout: fixed">
    <tbody>
        <tr>
            <td width="100%" align="center">&nbsp;</td>
        </tr>
        <tr>
            <td style="word-wrap: break-word"><font class="news"><center style="font-family: 黑体; color: red; font-size: 20px">
            <form name="font">
                符号、常规符号及其代码对照表
            </form>
            </center>
            <p>
            <table border="1" cellspacing="0" cellpadding="0" width="100%">
                <tbody>
                    <tr>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">代码</td>
                        <td id="F0" bgcolor="menu" valign="middle" width="11%" align="center" style="font-family: fixedsys; color: red">Webdings</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">常规</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">代码</td>
                        <td id="F1" bgcolor="menu" valign="middle" width="11%" align="center" style="font-family: fixedsys; color: red">Webdings</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">常规</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">代码</td>
                        <td id="F2" bgcolor="menu" valign="middle" width="11%" align="center" style="font-family: fixedsys; color: red">Webdings</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">常规</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">代码</td>
                        <td id="F3" bgcolor="menu" valign="middle" width="11%" align="center" style="font-family: fixedsys; color: red">Webdings</td>
                        <td bgcolor="menu" valign="middle" bordercolor="menu" width="7%" align="center" style="font-family: fixedsys; color: red">常规</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>32;</td>
                        <td id="f32" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&nbsp;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&nbsp;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>33;</td>
                        <td id="f33" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">!</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">!</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>34;</td>
                        <td id="f34" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&quot;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&quot;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>35;</td>
                        <td id="f35" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">#</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">#</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>36;</td>
                        <td id="f36" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">$</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">$</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>37;</td>
                        <td id="f37" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">%</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">%</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>38;</td>
                        <td id="f38" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&amp;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&amp;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>39;</td>
                        <td id="f39" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">'</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">'</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>40;</td>
                        <td id="f40" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">(</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">(</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>41;</td>
                        <td id="f41" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">)</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">)</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>42;</td>
                        <td id="f42" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">*</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">*</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>43;</td>
                        <td id="f43" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">+</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">+</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>44;</td>
                        <td id="f44" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">,</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">,</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>45;</td>
                        <td id="f45" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">-</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">-</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>46;</td>
                        <td id="f46" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">.</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">.</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>47;</td>
                        <td id="f47" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">/</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">/</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>48;</td>
                        <td id="f48" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">0</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">0</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>49;</td>
                        <td id="f49" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">1</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">1</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>50;</td>
                        <td id="f50" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">2</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">2</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>51;</td>
                        <td id="f51" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">3</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">3</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>52;</td>
                        <td id="f52" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">4</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">4</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>53;</td>
                        <td id="f53" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">5</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">5</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>54;</td>
                        <td id="f54" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">6</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">6</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>55;</td>
                        <td id="f55" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">7</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">7</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>56;</td>
                        <td id="f56" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">8</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">8</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>57;</td>
                        <td id="f57" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">9</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">9</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>58;</td>
                        <td id="f58" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">:</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">:</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>59;</td>
                        <td id="f59" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>60;</td>
                        <td id="f60" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&lt;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&lt;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>61;</td>
                        <td id="f61" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">=</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">=</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>62;</td>
                        <td id="f62" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&gt;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&gt;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>63;</td>
                        <td id="f63" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">?</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">?</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>64;</td>
                        <td id="f64" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">@</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">@</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>65;</td>
                        <td id="f65" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">A</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">A</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>66;</td>
                        <td id="f66" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">B</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">B</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>67;</td>
                        <td id="f67" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">C</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">C</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>68;</td>
                        <td id="f68" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">D</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">D</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>69;</td>
                        <td id="f69" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">E</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">E</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>70;</td>
                        <td id="f70" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">F</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">F</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>71;</td>
                        <td id="f71" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">G</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">G</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>72;</td>
                        <td id="f72" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">H</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">H</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>73;</td>
                        <td id="f73" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">I</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">I</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>74;</td>
                        <td id="f74" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">J</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">J</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>75;</td>
                        <td id="f75" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">K</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">K</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>76;</td>
                        <td id="f76" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">L</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">L</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>77;</td>
                        <td id="f77" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">M</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">M</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>78;</td>
                        <td id="f78" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">N</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">N</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>79;</td>
                        <td id="f79" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">O</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">O</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>80;</td>
                        <td id="f80" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">P</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">P</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>81;</td>
                        <td id="f81" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">Q</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">Q</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>82;</td>
                        <td id="f82" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">R</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">R</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>83;</td>
                        <td id="f83" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">S</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">S</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>84;</td>
                        <td id="f84" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">T</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">T</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>85;</td>
                        <td id="f85" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">U</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">U</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>86;</td>
                        <td id="f86" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">V</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">V</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>87;</td>
                        <td id="f87" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">W</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">W</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>88;</td>
                        <td id="f88" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">X</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">X</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>89;</td>
                        <td id="f89" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">Y</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">Y</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>90;</td>
                        <td id="f90" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">Z</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">Z</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>91;</td>
                        <td id="f91" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">[</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">[</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>92;</td>
                        <td id="f92" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">\</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">\</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>93;</td>
                        <td id="f93" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">]</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">]</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>94;</td>
                        <td id="f94" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">^</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">^</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>95;</td>
                        <td id="f95" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">_</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">_</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>96;</td>
                        <td id="f96" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">`</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">`</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>97;</td>
                        <td id="f97" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">a</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">a</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>98;</td>
                        <td id="f98" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">b</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">b</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>99;</td>
                        <td id="f99" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">c</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">c</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>100;</td>
                        <td id="f100" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">d</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">d</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>101;</td>
                        <td id="f101" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">e</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">e</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>102;</td>
                        <td id="f102" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">f</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">f</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>103;</td>
                        <td id="f103" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">g</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">g</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>104;</td>
                        <td id="f104" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">h</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">h</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>105;</td>
                        <td id="f105" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">i</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">i</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>106;</td>
                        <td id="f106" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">j</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">j</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>107;</td>
                        <td id="f107" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">k</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">k</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>108;</td>
                        <td id="f108" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">l</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">l</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>109;</td>
                        <td id="f109" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">m</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">m</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>110;</td>
                        <td id="f110" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">n</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">n</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>111;</td>
                        <td id="f111" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">o</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">o</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>112;</td>
                        <td id="f112" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">p</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">p</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>113;</td>
                        <td id="f113" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">q</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">q</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>114;</td>
                        <td id="f114" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">r</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">r</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>115;</td>
                        <td id="f115" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">s</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">s</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>116;</td>
                        <td id="f116" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">t</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">t</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>117;</td>
                        <td id="f117" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">u</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">u</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>118;</td>
                        <td id="f118" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">v</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">v</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>119;</td>
                        <td id="f119" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">w</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">w</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>120;</td>
                        <td id="f120" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">x</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">x</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>121;</td>
                        <td id="f121" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">y</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">y</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>122;</td>
                        <td id="f122" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">z</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">z</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>123;</td>
                        <td id="f123" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">{</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">{</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>124;</td>
                        <td id="f124" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">|</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">|</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>125;</td>
                        <td id="f125" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">}</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">}</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>126;</td>
                        <td id="f126" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">~</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">~</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>127;</td>
                        <td id="f127" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px"></td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px"></td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>128;</td>
                        <td id="f128" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&euro;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&euro;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>129;</td>
                        <td id="f129" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px"></td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px"></td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>130;</td>
                        <td id="f130" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&sbquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&sbquo;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>131;</td>
                        <td id="f131" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&fnof;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&fnof;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>132;</td>
                        <td id="f132" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&bdquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&bdquo;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>133;</td>
                        <td id="f133" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&hellip;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&hellip;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>134;</td>
                        <td id="f134" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&dagger;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&dagger;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>135;</td>
                        <td id="f135" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Dagger;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Dagger;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>136;</td>
                        <td id="f136" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&circ;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&circ;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>137;</td>
                        <td id="f137" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&permil;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&permil;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>138;</td>
                        <td id="f138" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Scaron;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Scaron;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>139;</td>
                        <td id="f139" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&lsaquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&lsaquo;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>140;</td>
                        <td id="f140" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&OElig;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&OElig;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>141;</td>
                        <td id="f141" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px"></td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px"></td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>142;</td>
                        <td id="f142" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">Ž</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">Ž</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>143;</td>
                        <td id="f143" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px"></td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px"></td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>144;</td>
                        <td id="f144" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px"></td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px"></td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>145;</td>
                        <td id="f145" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&lsquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&lsquo;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>146;</td>
                        <td id="f146" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&rsquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&rsquo;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>147;</td>
                        <td id="f147" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ldquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ldquo;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>148;</td>
                        <td id="f148" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&rdquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&rdquo;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>149;</td>
                        <td id="f149" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&bull;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&bull;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>150;</td>
                        <td id="f150" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ndash;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ndash;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>151;</td>
                        <td id="f151" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&mdash;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&mdash;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>152;</td>
                        <td id="f152" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&tilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&tilde;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>153;</td>
                        <td id="f153" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&trade;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&trade;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>154;</td>
                        <td id="f154" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&scaron;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&scaron;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>155;</td>
                        <td id="f155" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&rsaquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&rsaquo;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>156;</td>
                        <td id="f156" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&oelig;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&oelig;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>157;</td>
                        <td id="f157" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px"></td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px"></td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>158;</td>
                        <td id="f158" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">ž</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">ž</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>159;</td>
                        <td id="f159" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Yuml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Yuml;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>160;</td>
                        <td id="f160" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&nbsp;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&nbsp;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>161;</td>
                        <td id="f161" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&iexcl;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&iexcl;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>162;</td>
                        <td id="f162" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&cent;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&cent;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>163;</td>
                        <td id="f163" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&pound;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&pound;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>164;</td>
                        <td id="f164" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&curren;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&curren;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>165;</td>
                        <td id="f165" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&yen;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&yen;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>166;</td>
                        <td id="f166" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&brvbar;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&brvbar;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>167;</td>
                        <td id="f167" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&sect;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&sect;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>168;</td>
                        <td id="f168" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&uml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&uml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>169;</td>
                        <td id="f169" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&copy;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&copy;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>170;</td>
                        <td id="f170" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ordf;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ordf;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>171;</td>
                        <td id="f171" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&laquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&laquo;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>172;</td>
                        <td id="f172" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&not;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&not;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>173;</td>
                        <td id="f173" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&shy;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&shy;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>174;</td>
                        <td id="f174" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&reg;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&reg;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>175;</td>
                        <td id="f175" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&macr;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&macr;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>176;</td>
                        <td id="f176" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&deg;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&deg;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>177;</td>
                        <td id="f177" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&plusmn;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&plusmn;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>178;</td>
                        <td id="f178" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&sup2;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&sup2;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>179;</td>
                        <td id="f179" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&sup3;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&sup3;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>180;</td>
                        <td id="f180" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&acute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&acute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>181;</td>
                        <td id="f181" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&micro;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&micro;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>182;</td>
                        <td id="f182" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&para;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&para;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>183;</td>
                        <td id="f183" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&middot;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&middot;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>184;</td>
                        <td id="f184" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&cedil;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&cedil;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>185;</td>
                        <td id="f185" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&sup1;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&sup1;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>186;</td>
                        <td id="f186" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ordm;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ordm;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>187;</td>
                        <td id="f187" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&raquo;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&raquo;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>188;</td>
                        <td id="f188" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&frac14;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&frac14;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>189;</td>
                        <td id="f189" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&frac12;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&frac12;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>190;</td>
                        <td id="f190" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&frac34;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&frac34;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>191;</td>
                        <td id="f191" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&iquest;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&iquest;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>192;</td>
                        <td id="f192" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Agrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Agrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>193;</td>
                        <td id="f193" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Aacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Aacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>194;</td>
                        <td id="f194" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Acirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Acirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>195;</td>
                        <td id="f195" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Atilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Atilde;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>196;</td>
                        <td id="f196" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Auml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Auml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>197;</td>
                        <td id="f197" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Aring;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Aring;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>198;</td>
                        <td id="f198" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&AElig;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&AElig;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>199;</td>
                        <td id="f199" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ccedil;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ccedil;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>200;</td>
                        <td id="f200" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Egrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Egrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>201;</td>
                        <td id="f201" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Eacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Eacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>202;</td>
                        <td id="f202" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ecirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ecirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>203;</td>
                        <td id="f203" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Euml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Euml;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>204;</td>
                        <td id="f204" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Igrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Igrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>205;</td>
                        <td id="f205" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Iacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Iacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>206;</td>
                        <td id="f206" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Icirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Icirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>207;</td>
                        <td id="f207" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Iuml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Iuml;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>208;</td>
                        <td id="f208" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ETH;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ETH;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>209;</td>
                        <td id="f209" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ntilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ntilde;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>210;</td>
                        <td id="f210" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ograve;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ograve;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>211;</td>
                        <td id="f211" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Oacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Oacute;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>212;</td>
                        <td id="f212" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ocirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ocirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>213;</td>
                        <td id="f213" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Otilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Otilde;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>214;</td>
                        <td id="f214" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ouml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ouml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>215;</td>
                        <td id="f215" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&times;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&times;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>216;</td>
                        <td id="f216" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Oslash;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Oslash;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>217;</td>
                        <td id="f217" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ugrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ugrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>218;</td>
                        <td id="f218" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Uacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Uacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>219;</td>
                        <td id="f219" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Ucirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Ucirc;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>220;</td>
                        <td id="f220" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Uuml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Uuml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>221;</td>
                        <td id="f221" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&Yacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&Yacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>222;</td>
                        <td id="f222" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&THORN;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&THORN;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>223;</td>
                        <td id="f223" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&szlig;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&szlig;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>224;</td>
                        <td id="f224" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&agrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&agrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>225;</td>
                        <td id="f225" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&aacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&aacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>226;</td>
                        <td id="f226" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&acirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&acirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>227;</td>
                        <td id="f227" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&atilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&atilde;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>228;</td>
                        <td id="f228" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&auml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&auml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>229;</td>
                        <td id="f229" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&aring;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&aring;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>230;</td>
                        <td id="f230" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&aelig;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&aelig;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>231;</td>
                        <td id="f231" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ccedil;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ccedil;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>232;</td>
                        <td id="f232" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&egrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&egrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>233;</td>
                        <td id="f233" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&eacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&eacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>234;</td>
                        <td id="f234" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ecirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ecirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>235;</td>
                        <td id="f235" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&euml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&euml;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>236;</td>
                        <td id="f236" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&igrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&igrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>237;</td>
                        <td id="f237" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&iacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&iacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>238;</td>
                        <td id="f238" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&icirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&icirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>239;</td>
                        <td id="f239" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&iuml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&iuml;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>240;</td>
                        <td id="f240" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&eth;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&eth;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>241;</td>
                        <td id="f241" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ntilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ntilde;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>242;</td>
                        <td id="f242" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ograve;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ograve;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>243;</td>
                        <td id="f243" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&oacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&oacute;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>244;</td>
                        <td id="f244" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ocirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ocirc;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>245;</td>
                        <td id="f245" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&otilde;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&otilde;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>246;</td>
                        <td id="f246" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ouml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ouml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>247;</td>
                        <td id="f247" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&divide;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&divide;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>248;</td>
                        <td id="f248" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&oslash;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&oslash;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>249;</td>
                        <td id="f249" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ugrave;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ugrave;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>250;</td>
                        <td id="f250" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&uacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&uacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>251;</td>
                        <td id="f251" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&ucirc;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&ucirc;</td>
                    </tr>
                    <tr style="height: 30px">
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>252;</td>
                        <td id="f252" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&uuml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&uuml;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>253;</td>
                        <td id="f253" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&yacute;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&yacute;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>254;</td>
                        <td id="f254" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&thorn;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&thorn;</td>
                        <td bgcolor="menu" valign="middle" width="7%" align="center" style="font-family: fixedsys; color: blue"><a>&amp;#</a>255;</td>
                        <td id="f255" valign="middle" width="11%" align="center" style="font-family: Webdings; color: #800080; font-size: 40px">&yuml;</td>
                        <td valign="middle" width="7%" align="center" style="font-family: Arial; color: #008080; font-size: 30px">&yuml;</td>
                    </tr>
                </tbody>
            </table>
            </p>
            <br />
            </font></td>
        </tr>
    </tbody>
</table>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=37" /> 
	  <id>http://www.yacosoft.com/default.asp?id=37</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[AutoVue 升级到 19.3.4 下载 ]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=7" label="编程工具" /> 
	  <updated>2009-08-17T09:31:53+08:00</updated>
	  <published>2009-08-17T09:31:53+08:00</published>
		  <summary type="html"><![CDATA[<div class="csc-header csc-header-n1">
<h2>AutoVue Testversion（先下载测试版本）</h2>
</div>
<!--  Header: [end] --><!--  Text: [begin] -->
<p class="bodytext">AutoVue&nbsp;<strong>19.3.1 Testversion:</strong> <a target="blank" href="http://dc.conexio-web.de/downloads/AutoVue/avde193.zip">avde193.zip</a> (114.078.611 B) 21.10.2008<br />
AutoVue Electro-Mechanical Professional Desktop Edition<br />
Windows 2000/XP/2003/Vista</p>
<p class="bodytext">&nbsp;</p>
<h2>AutoVue Update（安装升级程序）</h2>
<p class="bodytext"><strong>Apply this update on the Testversion, to try out the newest AutoVue Version.</strong></p>
<p class="bodytext">AutoVue <strong>19.3.4 Update:</strong> <a target="blank" href="http://dc.conexio-web.de/downloads/AutoVue/AutoVueUpdate1934.exe">AutoVueUpdate1934.exe</a> (27.715.538 B) 9.6.2009</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=26" /> 
	  <id>http://www.yacosoft.com/default.asp?id=26</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[ADO.NET Entity Framework 深入分析, Part 5]]></title>
	  <author>
		 <name>卿卿</name>
		 <uri>http://www.yacosoft.com/</uri>
		 <email>zyq_17@qq.com</email>
	  </author>
	  <category term="" scheme="http://www.yacosoft.com/default.asp?cateID=14" label="软件技术" /> 
	  <updated>2009-04-14T09:54:08+08:00</updated>
	  <published>2009-04-14T09:54:08+08:00</published>
		  <summary type="html"><![CDATA[<div>
<div>
<p>前面的Part 1-4的文章，介绍了Entity Data Model、Entity SQL、ObjectQuery、EntityCommand、LINQ to Entities等等及其代码演示。Part 4主要演示如何通过相关技术或Debug工具，如SQL Server Profiler、ToTraceString 方法、eSqlBlast 工具、LINQPad工具等等，来查看生成的T-SQL脚本。本篇文章Part 5 演示如何新增、更新和删除数据实体，并相应更新数据库。</p>
<p>ADO.NET Entity Framework 系列文章由EntLib.com 开源论坛、小组翻译、编写。欢迎交流、分享。</p>
</div>
<div>
<p>本系列文章前面部分链接：</p>
</div>
<div><a class="tab_content_a" target="_blank" href="http://www.yacosoft.com/article.asp?id=20">Entity Data Model (EDM) 深入分析, Part 1</a></div>
<div>&nbsp;</div>
<div><a class="tab_content_a" target="_blank" href="http://www.yacosoft.com/article.asp?id=21">Entity Data Model (EDM) 深入分析, Part 2</a></div>
<div>&nbsp;</div>
<div><a class="tab_content_a" target="_blank" href="http://www.yacosoft.com/article.asp?id=22">Entity Data Model (EDM) 深入分析, Part 3</a></div>
<div>&nbsp;</div>
<div><a class="tab_content_a" target="_blank" href="http://www.yacosoft.com/article.asp?id=23">ADO.NET Entity Framework 深入分析, Part 4</a></div>
<div>
<p><b>增加、更新和删除实体</b></p>
</div>
<div>
<p>将实体的更新操作应用到数据库很方便。对象服务（Object Services）将记录所有对实体对象的改变，并产生和执行相应的T-SQL语句，对数据库实施插入、更新和删除操作。</p>
</div>
<div>
<p>通过调用ObjectContext的SaveChanges() 方法，来实现对数据库的更新，这与LINQ to SQL 的DataContext的SubmitChanges() 方法比较相似。</p>
</div>
<div>
<p><b>更新或修改实体</b></p>
</div>
<div>NorthwindEntities context = new NorthwindEntities();</div>
<div>&nbsp;</div>
<div>Employee firstEmployee = context.Employees.First(e =&gt; e.EmployeeID == 1);</div>
<div>&nbsp;</div>
<div>if (firstEmployee != null)</div>
<div>{</div>
<div>&nbsp;firstEmployee.City = &quot;San Francisco&quot;;</div>
<div>&nbsp;firstEmployee.Notes = &quot;New notes for employee 1&quot;;</div>
<div>&nbsp;int affected = context.SaveChanges();</div>
<div>}</div>
<div>
<p>1) 检索一个Employee</p>
<p>LINQ to Entities 中，你可以使用扩展方法First()，因为SingleOrDefault() 方法将抛出NotSupportedException 异常（The 'Single' operator is not supported by LINQ to Entities. Consider using 'First' instead）。</p>
<p>2) 改变实体的一些属性</p>
<p>3) 调用ObjectContext 的SaveChanges() 方法，该方法将返回增加、修改或删除的实体对象的数量。</p>
</div>
<div>
<p><b>增加一个实体对象</b></p>
</div>
<div>Employee newEmployee = new Employee();</div>
<div>newEmployee.FirstName = &quot;Jan&quot;;</div>
<div>newEmployee.LastName = &quot;Jansen&quot;;</div>
<div>&nbsp;</div>
<div>context.AddToEmployees(newEmployee);</div>
<div>&nbsp;</div>
<div>context.SaveChanges();</div>
<div>
<p>1) 创建一个新的Employee 对象，并设置属性。</p>
<p>创建实体类之后，每一个生成的类都有一个静态的创建工厂方法。因此，你也可以使用CreateEmployee() 方法实例化一个Employee 对象和非空的属性。</p>
</div>
<div>
<p>如果细心一点，你将注意到EmployeeID 也是一个必须的字段。当然，这不是完全真实的，因为这是一个自增长的字段，由SQL Server 数据库来填充。在LINQ to SQL中，每一个属性成员有Auto Generated选项。Entity Framework 则没有这些，可能是因为它设计用来支持所有的数据库，可能一些数据库不支持AutoIncrement 数据类型，因此仅仅传递一个虚值。</p>
</div>
<div>Employee newEmployee = Employee.CreateEmployee(0, &quot;Jansen&quot;, &quot;Jan&quot;);</div>
<div>
<p>2) 调用ObjectContext对象的AddToEmployees() 方法。这与LINQ to SQL不一样，LINQ to SQL使用 Employees集合的InsertOnSubmit() 方法。在Entity Framework中，每一个EntityType自动生成指定的AddTo 方法。</p>
<p>你也可以使用对象上下文(Object Context) 的AddObject() 方法，第一个参数是Entity Set的名称，我个人喜好使用AddTo 方法。</p>
</div>
<div>context.AddObject(&quot;Employees&quot;, newEmployee);</div>
<div>
<p>3) 调用Object Context 的SaveChanges() 方法。</p>
</div>
<div>
<p><b>增加实体及其关联实体</b></p>
</div>
<div>Category newCategory = new Category();</div>
<div>newCategory.CategoryName = &quot;Software&quot;;</div>
<div>newCategory.Description = &quot;Software products&quot;;</div>
<div>&nbsp;</div>
<div>newCategory.Products.Add(new Product() { ProductName = &quot;Microsoft Visual Studio 2008&quot; });</div>
<div>newCategory.Products.Add(new Product() { ProductName = &quot;Microsoft Office 2007&quot; });</div>
<div>&nbsp;</div>
<div>context.AddToCategories(newCategory);</div>
<div>&nbsp;</div>
<div>context.SaveChanges();</div>
<div>&nbsp;</div>
<div>1) 创建一个新的Category 对象并设置属性。</div>
<div>2) 当你创建的实体通过Navigation 属性关联到另一个实体时，你可以调用集合Add() 方法。创建2个新的Product对象，并添加这2个对象到Category的Products集合。</div>
<div>3) 调用Object Context的AddToCategories() 方法。</div>
<div>4) 调用Object Context 的SaveChanges() 方法。</div>
<div>将执行如下3条T-SQL脚本：</div>
<div>exec sp_executesql N'insert [dbo].[Categories]([CategoryName], [Description], [Picture])</div>
<div>values (@0, @1, null)</div>
<div>select [CategoryID]</div>
<div>from [dbo].[Categories]</div>
<div>where @@ROWCOUNT &gt; 0 and [CategoryID] = scope_identity()',N'@0 nvarchar(8),@1 nvarchar(17)',@0=N'Software',@1=N'Software products'</div>
<div>&nbsp;</div>
<div>exec sp_executesql N'insert [dbo].[Products]([ProductName], [SupplierID], [CategoryID], [QuantityPerUnit], [UnitPrice],</div>
<div>&nbsp;[UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued])</div>
<div>values (@0, null, @1, null, null, null, null, null, @2)</div>
<div>select [ProductID]</div>
<div>from [dbo].[Products]</div>
<div>where @@ROWCOUNT &gt; 0 and [ProductID] = scope_identity()',N'@0 nvarchar(28),@1 int,@2 bit',@0=N'Microsoft Visual Studio 2008',@1=12,@2=0</div>
<div>&nbsp;</div>
<div>exec sp_executesql N'insert [dbo].[Products]([ProductName], [SupplierID], [CategoryID], [QuantityPerUnit], [UnitPrice],</div>
<div>&nbsp;[UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued])</div>
<div>values (@0, null, @1, null, null, null, null, null, @2)</div>
<div>select [ProductID]</div>
<div>from [dbo].[Products]</div>
<div>where @@ROWCOUNT &gt; 0 and [ProductID] = scope_identity()',N'@0 nvarchar(21),@1 int,@2 bit',@0=N'Microsoft Office 2007',@1=12,@2=0</div>
<div>
<p><b>删除一个实体对象</b></p>
</div>
<div>Category cat = context.Categories.First(c =&gt; c.CategoryName == &quot;Software&quot;);</div>
<div>context.DeleteObject(cat);</div>
<div>context.SaveChanges();</div>
<div>&nbsp;</div>
<div>1) 检索一个Category 对象。</div>
<div>2) 调用Object Context 的DeleteObject() 的方法，并传入Category 对象。编写一个重载的方法，仅需要一个EntityKey，这也是可行的。</div>
<div>3) 调用Object Context 的SaveChanges() 方法。</div>
<div>
<p>在默认的Northwind 数据库，上述示例将抛出一个异常：&quot;The Delete statement conflicted with the REFERENCE constraint &quot;FK_Products_Categories&quot;. The conflict occurred in database &quot;Northwind&quot;, table &quot;dbo.Products&quot;, column &quot;CategoryID&quot;. The statement has been terminated.&quot;</p>
<p>如果你想删除Software目录和它的产品，你需要修改SQL Server数据库中FK_Products_Categories 外键的Delete Rule，并设置为Cascade。</p>
<p><img alt="" src="http://www.uml.org.cn/net/images/EDM_Analysis5_1.gif" width="665" height="419" />&nbsp;</p>
</div>
</div>
<p>&nbsp;</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yacosoft.com/article.asp?id=24" /> 
	  <id>http://www.yacosoft.com/default.asp?id=24</id>
  </entry>	
		
</feed>
