<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-8100530976556742011</atom:id><lastBuildDate>Sat, 07 Sep 2024 00:33:26 +0000</lastBuildDate><category>Programming</category><category>Mars</category><category>China</category><category>Common Lisp</category><category>Project Euler</category><category>Life</category><category>Everyday word</category><category>SharePoint</category><category>Books</category><category>Funny</category><category>Memory</category><category>DotNet.C#</category><category>SICP</category><category>Compiler</category><category>Linux</category><category>Pictures</category><category>ASP.NET</category><category>SQL Server</category><category>Maths</category><category>Movie</category><category>History</category><category>How Euler Did it</category><category>JavaScript</category><category>Algorithm</category><category>Photo</category><category>Comment</category><category>Others</category><category>Tools</category><category>Book Note</category><category>CSS</category><category>English</category><category>LINQ</category><category>Regular Expression</category><title>Yongwei Xing&#39;s base with ET</title><description></description><link>http://jdxyw.blogspot.com/</link><managingEditor>noreply@blogger.com (Yongwei Xing)</managingEditor><generator>Blogger</generator><openSearch:totalResults>380</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-5600073592537894599</guid><pubDate>Sat, 21 Aug 2010 08:54:00 +0000</pubDate><atom:updated>2010-08-21T01:54:17.881-07:00</atom:updated><title>[Lisp]Chruch Number and Common Lisp</title><description>&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1098&quot; id=&quot;lxnw&quot; title=&quot;http://www.jdxyw.com/?p=1098&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1098&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;When we talk about the number,plus,sub or mul, what is the first thing hitting your head? For the most of us, I think, the first thing we think must be 1 2 3, or 1+3=4 or 5-3=2 or something like it. Have you ever thought that we can use other forms to express the number,plus and sub? &amp;nbsp;This must be strange to use others instead of the normal number, let alone the operation,such as sub, plus.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;But, if you have already heard the&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Lambda_calculus#Arithmetic_in_lambda_calculus&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;Lambda Calculus&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Church_encoding&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;Church Encoding&lt;/a&gt;, then these things seem very reasonable. If you are interested in it, you can read the instruction on Wikipedia. Common Lisp is ideal to implement it.(Actually, Schema is more convenient.)&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The brief instruction below comes from wikipeida.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Church numerals are the representations of&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Natural_number&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;Natural number&quot;&gt;natural numbers&lt;/a&gt;&amp;nbsp;under Church encoding. The&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Higher-order_function&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;Higher-order function&quot;&gt;higher-order function&lt;/a&gt;&amp;nbsp;that represents natural number&amp;nbsp;&lt;i&gt;n&lt;/i&gt;&amp;nbsp;is a function that maps any other function&amp;nbsp;&lt;i&gt;f&lt;/i&gt;&amp;nbsp;to its&amp;nbsp;&lt;i&gt;n&lt;/i&gt;-fold&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Function_composition&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;Function composition&quot;&gt;composition&lt;/a&gt;. In simpler terms, the &amp;ldquo;value&amp;rdquo; of the numeral is equivalent to the number of times the function encapsulates its argument.&lt;/font&gt;&lt;/p&gt;&lt;img alt=&quot;f^n = f \circ f \circ \cdots \circ f.\,&quot; src=&quot;http://upload.wikimedia.org/math/7/e/a/7ea0b0b03909d3a24bd3a59e33e45593.png&quot; style=&quot;background-color:#ffffff;background-image:initial;margin-left:0px;margin-right:0px&quot;&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Church numerals&amp;nbsp;&lt;b&gt;0&lt;/b&gt;,&amp;nbsp;&lt;b&gt;1&lt;/b&gt;,&amp;nbsp;&lt;b&gt;2&lt;/b&gt;, &amp;hellip;, are defined as follows in the&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Lambda_calculus&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;Lambda calculus&quot;&gt;lambda calculus&lt;/a&gt;:&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;0&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;f.&amp;lambda;x. x&lt;/font&gt;&lt;b&gt;1&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;f.&amp;lambda;x. f x&lt;/font&gt;&lt;b&gt;2&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;f.&amp;lambda;x. f (f x)&lt;/font&gt;&lt;b&gt;3&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;f.&amp;lambda;x. f (f (f x))&lt;/font&gt;&amp;hellip;&lt;b&gt;n&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;f.&amp;lambda;x. f&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;i&gt;n&lt;/i&gt;&lt;/sup&gt;&amp;nbsp;x&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The addition function&amp;nbsp;&lt;b&gt;plus&lt;/b&gt;(&lt;i&gt;m&lt;/i&gt;,&lt;i&gt;n&lt;/i&gt;)=&lt;i&gt;m&lt;/i&gt;+&lt;i&gt;n&lt;/i&gt;&amp;nbsp;uses the identity&amp;nbsp;&lt;i&gt;f&lt;/i&gt;&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;(&lt;i&gt;m&lt;/i&gt;&amp;nbsp;+&amp;nbsp;&lt;i&gt;n&lt;/i&gt;)&lt;/sup&gt;(&lt;i&gt;x&lt;/i&gt;) =&amp;nbsp;&lt;i&gt;f&lt;/i&gt;&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;i&gt;m&lt;/i&gt;&lt;/sup&gt;(&lt;i&gt;f&lt;/i&gt;&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;i&gt;n&lt;/i&gt;&lt;/sup&gt;(&lt;i&gt;x&lt;/i&gt;)).&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;plus&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;m.&amp;lambda;n.&amp;lambda;f.&amp;lambda;x. m f (n f x)&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The successor function&amp;nbsp;&lt;b&gt;succ&lt;/b&gt;(&lt;i&gt;n&lt;/i&gt;)=&lt;i&gt;n&lt;/i&gt;+1 is&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Beta_reduction#.CE.B2-reduction&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;Beta reduction&quot;&gt;&amp;beta;-equivalent&lt;/a&gt;&amp;nbsp;to (&lt;b&gt;plus&lt;/b&gt;&amp;nbsp;&lt;b&gt;1&lt;/b&gt;).&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;succ&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;n.&amp;lambda;f.&amp;lambda;x. f (n f x)&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The multiplication function&amp;nbsp;&lt;b&gt;mult&lt;/b&gt;(&lt;i&gt;m&lt;/i&gt;,&lt;i&gt;n&lt;/i&gt;)=&lt;i&gt;m&lt;/i&gt;*&lt;i&gt;n&lt;/i&gt;&amp;nbsp;uses the identity&amp;nbsp;&lt;i&gt;f&lt;/i&gt;&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;(&lt;i&gt;m&lt;/i&gt;&amp;nbsp;*&amp;nbsp;&lt;i&gt;n&lt;/i&gt;)&lt;/sup&gt;&amp;nbsp;= (&lt;i&gt;f&lt;/i&gt;&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;i&gt;m&lt;/i&gt;&lt;/sup&gt;)&lt;sup style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;i&gt;n&lt;/i&gt;&lt;/sup&gt;.&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;mult&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;m.&amp;lambda;n.&amp;lambda;f. n (m f)&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The exponentiation function&amp;nbsp;&lt;b&gt;exp&lt;/b&gt;(&lt;i&gt;m&lt;/i&gt;,&lt;i&gt;n&lt;/i&gt;)=&lt;i&gt;m&lt;/i&gt;^&lt;i&gt;n&lt;/i&gt;&amp;nbsp;is straightforward given our definition of church numerals.&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;exp&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;m.&amp;lambda;n. n m&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The predecessor function&amp;nbsp;&lt;img alt=&quot;\operatorname{pred}(n) = \begin{cases} 0 &amp;amp; \mbox{if }n=0, \\ n-1 &amp;amp; \mbox{otherwise}\end{cases}&quot; src=&quot;http://upload.wikimedia.org/math/d/8/8/d88f7732770bb1a9e84712dfc4914fa9.png&quot; style=&quot;background-color:#ffffff;background-image:initial;margin-left:0px;margin-right:0px&quot;&gt;&amp;nbsp;works by generating an&amp;nbsp;&lt;i&gt;n&lt;/i&gt;-fold composition of functions that each apply their argument&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;g&lt;/font&gt;&amp;nbsp;to&lt;font face=&quot;Courier New&quot;&gt;f&lt;/font&gt;; the base case discards its copy of&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;f&lt;/font&gt;&amp;nbsp;and returns&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;x&lt;/font&gt;.&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;pred&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;n.&amp;lambda;f.&amp;lambda;x. n (&amp;lambda;g.&amp;lambda;h. h (g f)) (&amp;lambda;u. x) (&amp;lambda;u. u)&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The subtraction function can be written based on the predecessor function.&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;sub&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;m.&amp;lambda;n. (n&amp;nbsp;&lt;b&gt;pred&lt;/b&gt;) m&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The zero predicate can be written as:&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;zero?&lt;/b&gt;&amp;nbsp;&amp;equiv;&amp;nbsp;&lt;font face=&quot;Courier New&quot;&gt;&amp;lambda;n. n (&amp;lambda;x.F) T&lt;/font&gt;&lt;/font&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;From the brief instruction above, we know that the church number is based on the lambda calculus. Actually, all numbers are lambda calculus, or function, this name may be more easily understandable.&lt;/font&gt;&lt;/p&gt;&lt;font face=&quot;Courier New&quot;&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defvar zero&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun succ&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall f &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)))))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun plus&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;m n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall m f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)))))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun mult&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;m n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall m f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun pred&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;g&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;h&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall h &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall g f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)))))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;u&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;u&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;u&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)))))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;sub&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;m n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;com&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#808080&quot;&gt;&lt;font size=&quot;2&quot;&gt;#&amp;#39;pred) m))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun cexp&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;m n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n m&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun czerop&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall n &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;nil&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; t&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;int&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;to&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;cn&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;n&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;if&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(=&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; n &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#800000&quot;&gt;&lt;font size=&quot;2&quot;&gt;0&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall f &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;int&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;to&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;cn &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; n &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#800000&quot;&gt;&lt;font size=&quot;2&quot;&gt;1&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; f&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))))))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;defun cn&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;to&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;-&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;int&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;cn&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&amp;nbsp; &lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;funcall cn &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#00008b&quot;&gt;&lt;font size=&quot;2&quot;&gt;lambda&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;(&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;x&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)(+&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt; x &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#800000&quot;&gt;&lt;font size=&quot;2&quot;&gt;1&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;)))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; &lt;span class=&quot;lit&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#800000&quot;&gt;&lt;font size=&quot;2&quot;&gt;0&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px;vertical-align:baseline&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font size=&quot;2&quot;&gt;))&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;br&gt;&lt;div&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/Capture1.png&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1099&quot; height=&quot;338&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/Capture1.png&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;Capture&quot; width=&quot;454&quot;&gt;&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/lispchruch-number-and-common-lisp_21.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-5410200178974908780</guid><pubDate>Sat, 21 Aug 2010 08:53:00 +0000</pubDate><atom:updated>2010-08-21T01:53:22.057-07:00</atom:updated><title>那些逝去的琐碎(2)</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1103&quot; id=&quot;tnqi&quot; title=&quot;http://www.jdxyw.com/?p=1103&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1103&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23567;&amp;#23398;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#23398;&amp;#26657;&amp;#24182;&amp;#19981;&amp;#24590;&amp;#20040;&amp;#37325;&amp;#35270;&amp;#26657;&amp;#26381;&amp;#65292;&amp;#26377;&amp;#35746;&amp;#36807;&amp;#19968;&amp;#22871;&amp;#65292;&amp;#20294;&amp;#21482;&amp;#26159;&amp;#22312;&amp;#27599;&amp;#21608;&amp;#19968;&amp;#30340;&amp;#21319;&amp;#26071;&amp;#20363;&amp;#20250;&amp;#19978;&amp;#65292;&amp;#25110;&amp;#32773;&amp;#26159;&amp;#36816;&amp;#21160;&amp;#20250;&amp;#65292;&amp;#20845;&amp;#19968;&amp;#31561;&amp;#20840;&amp;#26657;&amp;#24615;&amp;#27963;&amp;#21160;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#25165;&amp;#20250;&amp;#35201;&amp;#27714;&amp;#31359;&amp;#65292;&amp;#24179;&amp;#24120;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#19968;&amp;#30524;&amp;#26395;&amp;#36807;&amp;#21435;&amp;#65292;&amp;#33457;&amp;#33457;&amp;#32511;&amp;#32511;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21518;&amp;#26469;&amp;#36827;&amp;#20102;&amp;#20013;&amp;#23398;&amp;#65292;&amp;#21021;&amp;#19968;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#26159;&amp;#22312;&amp;#38215;&amp;#19978;&amp;#30340;&amp;#20013;&amp;#23398;&amp;#65292;&amp;#23567;&amp;#23398;&amp;#26657;&amp;#65292;&amp;#23545;&amp;#26657;&amp;#26381;&amp;#20063;&amp;#26681;&amp;#26412;&amp;#27809;&amp;#26377;&amp;#35201;&amp;#27714;&amp;#12290;&amp;#21021;&amp;#20108;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#36716;&amp;#21040;&amp;#20102;&amp;#24066;&amp;#37324;&amp;#30340;&amp;#20013;&amp;#23398;&amp;#65292;&amp;#24320;&amp;#22987;&amp;#20102;&amp;#38271;&amp;#36798;5&amp;#24180;&amp;#30340;&amp;#33879;&amp;#21517;&amp;ldquo;&amp;#26149;&amp;#29141;&amp;rdquo;&amp;#29260;&amp;#26657;&amp;#26381;&amp;#30340;&amp;#29983;&amp;#28079;&amp;#12290;&amp;#22836;&amp;#20004;&amp;#24180;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#31179;&amp;#20908;&amp;#22825;&amp;#30340;&amp;#26657;&amp;#26381;&amp;#26159;&amp;#35201;&amp;#26377;&amp;#22810;&amp;#38590;&amp;#30475;&amp;#23601;&amp;#26377;&amp;#22810;&amp;#38590;&amp;#30475;&amp;#12290;&amp;#19978;&amp;#20102;&amp;#39640;&amp;#20013;&amp;#65292;&amp;#26657;&amp;#26381;&amp;#30340;&amp;#24335;&amp;#26679;&amp;#26377;&amp;#25152;&amp;#25913;&amp;#21464;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25105;&amp;#22312;&amp;#24066;&amp;#37324;&amp;#38754;&amp;#19978;&amp;#20013;&amp;#23398;&amp;#30340;&amp;#20116;&amp;#24180;&amp;#37324;&amp;#65292;&amp;#20960;&amp;#20046;&amp;#23601;&amp;#27809;&amp;#26377;&amp;#35265;&amp;#36807;&amp;#26377;&amp;#22899;&amp;#29983;&amp;#31359;&amp;#36807;&amp;#35033;&amp;#23376;&amp;#65292;&amp;#29616;&amp;#22312;&amp;#24819;&amp;#36215;&amp;#26469;&amp;#30495;&amp;#26159;&amp;#19968;&amp;#22823;&amp;#25022;&amp;#20107;&amp;#12290;&amp;#20854;&amp;#23454;&amp;#65292;&amp;#22799;&amp;#22825;&amp;#30340;&amp;#26657;&amp;#26381;&amp;#26159;&amp;#26377;&amp;#26657;&amp;#35033;&amp;#30340;&amp;#65292;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#22899;&amp;#29983;&amp;#37117;&amp;#19981;&amp;#31359;&amp;#65292;&amp;#24212;&amp;#35813;&amp;#26159;&amp;#35273;&amp;#30340;&amp;#20002;&amp;#19981;&amp;#36215;&amp;#37027;&amp;#20010;&amp;#20154;&amp;#21543;&amp;#12290;&amp;#25105;&amp;#21482;&amp;#35760;&amp;#24471;&amp;#26377;&amp;#19968;&amp;#27425;&amp;#65292;&amp;#23398;&amp;#26657;&amp;#26377;&amp;#20010;&amp;#22823;&amp;#22411;&amp;#30340;&amp;#27963;&amp;#21160;&amp;#65292;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#26657;&amp;#39046;&amp;#23548;&amp;#33041;&amp;#31563;&amp;#26159;&amp;#19981;&amp;#26159;&amp;#25645;&amp;#38169;&amp;#20102;&amp;#65292;&amp;#35201;&amp;#27714;&amp;#20840;&amp;#26657;&amp;#22899;&amp;#29983;&amp;#31359;&amp;#26657;&amp;#35033;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#25105;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#30693;&amp;#36947;&amp;#21407;&amp;#26469;&amp;#22899;&amp;#29983;&amp;#36824;&amp;#26159;&amp;#26377;&amp;#26657;&amp;#35033;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22799;&amp;#22825;&amp;#30340;&amp;#26657;&amp;#26381;&amp;#26159;&amp;#30333;&amp;#33394;&amp;#30340;&amp;#34924;&amp;#34923;&amp;#65292;&amp;#30007;&amp;#22899;&amp;#24046;&amp;#19981;&amp;#22810;&amp;#37117;&amp;#19968;&amp;#26679;&amp;#12290;&amp;#36825;&amp;#20010;&amp;#34915;&amp;#26381;&amp;#20854;&amp;#23454;&amp;#25402;&amp;#36879;&amp;#26126;&amp;#30340;&amp;#65292;&amp;#37324;&amp;#38754;&amp;#31359;&amp;#20160;&amp;#20040;&amp;#65292;&amp;#31245;&amp;#24494;&amp;#29992;&amp;#21147;&amp;#28857;&amp;#30475;&amp;#37117;&amp;#33021;&amp;#30475;&amp;#20010;&amp;#22823;&amp;#27010;&amp;#12290;&amp;#19978;&amp;#39640;&amp;#20108;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#29677;&amp;#19978;&amp;#26377;&amp;#20010;&amp;#22899;&amp;#29983;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#31359;&amp;#20102;&amp;#20869;&amp;#34915;&amp;#26469;&amp;#19978;&amp;#23398;&amp;#65292;&amp;#22352;&amp;#25105;&amp;#21518;&amp;#38754;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#30007;&amp;#29983;&amp;#39128;&amp;#20986;&amp;#19968;&amp;#21477;&amp;#35805;&amp;#65292;&amp;ldquo;&amp;#33016;&amp;#37096;&amp;#37027;&amp;#20040;&amp;#23567;&amp;#65292;&amp;#25140;&amp;#20160;&amp;#20040;&amp;#33016;&amp;#32617;&amp;#65311;&amp;rdquo;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22312;&amp;#20013;&amp;#23398;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#35201;&amp;#25140;&amp;#33016;&amp;#21345;&amp;#65292;&amp;#21021;&amp;#20013;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#26159;&amp;#21035;&amp;#30528;&amp;#30340;&amp;#65292;&amp;#39640;&amp;#20013;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#25442;&amp;#25104;&amp;#25346;&amp;#30528;&amp;#30340;&amp;#12290;&amp;#27599;&amp;#22825;&amp;#36824;&amp;#20250;&amp;#26377;&amp;#32769;&amp;#24072;&amp;#21644;&amp;#23398;&amp;#29983;&amp;#23450;&amp;#26399;&amp;#26816;&amp;#26597;&amp;#65292;&amp;#24456;&amp;#20687;&amp;#25490;&amp;#26597;&amp;#19968;&amp;#19979;&amp;#65292;&amp;#33258;&amp;#23478;&amp;#30340;&amp;#29399;&amp;#32676;&amp;#26159;&amp;#21542;&amp;#28151;&amp;#20837;&amp;#20102;&amp;#20182;&amp;#23478;&amp;#30340;&amp;#26434;&amp;#31181;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23398;&amp;#26657;&amp;#26377;&amp;#26412;&amp;#25991;&amp;#23398;&amp;#21002;&amp;#29289;&amp;#65292;&amp;#21483;&amp;#12298;&amp;#40140;&amp;#23665;&amp;#12299;&amp;#65292;&amp;#21002;&amp;#30331;&amp;#23398;&amp;#29983;&amp;#30340;&amp;#20064;&amp;#20316;&amp;#12290;&amp;#22312;&amp;#36825;&amp;#23398;&amp;#26657;&amp;#30340;&amp;#20960;&amp;#24180;&amp;#65292;&amp;#25105;&amp;#21482;&amp;#30475;&amp;#21040;&amp;#36807;&amp;#19968;&amp;#26412;&amp;#65292;&amp;#21018;&amp;#22909;&amp;#25105;&amp;#30340;&amp;#19968;&amp;#31687;&amp;#25991;&amp;#31456;&amp;#22312;&amp;#37324;&amp;#38754;&amp;#12290;&amp;#29616;&amp;#22312;&amp;#22238;&amp;#24819;&amp;#36215;&amp;#20013;&amp;#23398;&amp;#20889;&amp;#30340;&amp;#19968;&amp;#20123;&amp;#25991;&amp;#31456;&amp;#65292;&amp;#30495;&amp;#30340;&amp;#26159;&amp;#34394;&amp;#20266;&amp;#20570;&amp;#20316;&amp;#20043;&amp;#26497;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#27809;&amp;#21150;&amp;#27861;&amp;#65292;&amp;#20154;&amp;#22312;&amp;#23627;&amp;#27280;&amp;#19979;&amp;#65292;&amp;#19981;&amp;#24471;&amp;#19981;&amp;#20302;&amp;#22836;&amp;#65292;&amp;#35201;&amp;#26159;&amp;#33021;&amp;#37325;&amp;#22238;&amp;#21435;&amp;#19968;&amp;#27425;&amp;#65292;&amp;#25105;&amp;#32477;&amp;#19981;&amp;#20877;&amp;#20889;&amp;#37027;&amp;#26679;&amp;#30340;&amp;#25991;&amp;#31456;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21021;&amp;#20013;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#20889;&amp;#25991;&amp;#31456;&amp;#65292;&amp;#29677;&amp;#19978;&amp;#26377;&amp;#20010;&amp;#22899;&amp;#21516;&amp;#23398;&amp;#65292;&amp;#21916;&amp;#27426;&amp;#20889;&amp;#37027;&amp;#31181;&amp;#31508;&amp;#35760;&amp;#25991;&amp;#33402;&amp;#30340;&amp;#25991;&amp;#31456;&amp;#65292;&amp;#36825;&amp;#20063;&amp;#28145;&amp;#24471;&amp;#35821;&amp;#25991;&amp;#32769;&amp;#24072;&amp;#30340;&amp;#21916;&amp;#29233;&amp;#12290;&amp;#25105;&amp;#36824;&amp;#35760;&amp;#24471;&amp;#26377;&amp;#19968;&amp;#27425;&amp;#65292;&amp;#32769;&amp;#24072;&amp;#35835;&amp;#22905;&amp;#30340;&amp;#25991;&amp;#31456;&amp;#65292;&amp;#26368;&amp;#21518;&amp;#24635;&amp;#32467;&amp;#21040;&amp;#19968;&amp;#20010;&amp;#20154;&amp;#20889;&amp;#25991;&amp;#31456;&amp;#30340;&amp;#20064;&amp;#24815;&amp;#21644;&amp;#29305;&amp;#28857;&amp;#65292;&amp;#20182;&amp;#35828;&amp;#36825;&amp;#20010;&amp;#22899;&amp;#21516;&amp;#23398;&amp;#21916;&amp;#27426;&amp;#26377;&amp;#19968;&amp;#20010;&amp;#35789;&amp;#65292;&amp;ldquo;&amp;#26366;&amp;#20960;&amp;#20309;&amp;#26102;&amp;rdquo;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19978;&amp;#21021;&amp;#19977;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#29677;&amp;#20027;&amp;#20219;&amp;#23601;&amp;#29677;&amp;#19978;&amp;#35848;&amp;#24651;&amp;#29233;&amp;#30340;&amp;#20107;&amp;#24773;&amp;#35762;&amp;#20102;&amp;#19968;&amp;#27573;&amp;#35805;&amp;#65292;&amp;#22823;&amp;#27010;&amp;#30340;&amp;#24847;&amp;#24605;&amp;#26159;&amp;#65292;&amp;ldquo;&amp;#20320;&amp;#29616;&amp;#22312;&amp;#36824;&amp;#26159;&amp;#23398;&amp;#29983;&amp;#65292;&amp;#25509;&amp;#35302;&amp;#30340;&amp;#20154;&amp;#19981;&amp;#22810;&amp;#65292;&amp;#30524;&amp;#30028;&amp;#24456;&amp;#23567;&amp;#65292;&amp;#31561;&amp;#20320;&amp;#19978;&amp;#20102;&amp;#22823;&amp;#23398;&amp;#65292;&amp;#20986;&amp;#20102;&amp;#31038;&amp;#20250;&amp;#65292;&amp;#20320;&amp;#23601;&amp;#20250;&amp;#35273;&amp;#30340;&amp;#19990;&amp;#30028;&amp;#26377;&amp;#22810;&amp;#24191;&amp;#38420;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#36873;&amp;#25321;&amp;#20250;&amp;#26356;&amp;#22810;&amp;#26356;&amp;#22909;&amp;#65292;&amp;#25152;&amp;#20197;&amp;#29616;&amp;#22312;&amp;#19981;&amp;#35201;&amp;#35848;&amp;#24651;&amp;#29233;&amp;#12290;&amp;rdquo;&amp;#25105;&amp;#23545;&amp;#36825;&amp;#21477;&amp;#35805;&amp;#30340;&amp;#29702;&amp;#35299;&amp;#32463;&amp;#21382;&amp;#20102;&amp;#19977;&amp;#20010;&amp;#38454;&amp;#27573;&amp;#12290;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#21548;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#35273;&amp;#30340;&amp;#32769;&amp;#24072;&amp;#22312;&amp;#25199;&amp;#34507;&amp;#65292;&amp;#36825;&amp;#21482;&amp;#26159;&amp;#20026;&amp;#20102;&amp;#21149;&amp;#38459;&amp;#26089;&amp;#24651;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#20511;&amp;#21475;&amp;#12290;&amp;#31561;&amp;#19978;&amp;#20102;&amp;#22823;&amp;#23398;&amp;#20043;&amp;#21518;&amp;#65292;&amp;#35265;&amp;#35782;&amp;#20102;&amp;#19968;&amp;#20123;&amp;#65292;&amp;#35273;&amp;#30340;&amp;#32769;&amp;#24072;&amp;#24403;&amp;#21021;&amp;#30340;&amp;#35805;&amp;#20063;&amp;#19981;&amp;#26080;&amp;#36947;&amp;#29702;&amp;#65292;&amp;#24212;&amp;#35813;&amp;#20570;&amp;#20010;&amp;#20964;&amp;#22992;&amp;#21475;&amp;#20013;&amp;#30340;&amp;#26377;&amp;#22823;&amp;#23616;&amp;#35266;&amp;#30340;&amp;#20154;&amp;#12290;&amp;#31561;&amp;#25105;&amp;#27605;&amp;#19994;&amp;#20102;&amp;#65292;&amp;#25105;&amp;#24320;&amp;#22987;&amp;#32673;&amp;#24917;&amp;#37027;&amp;#20123;&amp;#22312;&amp;#20013;&amp;#23398;&amp;#23601;&amp;#24320;&amp;#22987;&amp;#25171;&amp;#24773;&amp;#39554;&amp;#20431;&amp;#65292;&amp;#30473;&amp;#26469;&amp;#30524;&amp;#21435;&amp;#30340;&amp;#30007;&amp;#30007;&amp;#22899;&amp;#22899;&amp;#20204;&amp;#65292;&amp;#35273;&amp;#30340;&amp;#32769;&amp;#24072;&amp;#24403;&amp;#21021;&amp;#30340;&amp;#37027;&amp;#27573;&amp;#35805;&amp;#26159;&amp;#30334;&amp;#20998;&amp;#20043;&amp;#19968;&amp;#30334;&amp;#30340;&amp;#25199;&amp;#34507;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20197;&amp;#21069;&amp;#19981;&amp;#35273;&amp;#30340;&amp;#20013;&amp;#23398;&amp;#30340;&amp;#37027;&amp;#20123;&amp;#22899;&amp;#29983;&amp;#26377;&amp;#22810;&amp;#20040;&amp;#28418;&amp;#20142;&amp;#12290;&amp;#19978;&amp;#20102;&amp;#22823;&amp;#23398;&amp;#20197;&amp;#21518;&amp;#65292;&amp;#26377;&amp;#20960;&amp;#27425;&amp;#22238;&amp;#27597;&amp;#26657;&amp;#30475;&amp;#26395;&amp;#19968;&amp;#20301;&amp;#32769;&amp;#24072;&amp;#65292;&amp;#30896;&amp;#24039;&amp;#36935;&amp;#19978;&amp;#25918;&amp;#23398;&amp;#65292;&amp;#25105;&amp;#22312;&amp;#20154;&amp;#32676;&amp;#20013;&amp;#36870;&amp;#27969;&amp;#32780;&amp;#19978;&amp;#65292;&amp;#31361;&amp;#28982;&amp;#35273;&amp;#30340;&amp;#65292;&amp;#36825;&amp;#37324;&amp;#20063;&amp;#26159;&amp;#20010;&amp;#32654;&amp;#22899;&amp;#36744;&amp;#20986;&amp;#30340;&amp;#22320;&amp;#26041;&amp;#12290;&amp;#25105;&amp;#23601;&amp;#32435;&amp;#38391;&amp;#65292;&amp;#25105;&amp;#24453;&amp;#20102;&amp;#20116;&amp;#24180;&amp;#24590;&amp;#20040;&amp;#23601;&amp;#27809;&amp;#26377;&amp;#30631;&amp;#20986;&amp;#26469;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26377;&amp;#19968;&amp;#27425;&amp;#19978;&amp;#26657;&amp;#20869;&amp;#65292;&amp;#32763;&amp;#30475;&amp;#20102;&amp;#20960;&amp;#20301;&amp;#20013;&amp;#23398;&amp;#22899;&amp;#26657;&amp;#21451;&amp;#30340;&amp;#36817;&amp;#26399;&amp;#29031;&amp;#29255;&amp;#65292;&amp;#26377;&amp;#30528;&amp;#23451;&amp;#33509;&amp;#38548;&amp;#19990;&amp;#30340;&amp;#24863;&amp;#35273;&amp;#65292;&amp;#19982;&amp;#25105;&amp;#35760;&amp;#24518;&amp;#20013;&amp;#30340;&amp;#37027;&amp;#20123;&amp;#30887;&amp;#29577;&amp;#20043;&amp;#24180;&amp;#30340;&amp;#23569;&amp;#22899;&amp;#30340;&amp;#24418;&amp;#35937;&amp;#24046;&amp;#21035;&amp;#24456;&amp;#22823;&amp;#12290;&amp;#35768;&amp;#22810;&amp;#24403;&amp;#21021;&amp;#35273;&amp;#30340;&amp;#19981;&amp;#24590;&amp;#20040;&amp;#26679;&amp;#30340;&amp;#22899;&amp;#29983;&amp;#65292;&amp;#29616;&amp;#22312;&amp;#30475;&amp;#36215;&amp;#26469;&amp;#20063;&amp;#26159;&amp;#21035;&amp;#26377;&amp;#39118;&amp;#38901;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20013;&amp;#23398;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#34429;&amp;#28982;&amp;#25104;&amp;#32489;&amp;#22909;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#22312;&amp;#23398;&amp;#26657;&amp;#30340;&amp;#26376;&amp;#32771;&amp;#65292;&amp;#26399;&amp;#26411;&amp;#32771;&amp;#21644;&amp;#27169;&amp;#25311;&amp;#32771;&amp;#20013;&amp;#24456;&amp;#23569;&amp;#25343;&amp;#36807;&amp;#24180;&amp;#27573;&amp;#31532;&amp;#19968;&amp;#65292;&amp;#22823;&amp;#22810;&amp;#26159;&amp;#22312;&amp;#31532;&amp;#22235;&amp;#20116;&amp;#21517;&amp;#24038;&amp;#21491;&amp;#28014;&amp;#21160;&amp;#12290;&amp;#20294;&amp;#20013;&amp;#32771;&amp;#39640;&amp;#32771;&amp;#65292;&amp;#24847;&amp;#22806;&amp;#30340;&amp;#37117;&amp;#32771;&amp;#30340;&amp;#31532;&amp;#19968;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/2.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-6650629521667123051</guid><pubDate>Sat, 21 Aug 2010 08:49:00 +0000</pubDate><atom:updated>2010-08-21T01:49:08.496-07:00</atom:updated><title>那些逝去的琐碎(1)</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1089&quot; id=&quot;sn_b&quot; title=&quot;http://www.jdxyw.com/?p=1089&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1089&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23567;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#30452;&amp;#21040;&amp;#21021;&amp;#20108;&amp;#20043;&amp;#21069;&amp;#65292;&amp;#37117;&amp;#26159;&amp;#20303;&amp;#22312;&amp;#29238;&amp;#27597;&amp;#20219;&amp;#32844;&amp;#30340;&amp;#23398;&amp;#26657;&amp;#37324;&amp;#12290;&amp;#23398;&amp;#26657;&amp;#30340;&amp;#21069;&amp;#37096;&amp;#20998;&amp;#26159;&amp;#25945;&amp;#23398;&amp;#21306;&amp;#65292;&amp;#21518;&amp;#21322;&amp;#37096;&amp;#20998;&amp;#23601;&amp;#26159;&amp;#25945;&amp;#32844;&amp;#24037;&amp;#30340;&amp;#23487;&amp;#33293;&amp;#21306;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25945;&amp;#23398;&amp;#21306;&amp;#21482;&amp;#26377;&amp;#19968;&amp;#26635;&amp;#20116;&amp;#23618;&amp;#27004;&amp;#30340;&amp;#25945;&amp;#23398;&amp;#27004;&amp;#12290;&amp;#25945;&amp;#23398;&amp;#27004;&amp;#21069;&amp;#38754;&amp;#26159;&amp;#25805;&amp;#22330;&amp;#65292;&amp;#19968;&amp;#21322;&amp;#26159;&amp;#27700;&amp;#27877;&amp;#22320;&amp;#30340;&amp;#31726;&amp;#29699;&amp;#22330;&amp;#65292;&amp;#21478;&amp;#19968;&amp;#21322;&amp;#26159;&amp;#22303;&amp;#25805;&amp;#22330;&amp;#12290;&amp;#27599;&amp;#27425;&amp;#26089;&amp;#19978;&amp;#20840;&amp;#26657;&amp;#20570;&amp;#35838;&amp;#38388;&amp;#25805;&amp;#65292;&amp;#25110;&amp;#26159;&amp;#19979;&amp;#35838;&amp;#26102;&amp;#23398;&amp;#29983;&amp;#22312;&amp;#25805;&amp;#22330;&amp;#19978;&amp;#28385;&amp;#22330;&amp;#36305;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25805;&amp;#22330;&amp;#19978;&amp;#31354;&amp;#23601;&amp;#20250;&amp;#29983;&amp;#27668;&amp;#19968;&amp;#29255;&amp;#29255;&amp;#30340;&amp;ldquo;&amp;#31077;&amp;#20113;&amp;rdquo;&amp;#12290;&amp;#35760;&amp;#24471;&amp;#26377;&amp;#19968;&amp;#24180;&amp;#65292;&amp;#22823;&amp;#27010;&amp;#26159;&amp;#22235;&amp;#24180;&amp;#32423;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#31179;&amp;#20908;&amp;#23395;&amp;#33410;&amp;#65292;&amp;#38632;&amp;#27700;&amp;#31232;&amp;#23569;&amp;#65292;&amp;#23576;&amp;#22303;&amp;#39134;&amp;#25196;&amp;#30340;&amp;#26356;&amp;#26159;&amp;#21385;&amp;#23475;&amp;#12290;&amp;#20110;&amp;#26159;&amp;#20840;&amp;#26657;&amp;#30340;&amp;#39640;&amp;#24180;&amp;#32423;&amp;#36718;&amp;#27969;&amp;#65292;&amp;#27599;&amp;#20010;&amp;#29677;&amp;#26089;&amp;#19978;&amp;#37117;&amp;#35201;&amp;#32473;&amp;#36825;&amp;#29255;&amp;#22303;&amp;#25805;&amp;#22330;&amp;#27922;&amp;#27700;&amp;#65292;&amp;#19981;&amp;#36807;&amp;#25928;&amp;#26524;&amp;#19981;&amp;#22823;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25805;&amp;#22330;&amp;#20013;&amp;#22830;&amp;#21407;&amp;#26412;&amp;#26377;&amp;#20116;&amp;#26869;&amp;#39640;&amp;#22823;&amp;#30340;&amp;#33510;&amp;#26973;&amp;#23376;&amp;#26641;&amp;#65292;&amp;#20294;&amp;#21364;&amp;#19981;&amp;#33538;&amp;#30427;&amp;#12290;&amp;#20013;&amp;#22830;&amp;#30340;&amp;#20004;&amp;#26869;&amp;#19978;&amp;#36824;&amp;#26377;&amp;#40479;&amp;#31389;&amp;#12290;&amp;#22312;&amp;#25105;&amp;#24456;&amp;#23567;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#26366;&amp;#32463;&amp;#26377;&amp;#22823;&amp;#23401;&amp;#23376;&amp;#25171;&amp;#19979;&amp;#20010;&amp;#40479;&amp;#31389;&amp;#65292;&amp;#36882;&amp;#32473;&amp;#25105;&amp;#19968;&amp;#20010;&amp;#40479;&amp;#34507;&amp;#65292;&amp;#25105;&amp;#19968;&amp;#25423;&amp;#65292;&amp;#30862;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#33510;&amp;#26973;&amp;#23376;&amp;#26641;&amp;#20250;&amp;#38271;&amp;#19968;&amp;#31181;&amp;#22278;&amp;#22278;&amp;#32511;&amp;#33394;&amp;#30340;&amp;#23567;&amp;#26524;&amp;#23454;&amp;#12290;&amp;#25105;&amp;#23478;&amp;#20303;&amp;#22312;&amp;#22235;&amp;#27004;&amp;#65292;&amp;#38451;&amp;#21488;&amp;#21069;&amp;#20063;&amp;#26377;&amp;#19968;&amp;#20010;&amp;#33510;&amp;#26973;&amp;#23376;&amp;#26641;&amp;#12290;&amp;#25105;&amp;#37117;&amp;#20250;&amp;#35753;&amp;#29240;&amp;#29240;&amp;#65292;&amp;#25110;&amp;#26159;&amp;#20854;&amp;#20182;&amp;#22823;&amp;#23401;&amp;#23376;&amp;#65292;&amp;#22312;&amp;#31481;&amp;#31487;&amp;#19978;&amp;#24324;&amp;#20010;&amp;#38081;&amp;#38057;&amp;#65292;&amp;#25226;&amp;#37027;&amp;#19968;&amp;#20018;&amp;#20018;&amp;#30340;&amp;#26524;&amp;#23454;&amp;#32473;&amp;#25105;&amp;#38057;&amp;#36807;&amp;#26469;&amp;#12290;&amp;#36825;&amp;#20010;&amp;#19996;&amp;#35199;&amp;#20063;&amp;#27809;&amp;#26377;&amp;#65292;&amp;#20063;&amp;#23601;&amp;#25918;&amp;#30528;&amp;#22909;&amp;#29609;&amp;#12290;&amp;#21482;&amp;#35760;&amp;#24471;&amp;#26377;&amp;#19968;&amp;#27425;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#36825;&amp;#20123;&amp;#22823;&amp;#22823;&amp;#23567;&amp;#23567;&amp;#30340;&amp;#25945;&amp;#32844;&amp;#24037;&amp;#23376;&amp;#22899;&amp;#29992;&amp;#36825;&amp;#20123;&amp;#23567;&amp;#26524;&amp;#23454;&amp;#25171;&amp;#20102;&amp;#19968;&amp;#27425;&amp;#20183;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#33510;&amp;#26973;&amp;#23376;&amp;#26641;&amp;#36824;&amp;#24456;&amp;#20250;&amp;#38271;&amp;#19968;&amp;#31181;&amp;#23567;&amp;#34411;&amp;#23376;&amp;#65292;&amp;#38738;&amp;#33394;&amp;#30340;&amp;#65292;&amp;#36830;&amp;#30528;&amp;#19997;&amp;#65292;&amp;#20174;&amp;#26641;&amp;#19978;&amp;#39640;&amp;#39640;&amp;#30340;&amp;#22402;&amp;#19979;&amp;#65292;&amp;#20320;&amp;#22312;&amp;#26641;&amp;#19979;&amp;#19968;&amp;#19981;&amp;#23567;&amp;#24515;&amp;#23601;&amp;#20250;&amp;#30896;&amp;#19978;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#26377;&amp;#19968;&amp;#24180;&amp;#65292;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#20986;&amp;#20102;&amp;#20160;&amp;#20040;&amp;#20107;&amp;#24773;&amp;#65292;&amp;#19968;&amp;#22823;&amp;#26089;&amp;#36215;&amp;#26469;&amp;#65292;&amp;#21457;&amp;#29616;&amp;#25972;&amp;#20010;&amp;#25805;&amp;#22330;&amp;#24067;&amp;#28385;&amp;#20102;&amp;#38738;&amp;#33394;&amp;#30340;&amp;#23567;&amp;#34411;&amp;#23376;&amp;#12290;&amp;#25105;&amp;#26412;&amp;#24597;&amp;#34411;&amp;#23376;&amp;#65292;&amp;#35828;&amp;#20160;&amp;#20040;&amp;#20063;&amp;#19981;&amp;#32943;&amp;#36367;&amp;#20837;&amp;#25805;&amp;#22330;&amp;#19968;&amp;#27493;&amp;#12290;&amp;#26368;&amp;#21518;&amp;#36824;&amp;#26159;&amp;#32769;&amp;#24072;&amp;#20204;&amp;#20859;&amp;#30340;&amp;#40481;&amp;#35299;&amp;#20915;&amp;#20102;&amp;#36825;&amp;#20010;&amp;#38590;&amp;#39064;&amp;#65292;&amp;#36825;&amp;#20123;&amp;#40481;&amp;#20204;&amp;#20063;&amp;#24841;&amp;#24555;&amp;#30340;&amp;#20139;&amp;#29992;&amp;#20102;&amp;#19968;&amp;#27425;&amp;#22823;&amp;#39184;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21518;&amp;#26469;&amp;#36825;&amp;#20123;&amp;#33510;&amp;#26973;&amp;#23376;&amp;#26641;&amp;#37117;&amp;#34987;&amp;#38191;&amp;#20102;&amp;#65292;&amp;#20294;&amp;#36825;&amp;#37324;&amp;#26377;&amp;#20010;&amp;#23567;&amp;#25554;&amp;#26354;&amp;#12290;&amp;#36825;&amp;#20123;&amp;#26641;&amp;#65292;&amp;#22312;&amp;#23567;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#34987;&amp;#35841;&amp;#35746;&amp;#20102;&amp;#22909;&amp;#22810;&amp;#30340;&amp;#38025;&amp;#23376;&amp;#36827;&amp;#21435;&amp;#65292;&amp;#32467;&amp;#26524;&amp;#20351;&amp;#24471;&amp;#36825;&amp;#20123;&amp;#30005;&amp;#38191;&amp;#30340;&amp;#38142;&amp;#26465;&amp;#19977;&amp;#30058;&amp;#20116;&amp;#27425;&amp;#22351;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23398;&amp;#26657;&amp;#37324;&amp;#36824;&amp;#31181;&amp;#30528;&amp;#32511;&amp;#31729;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#25105;&amp;#26368;&amp;#28145;&amp;#24694;&amp;#30171;&amp;#32477;&amp;#30340;&amp;#26893;&amp;#29289;&amp;#20102;&amp;#12290;&amp;#22240;&amp;#20026;&amp;#23427;&amp;#20250;&amp;#38271;&amp;#19968;&amp;#31181;&amp;#32511;&amp;#33394;&amp;#30340;&amp;#34411;&amp;#23376;&amp;#65292;&amp;#19982;&amp;#33510;&amp;#26973;&amp;#23376;&amp;#30340;&amp;#23567;&amp;#34411;&amp;#23376;&amp;#19981;&amp;#21516;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#34411;&amp;#23376;&amp;#21487;&amp;#20197;&amp;#38271;&amp;#30340;&amp;#24456;&amp;#22823;&amp;#65292;&amp;#26368;&amp;#22823;&amp;#30340;&amp;#65292;&amp;#20320;&amp;#21435;&amp;#30475;&amp;#30475;&amp;#19968;&amp;#33324;&amp;#30340;&amp;#26085;&amp;#26412;&amp;#29233;&amp;#24773;&amp;#21160;&amp;#20316;&amp;#29255;&amp;#23601;&amp;#22823;&amp;#27010;&amp;#30693;&amp;#36947;&amp;#26377;&amp;#22810;&amp;#22823;&amp;#20102;&amp;#12290;&amp;#36825;&amp;#20123;&amp;#32511;&amp;#31729;&amp;#21448;&amp;#31181;&amp;#22312;&amp;#20986;&amp;#20837;&amp;#22823;&amp;#38376;&amp;#21475;&amp;#30340;&amp;#24517;&amp;#32463;&amp;#20043;&amp;#36335;&amp;#30340;&amp;#20004;&amp;#26049;&amp;#30340;&amp;#33457;&amp;#22363;&amp;#37324;&amp;#65292;&amp;#27599;&amp;#27425;&amp;#38271;&amp;#34411;&amp;#23376;&amp;#30340;&amp;#23395;&amp;#33410;&amp;#36890;&amp;#36807;&amp;#36825;&amp;#26465;&amp;#36947;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#24635;&amp;#26159;&amp;#20957;&amp;#31070;&amp;#23450;&amp;#27668;&amp;#65292;&amp;#30830;&amp;#20445;&amp;#19981;&amp;#24448;&amp;#20004;&amp;#36793;&amp;#36716;&amp;#22836;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26657;&amp;#22253;&amp;#37324;&amp;#38754;&amp;#36824;&amp;#26377;&amp;#19968;&amp;#31181;&amp;#33457;&amp;#65292;&amp;#25105;&amp;#21483;&amp;#23427;&amp;ldquo;&amp;#22320;&amp;#34174;&amp;#33457;&amp;rdquo;&amp;#65292;&amp;#25105;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#23427;&amp;#30495;&amp;#27491;&amp;#30340;&amp;#21517;&amp;#23383;&amp;#21483;&amp;#20160;&amp;#20040;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#23427;&amp;#30340;&amp;#31181;&amp;#23376;&amp;#30830;&amp;#23454;&amp;#20687;&amp;#19968;&amp;#39063;&amp;#22320;&amp;#38647;&amp;#12290;&amp;#36825;&amp;#26893;&amp;#29289;&amp;#29983;&amp;#21629;&amp;#21147;&amp;#24456;&amp;#26159;&amp;#39037;&amp;#24378;&amp;#65292;&amp;#24635;&amp;#26159;&amp;#19968;&amp;#33580;&amp;#19968;&amp;#33580;&amp;#30340;&amp;#25509;&amp;#30528;&amp;#38271;&amp;#12290;&amp;#33457;&amp;#37117;&amp;#26159;&amp;#32043;&amp;#32418;&amp;#33394;&amp;#65292;&amp;#20063;&amp;#26377;&amp;#23569;&amp;#37096;&amp;#20998;&amp;#20854;&amp;#20182;&amp;#30340;&amp;#39068;&amp;#33394;&amp;#12290;&amp;#27599;&amp;#21040;&amp;#24320;&amp;#33457;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#26368;&amp;#21916;&amp;#27426;&amp;#21435;&amp;#21093;&amp;#23427;&amp;#30340;&amp;#36825;&amp;#31181;&amp;#29609;&amp;#65292;&amp;#36825;&amp;#33457;&amp;#22312;&amp;#26657;&amp;#20869;&amp;#26377;&amp;#22909;&amp;#20960;&amp;#22788;&amp;#65292;&amp;#19968;&amp;#29255;&amp;#29255;&amp;#30340;&amp;#65292;&amp;#31181;&amp;#23376;&amp;#20063;&amp;#24456;&amp;#22810;&amp;#65292;&amp;#19981;&amp;#19968;&amp;#20250;&amp;#23601;&amp;#33021;&amp;#24324;&amp;#19968;&amp;#22823;&amp;#25226;&amp;#12290;&amp;#20063;&amp;#27809;&amp;#20160;&amp;#20040;&amp;#29992;&amp;#65292;&amp;#23601;&amp;#20002;&amp;#30528;&amp;#29609;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26657;&amp;#20869;&amp;#36824;&amp;#31181;&amp;#26377;&amp;#24456;&amp;#22810;&amp;#30340;&amp;#31481;&amp;#23376;&amp;#65292;&amp;#27599;&amp;#21040;&amp;#21040;&amp;#23398;&amp;#26657;&amp;#22823;&amp;#25195;&amp;#38500;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#37117;&amp;#20250;&amp;#26377;&amp;#32769;&amp;#24072;&amp;#21435;&amp;#20462;&amp;#21098;&amp;#36825;&amp;#20123;&amp;#31481;&amp;#23376;&amp;#12290;&amp;#36825;&amp;#20010;&amp;#26102;&amp;#20505;&amp;#25105;&amp;#23601;&amp;#20250;&amp;#24456;&amp;#24320;&amp;#24515;&amp;#30340;&amp;#20174;&amp;#37027;&amp;#20123;&amp;#30733;&amp;#19979;&amp;#26469;&amp;#30340;&amp;#31481;&amp;#23376;&amp;#20013;&amp;#36339;&amp;#20986;&amp;#25287;&amp;#25351;&amp;#31895;&amp;#32454;&amp;#30340;&amp;#65292;&amp;#26368;&amp;#31508;&amp;#30452;&amp;#65292;&amp;#26368;&amp;#28418;&amp;#20142;&amp;#30340;&amp;#31481;&amp;#26525;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25805;&amp;#22330;&amp;#30340;&amp;#21478;&amp;#22806;&amp;#19968;&amp;#22836;&amp;#20063;&amp;#26159;&amp;#19968;&amp;#23567;&amp;#22359;&amp;#27801;&amp;#22303;&amp;#22320;&amp;#65292;&amp;#26377;&amp;#20004;&amp;#22359;&amp;#27700;&amp;#27877;&amp;#20050;&amp;#20051;&amp;#29699;&amp;#21488;&amp;#21644;&amp;#19968;&amp;#20010;&amp;#27801;&amp;#22353;&amp;#12290;&amp;#26257;&amp;#26399;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#36825;&amp;#37324;&amp;#27809;&amp;#20154;&amp;#25171;&amp;#25195;&amp;#65292;&amp;#26434;&amp;#33609;&amp;#21487;&amp;#20197;&amp;#38271;&amp;#30340;&amp;#24456;&amp;#39640;&amp;#12290;&amp;#25105;&amp;#27809;&amp;#20107;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#23601;&amp;#21435;&amp;#25300;&amp;#33609;&amp;#29609;&amp;#65292;&amp;#25300;&amp;#23436;&amp;#20102;&amp;#23601;&amp;#22475;&amp;#21040;&amp;#27801;&amp;#22353;&amp;#37324;&amp;#38754;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24456;&amp;#23567;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#29240;&amp;#29240;&amp;#22312;&amp;#25805;&amp;#22330;&amp;#20013;&amp;#22830;&amp;#30340;&amp;#20004;&amp;#22836;&amp;#21508;&amp;#31181;&amp;#20102;&amp;#19968;&amp;#26869;&amp;#27029;&amp;#26641;&amp;#12290;&amp;#24180;&amp;#38271;&amp;#30340;&amp;#27029;&amp;#26641;&amp;#37117;&amp;#38271;&amp;#30340;&amp;#21448;&amp;#39640;&amp;#21448;&amp;#22823;&amp;#65292;&amp;#26641;&amp;#20896;&amp;#22914;&amp;#30422;&amp;#65292;&amp;#38750;&amp;#24120;&amp;#28418;&amp;#20142;&amp;#12290;&amp;#22810;&amp;#24180;&amp;#36807;&amp;#21435;&amp;#65292;&amp;#36825;&amp;#20123;&amp;#26641;&amp;#20063;&amp;#26377;&amp;#21313;&amp;#22810;&amp;#23681;&amp;#20102;&amp;#65292;&amp;#26368;&amp;#36817;&amp;#19968;&amp;#27425;&amp;#30475;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#24050;&amp;#32463;&amp;#23567;&amp;#26377;&amp;#35268;&amp;#27169;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#27029;&amp;#26641;&amp;#38271;&amp;#30340;&amp;#36739;&amp;#24930;&amp;#65292;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#20160;&amp;#20040;&amp;#26102;&amp;#20505;&amp;#25165;&amp;#33021;&amp;#30475;&amp;#21040;&amp;#23427;&amp;#20204;&amp;#26641;&amp;#20896;&amp;#22914;&amp;#30422;&amp;#30340;&amp;#26679;&amp;#23376;&amp;#12290;&amp;#32780;&amp;#21069;&amp;#24180;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#23567;&amp;#23398;&amp;#20063;&amp;#34987;&amp;#25764;&amp;#38144;&amp;#20102;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25945;&amp;#23398;&amp;#27004;&amp;#21518;&amp;#38754;&amp;#30340;&amp;#19968;&amp;#35282;&amp;#65292;&amp;#26377;&amp;#20960;&amp;#20010;&amp;#24456;&amp;#22823;&amp;#30340;&amp;#33457;&amp;#30406;&amp;#65292;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#22312;&amp;#20160;&amp;#20040;&amp;#26102;&amp;#20505;&amp;#32473;&amp;#20154;&amp;#31181;&amp;#19978;&amp;#20102;&amp;#19977;&amp;#35282;&amp;#26757;&amp;#12290;&amp;#36825;&amp;#20123;&amp;#19977;&amp;#35282;&amp;#26757;&amp;#38271;&amp;#30340;&amp;#26497;&amp;#20026;&amp;#26106;&amp;#30427;&amp;#65292;&amp;#27599;&amp;#21040;&amp;#24320;&amp;#33457;&amp;#30340;&amp;#23395;&amp;#33410;&amp;#65292;&amp;#22823;&amp;#27010;&amp;#20843;&amp;#20061;&amp;#24179;&amp;#26041;&amp;#31859;&amp;#30340;&amp;#26679;&amp;#23376;&amp;#65292;&amp;#37117;&amp;#34987;&amp;#22823;&amp;#32418;&amp;#33394;&amp;#30340;&amp;#33457;&amp;#26421;&amp;#35206;&amp;#30422;&amp;#30528;&amp;#65292;&amp;#38750;&amp;#24120;&amp;#28418;&amp;#20142;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25945;&amp;#23398;&amp;#27004;&amp;#21518;&amp;#38754;&amp;#26377;&amp;#20004;&amp;#26869;&amp;#26691;&amp;#26641;&amp;#21644;&amp;#20004;&amp;#39063;&amp;#26446;&amp;#23376;&amp;#26641;&amp;#65292;&amp;#37117;&amp;#20250;&amp;#32467;&amp;#26524;&amp;#65292;&amp;#20294;&amp;#32467;&amp;#20986;&amp;#26469;&amp;#30340;&amp;#26524;&amp;#23376;&amp;#37117;&amp;#20687;&amp;#33829;&amp;#20859;&amp;#19981;&amp;#33391;&amp;#30340;&amp;#26679;&amp;#23376;&amp;#12290;&amp;#25105;&amp;#21508;&amp;#21507;&amp;#36807;&amp;#19968;&amp;#20010;&amp;#65292;&amp;#21619;&amp;#36947;&amp;#26089;&amp;#24536;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23398;&amp;#26657;&amp;#20869;&amp;#36824;&amp;#26377;&amp;#19968;&amp;#26869;&amp;#30333;&amp;#29577;&amp;#20848;&amp;#65292;&amp;#20004;&amp;#26666;&amp;#33433;&amp;#33993;&amp;#65292;&amp;#19968;&amp;#19995;&amp;#33590;&amp;#33457;&amp;#65292;&amp;#25968;&amp;#26869;&amp;#26690;&amp;#33457;&amp;#12290;&amp;#20197;&amp;#21069;&amp;#27809;&amp;#24590;&amp;#20040;&amp;#27880;&amp;#24847;&amp;#65292;&amp;#29616;&amp;#22312;&amp;#19968;&amp;#28165;&amp;#28857;&amp;#65292;&amp;#35273;&amp;#30340;&amp;#33457;&amp;#30340;&amp;#31181;&amp;#31867;&amp;#20063;&amp;#36824;&amp;#25402;&amp;#22810;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/1.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-6339847505926173139</guid><pubDate>Sat, 21 Aug 2010 08:48:00 +0000</pubDate><atom:updated>2010-08-21T01:48:59.010-07:00</atom:updated><title>上海书展半日游</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1086&quot; id=&quot;w7-:&quot; title=&quot;http://www.jdxyw.com/?p=1086&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1086&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#39764;&amp;#37117;&amp;#20170;&amp;#26085;&amp;#30340;&amp;#22825;&amp;#27668;&amp;#36924;&amp;#36817;40&amp;#24230;&amp;#65292;&amp;#39556;&amp;#38451;&amp;#28872;&amp;#26085;&amp;#65292;&amp;#25105;&amp;#19968;&amp;#36523;&amp;#32511;&amp;#33394;&amp;#30340;&amp;#34915;&amp;#26381;&amp;#65292;&amp;#19981;&amp;#19968;&amp;#20250;&amp;#20799;&amp;#23601;&amp;#21464;&amp;#25104;&amp;#20102;&amp;#26001;&amp;#26001;&amp;#22696;&amp;#32511;&amp;#33394;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23613;&amp;#31649;&amp;#22825;&amp;#27668;&amp;#21313;&amp;#20998;&amp;#30340;&amp;#28814;&amp;#28909;&amp;#65292;&amp;#19978;&amp;#28023;&amp;#23637;&amp;#35272;&amp;#20013;&amp;#24515;&amp;#30340;&amp;#38754;&amp;#31215;&amp;#20063;&amp;#22815;&amp;#22823;&amp;#65292;&amp;#21487;&amp;#26159;&amp;#24029;&amp;#27969;&amp;#19981;&amp;#24687;&amp;#30340;&amp;#20154;&amp;#32676;&amp;#36824;&amp;#26159;&amp;#35753;&amp;#19978;&amp;#19979;&amp;#20004;&amp;#23618;&amp;#30340;&amp;#22622;&amp;#30340;&amp;#28385;&amp;#28385;&amp;#24403;&amp;#24403;&amp;#12290;&amp;#22312;&amp;#36825;&amp;#20010;&amp;#32593;&amp;#32476;&amp;#20070;&amp;#24215;&amp;#22823;&amp;#34892;&amp;#20854;&amp;#36947;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#30005;&amp;#23376;&amp;#38405;&amp;#35835;&amp;#24322;&amp;#20891;&amp;#31361;&amp;#36215;&amp;#30340;&amp;#26102;&amp;#20195;&amp;#65292;&amp;#20316;&amp;#20026;&amp;#19968;&amp;#21517;&amp;#38405;&amp;#35835;&amp;#29233;&amp;#22909;&amp;#32773;&amp;#65292;&amp;#30475;&amp;#21040;&amp;#27492;&amp;#24773;&amp;#27492;&amp;#26223;&amp;#36824;&amp;#26159;&amp;#26377;&amp;#20123;&amp;#35768;&amp;#30340;&amp;#24863;&amp;#21497;&amp;#12290;&amp;#27605;&amp;#31455;&amp;#65292;&amp;#21516;&amp;#36947;&amp;#20013;&amp;#20154;&amp;#36824;&amp;#26159;&amp;#26377;&amp;#35768;&amp;#22810;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#27604;&amp;#36215;&amp;#24191;&amp;#22823;&amp;#30340;&amp;#22522;&amp;#25968;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#36824;&amp;#26159;&amp;#26174;&amp;#24471;&amp;#30340;&amp;#28218;&amp;#23567;&amp;#12290;&amp;#35768;&amp;#22810;&amp;#22823;&amp;#22478;&amp;#24066;&amp;#30340;&amp;#29420;&amp;#31435;&amp;#20070;&amp;#24215;&amp;#27491;&amp;#22312;&amp;#19981;&amp;#26029;&amp;#33806;&amp;#32553;&amp;#65292;&amp;#21363;&amp;#20351;&amp;#26159;&amp;#22312;&amp;#19978;&amp;#28023;&amp;#65292;&amp;#21435;&amp;#24180;&amp;#38485;&amp;#35199;&amp;#21335;&amp;#36335;&amp;#30340;&amp;#23395;&amp;#39118;&amp;#20070;&amp;#24215;&amp;#20063;&amp;#23558;&amp;#23558;&amp;#35201;&amp;#36973;&amp;#36935;&amp;#20851;&amp;#38376;&amp;#30340;&amp;#21380;&amp;#36816;&amp;#12290;&amp;#21487;&amp;#26159;&amp;#65292;&amp;#38395;&amp;#21548;&amp;#35802;&amp;#21697;&amp;#20070;&amp;#24215;&amp;#23601;&amp;#35201;&amp;#36827;&amp;#20837;&amp;#21335;&amp;#20140;&amp;#65292;&amp;#24515;&amp;#20013;&amp;#21363;&amp;#26159;&amp;#36951;&amp;#25022;&amp;#21448;&amp;#26159;&amp;#24320;&amp;#24515;&amp;#12290;&amp;#36951;&amp;#25022;&amp;#30340;&amp;#26159;&amp;#27809;&amp;#26377;&amp;#36827;&amp;#20837;&amp;#19978;&amp;#28023;&amp;#65292;&amp;#24320;&amp;#24515;&amp;#30340;&amp;#26159;&amp;#65292;&amp;#22914;&amp;#26524;&amp;#35802;&amp;#21697;&amp;#33021;&amp;#22815;&amp;#22312;&amp;#21335;&amp;#20140;&amp;#23384;&amp;#27963;&amp;#19979;&amp;#21435;&amp;#65292;&amp;#22312;&amp;#19978;&amp;#28023;&amp;#24320;&amp;#24215;&amp;#20063;&amp;#23601;&amp;#25351;&amp;#26085;&amp;#21487;&amp;#24453;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24819;&amp;#35201;&amp;#20080;&amp;#28207;&amp;#21488;&amp;#20070;&amp;#30340;&amp;#20070;&amp;#21451;&amp;#20204;&amp;#23601;&amp;#19981;&amp;#35201;&amp;#20877;&amp;#25265;&amp;#26377;&amp;#24187;&amp;#24819;&amp;#20102;&amp;#12290;&amp;#19968;&amp;#26041;&amp;#38754;&amp;#65292;&amp;#28207;&amp;#21488;&amp;#20070;&amp;#30340;&amp;#25968;&amp;#37327;&amp;#38750;&amp;#24120;&amp;#23569;&amp;#65292;&amp;#32780;&amp;#19988;&amp;#31181;&amp;#31867;&amp;#38750;&amp;#24120;&amp;#30340;&amp;#21333;&amp;#19968;&amp;#12290;&amp;#19968;&amp;#27004;&amp;#21482;&amp;#26377;&amp;#20960;&amp;#20010;&amp;#20070;&amp;#26550;&amp;#26159;&amp;#28207;&amp;#29256;&amp;#30340;&amp;#20070;&amp;#31821;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#20540;&amp;#24471;&amp;#19968;&amp;#30475;&amp;#30340;&amp;#20070;&amp;#12290;&amp;#21488;&amp;#29256;&amp;#30340;&amp;#20070;&amp;#22312;&amp;#20108;&amp;#27004;&amp;#65292;&amp;#32477;&amp;#22823;&amp;#22810;&amp;#25968;&amp;#30340;&amp;#26159;&amp;#20171;&amp;#32461;&amp;#21488;&amp;#28286;&amp;#26053;&amp;#28216;&amp;#65292;&amp;#32654;&amp;#39135;&amp;#21644;&amp;#39118;&amp;#20809;&amp;#30340;&amp;#20070;&amp;#31821;&amp;#65292;&amp;#21478;&amp;#22806;&amp;#19968;&amp;#22823;&amp;#37096;&amp;#20998;&amp;#23601;&amp;#26159;&amp;#20171;&amp;#32461;&amp;#21488;&amp;#28286;&amp;#21407;&amp;#20303;&amp;#27665;&amp;#30340;&amp;#20070;&amp;#31821;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21508;&amp;#22320;&amp;#20986;&amp;#29256;&amp;#31038;&amp;#30340;&amp;#20070;&amp;#31821;&amp;#24456;&amp;#19968;&amp;#33324;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20142;&amp;#28857;&amp;#65292;&amp;#22823;&amp;#22810;&amp;#26159;&amp;#32654;&amp;#39135;&amp;#65292;&amp;#20859;&amp;#29983;&amp;#65292;&amp;#21307;&amp;#30103;&amp;#65292;&amp;#32946;&amp;#20799;&amp;#65292;&amp;#30246;&amp;#36523;&amp;#65292;&amp;#32654;&amp;#23481;&amp;#31561;&amp;#30021;&amp;#38144;&amp;#20070;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19977;&amp;#32852;&amp;#20986;&amp;#29256;&amp;#31038;&amp;#36825;&amp;#27425;&amp;#35753;&amp;#25105;&amp;#24456;&amp;#22833;&amp;#26395;&amp;#65292;&amp;#20316;&amp;#20026;&amp;#25105;&amp;#26368;&amp;#21916;&amp;#27426;&amp;#30340;&amp;#19968;&amp;#23478;&amp;#20986;&amp;#29256;&amp;#31038;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#35753;&amp;#25105;&amp;#26377;&amp;#30524;&amp;#30555;&amp;#19968;&amp;#20142;&amp;#30340;&amp;#24863;&amp;#35273;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#39640;&amp;#26657;&amp;#20986;&amp;#29256;&amp;#31038;&amp;#30340;&amp;#20070;&amp;#20063;&amp;#27809;&amp;#20160;&amp;#20040;&amp;#20142;&amp;#28857;&amp;#65292;&amp;#20132;&amp;#22823;&amp;#30340;&amp;#23637;&amp;#21488;&amp;#20284;&amp;#20046;&amp;#26159;&amp;#26377;&amp;#20010;&amp;#36828;&amp;#27915;&amp;#33337;&amp;#30340;&amp;#33337;&amp;#38271;&amp;#65292;&amp;#22235;&amp;#21608;&amp;#25293;&amp;#29031;&amp;#32773;&amp;#20247;&amp;#22810;&amp;#12290;&amp;#21326;&amp;#19996;&amp;#24072;&amp;#33539;&amp;#30340;&amp;#23637;&amp;#21488;&amp;#65292;&amp;#26377;&amp;#19968;&amp;#22823;&amp;#29255;&amp;#26159;&amp;#25945;&amp;#36741;&amp;#20070;&amp;#31821;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20013;&amp;#21326;&amp;#20070;&amp;#23616;&amp;#21644;&amp;#19978;&amp;#28023;&amp;#21476;&amp;#31821;&amp;#27809;&amp;#26377;&amp;#35753;&amp;#25105;&amp;#22833;&amp;#26395;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#20182;&amp;#20204;&amp;#30340;&amp;#20070;&amp;#19981;&amp;#22826;&amp;#36866;&amp;#21512;&amp;#22312;&amp;#36825;&amp;#31181;&amp;#22330;&amp;#21512;&amp;#19979;&amp;#20080;&amp;#65292;&amp;#19968;&amp;#26159;&amp;#26377;&amp;#30340;&amp;#20070;&amp;#19968;&amp;#22871;&amp;#23601;&amp;#21313;&amp;#20960;&amp;#26412;&amp;#65292;&amp;#26681;&amp;#26412;&amp;#23601;&amp;#19981;&amp;#22909;&amp;#25343;&amp;#65292;&amp;#31532;&amp;#20108;&amp;#26159;&amp;#20215;&amp;#26684;&amp;#19978;&amp;#20063;&amp;#19981;&amp;#35265;&amp;#30340;&amp;#26377;&amp;#22810;&amp;#22823;&amp;#30340;&amp;#20248;&amp;#21183;&amp;#65292;&amp;#19977;&amp;#26159;&amp;#30475;&amp;#36825;&amp;#20123;&amp;#20070;&amp;#30340;&amp;#27668;&amp;#27675;&amp;#19981;&amp;#23545;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19990;&amp;#32426;&amp;#20986;&amp;#29256;&amp;#26377;&amp;#19968;&amp;#20010;&amp;#24456;&amp;#20540;&amp;#24471;&amp;#25512;&amp;#33616;&amp;#30340;&amp;#20154;&amp;#25991;&amp;#31995;&amp;#21015;&amp;#30340;&amp;#19995;&amp;#20070;&amp;#12290;&amp;#31867;&amp;#20284;&amp;#21830;&amp;#21153;&amp;#21360;&amp;#20070;&amp;#39302;&amp;#30340;&amp;#37027;&amp;#20123;&amp;#40644;&amp;#40644;&amp;#32511;&amp;#32511;&amp;#30340;&amp;#20070;&amp;#31821;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#31995;&amp;#21015;&amp;#30340;&amp;#36873;&amp;#26448;&amp;#26356;&amp;#24191;&amp;#65292;&amp;#26102;&amp;#38388;&amp;#19978;&amp;#26356;&amp;#26032;&amp;#12290;&amp;#20004;&amp;#20010;&amp;#31995;&amp;#21015;&amp;#26159;&amp;#27809;&amp;#26377;&amp;#20914;&amp;#31361;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22806;&amp;#25991;&amp;#20070;&amp;#24215;&amp;#30340;&amp;#23637;&amp;#21488;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#22909;&amp;#21435;&amp;#22788;&amp;#65292;&amp;#20225;&amp;#40517;&amp;#20986;&amp;#29256;&amp;#31038;&amp;#30340;&amp;#21407;&amp;#29256;&amp;#22270;&amp;#20070;&amp;#21482;&amp;#35201;18&amp;#25110;&amp;#26159;20&amp;#65292;&amp;#20080;&amp;#19977;&amp;#26412;&amp;#20415;&amp;#23452;8&amp;#20803;&amp;#65292;&amp;#20080;&amp;#20116;&amp;#26412;&amp;#20415;&amp;#23452;15&amp;#20803;&amp;#12290;&amp;#34429;&amp;#28982;&amp;#36825;&amp;#20123;&amp;#20070;&amp;#37117;&amp;#26159;&amp;#26102;&amp;#38388;&amp;#27604;&amp;#36739;&amp;#26089;&amp;#30340;&amp;#32463;&amp;#20856;&amp;#23567;&amp;#35828;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#23545;&amp;#20110;&amp;#24819;&amp;#20837;&amp;#25163;&amp;#19968;&amp;#20123;&amp;#21407;&amp;#26412;&amp;#32463;&amp;#20856;&amp;#23567;&amp;#35828;&amp;#30340;&amp;#20070;&amp;#21451;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#20010;&amp;#24456;&amp;#22909;&amp;#30340;&amp;#26426;&amp;#20250;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21508;&amp;#20010;&amp;#26399;&amp;#21002;&amp;#30340;&amp;#23637;&amp;#21488;&amp;#20063;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#19981;&amp;#38169;&amp;#30340;&amp;#21435;&amp;#22788;&amp;#65292;&amp;#20687;&amp;#26159;&amp;#12298;&amp;#19977;&amp;#32852;&amp;#29983;&amp;#27963;&amp;#21608;&amp;#21002;&amp;#12299;&amp;#65292;&amp;#24403;&amp;#26399;&amp;#30340;10&amp;#20803;&amp;#65292;&amp;#20840;&amp;#26032;&amp;#30340;&amp;#21069;&amp;#20960;&amp;#26399;&amp;#30340;&amp;#20116;&amp;#20803;&amp;#19968;&amp;#26412;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19978;&amp;#28023;&amp;#25991;&amp;#21270;&amp;#20986;&amp;#29256;&amp;#31038;&amp;#30340;&amp;#23637;&amp;#21488;&amp;#24456;&amp;#26377;&amp;#29305;&amp;#28857;&amp;#65292;&amp;#20197;&amp;#12298;&amp;#21676;&amp;#25991;&amp;#22204;&amp;#23383;&amp;#12299;&amp;#21644;&amp;#20854;&amp;#34893;&amp;#29983;&amp;#21697;&amp;#20026;&amp;#20027;&amp;#12290;&amp;#21313;&amp;#20960;&amp;#24180;&amp;#26469;&amp;#30340;&amp;#21512;&amp;#35746;&amp;#26412;&amp;#30340;&amp;#31934;&amp;#35013;&amp;#26412;&amp;#19982;&amp;#24179;&amp;#35013;&amp;#26412;&amp;#19968;&amp;#23383;&amp;#25490;&amp;#24320;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#30005;&amp;#23376;&amp;#38405;&amp;#35835;&amp;#19982;&amp;#32593;&amp;#32476;&amp;#35835;&amp;#20070;&amp;#20063;&amp;#21344;&amp;#26377;&amp;#19968;&amp;#24109;&amp;#20043;&amp;#22320;&amp;#65292;&amp;#30427;&amp;#22823;&amp;#65292;&amp;#36215;&amp;#28857;&amp;#37117;&amp;#26377;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#23637;&amp;#21488;&amp;#12290;&amp;#21334;&amp;#21508;&amp;#31181;&amp;#30005;&amp;#23376;&amp;#38405;&amp;#35835;&amp;#22120;&amp;#30340;&amp;#20063;&amp;#22312;&amp;#25193;&amp;#22823;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#25112;&amp;#22330;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24456;&amp;#22810;&amp;#20154;&amp;#26368;&amp;#21518;&amp;#37117;&amp;#22810;&amp;#22810;&amp;#23569;&amp;#23569;&amp;#30340;&amp;#25552;&amp;#30528;&amp;#19968;&amp;#20123;&amp;#20070;&amp;#36208;&amp;#12290;&amp;#20063;&amp;#19981;&amp;#20047;&amp;#19968;&amp;#20123;&amp;#26159;&amp;#19968;&amp;#25414;&amp;#19968;&amp;#25414;&amp;#25552;&amp;#30528;&amp;#36208;&amp;#30340;&amp;#20154;&amp;#12290;&amp;#29616;&amp;#22330;&amp;#26377;&amp;#35768;&amp;#22810;&amp;#23567;&amp;#26379;&amp;#21451;&amp;#65292;&amp;#30475;&amp;#26469;&amp;#35768;&amp;#22810;&amp;#23478;&amp;#38271;&amp;#20063;&amp;#26159;&amp;#24895;&amp;#24847;&amp;#35753;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#23376;&amp;#22899;&amp;#27838;&amp;#26579;&amp;#19968;&amp;#20123;&amp;#25991;&amp;#21270;&amp;#27668;&amp;#24687;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20070;&amp;#23637;&amp;#20013;&amp;#30340;&amp;#32654;&amp;#22899;&amp;#27809;&amp;#26377;&amp;#25105;&amp;#21435;&amp;#19990;&amp;#21338;&amp;#20250;&amp;#19978;&amp;#30475;&amp;#21040;&amp;#30340;&amp;#22810;&amp;#65292;&amp;#36136;&amp;#37327;&amp;#20063;&amp;#19981;&amp;#22914;&amp;#19990;&amp;#21338;&amp;#20250;&amp;#19978;&amp;#30340;&amp;#22909;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#26356;&amp;#26377;&amp;#20070;&amp;#21367;&amp;#27668;&amp;#24687;&amp;#65292;&amp;#26356;&amp;#26377;&amp;#27668;&amp;#36136;&amp;#12290;&amp;#25105;&amp;#32819;&amp;#36793;&amp;#26102;&amp;#19981;&amp;#26102;&amp;#30340;&amp;#39128;&amp;#36807;&amp;#32654;&amp;#22899;&amp;#20204;&amp;#30340;&amp;#35805;&amp;#35821;&amp;#65292;&amp;ldquo;&amp;#38534;&amp;#32654;&amp;#23572;&amp;#20854;&amp;#23454;&amp;#27809;&amp;#37027;&amp;#20040;&amp;#21385;&amp;#23475;&amp;#65292;&amp;#37117;&amp;#26159;&amp;#28818;&amp;#20316;&amp;#20986;&amp;#26469;&amp;#30340;&amp;rdquo;&amp;#65307;&amp;ldquo;&amp;#25105;&amp;#24819;&amp;#25214;&amp;#19968;&amp;#26412;&amp;#12298;&amp;#19990;&amp;#35828;&amp;#26032;&amp;#35821;&amp;#12299;&amp;rdquo;&amp;#65292;&amp;ldquo;&amp;#34081;&amp;#20803;&amp;#22521;&amp;#30340;&amp;#12298;&amp;#30707;&amp;#22836;&amp;#35760;&amp;#32034;&amp;#38544;&amp;#12299;&amp;#26377;&amp;#21527;&amp;#65311;&amp;rdquo;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20170;&amp;#26085;&amp;#36141;&amp;#20070;&amp;#21333;&amp;#65306;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#21676;&amp;#25991;&amp;#22204;&amp;#23383;&amp;#12299;2009&amp;#21512;&amp;#35746;&amp;#26412;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#19968;&amp;#20010;&amp;#37117;&amp;#19981;&amp;#27491;&amp;#32463;&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#35768;&amp;#24764;&amp;#20113;&amp;#35848;&amp;#35805;&amp;#24405;&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#26469;&amp;#19968;&amp;#28857;&amp;#20449;&amp;#20208;&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#21608;&amp;#26399;&amp;#29579;&amp;#22269;&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#22914;&amp;#20309;&amp;#20999;&amp;#34507;&amp;#31957;&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;&amp;#33258;&amp;#28982;&amp;#20043;&amp;#25968;&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;41 Stories by O.Henry&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;Walden&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;A tale of two cities&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;The Federalist Papers&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#12298;The Anti-Federalist Papers&amp;#12299;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/blog-post_7828.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-2560794917117124929</guid><pubDate>Sat, 21 Aug 2010 08:47:00 +0000</pubDate><atom:updated>2010-08-21T01:47:15.984-07:00</atom:updated><title>死亡诗社《Dead Poets Society》-阳光照耀现实</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1082&quot; id=&quot;r.sv&quot; title=&quot;http://www.jdxyw.com/?p=1082&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1082&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1645905.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1081&quot; height=&quot;447&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1645905.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1645905&quot; width=&quot;297&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#32769;&amp;#22871;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#65292;&amp;#38472;&amp;#26087;&amp;#30340;&amp;#24773;&amp;#33410;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#20256;&amp;#32479;&amp;#19982;&amp;#21019;&amp;#26032;&amp;#30340;&amp;#20914;&amp;#31361;&amp;#65292;&amp;#27491;&amp;#32479;&amp;#19982;&amp;#24322;&amp;#25968;&amp;#30340;&amp;#23545;&amp;#25239;&amp;#65292;&amp;#29616;&amp;#23454;&amp;#19982;&amp;#29702;&amp;#24819;&amp;#30340;&amp;#24046;&amp;#36317;&amp;#65292;&amp;#26087;&amp;#20154;&amp;#19982;&amp;#26032;&amp;#20154;&amp;#30340;&amp;#38548;&amp;#38402;&amp;#22312;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#37324;&amp;#38754;&amp;#34987;&amp;#25293;&amp;#30340;&amp;#32654;&amp;#36718;&amp;#32654;&amp;#22850;&amp;#65292;&amp;#26377;&amp;#37027;&amp;#20040;&amp;#19968;&amp;#28857;&amp;#38738;&amp;#26149;&amp;#28608;&amp;#25196;&amp;#65292;&amp;#26377;&amp;#37027;&amp;#20040;&amp;#19968;&amp;#28857;&amp;#24773;&amp;#31398;&amp;#21021;&amp;#24320;&amp;#65292;&amp;#21448;&amp;#26377;&amp;#37027;&amp;#20040;&amp;#19968;&amp;#28857;&amp;#24863;&amp;#21516;&amp;#36523;&amp;#21463;&amp;#65292;&amp;#36824;&amp;#26377;&amp;#37027;&amp;#20040;&amp;#19968;&amp;#28857;&amp;#24754;&amp;#20174;&amp;#20013;&amp;#26469;&amp;#12290;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#25945;&amp;#32946;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#65292;&amp;#26356;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#25945;&amp;#32946;&amp;#29702;&amp;#24565;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#65292;&amp;#36824;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#31038;&amp;#20250;&amp;#29616;&amp;#23454;&amp;#19982;&amp;#32654;&amp;#22909;&amp;#29702;&amp;#24819;&amp;#20914;&amp;#31361;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#65292;&amp;#26368;&amp;#32456;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#20320;&amp;#20154;&amp;#29983;&amp;#30340;&amp;#32553;&amp;#24433;&amp;#32610;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19982;&amp;#20013;&amp;#22269;&amp;#30340;&amp;#23478;&amp;#38271;&amp;#19968;&amp;#26679;&amp;#65292;&amp;#22269;&amp;#22806;&amp;#30340;&amp;#23478;&amp;#38271;&amp;#20013;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#20047;&amp;#26395;&amp;#23376;&amp;#25104;&amp;#40857;&amp;#65292;&amp;#26395;&amp;#22899;&amp;#25104;&amp;#20964;&amp;#30340;&amp;#23478;&amp;#38271;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#20047;&amp;#21476;&amp;#26495;&amp;#20005;&amp;#26684;&amp;#65292;&amp;#22240;&amp;#24490;&amp;#23432;&amp;#26087;&amp;#65292;&amp;#19981;&amp;#30693;&amp;#36827;&amp;#21462;&amp;#30340;&amp;#25945;&amp;#32946;&amp;#32773;&amp;#21644;&amp;#25945;&amp;#32946;&amp;#26426;&amp;#26500;&amp;#12290;&amp;#22521;&amp;#20859;&amp;#23398;&amp;#29983;&amp;#19968;&amp;#24515;&amp;#21482;&amp;#35835;&amp;#22307;&amp;#36132;&amp;#20070;&amp;#65292;&amp;#20004;&amp;#32819;&amp;#19981;&amp;#38395;&amp;#31383;&amp;#22806;&amp;#20107;&amp;#65292;&amp;#23558;&amp;#26469;&amp;#22909;&amp;#19978;&amp;#21517;&amp;#26657;&amp;#65292;&amp;#25214;&amp;#22909;&amp;#24037;&amp;#20316;&amp;#65292;&amp;#36186;&amp;#22823;&amp;#38065;&amp;#65292;&amp;#24320;&amp;#22909;&amp;#36710;&amp;#65292;&amp;#23094;&amp;#32654;&amp;#22899;&amp;#12290;&amp;#26368;&amp;#22909;&amp;#20154;&amp;#20154;&amp;#37117;&amp;#21487;&amp;#20197;&amp;#25351;&amp;#28857;&amp;#27743;&amp;#23665;&amp;#65292;&amp;#28608;&amp;#25196;&amp;#25991;&amp;#23383;&amp;#12290;&amp;#23478;&amp;#38271;&amp;#23558;&amp;#24847;&amp;#24535;&amp;#24378;&amp;#21152;&amp;#19982;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#23401;&amp;#23376;&amp;#36523;&amp;#19978;&amp;#65292;&amp;#25226;&amp;#33258;&amp;#24049;&amp;#24180;&amp;#23569;&amp;#26102;&amp;#30340;&amp;#36951;&amp;#25022;&amp;#24403;&amp;#25104;&amp;#23401;&amp;#23376;&amp;#32456;&amp;#36523;&amp;#36861;&amp;#27714;&amp;#30340;&amp;#30446;&amp;#26631;&amp;#12290;&amp;#32780;&amp;#25945;&amp;#32946;&amp;#32773;&amp;#21017;&amp;#20381;&amp;#28982;&amp;#24310;&amp;#32493;&amp;#30528;&amp;#21476;&amp;#32769;&amp;#23432;&amp;#26087;&amp;#19981;&amp;#30693;&amp;#36827;&amp;#21462;&amp;#30340;&amp;#25945;&amp;#32946;&amp;#26041;&amp;#24335;&amp;#65292;&amp;#26082;&amp;#26080;&amp;#36259;&amp;#21448;&amp;#34394;&amp;#20266;&amp;#65292;&amp;#26082;&amp;#26080;&amp;#30693;&amp;#21448;&amp;#39640;&amp;#20658;&amp;#65292;&amp;#33073;&amp;#31163;&amp;#20102;&amp;#25945;&amp;#32946;&amp;#30340;&amp;#26412;&amp;#36136;&amp;#21644;&amp;#20154;&amp;#24615;&amp;#30340;&amp;#22522;&amp;#26412;&amp;#35785;&amp;#27714;&amp;#12290;&amp;#23398;&amp;#29983;&amp;#22312;&amp;#36825;&amp;#37324;&amp;#65292;&amp;#22833;&amp;#21435;&amp;#20102;&amp;#33258;&amp;#25105;&amp;#65292;&amp;#21482;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#23478;&amp;#38271;&amp;#24847;&amp;#24535;&amp;#19982;&amp;#23398;&amp;#26657;&amp;#25945;&amp;#23398;&amp;#29702;&amp;#24565;&amp;#30340;&amp;#20608;&amp;#20769;&amp;#65292;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#22810;&amp;#24180;&amp;#20197;&amp;#21518;&amp;#23398;&amp;#26657;&amp;#29992;&amp;#20197;&amp;#33258;&amp;#20658;&amp;#21644;&amp;#33258;&amp;#22840;&amp;#30340;&amp;#36164;&amp;#26412;&amp;#65292;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#23478;&amp;#38271;&amp;#28385;&amp;#36275;&amp;#20854;&amp;#25511;&amp;#21046;&amp;#27442;&amp;#65292;&amp;#23478;&amp;#38271;&amp;#24847;&amp;#24535;&amp;#21644;&amp;#26366;&amp;#32463;&amp;#24180;&amp;#23569;&amp;#26790;&amp;#24819;&amp;#30340;&amp;#24037;&amp;#20855;&amp;#12290;&amp;#30452;&amp;#21040;&amp;#26469;&amp;#20102;&amp;#19968;&amp;#20010;&amp;#23558;&amp;#28504;&amp;#22810;&amp;#25289;&amp;#39764;&amp;#30418;&amp;#25171;&amp;#24320;&amp;#30340;&amp;#20154;&amp;#65292;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#25918;&amp;#20986;&amp;#26469;&amp;#30340;&amp;#26159;&amp;#24076;&amp;#26395;&amp;#65292;&amp;#27442;&amp;#26395;&amp;#65292;&amp;#21584;&amp;#21898;&amp;#65292;&amp;#26159;&amp;#24515;&amp;#24213;&amp;#20320;&amp;#26368;&amp;#28145;&amp;#22788;&amp;#30340;&amp;#28212;&amp;#26395;&amp;#19982;&amp;#33258;&amp;#30001;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20013;&amp;#22269;&amp;#30340;&amp;#23398;&amp;#29983;&amp;#23545;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#22330;&amp;#26223;&amp;#19968;&amp;#23450;&amp;#19981;&amp;#20250;&amp;#38476;&amp;#29983;&amp;#65292;&amp;#22312;&amp;#20013;&amp;#22269;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#22330;&amp;#26223;&amp;#21482;&amp;#20250;&amp;#26356;&amp;#24754;&amp;#22766;&amp;#65292;&amp;#26356;&amp;#20026;&amp;#30340;&amp;#24808;&amp;#28872;&amp;#12290;&amp;#22810;&amp;#23569;&amp;#24180;&amp;#26469;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#34987;&amp;#21578;&amp;#30693;&amp;#65292;&amp;#19981;&amp;#35201;&amp;#20986;&amp;#39118;&amp;#22836;&amp;#65292;&amp;#19981;&amp;#35201;&amp;#24403;&amp;#20986;&amp;#22836;&amp;#40479;&amp;#65292;&amp;#35201;&amp;#23398;&amp;#20250;&amp;#22841;&amp;#30528;&amp;#23614;&amp;#24052;&amp;#20570;&amp;#20154;&amp;#12290;&amp;#29238;&amp;#27597;&amp;#32769;&amp;#24072;&amp;#32473;&amp;#20320;&amp;#36873;&amp;#23398;&amp;#26657;&amp;#65292;&amp;#24110;&amp;#20320;&amp;#25361;&amp;#19987;&amp;#19994;&amp;#65292;&amp;#32473;&amp;#20320;&amp;#23450;&amp;#32844;&amp;#19994;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#20154;&amp;#29983;&amp;#36947;&amp;#36335;&amp;#23601;&amp;#22312;&amp;#22806;&amp;#20154;&amp;#30340;&amp;#25163;&amp;#20013;&amp;#34987;&amp;#20219;&amp;#24847;&amp;#30340;&amp;#36418;&amp;#36495;&amp;#30528;&amp;#12290;&amp;#22810;&amp;#23569;&amp;#25152;&amp;#35859;&amp;#30340;&amp;ldquo;&amp;#32769;&amp;#20154;&amp;rdquo;&amp;#65292;&amp;#36825;&amp;#26679;&amp;#35821;&amp;#37325;&amp;#24515;&amp;#38271;&amp;#30340;&amp;#21578;&amp;#35785;&amp;#20320;&amp;#65292;&amp;#20877;&amp;#26377;&amp;#26865;&amp;#35282;&amp;#30340;&amp;#30707;&amp;#22836;&amp;#36208;&amp;#20837;&amp;#31038;&amp;#20250;&amp;#21518;&amp;#65292;&amp;#37117;&amp;#20250;&amp;#34987;&amp;#30952;&amp;#22278;&amp;#30340;&amp;#12290;&amp;#25105;&amp;#20204;&amp;#19981;&amp;#24471;&amp;#19981;&amp;#23567;&amp;#24515;&amp;#32764;&amp;#32764;&amp;#30340;&amp;#21253;&amp;#35065;&amp;#30528;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#19978;&amp;#30528;&amp;#33258;&amp;#24049;&amp;#19981;&amp;#21916;&amp;#27426;&amp;#30340;&amp;#23398;&amp;#26657;&amp;#65292;&amp;#19978;&amp;#33258;&amp;#24049;&amp;#19981;&amp;#21916;&amp;#27426;&amp;#30340;&amp;#19987;&amp;#19994;&amp;#65292;&amp;#20570;&amp;#30528;&amp;#33258;&amp;#24049;&amp;#19981;&amp;#21916;&amp;#27426;&amp;#20570;&amp;#30340;&amp;#24037;&amp;#20316;&amp;#65292;&amp;#19982;&amp;#33258;&amp;#24049;&amp;#19981;&amp;#21916;&amp;#27426;&amp;#30340;&amp;#20154;&amp;#25171;&amp;#20132;&amp;#36947;&amp;#36824;&amp;#35201;&amp;#21916;&amp;#31505;&amp;#39068;&amp;#24320;&amp;#12290;&amp;#24180;&amp;#36807;&amp;#19968;&amp;#24180;&amp;#65292;&amp;#26085;&amp;#22797;&amp;#19968;&amp;#26085;&amp;#65292;&amp;#24403;&amp;#24180;&amp;#21326;&amp;#32769;&amp;#21435;&amp;#65292;&amp;#26102;&amp;#20809;&amp;#19981;&amp;#22312;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#34022;&amp;#28982;&amp;#22238;&amp;#39318;&amp;#65292;&amp;#40687;&amp;#28982;&amp;#31070;&amp;#20260;&amp;#65292;&amp;#22909;&amp;#19968;&amp;#28857;&amp;#30340;&amp;#35805;&amp;#65292;&amp;#33021;&amp;#22815;&amp;#37261;&amp;#37264;&amp;#28748;&amp;#37266;&amp;#65292;&amp;#19981;&amp;#20877;&amp;#31096;&amp;#23475;&amp;#19979;&amp;#19968;&amp;#20195;&amp;#65292;&amp;#19981;&amp;#22909;&amp;#30340;&amp;#65292;&amp;#23601;&amp;#21448;&amp;#26159;&amp;#21478;&amp;#22806;&amp;#19968;&amp;#20010;&amp;#24754;&amp;#21095;&amp;#30340;&amp;#37325;&amp;#28436;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24180;&amp;#23569;&amp;#26102;&amp;#65292;&amp;#21021;&amp;#20837;&amp;#26657;&amp;#22253;&amp;#26102;&amp;#65292;&amp;#21021;&amp;#36827;&amp;#31038;&amp;#20250;&amp;#26102;&amp;#65292;&amp;#24456;&amp;#22810;&amp;#20154;&amp;#37117;&amp;#26377;&amp;#30528;&amp;#35946;&amp;#27668;&amp;#20914;&amp;#20113;&amp;#22825;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#24515;&amp;#20013;&amp;#37117;&amp;#26377;&amp;#30528;&amp;#20255;&amp;#22823;&amp;#30340;&amp;#26790;&amp;#24819;&amp;#65292;&amp;#33016;&amp;#20013;&amp;#37117;&amp;#26377;&amp;#26869;&amp;#24456;&amp;#22823;&amp;#30340;&amp;#31481;&amp;#23376;&amp;#65292;&amp;#20284;&amp;#20046;&amp;#33258;&amp;#24049;&amp;#30495;&amp;#30340;&amp;#23601;&amp;#26159;&amp;#20843;&amp;#20061;&amp;#28857;&amp;#20013;&amp;#30340;&amp;#22826;&amp;#38451;&amp;#65292;&amp;#26126;&amp;#22825;&amp;#30495;&amp;#30340;&amp;#26159;&amp;#25105;&amp;#20204;&amp;#30340;&amp;#19968;&amp;#26679;&amp;#12290;&amp;#21487;&amp;#26159;&amp;#65292;&amp;#29616;&amp;#23454;&amp;#23601;&amp;#26159;&amp;#29616;&amp;#23454;&amp;#65292;&amp;#29255;&amp;#20013;&amp;#30340;&amp;#32769;&amp;#24072;&amp;#19981;&amp;#20132;&amp;#29616;&amp;#23454;&amp;#20027;&amp;#20041;&amp;#30340;&amp;#35799;&amp;#27468;&amp;#65292;&amp;#32780;&amp;#21435;&amp;#25945;&amp;#28010;&amp;#28459;&amp;#20027;&amp;#20041;&amp;#30340;&amp;#35799;&amp;#27468;&amp;#12290;&amp;#23454;&amp;#29616;&amp;#20027;&amp;#20041;&amp;#26159;&amp;#23384;&amp;#22312;&amp;#20110;&amp;#29616;&amp;#23454;&amp;#65292;&amp;#28010;&amp;#28459;&amp;#20027;&amp;#20041;&amp;#26159;&amp;#23384;&amp;#22312;&amp;#20110;&amp;#20154;&amp;#24515;&amp;#12290;&amp;#24403;&amp;#20320;&amp;#28385;&amp;#24576;&amp;#28608;&amp;#24773;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#24819;&amp;#35201;&amp;#21435;&amp;#25913;&amp;#36896;&amp;#31038;&amp;#20250;&amp;#65292;&amp;#26368;&amp;#21518;&amp;#20320;&amp;#20250;&amp;#21457;&amp;#29616;&amp;#65292;&amp;#20320;&amp;#34987;&amp;#31038;&amp;#20250;&amp;#32473;&amp;#21516;&amp;#21270;&amp;#65292;&amp;#21560;&amp;#25910;&amp;#20102;&amp;#65292;&amp;#20320;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#31038;&amp;#20250;&amp;#30340;&amp;#19968;&amp;#37096;&amp;#20998;&amp;#65292;&amp;#36716;&amp;#32780;&amp;#21435;&amp;#25913;&amp;#36896;&amp;#37027;&amp;#20123;&amp;#39037;&amp;#22266;&amp;#30340;&amp;#20805;&amp;#28385;&amp;#29702;&amp;#24819;&amp;#30340;&amp;#20154;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#36825;&amp;#20010;&amp;#31038;&amp;#20250;&amp;#26159;&amp;#19981;&amp;#26159;&amp;#23601;&amp;#30495;&amp;#30340;&amp;#36825;&amp;#26679;&amp;#19981;&amp;#22570;&amp;#65292;&amp;#23481;&amp;#19981;&amp;#19979;&amp;#19968;&amp;#28857;&amp;#28857;&amp;#30340;&amp;#29702;&amp;#24819;&amp;#21602;&amp;#65311;&amp;#31038;&amp;#20250;&amp;#19981;&amp;#26159;&amp;#38750;&amp;#40657;&amp;#26082;&amp;#30333;&amp;#30340;&amp;#12290;&amp;#36825;&amp;#20010;&amp;#31038;&amp;#20250;&amp;#26159;&amp;#28784;&amp;#33394;&amp;#30340;&amp;#12290;&amp;#24403;&amp;#20320;&amp;#30340;&amp;#31934;&amp;#31070;&amp;#21147;&amp;#37327;&amp;#19981;&amp;#22815;&amp;#24378;&amp;#22823;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#24403;&amp;#20320;&amp;#34987;&amp;#36825;&amp;#20010;&amp;#31038;&amp;#20250;&amp;#32473;&amp;#21516;&amp;#21270;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20174;&amp;#20843;&amp;#20061;&amp;#28857;&amp;#20013;&amp;#30340;&amp;#22826;&amp;#38451;&amp;#21464;&amp;#25104;&amp;#20102;&amp;#21807;&amp;#21807;&amp;#35834;&amp;#35834;&amp;#65292;&amp;#22909;&amp;#27515;&amp;#19981;&amp;#22914;&amp;#36182;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#31038;&amp;#20250;&amp;#23601;&amp;#20250;&amp;#21464;&amp;#28784;&amp;#19968;&amp;#28857;&amp;#12290;&amp;#24403;&amp;#20320;&amp;#30340;&amp;#31934;&amp;#31070;&amp;#21147;&amp;#37327;&amp;#22815;&amp;#24378;&amp;#22823;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#21191;&amp;#20110;&amp;#36808;&amp;#20986;&amp;#33050;&amp;#19979;&amp;#30340;&amp;#31532;&amp;#19968;&amp;#27493;&amp;#65292;&amp;#24182;&amp;#24895;&amp;#24847;&amp;#25215;&amp;#21463;&amp;#36808;&amp;#20986;&amp;#30340;&amp;#36131;&amp;#20219;&amp;#19982;&amp;#21518;&amp;#26524;&amp;#22362;&amp;#25345;&amp;#19981;&amp;#25032;&amp;#30340;&amp;#36208;&amp;#19979;&amp;#21435;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#31038;&amp;#20250;&amp;#23601;&amp;#21464;&amp;#30340;&amp;#20809;&amp;#26126;&amp;#19968;&amp;#28857;&amp;#12290;&amp;#32780;&amp;#20320;&amp;#65292;&amp;#20063;&amp;#23436;&amp;#25104;&amp;#20102;&amp;#23545;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#25937;&amp;#36174;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22362;&amp;#25345;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#29702;&amp;#24819;&amp;#19982;&amp;#20449;&amp;#24565;&amp;#65292;&amp;#36873;&amp;#25321;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#65292;&amp;#26159;&amp;#19968;&amp;#20214;&amp;#24456;&amp;#19981;&amp;#23481;&amp;#26131;&amp;#30340;&amp;#19968;&amp;#20214;&amp;#20107;&amp;#24773;&amp;#12290;&amp;#19981;&amp;#35201;&amp;#22240;&amp;#20026;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#32780;&amp;#28909;&amp;#34880;&amp;#27832;&amp;#33150;&amp;#65292;&amp;#23601;&amp;#21435;&amp;#36861;&amp;#23547;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#26790;&amp;#24819;&amp;#65292;&amp;#20854;&amp;#23454;&amp;#20320;&amp;#20160;&amp;#20040;&amp;#26790;&amp;#24819;&amp;#20063;&amp;#27809;&amp;#26377;&amp;#65292;&amp;#29255;&amp;#23376;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#28608;&amp;#21457;&amp;#20102;&amp;#20320;&amp;#30340;&amp;#24187;&amp;#24819;&amp;#65292;&amp;#30495;&amp;#27491;&amp;#30340;&amp;#20449;&amp;#24565;&amp;#19982;&amp;#29702;&amp;#24819;&amp;#26159;&amp;#38271;&amp;#26399;&amp;#30340;&amp;#65292;&amp;#19981;&amp;#26159;&amp;#25171;&amp;#40481;&amp;#34880;&amp;#19968;&amp;#33324;&amp;#65292;&amp;#21482;&amp;#26377;&amp;#20849;&amp;#40483;&amp;#65292;&amp;#32780;&amp;#27809;&amp;#26377;&amp;#27832;&amp;#33150;&amp;#12290;&amp;#20063;&amp;#19981;&amp;#35201;&amp;#22240;&amp;#20026;&amp;#36825;&amp;#26679;&amp;#32780;&amp;#22833;&amp;#21435;&amp;#24076;&amp;#26395;&amp;#65292;&amp;#38451;&amp;#20809;&amp;#26159;&amp;#26080;&amp;#31169;&amp;#30340;&amp;#65292;&amp;#23427;&amp;#20250;&amp;#29031;&amp;#36827;&amp;#27599;&amp;#19968;&amp;#20010;&amp;#35282;&amp;#33853;&amp;#65292;&amp;#21363;&amp;#20351;&amp;#26159;&amp;#26368;&amp;#40657;&amp;#26263;&amp;#30340;&amp;#35282;&amp;#33853;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/dead-poets-society.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-1647230356064387499</guid><pubDate>Sat, 21 Aug 2010 08:45:00 +0000</pubDate><atom:updated>2010-08-21T01:45:31.160-07:00</atom:updated><title>《The Graduate》-哥上的不是女人，是寂寞</title><description>&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1105&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1105&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1325574.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1104&quot; height=&quot;347&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1325574.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1325574&quot; width=&quot;240&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#21548;&amp;#21040;&amp;#36798;&amp;#26031;&amp;#27712;&amp;bull;&amp;#38669;&amp;#22827;&amp;#26364;&amp;#36825;&amp;#20010;&amp;#21517;&amp;#23383;&amp;#65292;&amp;#26159;&amp;#22312;&amp;#12298;&amp;#21345;&amp;#26705;&amp;#24503;&amp;#25289;&amp;#22823;&amp;#26725;&amp;#12299;&amp;#37324;&amp;#38754;&amp;#12290;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#35265;&amp;#21040;&amp;#36798;&amp;#26031;&amp;#27712;&amp;bull;&amp;#38669;&amp;#22827;&amp;#26364;&amp;#30495;&amp;#20154;&amp;#65292;&amp;#26159;&amp;#22312;&amp;#12298;Rain man&amp;#12299;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#37324;&amp;#38754;&amp;#12290;&amp;#25454;&amp;#36164;&amp;#26009;&amp;#19978;&amp;#30475;&amp;#65292;&amp;#20182;&amp;#38271;&amp;#30340;&amp;#27604;&amp;#25105;&amp;#36824;&amp;#30702;&amp;#65292;&amp;#22312;&amp;#29255;&amp;#20013;&amp;#65292;&amp;#19982;&amp;#20247;&amp;#22810;&amp;#39640;&amp;#22823;&amp;#30340;&amp;#27431;&amp;#32654;&amp;#20154;&amp;#19968;&amp;#27604;&amp;#36739;&amp;#65292;&amp;#36824;&amp;#30495;&amp;#26377;&amp;#28857;&amp;#19981;&amp;#22826;&amp;#21644;&amp;#35856;&amp;#12290;&amp;#25105;&amp;#19968;&amp;#24230;&amp;#24819;&amp;#25226;&amp;#12298;The Graduate&amp;#12299;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#24403;&amp;#25104;&amp;#21916;&amp;#21095;&amp;#29255;&amp;#26469;&amp;#30475;&amp;#65292;&amp;#29255;&amp;#20013;&amp;#30340;Ben&amp;#65292;&amp;#39047;&amp;#26377;&amp;#12298;&amp;#38632;&amp;#20154;&amp;#12299;&amp;#20013;&amp;#21733;&amp;#21733;&amp;#30340;&amp;#24433;&amp;#23376;&amp;#12290;&amp;#19968;&amp;#26679;&amp;#30340;&amp;#28966;&amp;#36481;&amp;#65292;&amp;#19981;&amp;#23433;&amp;#65292;&amp;#20559;&amp;#25191;&amp;#65292;&amp;#26377;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#36830;&amp;#35828;&amp;#35805;&amp;#30340;&amp;#21475;&amp;#27668;&amp;#37117;&amp;#21313;&amp;#20998;&amp;#30340;&amp;#30456;&amp;#20284;&amp;#65292;&amp;#20877;&amp;#37197;&amp;#19978;&amp;#20182;&amp;#37027;&amp;#24352;&amp;#33080;&amp;#65292;&amp;#19981;&amp;#28436;&amp;#36825;&amp;#20960;&amp;#20010;&amp;#35282;&amp;#33394;&amp;#30495;&amp;#26159;&amp;#22825;&amp;#29702;&amp;#19981;&amp;#23481;&amp;#12290;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#20026;&amp;#20160;&amp;#20040;&amp;#35828;&amp;#25105;&amp;#19968;&amp;#24230;&amp;#20250;&amp;#25226;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#24403;&amp;#25104;&amp;#21916;&amp;#21095;&amp;#29255;&amp;#65292;&amp;#22914;&amp;#26524;&amp;#20320;&amp;#30475;&amp;#20102;&amp;#20182;&amp;#19982;&amp;#20154;&amp;#22919;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#20599;&amp;#24773;&amp;#30340;&amp;#37027;&amp;#22330;&amp;#25103;&amp;#65292;&amp;#20320;&amp;#24212;&amp;#35813;&amp;#23601;&amp;#33021;&amp;#26126;&amp;#30333;&amp;#25105;&amp;#20026;&amp;#20160;&amp;#20040;&amp;#20250;&amp;#36825;&amp;#26679;&amp;#35828;&amp;#12290;&amp;#29255;&amp;#23376;&amp;#30340;Ben&amp;#22312;&amp;#19968;&amp;#20010;&amp;#23478;&amp;#25945;&amp;#20005;&amp;#26684;&amp;#30340;&amp;#23478;&amp;#24237;&amp;#20013;&amp;#20986;&amp;#29983;&amp;#65292;&amp;#27839;&amp;#30528;&amp;#29238;&amp;#27597;&amp;#20026;&amp;#20854;&amp;#35774;&amp;#23450;&amp;#30340;&amp;#36947;&amp;#36335;&amp;#19968;&amp;#36335;&amp;#21069;&amp;#34892;&amp;#65292;&amp;#30452;&amp;#21040;&amp;#22823;&amp;#23398;&amp;#27605;&amp;#19994;&amp;#12290;&amp;#22914;&amp;#26524;&amp;#35828;&amp;#20043;&amp;#21069;&amp;#30340;&amp;#27714;&amp;#23398;&amp;#26102;&amp;#20195;&amp;#65292;&amp;#30446;&amp;#26631;&amp;#26159;&amp;#26126;&amp;#26174;&amp;#30340;&amp;#65292;&amp;#37027;&amp;#20040;&amp;#24403;&amp;#38754;&amp;#20020;&amp;#27605;&amp;#19994;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#23545;&amp;#26410;&amp;#26469;&amp;#30340;&amp;#36855;&amp;#33579;&amp;#23601;&amp;#33258;&amp;#28982;&amp;#32780;&amp;#28982;&amp;#30340;&amp;#28044;&amp;#19978;&amp;#20102;&amp;#24515;&amp;#22836;&amp;#12290;&amp;#27714;&amp;#23398;&amp;#26102;&amp;#20195;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#30446;&amp;#26631;&amp;#23601;&amp;#26159;&amp;#35835;&amp;#20070;&amp;#65292;&amp;#20004;&amp;#32819;&amp;#19981;&amp;#38395;&amp;#31383;&amp;#22806;&amp;#20107;&amp;#65292;&amp;#21462;&amp;#24471;&amp;#19968;&amp;#20010;&amp;#21448;&amp;#19968;&amp;#20010;&amp;#35777;&amp;#20070;&amp;#65292;&amp;#23436;&amp;#25104;&amp;#19968;&amp;#32423;&amp;#21448;&amp;#19968;&amp;#32423;&amp;#30340;&amp;#23398;&amp;#19994;&amp;#65292;&amp;#19981;&amp;#29992;&amp;#21435;&amp;#32771;&amp;#34385;&amp;#26410;&amp;#26469;&amp;#65292;&amp;#22240;&amp;#20026;&amp;#26410;&amp;#26469;&amp;#23545;&amp;#20110;&amp;#20320;&amp;#26469;&amp;#35828;&amp;#23601;&amp;#26159;&amp;#20174;&amp;#23567;&amp;#23398;&amp;#21040;&amp;#20013;&amp;#23398;&amp;#65292;&amp;#20174;&amp;#20013;&amp;#23398;&amp;#21040;&amp;#22823;&amp;#23398;&amp;#12290;&amp;#32780;&amp;#29238;&amp;#27597;&amp;#20284;&amp;#20046;&amp;#20063;&amp;#23558;&amp;#20320;&amp;#35270;&amp;#20026;&amp;#19968;&amp;#20010;&amp;#28843;&amp;#32768;&amp;#30340;&amp;#36164;&amp;#26412;&amp;#65292;&amp;#35753;&amp;#20320;&amp;#30427;&amp;#35013;&amp;#20986;&amp;#24109;&amp;#65292;&amp;#21608;&amp;#26059;&amp;#20110;&amp;#20146;&amp;#26379;&amp;#22909;&amp;#21451;&amp;#20043;&amp;#38388;&amp;#65292;&amp;#35753;&amp;#20320;&amp;#36523;&amp;#31359;&amp;#28508;&amp;#27700;&amp;#26381;&amp;#32473;&amp;#23486;&amp;#23458;&amp;#34920;&amp;#28436;&amp;#65292;&amp;#22823;&amp;#22768;&amp;#35835;&amp;#20320;&amp;#30340;&amp;#26085;&amp;#35760;&amp;#12290;&amp;#21487;&amp;#23398;&amp;#19994;&amp;#24635;&amp;#20250;&amp;#26377;&amp;#23436;&amp;#32467;&amp;#30340;&amp;#19968;&amp;#22825;&amp;#65292;&amp;#20320;&amp;#20063;&amp;#24635;&amp;#20250;&amp;#26377;&amp;#36328;&amp;#20837;&amp;#31038;&amp;#20250;&amp;#30340;&amp;#19968;&amp;#22825;&amp;#65292;&amp;#24403;&amp;#36825;&amp;#19968;&amp;#22825;&amp;#26469;&amp;#20020;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20182;&amp;#24320;&amp;#22987;&amp;#24863;&amp;#21040;&amp;#36855;&amp;#33579;&amp;#65292;&amp;#26080;&amp;#21161;&amp;#65292;&amp;#24439;&amp;#24488;&amp;#65292;&amp;#19981;&amp;#30693;&amp;#25152;&amp;#25514;&amp;#65292;&amp;#23545;&amp;#21363;&amp;#23558;&amp;#21040;&amp;#26469;&amp;#30340;&amp;#26410;&amp;#26469;&amp;#19968;&amp;#26080;&amp;#25152;&amp;#30693;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#24863;&amp;#21040;&amp;#24656;&amp;#24807;&amp;#12290;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#23601;&amp;#22312;Ben&amp;#36855;&amp;#33579;&amp;#24439;&amp;#24488;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#32654;&amp;#20029;&amp;#21160;&amp;#20154;&amp;#65292;&amp;#24037;&amp;#20110;&amp;#24515;&amp;#35745;&amp;#30340;&amp;#29238;&amp;#20146;&amp;#22810;&amp;#24180;&amp;#22909;&amp;#21451;&amp;#30340;&amp;#22971;&amp;#23376;&amp;#20986;&amp;#29616;&amp;#20102;&amp;#65292;&amp;#23545;Ben&amp;#30334;&amp;#33324;&amp;#30340;&amp;#25361;&amp;#36887;&amp;#12290;&amp;#24456;&amp;#26174;&amp;#28982;&amp;#65292;&amp;#38607;&amp;#20799;&amp;#19968;&amp;#33324;&amp;#30340;Ben&amp;#22312;&amp;#20154;&amp;#22919;&amp;#24378;&amp;#22823;&amp;#30340;&amp;#27668;&amp;#22330;&amp;#21644;&amp;#33258;&amp;#36523;&amp;#30340;&amp;#31934;&amp;#31070;&amp;#21387;&amp;#21147;&amp;#19979;&amp;#25237;&amp;#38477;&amp;#20102;&amp;#12290;&amp;#20004;&amp;#20154;&amp;#24320;&amp;#22987;&amp;#20102;&amp;#19968;&amp;#27573;&amp;#19981;&amp;#20262;&amp;#24651;&amp;#24773;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#22330;&amp;#27809;&amp;#26377;&amp;#35848;&amp;#35805;&amp;#30340;&amp;#20132;&amp;#23230;&amp;#65292;&amp;#20004;&amp;#20154;&amp;#20043;&amp;#38388;&amp;#21482;&amp;#26377;&amp;#20570;&amp;#29233;&amp;#27809;&amp;#26377;&amp;#20132;&amp;#27969;&amp;#65292;Ben&amp;#22312;&amp;#36825;&amp;#22330;&amp;#24651;&amp;#24773;&amp;#20013;&amp;#65292;&amp;#23558;&amp;#33258;&amp;#24049;&amp;#22810;&amp;#24180;&amp;#26469;&amp;#31215;&amp;#33988;&amp;#30340;&amp;#24773;&amp;#24863;&amp;#65292;&amp;#21644;&amp;#38754;&amp;#23545;&amp;#26410;&amp;#26469;&amp;#30340;&amp;#36855;&amp;#33579;&amp;#24403;&amp;#25104;&amp;#20102;&amp;#21160;&amp;#21147;&amp;#65292;&amp;#20182;&amp;#26159;&amp;#22312;&amp;#19982;&amp;#23490;&amp;#23518;&amp;#20570;&amp;#29233;&amp;#12290;&amp;#32780;&amp;#36825;&amp;#20010;&amp;#26366;&amp;#32463;&amp;#26159;&amp;#33402;&amp;#26415;&amp;#31995;&amp;#27605;&amp;#19994;&amp;#30340;&amp;#20154;&amp;#22919;&amp;#65292;&amp;#21464;&amp;#30340;&amp;#23545;&amp;#33402;&amp;#26415;&amp;#27627;&amp;#26080;&amp;#20852;&amp;#36259;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#36830;&amp;#24403;&amp;#21021;&amp;#30340;&amp;#21382;&amp;#21490;&amp;#20063;&amp;#19981;&amp;#24895;&amp;#35848;&amp;#36215;&amp;#12290;&amp;#24456;&amp;#26174;&amp;#28982;&amp;#65292;&amp;#26366;&amp;#32463;&amp;#22905;&amp;#20063;&amp;#36364;&amp;#36487;&amp;#28385;&amp;#24535;&amp;#36807;&amp;#65292;&amp;#20063;&amp;#24439;&amp;#24488;&amp;#26080;&amp;#21161;&amp;#36807;&amp;#65292;&amp;#20294;&amp;#26368;&amp;#32456;&amp;#36824;&amp;#26159;&amp;#21464;&amp;#30340;&amp;#27985;&amp;#27985;&amp;#22121;&amp;#22121;&amp;#65292;&amp;#30860;&amp;#30860;&amp;#26080;&amp;#20026;&amp;#12290;&amp;#20182;&amp;#20204;&amp;#20004;&amp;#20154;&amp;#37117;&amp;#23490;&amp;#23518;&amp;#65292;&amp;#37117;&amp;#36855;&amp;#33579;&amp;#32780;&amp;#26080;&amp;#21161;&amp;#24439;&amp;#24488;&amp;#12290;&amp;#20182;&amp;#20204;&amp;#37117;&amp;#26159;&amp;#22312;&amp;#21644;&amp;#23490;&amp;#23518;&amp;#20570;&amp;#29233;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#26377;&amp;#20010;&amp;#38236;&amp;#22836;&amp;#65292;Ben&amp;#20174;&amp;#28216;&amp;#27891;&amp;#27744;&amp;#19978;&amp;#30340;&amp;#22443;&amp;#23376;&amp;#19968;&amp;#36291;&amp;#32780;&amp;#36215;&amp;#65292;&amp;#23601;&amp;#21040;&amp;#20102;&amp;#20154;&amp;#22919;&amp;#30340;&amp;#36523;&amp;#19978;&amp;#12290;Ben&amp;#23601;&amp;#26159;&amp;#36825;&amp;#26679;&amp;#22312;&amp;#29616;&amp;#23454;&amp;#19982;&amp;#36855;&amp;#24187;&amp;#20043;&amp;#38388;&amp;#20999;&amp;#25442;&amp;#65292;&amp;#30452;&amp;#21040;&amp;#26377;&amp;#19968;&amp;#22825;&amp;#65292;&amp;#20154;&amp;#22919;&amp;#30340;&amp;#22899;&amp;#20799;&amp;#20986;&amp;#29616;&amp;#12290;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;Ben&amp;#31532;&amp;#19968;&amp;#27425;&amp;#23581;&amp;#21040;&amp;#20102;&amp;#29233;&amp;#24773;&amp;#30340;&amp;#28363;&amp;#21619;&amp;#65292;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#35273;&amp;#30340;&amp;#26410;&amp;#26469;&amp;#36824;&amp;#26159;&amp;#26377;&amp;#24076;&amp;#26395;&amp;#30340;&amp;#12290;&amp;#20063;&amp;#35768;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#22810;&amp;#24180;&amp;#20197;&amp;#26469;&amp;#65292;Ben&amp;#31532;&amp;#19968;&amp;#27425;&amp;#26159;&amp;#22312;&amp;#20026;&amp;#33258;&amp;#24049;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#26159;&amp;#33258;&amp;#24049;&amp;#20026;&amp;#30528;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#21644;&amp;#26410;&amp;#26469;&amp;#32780;&amp;#36861;&amp;#36880;&amp;#30528;&amp;#12290;&amp;#34429;&amp;#28982;&amp;#26368;&amp;#21518;&amp;#19981;&amp;#20262;&amp;#24651;&amp;#24773;&amp;#36133;&amp;#38706;&amp;#20102;&amp;#65292;&amp;#24651;&amp;#20154;&amp;#31163;&amp;#20182;&amp;#32780;&amp;#21435;&amp;#12290;Ben&amp;#25191;&amp;#30528;&amp;#30340;&amp;#36861;&amp;#23547;&amp;#30528;&amp;#65292;&amp;#23547;&amp;#30528;&amp;#24651;&amp;#20154;&amp;#30340;&amp;#33050;&amp;#27493;&amp;#36861;&amp;#23547;&amp;#30528;&amp;#65292;&amp;#30452;&amp;#33267;&amp;#24651;&amp;#20154;&amp;#23130;&amp;#31036;&amp;#30340;&amp;#29616;&amp;#22330;&amp;#12290;&amp;#21807;&amp;#19968;&amp;#35753;&amp;#25105;&amp;#19981;&amp;#35299;&amp;#30340;&amp;#22320;&amp;#26041;&amp;#65292;&amp;#26159;&amp;#37027;&amp;#20010;&amp;#22899;&amp;#23401;&amp;#26082;&amp;#28982;&amp;#31572;&amp;#24212;&amp;#21035;&amp;#20154;&amp;#30340;&amp;#27714;&amp;#23130;&amp;#65292;&amp;#20063;&amp;#24050;&amp;#32463;&amp;#27493;&amp;#20837;&amp;#20102;&amp;#25945;&amp;#22530;&amp;#65292;&amp;#20294;&amp;#20026;&amp;#20160;&amp;#20040;&amp;#22312;&amp;#26368;&amp;#21518;&amp;#30340;&amp;#20851;&amp;#22836;&amp;#65292;&amp;#22312;&amp;#20247;&amp;#20154;&amp;#30340;&amp;#38169;&amp;#24853;&amp;#21644;&amp;#24868;&amp;#24594;&amp;#25351;&amp;#21521;&amp;#21644;Ben&amp;#19968;&amp;#36215;&amp;#36867;&amp;#31163;&amp;#25945;&amp;#22530;&amp;#12290;&amp;#20063;&amp;#35768;&amp;#65292;&amp;#22312;&amp;#22899;&amp;#23401;&amp;#30340;&amp;#24515;&amp;#20013;&amp;#65292;&amp;#34429;&amp;#28982;&amp;#35273;&amp;#30340;&amp;#36825;&amp;#20010;&amp;#19981;&amp;#20262;&amp;#24651;&amp;#24773;&amp;#24456;&amp;#24694;&amp;#24515;&amp;#65292;&amp;#24456;&amp;#33618;&amp;#21776;&amp;#65292;&amp;#20294;&amp;#23545;&amp;#20110;&amp;#29616;&amp;#23454;&amp;#30340;&amp;#21453;&amp;#25239;&amp;#65292;&amp;#21644;&amp;#23545;&amp;#29233;&amp;#24773;&amp;#30340;&amp;#36861;&amp;#23547;&amp;#65292;&amp;#35753;&amp;#22905;&amp;#19981;&amp;#39038;&amp;#19968;&amp;#20999;&amp;#30340;&amp;#20914;&amp;#19979;&amp;#20102;&amp;#22307;&amp;#22363;&amp;#65292;&amp;#25237;&amp;#20837;&amp;#21040;Ben&amp;#30340;&amp;#24576;&amp;#25265;&amp;#20013;&amp;#12290;&amp;#22312;&amp;#20844;&amp;#36710;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#22312;&amp;#20247;&amp;#20154;&amp;#24778;&amp;#24853;&amp;#30340;&amp;#30524;&amp;#20809;&amp;#20013;&amp;#22823;&amp;#31505;&amp;#30528;&amp;#65292;&amp;#21363;&amp;#20351;&amp;#23545;&amp;#29616;&amp;#23454;&amp;#21453;&amp;#25239;&amp;#30340;&amp;#28385;&amp;#36275;&amp;#65292;&amp;#20063;&amp;#26159;&amp;#22312;&amp;#25513;&amp;#30422;&amp;#30528;&amp;#23545;&amp;#26410;&amp;#26469;&amp;#19981;&amp;#30830;&amp;#23450;&amp;#24615;&amp;#30340;&amp;#25285;&amp;#24515;&amp;#12290;&amp;#29579;&amp;#23376;&amp;#19982;&amp;#20844;&amp;#20027;&amp;#26368;&amp;#21518;&amp;#32456;&amp;#20110;&amp;#22312;&amp;#19968;&amp;#36215;&amp;#20102;&amp;#65292;&amp;#21487;&amp;#26159;&amp;#25925;&amp;#20107;&amp;#21040;&amp;#36825;&amp;#37324;&amp;#23601;&amp;#26029;&amp;#20102;&amp;#65292;&amp;#29579;&amp;#23376;&amp;#19982;&amp;#20844;&amp;#20027;&amp;#20197;&amp;#21518;&amp;#24590;&amp;#20040;&amp;#26679;&amp;#20102;&amp;#65311;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#65292;&amp;#21069;&amp;#36884;&amp;#24930;&amp;#24930;&amp;#65292;&amp;#31350;&amp;#31455;&amp;#26159;&amp;#32487;&amp;#32493;&amp;#30340;&amp;#36855;&amp;#33579;&amp;#24439;&amp;#24488;&amp;#19979;&amp;#21435;&amp;#65292;&amp;#36824;&amp;#26159;&amp;#23547;&amp;#24471;&amp;#20154;&amp;#29983;&amp;#30340;&amp;#24076;&amp;#26395;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20154;&amp;#30693;&amp;#36947;&amp;#12290;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#23601;&amp;#20687;&amp;#24456;&amp;#22810;&amp;#20248;&amp;#31168;&amp;#30340;&amp;#30005;&amp;#24433;&amp;#19968;&amp;#26679;&amp;#65292;&amp;#19968;&amp;#39318;&amp;#22909;&amp;#30340;&amp;#27468;&amp;#26354;&amp;#24448;&amp;#24448;&amp;#26159;&amp;#30011;&amp;#40857;&amp;#28857;&amp;#30555;&amp;#20043;&amp;#20316;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#20250;&amp;#27604;&amp;#30005;&amp;#24433;&amp;#26412;&amp;#36523;&amp;#27969;&amp;#20256;&amp;#26356;&amp;#24191;&amp;#12290;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#26377;&amp;#20004;&amp;#37096;&amp;#25554;&amp;#26354;&amp;#12298;The sound of silence&amp;#12299;&amp;#21644;&amp;#12298;Scarborough Fair&amp;#12299;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#12298;The sound of silence&amp;#12299;&amp;#33521;&amp;#25991;&amp;#27468;&amp;#35789;&amp;#65306;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;Hello darkness my old friend.&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;I&amp;rsquo;ve come to talk with you again.&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Because a vision softly creeping&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Left its seeds while I was sleeping.&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And the vision that was planted in my brain&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Still remains with the sound of silence&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;In restless dreams I walk alone&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Narrow streets of cobble stone&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Beneath the hallo of a street lamp,&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;I turned my collar to the cold and damp&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;When my eyes were stabbled by the flash of a neon light&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;That split the night&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And touched the sound of silence&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;And in the naked night I saw ten thousand people may be more&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;People talking without speaking hearing without listening&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;People writing songs that voices never share&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And no one dare disturb the sound of silence&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&amp;ldquo;Fool&amp;rdquo; said I &amp;ldquo;you do not know&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Silence like a cancer grows&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Hear my words that I might teach you&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Take my arms that I might reach you&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;But my words like silent rain-drops fell&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And echo-ed in the wells of silence&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And the people bow and prayed&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;to the neon God they made&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And the sign flash out its warning&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;In the words that it was forming&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And the sings said &amp;ldquo;The words of the prophers are&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;written the subway walls and tenement halls&amp;rdquo;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And whispered in the sounds of silence&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;&amp;#12298;Scarborough Fair&amp;#12299;&amp;#12298;&amp;#26031;&amp;#21345;&amp;#24067;&amp;#32599;&amp;#38598;&amp;#24066;&amp;#12299;&amp;#20013;&amp;#33521;&amp;#27468;&amp;#35789;&amp;#23545;&amp;#29031;&amp;#65306;&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;Are you going to Scarborough Fair&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Parsely sage rosemary and thyme&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Remember me to one who lives there&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;She once was a true love of mine&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;Tell her to make me a cambric shirt&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Parsely sage rosemary and thyme&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Without no seams nor needle work&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Then she will be a true love of mine&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&amp;#65288;On the side of hill in the deep forest green&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Tracing of sparrow on snow crested brown&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Blankets and bed clothers the child of maintain&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Sleeps unawafe of the clarion call&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;Tell her to find me an acre of land&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Parsely sage rosemary and thyme&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Between the salt water and the sea strand&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Then she will be a true love of mine&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&amp;#65288;On the side of hill a sprinkling of leaves&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Washes the grave with slivery tears&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;A soldier cleans and polishes a gun&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Sleeps unaware of the clarion call&lt;/p&gt;&lt;p style=&quot;color:#444444;margin-left:0px;margin-right:0px&quot;&gt;Tell her to reap it with a sickle of leather&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Parsely sage rosemary and thyme&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;And gather it all in a bunch of heather&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Then she will be a ture love of mine&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&amp;#65288;War bellows blazing in scarlet battalions&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Generals order their soldiers to kill and to fight for a cause&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;They have long ago forgoten&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;Sleeps unaware of the clarion call&lt;/p&gt;&lt;a href=&quot;http://www.jdxyw.com/?p=1105&quot;&gt;http://www.jdxyw.com/?p=1105&lt;/a&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/graduate.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-4466000311719668648</guid><pubDate>Sat, 21 Aug 2010 08:40:00 +0000</pubDate><atom:updated>2010-08-21T01:40:12.624-07:00</atom:updated><title>哀悼日与狂欢节</title><description>&lt;div style=&quot;background-color:#ffffff;background-image:initial;font-family:Simsun;margin-left:0px;margin-right:0px&quot;&gt;&lt;font face=&quot;Verdana&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1111&quot; id=&quot;u:7y&quot; title=&quot;http://www.jdxyw.com/?p=1111&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=1111&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;br&gt;&lt;p&gt;&lt;font face=&quot;Verdana&quot;&gt;&lt;font size=&quot;2&quot;&gt;&amp;#20004;&amp;#24180;&amp;#21069;&amp;#30340;&amp;#27766;&amp;#24029;&amp;#22823;&amp;#22320;&amp;#38663;&amp;#30340;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#65292;&amp;#26159;&amp;#20849;&amp;#21644;&amp;#22269;&amp;#25104;&amp;#31435;&amp;#20845;&amp;#21313;&amp;#24180;&amp;#26469;&amp;#65292;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#20026;&amp;#26222;&amp;#36890;&amp;#20154;&amp;#38477;&amp;#19979;&amp;#20102;&amp;#22269;&amp;#26071;&amp;#12290;&amp;#35768;&amp;#22810;&amp;#20154;&amp;#35828;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#26159;&amp;#22269;&amp;#23478;&amp;#24320;&amp;#22987;&amp;#27491;&amp;#35270;&amp;#22269;&amp;#20154;&amp;#30340;&amp;#23562;&amp;#20005;&amp;#65292;&amp;#24320;&amp;#22987;&amp;#23545;&amp;#29983;&amp;#21629;&amp;#30340;&amp;#23562;&amp;#37325;&amp;#65292;&amp;#23545;&amp;#20154;&amp;#24615;&amp;#30340;&amp;#25964;&amp;#30031;&amp;#65292;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#33391;&amp;#22909;&amp;#30340;&amp;#24320;&amp;#31471;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#24212;&amp;#24403;&amp;#20026;&amp;#27492;&amp;#32780;&amp;#24863;&amp;#21040;&amp;#27427;&amp;#24944;&amp;#65292;&amp;#24212;&amp;#35813;&amp;#20026;&amp;#25919;&amp;#24220;&amp;#20570;&amp;#20986;&amp;#30340;&amp;#36825;&amp;#19968;&amp;#25913;&amp;#21160;&amp;#32780;&amp;#24863;&amp;#21040;&amp;#39640;&amp;#20852;&amp;#12290;&amp;#22312;&amp;#31532;&amp;#19968;&amp;#20010;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#19979;&amp;#21320;&amp;#30340;&amp;#20840;&amp;#22269;&amp;#40483;&amp;#31515;&amp;#21696;&amp;#24764;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#27491;&amp;#22909;&amp;#22312;&amp;#23398;&amp;#26657;&amp;#30340;&amp;#24191;&amp;#22330;&amp;#19978;&amp;#65292;&amp;#20063;&amp;#30446;&amp;#30585;&amp;#20102;&amp;#35768;&amp;#22810;&amp;#21516;&amp;#23398;&amp;#33258;&amp;#21457;&amp;#30340;&amp;#26469;&amp;#21040;&amp;#20102;&amp;#24191;&amp;#22330;&amp;#19978;&amp;#40664;&amp;#21696;&amp;#20102;&amp;#19977;&amp;#20998;&amp;#38047;&amp;#12290;&amp;#32780;&amp;#22312;&amp;#21271;&amp;#20140;&amp;#24191;&amp;#22330;&amp;#19978;&amp;#65292;&amp;#26356;&amp;#26159;&amp;#33258;&amp;#21457;&amp;#30340;&amp;#32858;&amp;#38598;&amp;#20102;&amp;#25104;&amp;#21315;&amp;#19978;&amp;#19975;&amp;#30340;&amp;#27665;&amp;#20247;&amp;#65292;&amp;#36825;&amp;#20063;&amp;#35768;&amp;#26159;&amp;#20108;&amp;#21313;&amp;#22810;&amp;#24180;&amp;#26469;&amp;#65292;&amp;#38500;&amp;#20102;&amp;#21319;&amp;#26071;&amp;#20043;&amp;#22806;&amp;#65292;&amp;#31532;&amp;#19968;&amp;#27425;&amp;#34987;&amp;#23448;&amp;#26041;&amp;#40664;&amp;#35748;&amp;#30340;&amp;#27665;&amp;#20247;&amp;#33258;&amp;#21457;&amp;#32858;&amp;#38598;&amp;#22312;&amp;#24191;&amp;#22330;&amp;#19978;&amp;#12290;&amp;#32593;&amp;#32476;&amp;#19978;&amp;#30340;&amp;#35270;&amp;#39057;&amp;#27969;&amp;#20256;&amp;#24456;&amp;#24191;&amp;#65292;&amp;#26377;&amp;#20063;&amp;#24456;&amp;#24863;&amp;#20154;&amp;#65292;&amp;#27599;&amp;#20010;&amp;#20154;&amp;#37117;&amp;#38754;&amp;#24102;&amp;#21696;&amp;#33635;&amp;#65292;&amp;#30524;&amp;#21547;&amp;#27882;&amp;#29664;&amp;#65292;&amp;#37117;&amp;#25199;&amp;#30528;&amp;#21971;&amp;#23376;&amp;#21898;&amp;ldquo;&amp;#21152;&amp;#27833;&amp;rdquo;&amp;#12290;&amp;#26377;&amp;#20010;&amp;#22823;&amp;#22920;&amp;#65292;&amp;#19968;&amp;#25163;&amp;#25343;&amp;#30528;&amp;#19968;&amp;#21472;&amp;#38065;&amp;#65292;&amp;#19968;&amp;#25163;&amp;#25199;&amp;#30528;&amp;#37319;&amp;#35775;&amp;#30340;&amp;#35760;&amp;#32773;&amp;#65292;&amp;#27515;&amp;#27963;&amp;#35753;&amp;#35760;&amp;#32773;&amp;#24110;&amp;#24537;&amp;#25226;&amp;#38065;&amp;#32473;&amp;#25424;&amp;#20986;&amp;#21435;&amp;#12290;&amp;#32593;&amp;#19978;&amp;#20063;&amp;#26377;&amp;#20960;&amp;#24352;&amp;#29031;&amp;#29255;&amp;#65292;&amp;#20960;&amp;#20010;&amp;#36523;&amp;#26377;&amp;#27531;&amp;#30142;&amp;#30340;&amp;#20062;&amp;#35752;&amp;#20043;&amp;#20154;&amp;#65292;&amp;#25379;&amp;#25166;&amp;#30340;&amp;#23558;&amp;#20026;&amp;#25968;&amp;#19981;&amp;#22810;&amp;#30340;&amp;#38065;&amp;#25918;&amp;#36827;&amp;#25424;&amp;#27454;&amp;#31665;&amp;#20013;&amp;#12290;&amp;#24403;&amp;#19979;&amp;#65292;&amp;#25105;&amp;#26159;&amp;#30495;&amp;#30340;&amp;#26377;&amp;#34987;&amp;#24863;&amp;#21160;&amp;#65292;&amp;#35273;&amp;#24471;&amp;#20154;&amp;#24615;&amp;#30340;&amp;#21147;&amp;#37327;&amp;#26159;&amp;#24378;&amp;#22823;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;Verdana&quot;&gt;&lt;font size=&quot;2&quot;&gt;&amp;#21487;&amp;#26159;&amp;#65292;&amp;#20004;&amp;#24180;&amp;#36807;&amp;#21435;&amp;#20102;&amp;#65292;&amp;#19977;&amp;#27425;&amp;#30340;&amp;#20840;&amp;#22269;&amp;#24615;&amp;#30340;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#65292;&amp;#35753;&amp;#25105;&amp;#36234;&amp;#26469;&amp;#36234;&amp;#23545;&amp;#36825;&amp;#31181;&amp;#27969;&amp;#20110;&amp;#24418;&amp;#24335;&amp;#30340;&amp;#20316;&amp;#31168;&amp;#24863;&amp;#21040;&amp;#21453;&amp;#24863;&amp;#65292;&amp;#26356;&amp;#35753;&amp;#20154;&amp;#24863;&amp;#21040;&amp;#21453;&amp;#24863;&amp;#21644;&amp;#24868;&amp;#24594;&amp;#30340;&amp;#26159;&amp;#21508;&amp;#32423;&amp;#25919;&amp;#24220;&amp;#22312;&amp;#23618;&amp;#20986;&amp;#19981;&amp;#31351;&amp;#30340;&amp;#28798;&amp;#38590;&amp;#38754;&amp;#21069;&amp;#30340;&amp;#19981;&amp;#20316;&amp;#20026;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#27809;&amp;#26377;&amp;#19968;&amp;#28857;&amp;#28857;&amp;#23545;&amp;#29983;&amp;#21629;&amp;#30340;&amp;#25964;&amp;#30031;&amp;#65292;&amp;#22312;&amp;#20182;&amp;#20204;&amp;#30340;&amp;#24515;&amp;#20013;&amp;#65292;&amp;#21462;&amp;#24471;&amp;#19978;&amp;#23448;&amp;#30340;&amp;#24320;&amp;#24515;&amp;#19982;&amp;#27880;&amp;#24847;&amp;#25165;&amp;#26159;&amp;#26368;&amp;#37325;&amp;#35201;&amp;#30340;&amp;#12290;&amp;#20182;&amp;#20204;&amp;#23558;&amp;#24754;&amp;#21095;&amp;#21464;&amp;#25104;&amp;#20102;&amp;#21916;&amp;#21095;&amp;#65292;&amp;#25226;&amp;#20154;&amp;#38388;&amp;#28860;&amp;#29425;&amp;#21464;&amp;#25104;&amp;#20102;&amp;#20154;&amp;#38388;&amp;#22825;&amp;#22530;&amp;#65292;&amp;#23558;&amp;#22971;&amp;#31163;&amp;#23376;&amp;#25955;&amp;#21464;&amp;#25104;&amp;#20102;&amp;#21512;&amp;#23478;&amp;#22242;&amp;#22278;&amp;#65292;&amp;#23558;&amp;#19968;&amp;#29255;&amp;#21696;&amp;#22158;&amp;#21464;&amp;#25104;&amp;#20102;&amp;#36190;&amp;#32654;&amp;#19982;&amp;#40092;&amp;#33457;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#22312;&amp;#23608;&amp;#20307;&amp;#21644;&amp;#24223;&amp;#22687;&amp;#19978;&amp;#24320;&amp;#36215;&amp;#20102;&amp;#34920;&amp;#24432;&amp;#22823;&amp;#20250;&amp;#65292;&amp;#24320;&amp;#36215;&amp;#20102;&amp;#24198;&amp;#21151;&amp;#22823;&amp;#20250;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#35770;&amp;#21151;&amp;#34892;&amp;#36175;&amp;#65292;&amp;#25226;&amp;#37202;&amp;#35328;&amp;#27426;&amp;#65292;&amp;#27515;&amp;#32773;&amp;#26159;&amp;#21542;&amp;#23433;&amp;#24687;&amp;#65292;&amp;#29983;&amp;#32773;&amp;#26159;&amp;#21542;&amp;#23425;&amp;#38745;&amp;#23545;&amp;#20110;&amp;#20182;&amp;#20204;&amp;#26469;&amp;#35828;&amp;#19997;&amp;#27627;&amp;#19981;&amp;#37325;&amp;#35201;&amp;#65292;&amp;#37325;&amp;#35201;&amp;#30340;&amp;#26159;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#33021;&amp;#21542;&amp;#36393;&amp;#30528;&amp;#36825;&amp;#20123;&amp;#23608;&amp;#20307;&amp;#24448;&amp;#19978;&amp;#29228;&amp;#12290;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;Verdana&quot;&gt;&lt;font size=&quot;2&quot;&gt;&amp;#22312;&amp;#36861;&amp;#24764;&amp;#26085;&amp;#65292;&amp;#32593;&amp;#21543;&amp;#65292;KTV&amp;#31561;&amp;#19968;&amp;#20999;&amp;#23089;&amp;#20048;&amp;#22330;&amp;#25152;&amp;#34987;&amp;#20851;&amp;#38381;&amp;#65292;&amp;#20248;&amp;#37239;&amp;#65292;&amp;#22303;&amp;#35910;&amp;#31561;&amp;#35270;&amp;#39057;&amp;#32593;&amp;#31449;&amp;#21482;&amp;#26377;&amp;#26032;&amp;#38395;&amp;#65292;&amp;#21508;&amp;#20010;&amp;#22320;&amp;#26041;&amp;#30005;&amp;#35270;&amp;#21488;&amp;#21482;&amp;#33021;&amp;#25773;&amp;#25918;CCTV&amp;#30340;&amp;#26032;&amp;#38395;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#36825;&amp;#20123;&amp;#26222;&amp;#36890;&amp;#20154;&amp;#20063;&amp;#34987;&amp;#21093;&amp;#22842;&amp;#20102;&amp;#26368;&amp;#20026;&amp;#22522;&amp;#26412;&amp;#30340;&amp;#26435;&amp;#21033;&amp;#65292;&amp;#20840;&amp;#22269;&amp;#20154;&amp;#27665;&amp;#30340;&amp;#24515;&amp;#24773;&amp;#34987;&amp;#24378;&amp;#21046;&amp;#24615;&amp;#30340;&amp;#35843;&amp;#33410;&amp;#21040;&amp;#20102;&amp;#24754;&amp;#20260;&amp;#65292;&amp;#27426;&amp;#20048;&amp;#30340;&amp;#24773;&amp;#32490;&amp;#26159;&amp;#19981;&amp;#20801;&amp;#35768;&amp;#22312;&amp;#36825;&amp;#29255;&amp;#22303;&amp;#22320;&amp;#19978;&amp;#20986;&amp;#29616;&amp;#30340;&amp;#12290;&amp;#20320;&amp;#38590;&amp;#36947;&amp;#27809;&amp;#35265;&amp;#20809;&amp;#33391;&amp;#22312;&amp;#26657;&amp;#20869;&amp;#19978;&amp;#34987;&amp;#32676;&amp;#27572;&amp;#65292;&amp;#24352;&amp;#38663;&amp;#23731;&amp;#22312;&amp;#24494;&amp;#21338;&amp;#19978;&amp;#34987;&amp;#22260;&amp;#25915;&amp;#65311;&amp;#37027;&amp;#20123;&amp;#20030;&amp;#30528;&amp;#25331;&amp;#22836;&amp;#21898;&amp;#21152;&amp;#27833;&amp;#30340;&amp;#28385;&amp;#24576;&amp;#27665;&amp;#26063;&amp;#20027;&amp;#20041;&amp;#21644;&amp;#22269;&amp;#23478;&amp;#20027;&amp;#20041;&amp;#30340;&amp;#27665;&amp;#20247;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#26827;&amp;#23376;&amp;#65292;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#36716;&amp;#31227;&amp;#28966;&amp;#28857;&amp;#65292;&amp;#36716;&amp;#31227;&amp;#30683;&amp;#30462;&amp;#30340;&amp;#26827;&amp;#23376;&amp;#12290;&amp;#22810;&amp;#23569;&amp;#20102;&amp;#36825;&amp;#26679;&amp;#24687;&amp;#20107;&amp;#23425;&amp;#20154;&amp;#30340;&amp;#35828;&amp;#36947;&amp;#65292;&amp;ldquo;&amp;#20320;&amp;#20004;&amp;#22825;&amp;#19981;&amp;#19978;&amp;#32593;&amp;#20250;&amp;#27515;&amp;#21834;&amp;#65311;&amp;rdquo;&amp;ldquo;&amp;#20320;&amp;#36824;&amp;#26159;&amp;#19981;&amp;#26159;&amp;#20154;&amp;#65311;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#26085;&amp;#23376;&amp;#20320;&amp;#20063;&amp;#29609;&amp;#30340;&amp;#19979;&amp;#21435;&amp;#65311;&amp;rdquo;&amp;ldquo;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#65292;&amp;#20320;&amp;#20204;&amp;#23601;&amp;#24525;&amp;#19968;&amp;#24525;&amp;#21543;&amp;rdquo;&amp;#12290;&amp;#30456;&amp;#20449;&amp;#25105;&amp;#65292;&amp;#22312;&amp;#36890;&amp;#24448;&amp;#35199;&amp;#26397;&amp;#40092;&amp;#30340;&amp;#36335;&amp;#19978;&amp;#65292;&amp;#23601;&amp;#26159;&amp;#36825;&amp;#20123;&amp;#20154;&amp;#22312;&amp;#28155;&amp;#30742;&amp;#21152;&amp;#29926;&amp;#12290;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#26435;&amp;#21033;&amp;#34987;&amp;#26080;&amp;#20197;&amp;#22797;&amp;#21152;&amp;#30340;&amp;#20405;&amp;#23475;&amp;#65292;&amp;#36824;&amp;#35201;&amp;#25104;&amp;#20026;&amp;#25171;&amp;#25163;&amp;#19982;&amp;#24110;&amp;#20982;&amp;#65292;&amp;#21435;&amp;#25171;&amp;#21387;&amp;#37027;&amp;#20123;&amp;#36861;&amp;#27714;&amp;#33258;&amp;#30001;&amp;#30340;&amp;#20154;&amp;#12290;&amp;#25105;&amp;#36190;&amp;#25104;&amp;#20219;&amp;#20309;&amp;#24418;&amp;#24335;&amp;#30340;&amp;#31085;&amp;#22880;&amp;#27515;&amp;#32773;&amp;#30340;&amp;#27963;&amp;#21160;&amp;#65292;&amp;#25105;&amp;#25964;&amp;#30031;&amp;#37027;&amp;#20123;&amp;#27515;&amp;#21435;&amp;#30340;&amp;#29983;&amp;#21629;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#25105;&amp;#21453;&amp;#23545;&amp;#20219;&amp;#20309;&amp;#20197;&amp;#25919;&amp;#24220;&amp;#24378;&amp;#21046;&amp;#21629;&amp;#20196;&amp;#25191;&amp;#34892;&amp;#30340;&amp;#21696;&amp;#24764;&amp;#27963;&amp;#21160;&amp;#65292;&amp;#26356;&amp;#21453;&amp;#23545;&amp;#25919;&amp;#24220;&amp;#20197;&amp;#21696;&amp;#24764;&amp;#27665;&amp;#20247;&amp;#30340;&amp;#20511;&amp;#21475;&amp;#20405;&amp;#23475;&amp;#25105;&amp;#20204;&amp;#30340;&amp;#22522;&amp;#26412;&amp;#26435;&amp;#21033;&amp;#12290;&amp;#26159;&amp;#21542;&amp;#21696;&amp;#24764;&amp;#26159;&amp;#27665;&amp;#20247;&amp;#33258;&amp;#30001;&amp;#30340;&amp;#36873;&amp;#25321;&amp;#65292;&amp;#25919;&amp;#24220;&amp;#29992;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#20844;&amp;#26435;&amp;#21147;&amp;#65292;&amp;#24378;&amp;#21046;&amp;#27665;&amp;#20247;&amp;#21696;&amp;#24764;&amp;#65292;&amp;#38480;&amp;#21046;&amp;#27665;&amp;#20247;&amp;#30340;&amp;#34892;&amp;#20026;&amp;#65292;&amp;#19981;&amp;#20165;&amp;#26159;&amp;#23545;&amp;#29983;&amp;#32773;&amp;#26435;&amp;#21033;&amp;#30340;&amp;#20405;&amp;#29359;&amp;#65292;&amp;#20063;&amp;#26159;&amp;#23545;&amp;#27515;&amp;#32773;&amp;#30340;&amp;#19981;&amp;#23562;&amp;#37325;&amp;#12290;&amp;#20170;&amp;#22825;&amp;#65292;&amp;#25919;&amp;#24220;&amp;#21487;&amp;#20197;&amp;#29992;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#29702;&amp;#30001;&amp;#20405;&amp;#23475;&amp;#20320;&amp;#30340;&amp;#33258;&amp;#30001;&amp;#19982;&amp;#26435;&amp;#21033;&amp;#65292;&amp;#26126;&amp;#22825;&amp;#25919;&amp;#24220;&amp;#23601;&amp;#21487;&amp;#20197;&amp;#29992;&amp;#20854;&amp;#20182;&amp;#30340;&amp;#29702;&amp;#30001;&amp;#20405;&amp;#23475;&amp;#32487;&amp;#32493;&amp;#20405;&amp;#23475;&amp;#20320;&amp;#65292;&amp;#24403;&amp;#25919;&amp;#24220;&amp;#20174;&amp;#20013;&amp;#23581;&amp;#21040;&amp;#20102;&amp;#29980;&amp;#22836;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#23601;&amp;#20250;&amp;#27442;&amp;#27714;&amp;#19981;&amp;#28385;&amp;#65292;&amp;#30452;&amp;#21040;&amp;#27048;&amp;#24178;&amp;#20320;&amp;#30340;&amp;#27599;&amp;#19968;&amp;#28404;&amp;#34880;&amp;#27735;&amp;#65292;&amp;#38480;&amp;#21046;&amp;#20320;&amp;#30340;&amp;#20219;&amp;#20309;&amp;#26435;&amp;#21033;&amp;#65292;&amp;#32780;&amp;#20320;&amp;#36824;&amp;#35201;&amp;#20026;&amp;#20854;&amp;#25671;&amp;#26071;&amp;#21584;&amp;#21898;&amp;#12290;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;Verdana&quot;&gt;&lt;font size=&quot;2&quot;&gt;&amp;#26356;&amp;#20026;&amp;#35773;&amp;#21050;&amp;#30340;&amp;#26159;&amp;#65292;&amp;#36825;&amp;#20123;&amp;#21517;&amp;#20041;&amp;#19978;&amp;#32426;&amp;#24565;&amp;#27515;&amp;#32773;&amp;#30340;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#65292;&amp;#21364;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#21508;&amp;#32423;&amp;#23448;&amp;#21592;&amp;#20316;&amp;#31168;&amp;#30340;&amp;#26368;&amp;#22909;&amp;#26102;&amp;#26426;&amp;#12290;&amp;#24403;&amp;#32654;&amp;#22269;&amp;#24635;&amp;#32479;&amp;#19968;&amp;#20010;&amp;#20010;&amp;#35835;&amp;#20986;&amp;#36935;&amp;#38590;&amp;#30719;&amp;#24037;&amp;#30340;&amp;#21517;&amp;#23383;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#30340;&amp;#26032;&amp;#38395;&amp;#35835;&amp;#20986;&amp;#30340;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#20010;&amp;#26368;&amp;#39640;&amp;#39046;&amp;#23548;&amp;#20154;&amp;#30340;&amp;#21517;&amp;#23383;&amp;#12290;&amp;#25105;&amp;#20204;&amp;#35828;&amp;#26159;&amp;#20026;&amp;#20102;&amp;#35753;&amp;#27515;&amp;#32773;&amp;#23433;&amp;#24687;&amp;#65292;&amp;#21487;&amp;#26159;&amp;#25105;&amp;#20204;&amp;#36830;&amp;#31350;&amp;#31455;&amp;#27515;&amp;#20102;&amp;#35841;&amp;#65311;&amp;#27515;&amp;#20102;&amp;#22810;&amp;#23569;&amp;#20102;&amp;#20154;&amp;#65311;&amp;#27515;&amp;#22312;&amp;#37027;&amp;#37324;&amp;#65311;&amp;#31350;&amp;#31455;&amp;#26159;&amp;#24590;&amp;#20040;&amp;#27515;&amp;#30340;&amp;#65311;&amp;#25105;&amp;#20204;&amp;#23545;&amp;#36825;&amp;#20123;&amp;#19968;&amp;#26080;&amp;#25152;&amp;#30693;&amp;#65292;&amp;#37027;&amp;#20123;&amp;#26366;&amp;#32463;&amp;#24076;&amp;#26395;&amp;#25581;&amp;#24320;&amp;#36825;&amp;#20123;&amp;#30495;&amp;#30456;&amp;#30340;&amp;#35760;&amp;#32773;&amp;#65292;&amp;#23186;&amp;#20307;&amp;#21644;&amp;#20010;&amp;#20154;&amp;#65292;&amp;#26080;&amp;#19968;&amp;#19981;&amp;#26159;&amp;#21463;&amp;#21040;&amp;#35686;&amp;#21578;&amp;#21644;&amp;#23041;&amp;#32961;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#36523;&amp;#38519;&amp;#22265;&amp;#22276;&amp;#65292;&amp;#32780;&amp;#29702;&amp;#30001;&amp;#20165;&amp;#20165;&amp;#26159;&amp;#22240;&amp;#20026;&amp;#25910;&amp;#38598;&amp;#27766;&amp;#24029;&amp;#22320;&amp;#38663;&amp;#20013;&amp;#27515;&amp;#21435;&amp;#23398;&amp;#29983;&amp;#30340;&amp;#21517;&amp;#21333;&amp;#65292;&amp;#32618;&amp;#21517;&amp;#31455;&amp;#28982;&amp;#26159;&amp;#27844;&amp;#38706;&amp;#22269;&amp;#23478;&amp;#26426;&amp;#23494;&amp;#12290;&amp;#24403;&amp;#22320;&amp;#38663;&amp;#20013;&amp;#27515;&amp;#21435;&amp;#23398;&amp;#29983;&amp;#30340;&amp;#21517;&amp;#23383;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#19968;&amp;#20010;&amp;#22269;&amp;#23478;&amp;#30340;&amp;#26426;&amp;#23494;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#36824;&amp;#33021;&amp;#25265;&amp;#26377;&amp;#22810;&amp;#22823;&amp;#30340;&amp;#26399;&amp;#26395;&amp;#65311;&amp;#33406;&amp;#26410;&amp;#26410;&amp;#25293;&amp;#30340;&amp;#32426;&amp;#24405;&amp;#29255;&amp;#20013;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#27597;&amp;#20146;&amp;#23545;&amp;#27515;&amp;#21435;&amp;#30340;&amp;#23401;&amp;#23376;&amp;#25749;&amp;#24515;&amp;#35010;&amp;#32954;&amp;#30340;&amp;#21898;&amp;#30528;&amp;#65292;&amp;#35753;&amp;#22905;&amp;#19979;&amp;#36744;&amp;#23376;&amp;#25214;&amp;#20010;&amp;#22909;&amp;#20154;&amp;#23478;&amp;#65292;&amp;#21315;&amp;#19975;&amp;#19981;&amp;#35201;&amp;#25237;&amp;#32974;&amp;#21040;&amp;#20013;&amp;#22269;&amp;#65292;&amp;#20320;&amp;#20570;&amp;#20309;&amp;#24863;&amp;#24819;&amp;#65311;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;Verdana&quot;&gt;&lt;font size=&quot;2&quot;&gt;&amp;#25972;&amp;#20010;&amp;#23448;&amp;#20698;&amp;#20307;&amp;#31995;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20154;&amp;#20250;&amp;#21435;&amp;#20851;&amp;#24515;&amp;#24223;&amp;#22687;&amp;#28132;&amp;#27877;&amp;#19979;&amp;#30340;&amp;#21457;&amp;#33261;&amp;#33104;&amp;#28866;&amp;#30340;&amp;#23608;&amp;#20307;&amp;#65292;&amp;#22312;&amp;#20182;&amp;#20204;&amp;#30340;&amp;#30524;&amp;#20013;&amp;#65292;&amp;#21482;&amp;#26377;&amp;#21326;&amp;#26381;&amp;#32654;&amp;#39135;&amp;#65292;&amp;#39321;&amp;#36710;&amp;#32654;&amp;#22899;&amp;#65292;&amp;#20154;&amp;#21629;&amp;#22914;&amp;#33609;&amp;#33445;&amp;#12290;&amp;#20182;&amp;#20204;&amp;#25152;&amp;#26399;&amp;#26395;&amp;#30340;&amp;#26159;&amp;#22823;&amp;#20107;&amp;#21270;&amp;#23567;&amp;#65292;&amp;#23567;&amp;#20107;&amp;#21270;&amp;#26080;&amp;#65292;&amp;#25226;&amp;#24754;&amp;#21095;&amp;#21464;&amp;#25104;&amp;#21916;&amp;#21095;&amp;#12290;&amp;#35910;&amp;#33104;&amp;#28195;&amp;#24037;&amp;#31243;&amp;#19982;&amp;#22320;&amp;#38663;&amp;#28798;&amp;#23475;&amp;#27809;&amp;#26377;&amp;#20851;&amp;#31995;&amp;#65292;&amp;#27877;&amp;#30707;&amp;#27969;&amp;#19982;&amp;#26893;&amp;#34987;&amp;#30733;&amp;#20240;&amp;#26080;&amp;#20851;&amp;#65292;&amp;#19968;&amp;#20999;&amp;#37117;&amp;#26159;&amp;#22825;&amp;#28798;&amp;#65292;&amp;#32477;&amp;#23545;&amp;#27809;&amp;#26377;&amp;#20154;&amp;#31096;&amp;#65292;&amp;#23601;&amp;#31639;&amp;#26377;&amp;#20154;&amp;#31096;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#20851;&amp;#22269;&amp;#23478;&amp;#30340;&amp;#20107;&amp;#24773;&amp;#12290;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#19968;&amp;#20010;&amp;#23459;&amp;#27844;&amp;#30340;&amp;#26085;&amp;#23376;&amp;#65292;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#23459;&amp;#20256;&amp;#30340;&amp;#24037;&amp;#20855;&amp;#65292;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#36716;&amp;#31227;&amp;#27665;&amp;#20247;&amp;#28966;&amp;#28857;&amp;#65292;&amp;#28385;&amp;#36275;&amp;#37027;&amp;#20123;&amp;#28385;&amp;#33108;&amp;#27665;&amp;#26063;&amp;#20027;&amp;#20041;&amp;#21644;&amp;#22269;&amp;#23478;&amp;#20027;&amp;#20041;&amp;#28909;&amp;#24773;&amp;#30340;&amp;#27665;&amp;#20247;&amp;#29378;&amp;#27426;&amp;#30340;&amp;#26085;&amp;#23376;&amp;#12290;&amp;#22312;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#26085;&amp;#23376;&amp;#65292;&amp;#21516;&amp;#24773;&amp;#24515;&amp;#34987;&amp;#27867;&amp;#28389;&amp;#65292;&amp;#27665;&amp;#26063;&amp;#20027;&amp;#20041;&amp;#21644;&amp;#22269;&amp;#23478;&amp;#20027;&amp;#20041;&amp;#24471;&amp;#21040;&amp;#20102;&amp;#28385;&amp;#36275;&amp;#65292;&amp;#34920;&amp;#24432;&amp;#22823;&amp;#20250;&amp;#24320;&amp;#30340;&amp;#24456;&amp;#22278;&amp;#28385;&amp;#65292;&amp;#28798;&amp;#27665;&amp;#36807;&amp;#30340;&amp;#24456;&amp;#24179;&amp;#38745;&amp;#65292;&amp;#27515;&amp;#32773;&amp;#27515;&amp;#30340;&amp;#24456;&amp;#24320;&amp;#24515;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#24320;&amp;#24515;&amp;#30340;&amp;#26085;&amp;#23376;&amp;#65292;&amp;#24212;&amp;#35813;&amp;#27599;&amp;#22825;&amp;#37117;&amp;#26159;&amp;#21696;&amp;#24764;&amp;#26085;&amp;#12290;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;Verdana&quot;&gt;&lt;font size=&quot;2&quot;&gt;&amp;#30475;&amp;#22909;&amp;#20320;&amp;#30340;&amp;#38065;&amp;#21253;&amp;#65292;&amp;#19981;&amp;#35201;&amp;#20877;&amp;#38543;&amp;#24847;&amp;#25424;&amp;#27454;&amp;#20102;&amp;#65292;&amp;#25105;&amp;#24456;&amp;#36190;&amp;#36175;&amp;#20320;&amp;#30340;&amp;#21516;&amp;#24773;&amp;#24515;&amp;#65292;&amp;#20294;&amp;#20320;&amp;#20132;&amp;#30340;&amp;#31246;&amp;#24050;&amp;#32463;&amp;#22815;&amp;#22810;&amp;#20102;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#24517;&amp;#35201;&amp;#20877;&amp;#32473;&amp;#36825;&amp;#32676;&amp;#29399;&amp;#28155;&amp;#19978;&amp;#36825;&amp;#20040;&amp;#19968;&amp;#22359;&amp;#29399;&amp;#39135;&amp;#20102;&amp;#12290;&amp;#25226;&amp;#20320;&amp;#30340;&amp;#21516;&amp;#24773;&amp;#24515;&amp;#21644;&amp;#38065;&amp;#29992;&amp;#22312;&amp;#22320;&amp;#26041;&amp;#19978;&amp;#65292;&amp;#19981;&amp;#35201;&amp;#21161;&amp;#32419;&amp;#20026;&amp;#34384;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;/div&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/blog-post_21.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-5007652975210581925</guid><pubDate>Thu, 12 Aug 2010 10:37:00 +0000</pubDate><atom:updated>2010-08-12T03:37:53.625-07:00</atom:updated><title>[Lisp]Not all equal is equal</title><description>&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1075&quot; id=&quot;oibd&quot; title=&quot;http://www.jdxyw.com/?p=1075&quot;&gt;http://www.jdxyw.com/?p=1075&lt;/a&gt;&lt;br&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In Lisp, there is a set of functions which work for different kind of object:&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQ EQL EQUAL EQUALP&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The function with the shorter name &amp;nbsp;support stricter definition of equality. The functions with the longer implement less restrictive, perhaps more intuitive, definitions of equality.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQ is true for identical symbols. In fact, it&amp;rsquo;s true for any identical object. You can consider that EQ compare the memory address of objects. For example, you have a list, this list is EQ to itself, but it not EQ to another list with identical items. You also can use EQ to compare number and character, but this is not a good idea to do it.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQL keeps EQ&amp;rsquo;s feature, and extends it to identical numbers and character. But EQL requires the identical type, thus 0.0 is not EQL to 0. EQL is case sensitive.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQUAL is true for things that print the same. &amp;nbsp;EQ and EQL are not true for lists have the same structure and items. &amp;nbsp;EQUAL is true for those list.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQUALP ignores number type and character case. EQUALP is the most permissive of the core comparison functions.Everything that is EQUAL is also EQUALP. But EQUALP ignores case distinctions between characters, and applies the (typeless) mathematical concept of equality to numbers; thus 0.0 is EQUALP to 0.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/Capture.png&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1076&quot; height=&quot;684&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/Capture.png&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;Capture&quot; width=&quot;366&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/lispnot-all-equal-is-equal_12.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-7532318613816049228</guid><pubDate>Thu, 12 Aug 2010 10:37:00 +0000</pubDate><atom:updated>2010-08-12T03:37:51.196-07:00</atom:updated><title>[Lisp]Not all equal is equal</title><description>&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1075&quot; id=&quot;oibd&quot; title=&quot;http://www.jdxyw.com/?p=1075&quot;&gt;http://www.jdxyw.com/?p=1075&lt;/a&gt;&lt;br&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In Lisp, there is a set of functions which work for different kind of object:&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQ EQL EQUAL EQUALP&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;The function with the shorter name &amp;nbsp;support stricter definition of equality. The functions with the longer implement less restrictive, perhaps more intuitive, definitions of equality.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQ is true for identical symbols. In fact, it&amp;rsquo;s true for any identical object. You can consider that EQ compare the memory address of objects. For example, you have a list, this list is EQ to itself, but it not EQ to another list with identical items. You also can use EQ to compare number and character, but this is not a good idea to do it.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQL keeps EQ&amp;rsquo;s feature, and extends it to identical numbers and character. But EQL requires the identical type, thus 0.0 is not EQL to 0. EQL is case sensitive.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQUAL is true for things that print the same. &amp;nbsp;EQ and EQL are not true for lists have the same structure and items. &amp;nbsp;EQUAL is true for those list.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;EQUALP ignores number type and character case. EQUALP is the most permissive of the core comparison functions.Everything that is EQUAL is also EQUALP. But EQUALP ignores case distinctions between characters, and applies the (typeless) mathematical concept of equality to numbers; thus 0.0 is EQUALP to 0.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/Capture.png&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1076&quot; height=&quot;684&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/Capture.png&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;Capture&quot; width=&quot;366&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/lispnot-all-equal-is-equal.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-7596054211853800417</guid><pubDate>Sun, 08 Aug 2010 13:19:00 +0000</pubDate><atom:updated>2010-08-08T06:19:43.163-07:00</atom:updated><title>很会把脉的冯导</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1043&quot; id=&quot;dld9&quot; title=&quot;http://www.jdxyw.com/?p=1043&quot;&gt;http://www.jdxyw.com/?p=1043&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25105;&amp;#27809;&amp;#30475;&amp;#36807;&amp;#12298;&amp;#21776;&amp;#23665;&amp;#22823;&amp;#22320;&amp;#38663;&amp;#12299;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#25171;&amp;#31639;&amp;#21435;&amp;#30475;&amp;#65292;&amp;#29702;&amp;#30001;&amp;#19982;&amp;#25105;&amp;#19981;&amp;#30475;&amp;#12298;&amp;#21335;&amp;#20140;&amp;#65281;&amp;#21335;&amp;#20140;&amp;#65281;&amp;#12299;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#26679;&amp;#30340;&amp;#12290;&amp;#25105;&amp;#35748;&amp;#20026;&amp;#65292;&amp;#29616;&amp;#38454;&amp;#27573;&amp;#33021;&amp;#22815;&amp;#22312;&amp;#20013;&amp;#22269;&amp;#22823;&amp;#38470;&amp;#38498;&amp;#32447;&amp;#19978;&amp;#26144;&amp;#30340;&amp;#36825;&amp;#31867;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#26082;&amp;#27809;&amp;#26377;&amp;#21830;&amp;#19994;&amp;#19978;&amp;#30340;&amp;#35266;&amp;#30475;&amp;#20215;&amp;#20540;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#20855;&amp;#26377;&amp;#33402;&amp;#26415;&amp;#19978;&amp;#30340;&amp;#35266;&amp;#36175;&amp;#20215;&amp;#20540;&amp;#65292;&amp;#29305;&amp;#21035;&amp;#19981;&amp;#20855;&amp;#26377;&amp;#30340;&amp;#26159;&amp;#21382;&amp;#21490;&amp;#20215;&amp;#20540;&amp;#21644;&amp;#30495;&amp;#23454;&amp;#20107;&amp;#20214;&amp;#30340;&amp;#21453;&amp;#26144;&amp;#12290;&amp;#36825;&amp;#37324;&amp;#30340;&amp;#19968;&amp;#20999;&amp;#65292;&amp;#23436;&amp;#20840;&amp;#22788;&amp;#20110;&amp;#25105;&amp;#30340;&amp;#33222;&amp;#26029;&amp;#29468;&amp;#24819;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20911;&amp;#23567;&amp;#21018;&amp;#24456;&amp;#20250;&amp;#25226;&amp;#33033;&amp;#65292;&amp;#24456;&amp;#20250;&amp;#25226;&amp;#20013;&amp;#22269;&amp;#35266;&amp;#20247;&amp;#30340;&amp;#33033;&amp;#65292;&amp;#19968;&amp;#25226;&amp;#19968;&amp;#20010;&amp;#20934;&amp;#12290;&amp;#20911;&amp;#23548;&amp;#20174;&amp;#19968;&amp;#24320;&amp;#22987;&amp;#23601;&amp;#36208;&amp;#32676;&amp;#20247;&amp;#36335;&amp;#32447;&amp;#65292;&amp;#36825;&amp;#19968;&amp;#36873;&amp;#25321;&amp;#65292;&amp;#22880;&amp;#23450;&amp;#20102;&amp;#20182;&amp;#21518;&amp;#38754;&amp;#25968;&amp;#21313;&amp;#24180;&amp;#30340;&amp;#32844;&amp;#19994;&amp;#21457;&amp;#23637;&amp;#36947;&amp;#36335;&amp;#12290;&amp;#29616;&amp;#22312;&amp;#22238;&amp;#22836;&amp;#30475;&amp;#20182;&amp;#36208;&amp;#30340;&amp;#36825;&amp;#19968;&amp;#26465;&amp;#36335;&amp;#65292;&amp;#30830;&amp;#23454;&amp;#26159;&amp;#24456;&amp;#21463;&amp;#20013;&amp;#22269;&amp;#35266;&amp;#20247;&amp;#21916;&amp;#27426;&amp;#65292;&amp;#24456;&amp;#21916;&amp;#38395;&amp;#20048;&amp;#35265;&amp;#30340;&amp;#19968;&amp;#26465;&amp;#36335;&amp;#12290;&amp;#20174;&amp;#26089;&amp;#26399;&amp;#30340;&amp;#12298;&amp;#32534;&amp;#36753;&amp;#37096;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#12299;&amp;#12298;&amp;#21271;&amp;#20140;&amp;#20154;&amp;#22312;&amp;#32445;&amp;#32422;&amp;#12299;&amp;#21040;&amp;#21518;&amp;#38754;&amp;#30340;&amp;#19968;&amp;#31995;&amp;#21015;&amp;#30340;&amp;#36154;&amp;#23681;&amp;#26723;&amp;#30340;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#20182;&amp;#19968;&amp;#30452;&amp;#22312;&amp;#36208;&amp;#32676;&amp;#20247;&amp;#36335;&amp;#32447;&amp;#65292;&amp;#22312;&amp;#32676;&amp;#20247;&amp;#20013;&amp;#25171;&amp;#28378;&amp;#65292;&amp;#19982;&amp;#32676;&amp;#20247;&amp;#25171;&amp;#25104;&amp;#19968;&amp;#29255;&amp;#12290;&amp;#36825;&amp;#20123;&amp;#29255;&amp;#23376;&amp;#30340;&amp;#29305;&amp;#28857;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#23383;&amp;#65292;&amp;ldquo;&amp;#36139;&amp;rdquo;&amp;#65292;&amp;#21271;&amp;#20140;&amp;#20154;&amp;#29305;&amp;#26377;&amp;#30340;&amp;#37027;&amp;#31181;&amp;#36139;&amp;#65292;&amp;#20316;&amp;#20026;&amp;#38081;&amp;#25171;&amp;#30340;&amp;#33883;&amp;#22823;&amp;#29239;&amp;#65292;&amp;#27969;&amp;#27700;&amp;#30340;&amp;#32654;&amp;#22899;&amp;#65292;&amp;#33883;&amp;#20248;&amp;#24456;&amp;#22909;&amp;#30340;&amp;#23558;&amp;#20911;&amp;#23548;&amp;#30340;&amp;#24847;&amp;#22270;&amp;#34920;&amp;#29616;&amp;#20102;&amp;#20986;&amp;#26469;&amp;#65292;&amp;#23558;&amp;#30456;&amp;#22768;&amp;#36825;&amp;#38376;&amp;#35821;&amp;#35328;&amp;#33402;&amp;#26415;&amp;#25104;&amp;#21151;&amp;#30340;&amp;#25644;&amp;#19978;&amp;#20102;&amp;#22823;&amp;#38134;&amp;#24149;&amp;#65292;&amp;#23558;&amp;#36825;&amp;#29420;&amp;#26377;&amp;#30340;&amp;#35828;&amp;#23398;&amp;#36887;&amp;#21809;&amp;#30340;&amp;#33402;&amp;#26415;&amp;#22312;&amp;#38134;&amp;#24149;&amp;#19978;&amp;#21457;&amp;#25196;&amp;#20809;&amp;#22823;&amp;#12290;&amp;#32780;&amp;#33510;&amp;#20110;&amp;#27809;&amp;#26377;&amp;#23459;&amp;#27844;&amp;#24773;&amp;#24863;&amp;#30340;&amp;#35266;&amp;#20247;&amp;#65292;&amp;#20063;&amp;#22312;&amp;#36825;&amp;#19968;&amp;#24149;&amp;#24149;&amp;#21916;&amp;#21095;&amp;#20013;&amp;#25214;&amp;#23547;&amp;#21040;&amp;#20102;&amp;#35753;&amp;ldquo;&amp;#32769;&amp;#30334;&amp;#22995;&amp;#20170;&amp;#20799;&amp;#30495;&amp;#39640;&amp;#20852;&amp;rdquo;&amp;#30340;&amp;#29702;&amp;#30001;&amp;#65292;&amp;#24320;&amp;#24576;&amp;#22823;&amp;#31505;&amp;#19968;&amp;#30058;&amp;#65292;&amp;#36890;&amp;#20307;&amp;#33298;&amp;#30021;&amp;#12290;&amp;#36825;&amp;#26679;&amp;#20854;&amp;#23454;&amp;#24456;&amp;#22909;&amp;#65292;&amp;#25105;&amp;#33457;&amp;#28857;&amp;#38065;&amp;#65292;&amp;#20320;&amp;#32473;&amp;#25105;&amp;#28857;&amp;#20048;&amp;#23376;&amp;#65292;&amp;#24456;&amp;#22909;&amp;#24456;&amp;#20581;&amp;#24247;&amp;#12290;&amp;#20911;&amp;#23548;&amp;#25293;&amp;#30340;&amp;#37117;&amp;#26159;&amp;#23567;&amp;#20154;&amp;#29289;&amp;#65292;&amp;#32780;&amp;#36825;&amp;#20123;&amp;#23567;&amp;#20154;&amp;#29289;&amp;#37117;&amp;#26377;&amp;#19968;&amp;#20010;&amp;#29305;&amp;#28857;&amp;#65292;&amp;#23601;&amp;#26159;&amp;ldquo;&amp;#28151;&amp;rdquo;&amp;#65292;&amp;#28151;&amp;#26085;&amp;#23376;&amp;#30340;&amp;#28151;&amp;#12290;&amp;#24456;&amp;#22810;&amp;#20107;&amp;#24773;&amp;#65292;&amp;#20320;&amp;#35748;&amp;#30495;&amp;#20102;&amp;#65292;&amp;#19978;&amp;#22836;&amp;#23601;&amp;#35201;&amp;#36319;&amp;#20320;&amp;#35748;&amp;#30495;&amp;#20102;&amp;#65292;&amp;#20320;&amp;#35201;&amp;#26159;&amp;#19981;&amp;#35748;&amp;#30495;&amp;#20102;&amp;#65292;&amp;#19978;&amp;#22836;&amp;#20063;&amp;#35201;&amp;#36319;&amp;#20320;&amp;#35748;&amp;#30495;&amp;#20102;&amp;#65292;&amp;#36825;&amp;#26679;&amp;#19979;&amp;#26469;&amp;#65292;&amp;#21482;&amp;#22909;&amp;#28151;&amp;#20102;&amp;#12290;&amp;#28151;&amp;#65292;&amp;#20854;&amp;#23454;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#24456;&amp;#39640;&amp;#30340;&amp;#22659;&amp;#30028;&amp;#65292;&amp;#20911;&amp;#23548;&amp;#23558;&amp;#36825;&amp;#19968;&amp;#22659;&amp;#30028;&amp;#21457;&amp;#23637;&amp;#21040;&amp;#20102;&amp;#19968;&amp;#20010;&amp;#26032;&amp;#30340;&amp;#39640;&amp;#24230;&amp;#12290;&amp;#19982;&amp;#29579;&amp;#26388;&amp;#19968;&amp;#26679;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#37117;&amp;#22312;&amp;#29992;&amp;#35843;&amp;#20355;&amp;#65292;&amp;#23305;&amp;#31505;&amp;#24594;&amp;#39554;&amp;#65292;&amp;#29609;&amp;#19990;&amp;#19981;&amp;#24685;&amp;#26469;&amp;#24212;&amp;#23545;&amp;#36825;&amp;#19968;&amp;#33618;&amp;#35806;&amp;#30340;&amp;#19990;&amp;#30028;&amp;#65292;&amp;#26469;&amp;#38754;&amp;#23545;&amp;#36825;&amp;#19968;&amp;#33618;&amp;#21776;&amp;#30340;&amp;#20154;&amp;#29983;&amp;#12290;&amp;#31934;&amp;#24425;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#65292;&amp;#23601;&amp;#22312;&amp;#36825;&amp;#19968;&amp;#24149;&amp;#24149;&amp;#33618;&amp;#21776;&amp;#30340;&amp;#24320;&amp;#22987;&amp;#19982;&amp;#32467;&amp;#26463;&amp;#20013;&amp;#36718;&amp;#22238;&amp;#19978;&amp;#28436;&amp;#12290;&amp;#20320;&amp;#33719;&amp;#24471;&amp;#20102;&amp;#24555;&amp;#20048;&amp;#65292;&amp;#20911;&amp;#23548;&amp;#33719;&amp;#24471;&amp;#20102;&amp;#31080;&amp;#25151;&amp;#65292;&amp;#21452;&amp;#36194;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19982;&amp;#24352;&amp;#33402;&amp;#35851;&amp;#65292;&amp;#38472;&amp;#20975;&amp;#27468;&amp;#19981;&amp;#21516;&amp;#65292;&amp;#20911;&amp;#23567;&amp;#21018;&amp;#20063;&amp;#35768;&amp;#20174;&amp;#19968;&amp;#24320;&amp;#22987;&amp;#23601;&amp;#21387;&amp;#26681;&amp;#19981;&amp;#24819;&amp;#36208;&amp;#20182;&amp;#20204;&amp;#36825;&amp;#19968;&amp;#26465;&amp;#36947;&amp;#36335;&amp;#12290;&amp;#23545;&amp;#20110;&amp;#20182;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#21487;&amp;#33021;&amp;#31080;&amp;#25151;&amp;#27604;&amp;#22870;&amp;#39033;&amp;#26469;&amp;#30340;&amp;#26356;&amp;#20026;&amp;#37325;&amp;#35201;&amp;#65292;&amp;#31561;&amp;#21040;&amp;#20182;&amp;#33021;&amp;#22815;&amp;#19968;&amp;#24180;&amp;#26377;10&amp;#20159;&amp;#31080;&amp;#25151;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20182;&amp;#21487;&amp;#20197;&amp;#29992;&amp;#32431;&amp;#37329;&amp;#24314;&amp;#36896;&amp;#21313;&amp;#20010;&amp;#23567;&amp;#37329;&amp;#20154;&amp;#25670;&amp;#22312;&amp;#23478;&amp;#37324;&amp;#29609;&amp;#12290;&amp;#26412;&amp;#26469;&amp;#22043;&amp;#65292;&amp;#21830;&amp;#19994;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#20026;&amp;#20160;&amp;#20040;&amp;#35201;&amp;#36171;&amp;#20104;&amp;#23427;&amp;#36229;&amp;#20986;&amp;#21830;&amp;#19994;&amp;#30005;&amp;#24433;&amp;#20043;&amp;#22806;&amp;#30340;&amp;#24847;&amp;#20041;&amp;#65292;&amp;#20154;&amp;#23478;&amp;#26681;&amp;#26412;&amp;#23601;&amp;#19981;&amp;#24819;&amp;#36825;&amp;#20123;&amp;#24847;&amp;#20041;&amp;#65292;&amp;#20309;&amp;#24517;&amp;#24378;&amp;#21152;&amp;#32473;&amp;#20154;&amp;#65311;&amp;#20911;&amp;#23548;&amp;#21644;&amp;#23186;&amp;#20307;&amp;#30340;&amp;#20851;&amp;#31995;&amp;#19968;&amp;#21521;&amp;#19981;&amp;#22909;&amp;#65292;&amp;#22312;&amp;#20247;&amp;#22810;&amp;#24433;&amp;#35780;&amp;#20154;&amp;#30340;&amp;#35780;&amp;#20215;&amp;#20013;&amp;#20063;&amp;#19981;&amp;#22909;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#36825;&amp;#24182;&amp;#19981;&amp;#22952;&amp;#30861;&amp;#20182;&amp;#22312;&amp;#35266;&amp;#20247;&amp;#24515;&amp;#30446;&amp;#20013;&amp;#30340;&amp;#22320;&amp;#20301;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#22952;&amp;#30861;&amp;#35266;&amp;#20247;&amp;#32487;&amp;#32493;&amp;#25487;&amp;#38065;&amp;#30475;&amp;#20182;&amp;#30340;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#22240;&amp;#20026;&amp;#20911;&amp;#23548;&amp;#20174;&amp;#19968;&amp;#24320;&amp;#22987;&amp;#23601;&amp;#25488;&amp;#30528;&amp;#35266;&amp;#20247;&amp;#30340;&amp;#33033;&amp;#20102;&amp;#65292;&amp;#27605;&amp;#31455;&amp;#35266;&amp;#20247;&amp;#25165;&amp;#26159;&amp;#34915;&amp;#39135;&amp;#29238;&amp;#27597;&amp;#12290;&amp;#35266;&amp;#20247;&amp;#33457;&amp;#38065;&amp;#36827;&amp;#30005;&amp;#24433;&amp;#38498;&amp;#65292;&amp;#35201;&amp;#20040;&amp;#23547;&amp;#27714;&amp;#27426;&amp;#20048;&amp;#65292;&amp;#35201;&amp;#20040;&amp;#23547;&amp;#27714;&amp;#24863;&amp;#21160;&amp;#65292;&amp;#20320;&amp;#25293;&amp;#20010;&amp;#12298;&amp;#33521;&amp;#38596;&amp;#12299;&amp;#21644;&amp;#12298;&amp;#26080;&amp;#26497;&amp;#12299;&amp;#21040;&amp;#24213;&amp;#24819;&amp;#32473;&amp;#35266;&amp;#20247;&amp;#20160;&amp;#20040;&amp;#65311;&amp;#20911;&amp;#23548;&amp;#35753;&amp;#22823;&amp;#23478;&amp;#37117;&amp;#19981;&amp;#35201;&amp;#35013;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#23545;&amp;#30340;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#25105;&amp;#26159;&amp;#27969;&amp;#27667;&amp;#25105;&amp;#24597;&amp;#35841;&amp;#30340;&amp;#26085;&amp;#23376;&amp;#12290;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#20154;&amp;#20204;&amp;#32439;&amp;#32439;&amp;#30340;&amp;#24448;&amp;#33258;&amp;#24049;&amp;#36523;&amp;#19978;&amp;#36148;&amp;#26631;&amp;#31614;&amp;#25293;&amp;#35064;&amp;#29031;&amp;#30340;&amp;#24180;&amp;#20195;&amp;#65292;&amp;#35013;&amp;#65292;&amp;#23601;&amp;#19981;&amp;#22909;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20911;&amp;#23548;&amp;#32473;&amp;#20102;&amp;#35266;&amp;#20247;&amp;#24456;&amp;#22810;&amp;#24180;&amp;#30340;&amp;#27426;&amp;#20048;&amp;#20102;&amp;#65292;&amp;#29616;&amp;#22312;&amp;#20182;&amp;#24819;&amp;#32473;&amp;#35266;&amp;#20247;&amp;#26469;&amp;#19968;&amp;#28857;&amp;#28857;&amp;#24863;&amp;#21160;&amp;#20102;&amp;#65292;&amp;#36825;&amp;#20063;&amp;#35768;&amp;#23558;&amp;#20250;&amp;#26159;&amp;#20182;&amp;#20107;&amp;#19994;&amp;#30340;&amp;#31532;&amp;#20108;&amp;#26149;&amp;#12290;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#26368;&amp;#22909;&amp;#30340;&amp;#26102;&amp;#20195;&amp;#65292;&amp;#20063;&amp;#26159;&amp;#20010;&amp;#26368;&amp;#22351;&amp;#30340;&amp;#26102;&amp;#20195;&amp;#65292;&amp;#22351;&amp;#30340;&amp;#20320;&amp;#37117;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#21738;&amp;#22351;&amp;#30340;&amp;#26102;&amp;#20195;&amp;#12290;&amp;#20320;&amp;#24971;&amp;#23624;&amp;#65292;&amp;#37057;&amp;#38391;&amp;#65292;&amp;#27426;&amp;#20048;&amp;#24050;&amp;#32463;&amp;#26080;&amp;#27861;&amp;#35753;&amp;#20320;&amp;#37322;&amp;#25918;&amp;#20320;&amp;#30340;&amp;#24773;&amp;#32490;&amp;#65292;&amp;#20911;&amp;#23548;&amp;#20026;&amp;#20320;&amp;#24320;&amp;#20102;&amp;#21478;&amp;#22806;&amp;#30340;&amp;#19968;&amp;#25159;&amp;#38376;&amp;#65292;&amp;#20320;&amp;#19981;&amp;#26159;&amp;#24555;&amp;#20048;&amp;#19981;&amp;#20102;&amp;#21527;&amp;#65311;&amp;#22909;&amp;#65292;&amp;#25105;&amp;#23601;&amp;#35753;&amp;#20320;&amp;#24863;&amp;#21160;&amp;#12290;&amp;#36825;&amp;#20004;&amp;#24180;&amp;#65292;&amp;#20013;&amp;#21326;&amp;#22823;&amp;#22320;&amp;#21696;&amp;#22158;&amp;#19981;&amp;#26029;&amp;#65292;&amp;#24808;&amp;#32477;&amp;#20154;&amp;#23536;&amp;#30340;&amp;#20107;&amp;#20214;&amp;#19968;&amp;#20986;&amp;#25509;&amp;#30528;&amp;#19968;&amp;#20986;&amp;#65292;&amp;#25351;&amp;#19981;&amp;#23450;&amp;#37027;&amp;#22825;&amp;#23601;&amp;#31096;&amp;#20174;&amp;#22825;&amp;#19978;&amp;#38477;&amp;#65292;&amp;#26159;&amp;#26102;&amp;#20505;&amp;#32473;&amp;#20320;&amp;#28857;&amp;#24863;&amp;#21160;&amp;#20102;&amp;#12290;&amp;#12298;&amp;#38598;&amp;#32467;&amp;#21495;&amp;#12299;&amp;#31639;&amp;#26159;&amp;#20911;&amp;#23548;&amp;#30340;&amp;#35797;&amp;#35797;&amp;#27700;&amp;#28201;&amp;#30340;&amp;#20316;&amp;#21697;&amp;#65292;&amp;#21453;&amp;#21709;&amp;#19968;&amp;#22914;&amp;#26082;&amp;#24448;&amp;#30340;&amp;#22909;&amp;#12290;&amp;#37027;&amp;#20040;&amp;#26469;&amp;#28857;&amp;#22823;&amp;#24863;&amp;#21160;&amp;#30340;&amp;#65292;&amp;#32437;&amp;#35266;100&amp;#24180;&amp;#26469;&amp;#30340;&amp;#20013;&amp;#22269;&amp;#36817;&amp;#29616;&amp;#20195;&amp;#21490;&amp;#65292;&amp;#26377;&amp;#24456;&amp;#22810;&amp;#24808;&amp;#32477;&amp;#20154;&amp;#23536;&amp;#30340;&amp;#20107;&amp;#20214;&amp;#65292;&amp;#19968;&amp;#23450;&amp;#21487;&amp;#20197;&amp;#35753;&amp;#35266;&amp;#20247;&amp;#21741;&amp;#25104;&amp;#26408;&amp;#20035;&amp;#20234;&amp;#12290;&amp;#21487;&amp;#36825;&amp;#26377;&amp;#20010;&amp;#36873;&amp;#39064;&amp;#30340;&amp;#38382;&amp;#39064;&amp;#12290;&amp;#20911;&amp;#23548;&amp;#19981;&amp;#20165;&amp;#20250;&amp;#25488;&amp;#35266;&amp;#20247;&amp;#30340;&amp;#33033;&amp;#65292;&amp;#20063;&amp;#20250;&amp;#25488;&amp;#24191;&amp;#30005;&amp;#24635;&amp;#23616;&amp;#30340;&amp;#33033;&amp;#12290;&amp;#20154;&amp;#31096;&amp;#19981;&amp;#33021;&amp;#25293;&amp;#65292;&amp;#25293;&amp;#22826;&amp;#20037;&amp;#20197;&amp;#21069;&amp;#30340;&amp;#65292;&amp;#35266;&amp;#20247;&amp;#27809;&amp;#26377;&amp;#20849;&amp;#40483;&amp;#65292;&amp;#25293;&amp;#22826;&amp;#36817;&amp;#30340;&amp;#65292;&amp;times;&amp;times;&amp;times;&amp;times;&amp;times;&amp;times;&amp;times;&amp;#65288;&amp;#27492;&amp;#22788;&amp;#30465;&amp;#30053;&amp;#22810;&amp;#23383;&amp;#65289;&amp;#12290;&amp;#21335;&amp;#20140;&amp;#22823;&amp;#23648;&amp;#26432;&amp;#34987;&amp;#38470;&amp;#24029;&amp;#25250;&amp;#20808;&amp;#20102;&amp;#65292;98&amp;#27946;&amp;#27700;&amp;#20063;&amp;#25293;&amp;#36807;&amp;#20102;&amp;#65292;&amp;#25293;&amp;#27766;&amp;#24029;&amp;#65292;&amp;#29577;&amp;#26641;&amp;#25110;&amp;#26159;&amp;#29579;&amp;#23478;&amp;#23725;&amp;#65292;&amp;#21482;&amp;#20250;&amp;#25307;&amp;#26469;&amp;#39554;&amp;#22768;&amp;#19968;&amp;#29255;&amp;#12290;&amp;#21776;&amp;#23665;&amp;#22823;&amp;#22320;&amp;#38663;&amp;#23601;&amp;#33073;&amp;#39062;&amp;#32780;&amp;#20986;&amp;#12290;&amp;#34429;&amp;#28982;&amp;#22823;&amp;#20107;&amp;#20214;&amp;#30340;&amp;#32972;&amp;#26223;&amp;#23450;&amp;#20102;&amp;#65292;&amp;#20027;&amp;#20307;&amp;#26059;&amp;#24459;&amp;#36824;&amp;#26159;&amp;#38656;&amp;#35201;&amp;#23450;&amp;#19979;&amp;#26469;&amp;#30340;&amp;#12290;&amp;#30053;&amp;#35835;&amp;#21382;&amp;#21490;&amp;#30340;&amp;#20154;&amp;#30693;&amp;#36947;&amp;#65292;&amp;#21776;&amp;#23665;&amp;#22823;&amp;#22320;&amp;#38663;&amp;#30340;&amp;#21490;&amp;#26009;&amp;#22914;&amp;#26524;&amp;#28145;&amp;#25366;&amp;#30340;&amp;#35805;&amp;#65292;&amp;#23558;&amp;#20250;&amp;#19981;&amp;#22570;&amp;#20837;&amp;#30446;&amp;#65292;&amp;#20911;&amp;#23548;&amp;#36825;&amp;#20040;&amp;#32874;&amp;#26126;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#20154;&amp;#65292;&amp;#32477;&amp;#19981;&amp;#20250;&amp;#24178;&amp;#36825;&amp;#20013;&amp;#20667;&amp;#20107;&amp;#12290;&amp;#26368;&amp;#23433;&amp;#20840;&amp;#30340;&amp;#39064;&amp;#26448;&amp;#23601;&amp;#26159;&amp;#24456;&amp;#29399;&amp;#34880;&amp;#30340;&amp;#20146;&amp;#24773;&amp;#20102;&amp;#65292;&amp;#32477;&amp;#23545;&amp;#30334;&amp;#21457;&amp;#30334;&amp;#20013;&amp;#12290;&amp;#36825;&amp;#20040;&amp;#22823;&amp;#30340;&amp;#28798;&amp;#38590;&amp;#38754;&amp;#21069;&amp;#65292;&amp;#32943;&amp;#23450;&amp;#26377;&amp;#22971;&amp;#31163;&amp;#23376;&amp;#25955;&amp;#65292;&amp;#23478;&amp;#30772;&amp;#20154;&amp;#20129;&amp;#30340;&amp;#24754;&amp;#24808;&amp;#25925;&amp;#20107;&amp;#12290;&amp;#32780;&amp;#36825;&amp;#19968;&amp;#39064;&amp;#26448;&amp;#65292;&amp;#23433;&amp;#20840;&amp;#32780;&amp;#21448;&amp;#26377;&amp;#25928;&amp;#65292;&amp;#26082;&amp;#33021;&amp;#21453;&amp;#26144;&amp;#22320;&amp;#38663;&amp;#30340;&amp;#24808;&amp;#28872;&amp;#65292;&amp;#21448;&amp;#26377;&amp;#19968;&amp;#20010;&amp;#24456;&amp;#27491;&amp;#30830;&amp;#30340;&amp;#20027;&amp;#39064;&amp;#65292;&amp;#35266;&amp;#20247;&amp;#36824;&amp;#33021;&amp;#20080;&amp;#36134;&amp;#65292;&amp;#20911;&amp;#23548;&amp;#30340;&amp;#23567;&amp;#31639;&amp;#30424;&amp;#25171;&amp;#30340;&amp;#22826;&amp;#22909;&amp;#20102;&amp;#12290;&amp;#21776;&amp;#23665;&amp;#22823;&amp;#22320;&amp;#38663;&amp;#65292;&amp;#35828;&amp;#21040;&amp;#24213;&amp;#21482;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#25176;&amp;#32780;&amp;#24050;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#37027;&amp;#20123;&amp;#35828;&amp;#20911;&amp;#23548;&amp;#26159;&amp;#36186;&amp;#22269;&amp;#38590;&amp;#36130;&amp;#30340;&amp;#20154;&amp;#65292;&amp;#33041;&amp;#23376;&amp;#24212;&amp;#35813;&amp;#36824;&amp;#27809;&amp;#26377;&amp;#33457;&amp;#29983;&amp;#22823;&amp;#65292;&amp;#22269;&amp;#38590;&amp;#36130;&amp;#26377;&amp;#36825;&amp;#20040;&amp;#36186;&amp;#30340;&amp;#20040;&amp;#65311;&amp;#23478;&amp;#37324;&amp;#27809;&amp;#26377;&amp;#12298;&amp;#36766;&amp;#28023;&amp;#12299;&amp;#26597;&amp;#26597;&amp;#30475;&amp;#20160;&amp;#20040;&amp;#21483;&amp;#22269;&amp;#38590;&amp;#36130;&amp;#21527;&amp;#65311;&amp;#26377;&amp;#20123;&amp;#20154;&amp;#35828;&amp;#20911;&amp;#23548;&amp;#26159;&amp;#22312;&amp;#25581;&amp;#20013;&amp;#21326;&amp;#27665;&amp;#26063;&amp;#30340;&amp;#20260;&amp;#30116;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#21477;&amp;#35090;&amp;#20041;&amp;#36824;&amp;#26159;&amp;#36140;&amp;#20041;&amp;#30340;&amp;#21477;&amp;#23376;&amp;#65311;&amp;#22312;&amp;#25105;&amp;#30475;&amp;#26469;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#21477;&amp;#26080;&amp;#19978;&amp;#33635;&amp;#20809;&amp;#30340;&amp;#35780;&amp;#20215;&amp;#65292;&amp;#20911;&amp;#23567;&amp;#21018;&amp;#36824;&amp;#27809;&amp;#26377;&amp;#38386;&amp;#30340;&amp;#37027;&amp;#20040;&amp;#34507;&amp;#30140;&amp;#21435;&amp;#25130;&amp;#20160;&amp;#20040;&amp;#20260;&amp;#30116;&amp;#12290;&amp;#20182;&amp;#35201;&amp;#26159;&amp;#30495;&amp;#25581;&amp;#20102;&amp;#20260;&amp;#30116;&amp;#65292;&amp;#26126;&amp;#22825;&amp;#23601;&amp;#20250;&amp;#26377;&amp;#20154;&amp;#25581;&amp;#20102;&amp;#20182;&amp;#30340;&amp;#30382;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22312;&amp;#25105;&amp;#20889;&amp;#26412;&amp;#25991;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#31080;&amp;#25151;&amp;#20284;&amp;#20046;&amp;#24050;&amp;#32463;&amp;#36807;&amp;#20102;5&amp;#20159;&amp;#12290;&amp;#24403;&amp;#35266;&amp;#20247;&amp;#22312;&amp;#30005;&amp;#24433;&amp;#38498;&amp;#37324;&amp;#38754;&amp;#27882;&amp;#30524;&amp;#23110;&amp;#23057;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#30495;&amp;#24076;&amp;#26395;&amp;#20911;&amp;#23548;&amp;#33021;&amp;#29992;&amp;#22235;&amp;#24029;&amp;#35805;&amp;#35828;&amp;#19968;&amp;#21477;&amp;#65292;&amp;ldquo;&amp;#40863;&amp;#20799;&amp;#23376;&amp;#65292;&amp;#36825;&amp;#27425;&amp;#35013;&amp;#22823;&amp;#21457;&amp;#20102;&amp;#12290;&amp;rdquo;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/blog-post_976.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-7214276906802632154</guid><pubDate>Sun, 08 Aug 2010 13:18:00 +0000</pubDate><atom:updated>2010-08-08T06:18:49.794-07:00</atom:updated><title>《天堂回信》</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1064&quot; id=&quot;mx2d&quot; title=&quot;http://www.jdxyw.com/?p=1064&quot;&gt;http://www.jdxyw.com/?p=1064&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s3263778.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1065&quot; height=&quot;306&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s3263778.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s3263778&quot; width=&quot;230&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22312;&amp;#19968;&amp;#20010;&amp;#20154;&amp;#30340;&amp;#25104;&amp;#38271;&amp;#36807;&amp;#31243;&amp;#20013;&amp;#65292;&amp;#22312;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#31461;&amp;#24180;&amp;#38454;&amp;#27573;&amp;#37324;&amp;#65292;&amp;#26377;&amp;#19968;&amp;#20010;&amp;#33021;&amp;#22815;&amp;#30140;&amp;#29233;&amp;#20294;&amp;#19981;&amp;#28346;&amp;#29233;&amp;#65292;&amp;#33021;&amp;#38506;&amp;#33258;&amp;#24049;&amp;#35748;&amp;#35782;&amp;#31038;&amp;#20250;&amp;#65292;&amp;#35748;&amp;#35782;&amp;#29983;&amp;#27963;&amp;#65292;&amp;#35748;&amp;#35782;&amp;#33258;&amp;#28982;&amp;#65292;&amp;#35748;&amp;#35782;&amp;#23567;&amp;#21160;&amp;#29289;&amp;#65292;&amp;#38506;&amp;#33258;&amp;#24049;&amp;#29609;&amp;#32781;&amp;#65292;&amp;#25945;&amp;#33258;&amp;#24049;&amp;#25216;&amp;#33021;&amp;#65292;&amp;#20445;&amp;#25345;&amp;#23401;&amp;#23376;&amp;#35813;&amp;#26377;&amp;#30340;&amp;#31461;&amp;#24515;&amp;#19982;&amp;#29609;&amp;#24615;&amp;#30340;&amp;#38271;&amp;#36744;&amp;#65292;&amp;#26159;&amp;#19968;&amp;#20214;&amp;#38590;&amp;#24471;&amp;#32780;&amp;#21448;&amp;#24184;&amp;#31119;&amp;#30340;&amp;#20107;&amp;#24773;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#30340;&amp;#32769;&amp;#22836;&amp;#65292;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#36864;&amp;#20241;&amp;#30340;&amp;#37038;&amp;#36882;&amp;#21592;&amp;#65292;&amp;#22312;&amp;#20799;&amp;#23376;&amp;#23219;&amp;#22919;&amp;#20986;&amp;#22269;&amp;#24037;&amp;#20316;&amp;#30340;&amp;#26399;&amp;#38388;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#20154;&amp;#25226;&amp;#23567;&amp;#23385;&amp;#23376;&amp;#20174;&amp;#20960;&amp;#20010;&amp;#26376;&amp;#22823;&amp;#25289;&amp;#25199;&amp;#21040;&amp;#20102;&amp;#20845;&amp;#19971;&amp;#23681;&amp;#12290;&amp;#22312;&amp;#36825;&amp;#26399;&amp;#38388;&amp;#19982;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#23567;&amp;#23385;&amp;#23376;&amp;#32467;&amp;#19979;&amp;#20102;&amp;#28145;&amp;#21402;&amp;#30340;&amp;#31062;&amp;#23385;&amp;#24773;&amp;#35850;&amp;#12290;&amp;#32769;&amp;#22836;&amp;#30140;&amp;#29233;&amp;#36825;&amp;#20010;&amp;#23385;&amp;#23376;&amp;#65292;&amp;#20294;&amp;#19981;&amp;#28346;&amp;#29233;&amp;#65292;&amp;#23385;&amp;#23376;&amp;#22312;&amp;#29239;&amp;#29239;&amp;#30340;&amp;#29031;&amp;#39038;&amp;#19979;&amp;#65292;&amp;#25026;&amp;#20107;&amp;#65292;&amp;#20054;&amp;#24039;&amp;#65292;&amp;#20294;&amp;#21448;&amp;#39037;&amp;#30382;&amp;#65292;&amp;#28120;&amp;#27668;&amp;#65292;&amp;#31258;&amp;#23273;&amp;#30340;&amp;#36523;&amp;#36527;&amp;#24120;&amp;#24120;&amp;#26377;&amp;#30528;&amp;#22823;&amp;#20154;&amp;#33324;&amp;#30340;&amp;#27668;&amp;#24687;&amp;#19982;&amp;#20005;&amp;#32899;&amp;#65292;&amp;#20805;&amp;#28385;&amp;#30528;&amp;#31461;&amp;#30495;&amp;#19982;&amp;#27700;&amp;#26230;&amp;#19968;&amp;#33324;&amp;#30340;&amp;#28165;&amp;#28552;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#23681;&amp;#26376;&amp;#19981;&amp;#39286;&amp;#20154;&amp;#65292;&amp;#32769;&amp;#20154;&amp;#32456;&amp;#31350;&amp;#20250;&amp;#26377;&amp;#32769;&amp;#21435;&amp;#30340;&amp;#19968;&amp;#22825;&amp;#65292;&amp;#36828;&amp;#22312;&amp;#22269;&amp;#22806;&amp;#30340;&amp;#20799;&amp;#23219;&amp;#22919;&amp;#20063;&amp;#32456;&amp;#20110;&amp;#35843;&amp;#22238;&amp;#20102;&amp;#22269;&amp;#20869;&amp;#12290;&amp;#20316;&amp;#20026;&amp;#19968;&amp;#20010;&amp;#39640;&amp;#32423;&amp;#30693;&amp;#35782;&amp;#20998;&amp;#23376;&amp;#65292;&amp;#36825;&amp;#20301;&amp;#27597;&amp;#20146;&amp;#35748;&amp;#35782;&amp;#21040;&amp;#20102;&amp;#22269;&amp;#20869;&amp;#31454;&amp;#20105;&amp;#30340;&amp;#20005;&amp;#37325;&amp;#24615;&amp;#30340;&amp;#21516;&amp;#26102;&amp;#65292;&amp;#20063;&amp;#32473;&amp;#21407;&amp;#26412;&amp;#24555;&amp;#20048;&amp;#30340;&amp;#31461;&amp;#24180;&amp;#29983;&amp;#27963;&amp;#24102;&amp;#26469;&amp;#38452;&amp;#24433;&amp;#12290;&amp;#32769;&amp;#22836;&amp;#25644;&amp;#22238;&amp;#20102;&amp;#32769;&amp;#23627;&amp;#23376;&amp;#65292;&amp;#32769;&amp;#22836;&amp;#28176;&amp;#28176;&amp;#30340;&amp;#32769;&amp;#21435;&amp;#65292;&amp;#32769;&amp;#22836;&amp;#36208;&amp;#20102;&amp;#12290;&amp;#22825;&amp;#22530;&amp;#30340;&amp;#22238;&amp;#20449;&amp;#38543;&amp;#30528;&amp;#39118;&amp;#31581;&amp;#22312;&amp;#31354;&amp;#20013;&amp;#39640;&amp;#39640;&amp;#30340;&amp;#39128;&amp;#30528;&amp;#65292;&amp;#37027;&amp;#19968;&amp;#22768;&amp;#22768;&amp;ldquo;&amp;#24038;&amp;#19978;&amp;#34915;&amp;#21475;&amp;#34955;&amp;#65292;&amp;#24613;&amp;#25937;&amp;#30418;&amp;#65292;&amp;#33292;&amp;#19979;&amp;#21547;&amp;#26381;&amp;#19968;&amp;#29255;&amp;#65292;&amp;#19968;&amp;#29255;&amp;rdquo;&amp;#23383;&amp;#23383;&amp;#22312;&amp;#32819;&amp;#12290;&amp;#20799;&amp;#31461;&amp;#30340;&amp;#22825;&amp;#28982;&amp;#30340;&amp;#24515;&amp;#24615;&amp;#65292;&amp;#26159;&amp;#22823;&amp;#33258;&amp;#28982;&amp;#32473;&amp;#20154;&amp;#31867;&amp;#26368;&amp;#32654;&amp;#22909;&amp;#30340;&amp;#31036;&amp;#29289;&amp;#20043;&amp;#19968;&amp;#65292;&amp;#21487;&amp;#26159;&amp;#25105;&amp;#20204;&amp;#21364;&amp;#22312;&amp;#19968;&amp;#20195;&amp;#21448;&amp;#19968;&amp;#20195;&amp;#30340;&amp;#25703;&amp;#27585;&amp;#30528;&amp;#36825;&amp;#19968;&amp;#32654;&amp;#22909;&amp;#30340;&amp;#31036;&amp;#29289;&amp;#65292;&amp;#24403;&amp;#19968;&amp;#20195;&amp;#21448;&amp;#19968;&amp;#20195;&amp;#30340;&amp;#20799;&amp;#31461;&amp;#38271;&amp;#22823;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#26366;&amp;#32463;&amp;#30340;&amp;#21463;&amp;#23475;&amp;#32773;&amp;#65292;&amp;#25671;&amp;#36523;&amp;#19968;&amp;#21464;&amp;#65292;&amp;#25104;&amp;#20026;&amp;#20102;&amp;#26368;&amp;#20026;&amp;#20919;&amp;#37239;&amp;#30340;&amp;#21053;&amp;#23376;&amp;#25163;&amp;#65292;&amp;#36824;&amp;#35201;&amp;#32654;&amp;#20854;&amp;#21517;&amp;#26352;&amp;#65292;&amp;#20026;&amp;#20320;&amp;#22909;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20146;&amp;#24773;&amp;#39064;&amp;#26448;&amp;#30340;&amp;#30005;&amp;#24433;&amp;#30005;&amp;#35270;&amp;#21095;&amp;#65292;&amp;#26159;&amp;#26368;&amp;#20026;&amp;#27867;&amp;#28389;&amp;#30340;&amp;#39064;&amp;#26448;&amp;#20102;&amp;#65292;&amp;#22312;&amp;#20013;&amp;#22269;&amp;#30340;&amp;#36817;&amp;#19977;&amp;#21313;&amp;#24180;&amp;#30340;&amp;#30005;&amp;#35270;&amp;#30005;&amp;#24433;&amp;#20013;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#39064;&amp;#26448;&amp;#30340;&amp;#20316;&amp;#21697;&amp;#24050;&amp;#32463;&amp;#24555;&amp;#35201;&amp;#35753;&amp;#20154;&amp;#21520;&amp;#20102;&amp;#12290;&amp;#20294;&amp;#36825;&amp;#20063;&amp;#26159;&amp;#26368;&amp;#20026;&amp;#23433;&amp;#20840;&amp;#30340;&amp;#39064;&amp;#26448;&amp;#20043;&amp;#19968;&amp;#65292;&amp;#36825;&amp;#24456;&amp;#31526;&amp;#21512;&amp;#21382;&amp;#20195;&amp;#32479;&amp;#27835;&amp;#32773;-&amp;#26080;&amp;#35770;&amp;#26159;&amp;#21476;&amp;#20195;&amp;#36824;&amp;#26159;&amp;#29616;&amp;#20195;&amp;#30340;-&amp;#23545;&amp;#19982;&amp;#27835;&amp;#19979;&amp;#27665;&amp;#20247;&amp;#30340;&amp;#19968;&amp;#31181;&amp;#26399;&amp;#35768;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#26159;&amp;#19968;&amp;#31181;&amp;#24858;&amp;#27665;&amp;#30340;&amp;#25919;&amp;#31574;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#20063;&amp;#21578;&amp;#35785;&amp;#20102;&amp;#25105;&amp;#20204;&amp;#65292;&amp;#20013;&amp;#22269;&amp;#30005;&amp;#24433;&amp;#30028;&amp;#65292;&amp;#36824;&amp;#26159;&amp;#33021;&amp;#25293;&amp;#20986;&amp;#19968;&amp;#28857;&amp;#28857;&amp;#20687;&amp;#26679;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#20877;&amp;#29399;&amp;#34880;&amp;#30340;&amp;#39064;&amp;#26448;&amp;#65292;&amp;#21482;&amp;#35201;&amp;#30495;&amp;#24515;&amp;#21435;&amp;#25293;&amp;#65292;&amp;#20063;&amp;#26159;&amp;#33021;&amp;#25293;&amp;#22909;&amp;#30340;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#30340;&amp;#31062;&amp;#23385;&amp;#24773;&amp;#65292;&amp;#20854;&amp;#23454;&amp;#21453;&amp;#26144;&amp;#20102;90&amp;#24180;&amp;#20195;&amp;#21021;&amp;#30340;&amp;#19968;&amp;#37096;&amp;#20998;&amp;#31038;&amp;#20250;&amp;#29616;&amp;#23454;&amp;#12290;&amp;#28608;&amp;#28872;&amp;#30340;&amp;#31038;&amp;#20250;&amp;#31454;&amp;#20105;&amp;#19982;&amp;#23401;&amp;#23376;&amp;#30340;&amp;#33258;&amp;#28982;&amp;#22825;&amp;#24615;&amp;#21457;&amp;#23637;&amp;#65292;&amp;#20986;&amp;#22269;&amp;#24037;&amp;#20316;&amp;#30340;&amp;#29238;&amp;#27597;&amp;#19982;&amp;#30041;&amp;#22312;&amp;#31062;&amp;#29238;&amp;#27597;&amp;#36523;&amp;#36793;&amp;#23401;&amp;#23376;&amp;#30340;&amp;#24863;&amp;#24773;&amp;#30340;&amp;#38548;&amp;#38402;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#30340;&amp;#26216;&amp;#26216;&amp;#26159;&amp;#24184;&amp;#36816;&amp;#30340;&amp;#65292;&amp;#20182;&amp;#33267;&amp;#23569;&amp;#36824;&amp;#26377;&amp;#36807;&amp;#37027;&amp;#20040;&amp;#20960;&amp;#24180;&amp;#32654;&amp;#22909;&amp;#32780;&amp;#21448;&amp;#24357;&amp;#36275;&amp;#29645;&amp;#36149;&amp;#30340;&amp;#31461;&amp;#24180;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/blog-post_08.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-6993973128768572260</guid><pubDate>Sun, 08 Aug 2010 13:17:00 +0000</pubDate><atom:updated>2010-08-08T06:17:43.451-07:00</atom:updated><title>《蒂凡尼的早餐》</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1794018.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1061&quot; height=&quot;432&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1794018.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1794018&quot; width=&quot;309&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#19968;&amp;#20010;&amp;#26159;&amp;#38752;&amp;#36149;&amp;#22919;&amp;#25509;&amp;#27982;&amp;#30340;&amp;#27809;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#21517;&amp;#27668;&amp;#30340;&amp;#23567;&amp;#20316;&amp;#23478;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#26159;&amp;#21608;&amp;#26059;&amp;#20110;&amp;#22810;&amp;#37329;&amp;#30007;&amp;#20154;&amp;#24403;&amp;#20013;&amp;#26399;&amp;#26395;&amp;#38035;&amp;#21040;&amp;#37329;&amp;#40863;&amp;#23167;&amp;#30340;&amp;#31038;&amp;#20132;&amp;#21517;&amp;#23195;&amp;#12290;&amp;#22312;&amp;#32445;&amp;#32422;&amp;#36825;&amp;#20010;&amp;#32321;&amp;#21326;&amp;#36855;&amp;#24187;&amp;#30340;&amp;#22478;&amp;#24066;&amp;#20013;&amp;#19981;&amp;#26399;&amp;#32780;&amp;#36935;&amp;#12290;&amp;#22914;&amp;#26524;&amp;#29992;&amp;#19968;&amp;#21477;&amp;#31616;&amp;#21333;&amp;#30340;&amp;#35805;&amp;#35821;&amp;#26469;&amp;#21465;&amp;#36848;&amp;#36825;&amp;#20010;&amp;#30005;&amp;#24433;&amp;#30340;&amp;#35805;&amp;#65292;&amp;#23601;&amp;#26159;&amp;#28418;&amp;#20142;&amp;#30340;&amp;#28784;&amp;#22993;&amp;#23064;&amp;#36855;&amp;#36884;&amp;#30693;&amp;#36820;&amp;#65292;&amp;#25918;&amp;#24323;&amp;#36861;&amp;#23547;&amp;#36149;&amp;#22919;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#65292;&amp;#23637;&amp;#24320;&amp;#21452;&amp;#33218;&amp;#25509;&amp;#21463;&amp;#20102;&amp;#23567;&amp;#20316;&amp;#23478;&amp;#30340;&amp;#30495;&amp;#29233;&amp;#12290;&amp;#20284;&amp;#20046;&amp;#65292;&amp;#29233;&amp;#24773;&amp;#22312;&amp;#36825;&amp;#37324;&amp;#32456;&amp;#20110;&amp;#25112;&amp;#32988;&amp;#20102;&amp;#37329;&amp;#38065;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#36139;&amp;#36145;&amp;#22827;&amp;#22971;&amp;#30334;&amp;#20107;&amp;#34928;&amp;#12290;&amp;#19981;&amp;#29992;&amp;#39532;&amp;#35834;&amp;#30340;&amp;#35328;&amp;#20256;&amp;#36523;&amp;#25945;&amp;#65292;&amp;#20063;&amp;#26080;&amp;#38656;&amp;#24093;&amp;#22269;&amp;#20027;&amp;#20041;&amp;#24433;&amp;#29255;&amp;#30340;&amp;#33104;&amp;#34432;&amp;#12290;&amp;#21476;&amp;#20154;&amp;#20284;&amp;#20046;&amp;#26089;&amp;#23601;&amp;#20026;&amp;#20102;&amp;#38754;&amp;#21253;&amp;#21644;&amp;#29233;&amp;#24773;&amp;#23408;&amp;#37325;&amp;#23408;&amp;#36731;&amp;#32473;&amp;#20986;&amp;#20102;&amp;#31572;&amp;#26696;&amp;#12290;&amp;#25105;&amp;#29233;&amp;#20320;&amp;#65281;So what&amp;#65311;&amp;#25343;&amp;#20160;&amp;#20040;&amp;#29233;&amp;#65311;&amp;#29233;&amp;#24773;&amp;#24182;&amp;#19981;&amp;#20165;&amp;#20165;&amp;#26159;&amp;#26376;&amp;#20809;&amp;#19979;&amp;#30340;&amp;#28459;&amp;#27493;&amp;#65292;&amp;#20063;&amp;#19981;&amp;#26159;&amp;#38632;&amp;#20013;&amp;#30340;&amp;#23567;&amp;#38632;&amp;#20254;&amp;#12290;&amp;#22833;&amp;#21435;&amp;#20102;&amp;#32463;&amp;#27982;&amp;#26469;&amp;#28304;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#22362;&amp;#23454;&amp;#30340;&amp;#37329;&amp;#38065;&amp;#22522;&amp;#30784;&amp;#65292;&amp;#28010;&amp;#28459;&amp;#30340;&amp;#29233;&amp;#24773;&amp;#21482;&amp;#20250;&amp;#21464;&amp;#25104;&amp;#29712;&amp;#30862;&amp;#30340;&amp;#26612;&amp;#31859;&amp;#27833;&amp;#30416;&amp;#37233;&amp;#37259;&amp;#33590;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#35201;&amp;#36807;&amp;#21507;&amp;#20102;&amp;#19978;&amp;#39039;&amp;#27809;&amp;#19979;&amp;#39039;&amp;#30340;&amp;#25326;&amp;#25454;&amp;#26085;&amp;#23376;&amp;#12290;&amp;#36825;&amp;#20010;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#36824;&amp;#33021;&amp;#35828;&amp;#20986;&amp;#29233;&amp;#24773;&amp;#26159;&amp;#20160;&amp;#20040;&amp;#21527;&amp;#65311;&amp;#20320;&amp;#26366;&amp;#32463;&amp;#35828;&amp;#25105;&amp;#20320;&amp;#27704;&amp;#36828;&amp;#29233;&amp;#30528;&amp;#22905;&amp;#65292;&amp;#22905;&amp;#26366;&amp;#32463;&amp;#30693;&amp;#36947;&amp;#29233;&amp;#24773;&amp;#26159;&amp;#20160;&amp;#20040;&amp;#65292;&amp;#32780;&amp;#19981;&amp;#30693;&amp;#27704;&amp;#36828;&amp;#26159;&amp;#20160;&amp;#20040;&amp;#12290;&amp;#32780;&amp;#22914;&amp;#20170;&amp;#65292;&amp;#22905;/&amp;#20182;&amp;#21487;&amp;#33021;&amp;#30693;&amp;#36947;&amp;#27704;&amp;#36828;&amp;#26159;&amp;#20160;&amp;#20040;&amp;#65292;&amp;#32780;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#29233;&amp;#24773;&amp;#26159;&amp;#20160;&amp;#20040;&amp;#20102;&amp;#12290;&amp;#21487;&amp;#35201;&amp;#26159;&amp;#21482;&amp;#30475;&amp;#30528;&amp;#32654;&amp;#20029;&amp;#32474;&amp;#28866;&amp;#30340;Tiffany&amp;#65292;&amp;#23601;&amp;#20250;&amp;#20687;&amp;#22899;&amp;#20027;&amp;#35282;&amp;#19968;&amp;#26679;&amp;#65292;&amp;#25351;&amp;#36131;&amp;#37027;&amp;#20123;&amp;#22810;&amp;#37329;&amp;#24069;&amp;#27668;&amp;#30007;&amp;#37117;&amp;#26159;&amp;#23567;&amp;#20154;&amp;#65292;&amp;#37117;&amp;#26159;&amp;#36229;&amp;#32423;&amp;#23567;&amp;#20154;&amp;#35013;&amp;#25198;&amp;#25104;&amp;#30340;&amp;#23567;&amp;#20154;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#30007;&amp;#22899;&amp;#20027;&amp;#35282;&amp;#37117;&amp;#26159;&amp;#38519;&amp;#20110;&amp;#36855;&amp;#36884;&amp;#20043;&amp;#20013;&amp;#30340;&amp;#20154;&amp;#65292;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#30007;&amp;#20027;&amp;#35282;&amp;#34987;&amp;#22899;&amp;#20027;&amp;#35282;&amp;#32473;&amp;#21560;&amp;#24341;&amp;#20102;&amp;#65292;&amp;#20915;&amp;#23450;&amp;#25913;&amp;#21464;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#33392;&amp;#33510;&amp;#22859;&amp;#26007;&amp;#65292;&amp;#33258;&amp;#21147;&amp;#26356;&amp;#29983;&amp;#65292;&amp;#24076;&amp;#26395;&amp;#36208;&amp;#19978;&amp;#24184;&amp;#31119;&amp;#30340;&amp;#23567;&amp;#24247;&amp;#22823;&amp;#36947;&amp;#65292;&amp;#28982;&amp;#21518;&amp;#25265;&amp;#24471;&amp;#32654;&amp;#20154;&amp;#24402;&amp;#12290;&amp;#22899;&amp;#20027;&amp;#35282;&amp;#27809;&amp;#26377;&amp;#37027;&amp;#20040;&amp;#22909;&amp;#30340;&amp;#32784;&amp;#24515;&amp;#65292;&amp;#34429;&amp;#28982;&amp;#22905;&amp;#30693;&amp;#36947;&amp;#30007;&amp;#20027;&amp;#35282;&amp;#21916;&amp;#27426;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#32780;&amp;#33258;&amp;#24049;&amp;#20063;&amp;#23545;&amp;#36825;&amp;#20010;&amp;#26366;&amp;#32463;&amp;#21507;&amp;#36719;&amp;#39277;&amp;#30340;&amp;#23567;&amp;#30333;&amp;#33080;&amp;#24456;&amp;#20542;&amp;#24515;&amp;#12290;&amp;#21487;&amp;#33258;&amp;#24049;&amp;#32456;&amp;#31350;&amp;#36824;&amp;#26159;&amp;#36873;&amp;#25321;&amp;#23233;&amp;#32473;&amp;#34987;&amp;#33258;&amp;#24049;&amp;#31216;&amp;#20026;&amp;#38271;&amp;#30340;&amp;#20687;&amp;#22836;&amp;#29482;&amp;#30340;&amp;#30007;&amp;#20154;&amp;#65292;&amp;#21644;&amp;#40657;&amp;#30382;&amp;#32932;&amp;#30340;&amp;#21335;&amp;#32654;&amp;#23500;&amp;#32705;&amp;#12290;&amp;#20294;&amp;#25918;&amp;#24515;&amp;#65292;&amp;#22909;&amp;#33713;&amp;#22366;&amp;#30340;&amp;#21830;&amp;#19994;&amp;#30005;&amp;#24433;&amp;#24635;&amp;#26159;&amp;#20250;&amp;#32473;&amp;#20320;&amp;#23436;&amp;#28385;&amp;#30340;&amp;#22823;&amp;#32467;&amp;#23616;&amp;#65292;&amp;#26368;&amp;#32456;&amp;#65292;&amp;#29579;&amp;#23376;&amp;#19982;&amp;#20844;&amp;#20027;&amp;#36824;&amp;#26159;&amp;#20250;&amp;#22312;&amp;#19968;&amp;#36215;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#30005;&amp;#24433;&amp;#32456;&amp;#31350;&amp;#26159;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#22810;&amp;#24180;&amp;#26469;&amp;#65292;&amp;#21608;&amp;#26059;&amp;#20110;&amp;#19978;&amp;#27969;&amp;#31038;&amp;#20250;&amp;#65292;&amp;#19968;&amp;#24515;&amp;#24819;&amp;#35201;&amp;#36807;&amp;#19978;&amp;#36149;&amp;#22919;&amp;#29983;&amp;#27963;&amp;#30340;&amp;#22899;&amp;#20027;&amp;#35282;&amp;#24590;&amp;#20040;&amp;#20165;&amp;#20165;&amp;#20250;&amp;#34987;&amp;#30007;&amp;#20027;&amp;#35282;&amp;#30340;&amp;#19968;&amp;#30058;&amp;#19981;&amp;#36275;&amp;#20004;&amp;#20998;&amp;#38047;&amp;#30340;&amp;#35805;&amp;#35821;&amp;#32473;&amp;#25171;&amp;#21160;&amp;#65311;&amp;#38500;&amp;#38750;&amp;#22905;&amp;#26089;&amp;#24050;&amp;#21160;&amp;#20102;&amp;#24402;&amp;#38544;&amp;#23665;&amp;#26519;&amp;#65292;&amp;#37329;&amp;#30424;&amp;#27927;&amp;#25163;&amp;#30340;&amp;#24565;&amp;#22836;&amp;#12290;&amp;#20540;&amp;#24471;&amp;#24198;&amp;#24184;&amp;#30340;&amp;#26159;&amp;#65292;&amp;#22899;&amp;#20027;&amp;#35282;&amp;#34429;&amp;#28982;&amp;#36861;&amp;#36880;&amp;#32440;&amp;#37257;&amp;#37329;&amp;#36855;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#22836;&amp;#33041;&amp;#36824;&amp;#31639;&amp;#28165;&amp;#26970;&amp;#12290;&amp;#22905;&amp;#30693;&amp;#36947;&amp;#65292;&amp;#30007;&amp;#20027;&amp;#35282;&amp;#21644;&amp;#21307;&amp;#29983;&amp;#37117;&amp;#19981;&amp;#26159;&amp;#23567;&amp;#20154;&amp;#65292;&amp;#37117;&amp;#26159;&amp;#29233;&amp;#22905;&amp;#30340;&amp;#12290;&amp;#22905;&amp;#20063;&amp;#29233;&amp;#30528;&amp;#20182;&amp;#20204;&amp;#65292;&amp;#21487;&amp;#20182;&amp;#20204;&amp;#26080;&amp;#27861;&amp;#32473;&amp;#20104;&amp;#22905;&amp;#24819;&amp;#35201;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#12290;&amp;#22312;&amp;#38754;&amp;#21253;&amp;#19982;&amp;#30495;&amp;#29233;&amp;#20043;&amp;#38388;&amp;#65292;&amp;#22905;&amp;#36873;&amp;#25321;&amp;#20102;&amp;#38754;&amp;#21253;&amp;#65292;&amp;#19968;&amp;#30452;&amp;#22362;&amp;#25345;&amp;#21040;&amp;#20102;&amp;#26368;&amp;#21518;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#36825;&amp;#26159;60&amp;#24180;&amp;#20195;&amp;#30340;&amp;#32654;&amp;#22269;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#24773;&amp;#33410;&amp;#19968;&amp;#33324;&amp;#65292;&amp;#25925;&amp;#20107;&amp;#31616;&amp;#21333;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#24748;&amp;#24565;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#36215;&amp;#20239;&amp;#65292;&amp;#23601;&amp;#36830;&amp;#21095;&amp;#20013;&amp;#26368;&amp;#22823;&amp;#30340;&amp;#24754;&amp;#21095;-&amp;#22899;&amp;#20027;&amp;#35282;&amp;#24351;&amp;#24351;&amp;#30340;&amp;#19981;&amp;#24184;&amp;#36523;&amp;#20129;-&amp;#20063;&amp;#26159;&amp;#24179;&amp;#28129;&amp;#26080;&amp;#22855;&amp;#65292;&amp;#20856;&amp;#22411;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#22909;&amp;#33713;&amp;#22366;&amp;#30340;&amp;#21830;&amp;#19994;&amp;#30005;&amp;#24433;&amp;#12290;&amp;#20911;&amp;#23548;&amp;#24212;&amp;#35813;&amp;#24868;&amp;#24594;&amp;#65292;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#26126;&amp;#30446;&amp;#24352;&amp;#32966;&amp;#30340;&amp;#32473;Tiffany&amp;#20570;&amp;#24191;&amp;#21578;&amp;#65292;&amp;#22826;&amp;#36807;&amp;#20998;&amp;#20102;&amp;#12290;&amp;#36825;&amp;#20010;&amp;#24180;&amp;#20195;&amp;#30340;&amp;#32654;&amp;#22269;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#26377;&amp;#30528;&amp;#19968;&amp;#31181;&amp;#29305;&amp;#27530;&amp;#30340;&amp;#36136;&amp;#24863;&amp;#65292;&amp;#37027;&amp;#20010;&amp;#24180;&amp;#20195;&amp;#32654;&amp;#22269;&amp;#30340;&amp;#36136;&amp;#24863;&amp;#65292;&amp;#19968;&amp;#31181;&amp;#21619;&amp;#36947;&amp;#12290;&amp;#38395;&amp;#39321;&amp;#35782;&amp;#22899;&amp;#20154;&amp;#33324;&amp;#30340;&amp;#21619;&amp;#36947;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#26412;&amp;#36523;&amp;#20160;&amp;#20040;&amp;#20986;&amp;#24425;&amp;#30340;&amp;#20142;&amp;#28857;&amp;#65292;&amp;#21487;&amp;#25105;&amp;#36824;&amp;#26159;&amp;#32473;&amp;#20102;5&amp;#26143;&amp;#12290;&amp;#36203;&amp;#26412;&amp;#26159;&amp;#22312;&amp;#26159;&amp;#22826;&amp;#28418;&amp;#20142;&amp;#65292;&amp;#22826;&amp;#36855;&amp;#20154;&amp;#20102;&amp;#12290;&amp;#29255;&amp;#23376;&amp;#30340;&amp;#22905;&amp;#20431;&amp;#30382;&amp;#65292;&amp;#21487;&amp;#29233;&amp;#65292;&amp;#20219;&amp;#24615;&amp;#65292;&amp;#26102;&amp;#23578;&amp;#65292;&amp;#37003;&amp;#36962;&amp;#65292;&amp;#36731;&amp;#20347;&amp;#65292;&amp;#22905;&amp;#30340;&amp;#30561;&amp;#30524;&amp;#24826;&amp;#24554;&amp;#65292;&amp;#22905;&amp;#30340;&amp;#40657;&amp;#33394;&amp;#30340;&amp;#36830;&amp;#34915;&amp;#35033;&amp;#65292;&amp;#22905;&amp;#30340;&amp;#38271;&amp;#28895;&amp;#26438;&amp;#65292;&amp;#22905;&amp;#30340;&amp;#23485;&amp;#27839;&amp;#24125;&amp;#65292;&amp;#37117;&amp;#22312;&amp;#21465;&amp;#36848;&amp;#36825;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#20107;&amp;#23454;&amp;#65292;&amp;#36825;&amp;#26159;&amp;#20010;&amp;#22549;&amp;#20837;&amp;#20961;&amp;#38388;&amp;#30340;&amp;#22825;&amp;#20351;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#30340;&amp;#37197;&amp;#20048;&amp;#12298;Moon River&amp;#12299;&amp;#65292;&amp;#23601;&amp;#20687;&amp;#22825;&amp;#31809;&amp;#19968;&amp;#33324;&amp;#12290;&amp;#23601;&amp;#20914;&amp;#30528;&amp;#36825;&amp;#20004;&amp;#28857;&amp;#65292;&amp;#25105;&amp;#32473;&amp;#20102;&amp;#20116;&amp;#26143;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#27492;&amp;#29255;&amp;#34987;&amp;#35748;&amp;#20026;&amp;#26159;60&amp;#24180;&amp;#20195;&amp;#26368;&amp;#20026;&amp;#20248;&amp;#31168;&amp;#30340;&amp;#32654;&amp;#22269;&amp;#21916;&amp;#21095;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#30475;&amp;#26469;&amp;#37027;&amp;#20010;&amp;#26102;&amp;#20505;&amp;#30340;&amp;#21916;&amp;#21095;&amp;#29255;&amp;#36824;&amp;#30495;&amp;#30340;&amp;#19981;&amp;#24590;&amp;#20040;&amp;#26679;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#29255;&amp;#20013;&amp;#36824;&amp;#26377;&amp;#20004;&amp;#22823;&amp;#20142;&amp;#28857;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#23601;&amp;#26159;&amp;#37027;&amp;#21482;&amp;#29483;&amp;#65292;&amp;#19968;&amp;#20010;&amp;#23601;&amp;#26159;&amp;#37027;&amp;#20010;&amp;#26085;&amp;#26412;&amp;#25668;&amp;#24433;&amp;#24072;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/blog-post.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-5831519776726424437</guid><pubDate>Sun, 08 Aug 2010 13:17:00 +0000</pubDate><atom:updated>2010-08-08T06:17:13.505-07:00</atom:updated><title>[VIM]Tips and Tricks(2)</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;Insert text for multiple lines at the same position&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;ctrl + v, (selecting multiple lines), I, (type something you want), ESC.(After you press I, the highlight would disappear, don&amp;rsquo;t worry. Just type anything you want, then Press Esc.)&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;vim build-in file explorer&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;:Explore&amp;lt;CR&amp;gt;(It allows you to navigate through your source code, and you also can make file modification.)&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;-: The most useful: Change to upper directory (cd ..)&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;mf: Mark a file&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;D: Delete marked files or the file the cursor is on, if nothing ismarked.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;R: Rename the file the cursor is on.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;d: Create a new directory in the current directory&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;%: Create a new file in the current directory&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;Go to last modification position&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;gi&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;Increment the number you are standing on&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Ctrl+A&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/vimtips-and-tricks2_08.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-7656358823860382789</guid><pubDate>Sun, 08 Aug 2010 13:17:00 +0000</pubDate><atom:updated>2010-08-08T06:17:11.595-07:00</atom:updated><title>[VIM]Tips and Tricks(2)</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;Insert text for multiple lines at the same position&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;ctrl + v, (selecting multiple lines), I, (type something you want), ESC.(After you press I, the highlight would disappear, don&amp;rsquo;t worry. Just type anything you want, then Press Esc.)&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;vim build-in file explorer&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;:Explore&amp;lt;CR&amp;gt;(It allows you to navigate through your source code, and you also can make file modification.)&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;-: The most useful: Change to upper directory (cd ..)&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;mf: Mark a file&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;D: Delete marked files or the file the cursor is on, if nothing ismarked.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;R: Rename the file the cursor is on.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;d: Create a new directory in the current directory&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;%: Create a new file in the current directory&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;Go to last modification position&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;gi&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&lt;b&gt;Increment the number you are standing on&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Ctrl+A&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/vimtips-and-tricks2.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-5694053903540727064</guid><pubDate>Sun, 08 Aug 2010 13:16:00 +0000</pubDate><atom:updated>2010-08-08T06:16:42.565-07:00</atom:updated><title>[VIM]Tips and Tricks(1)</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Shift&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In visual mode,&lt;span style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font face=&quot;monospace&quot;&gt;&amp;nbsp;&lt;b&gt;&amp;gt;&lt;/b&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;will shift them&amp;nbsp;&lt;b&gt;shiftwidth&lt;/b&gt;&amp;nbsp;to the right. You can use . to repeat last command.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In normal mode, &amp;gt;&amp;gt; will indent current line.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In normal mode,&amp;nbsp;&lt;b&gt;&amp;gt;}&lt;/b&gt;&amp;nbsp;will indent all of the lines until the end of the paragraph.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In normal mode,&amp;gt;&amp;gt;4 will indent all four lines&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Cancel highlight after search&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;:nohl&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Switch between upper and lower&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;~&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Go back to last postion&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;rdquo;(double &amp;lsquo;)&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/vimtips-and-tricks1_08.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-4067344680292378864</guid><pubDate>Sun, 08 Aug 2010 13:16:00 +0000</pubDate><atom:updated>2010-08-08T06:16:35.165-07:00</atom:updated><title>[VIM]Tips and Tricks(1)</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Shift&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In visual mode,&lt;span style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font face=&quot;monospace&quot;&gt;&amp;nbsp;&lt;b&gt;&amp;gt;&lt;/b&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;will shift them&amp;nbsp;&lt;b&gt;shiftwidth&lt;/b&gt;&amp;nbsp;to the right. You can use . to repeat last command.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In normal mode, &amp;gt;&amp;gt; will indent current line.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In normal mode,&amp;nbsp;&lt;b&gt;&amp;gt;}&lt;/b&gt;&amp;nbsp;will indent all of the lines until the end of the paragraph.&lt;/font&gt;&lt;/li&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;In normal mode,&amp;gt;&amp;gt;4 will indent all four lines&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Cancel highlight after search&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;:nohl&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Switch between upper and lower&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;~&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;Go back to last postion&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin-left:25px;margin-right:0px&quot;&gt;&lt;li style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;rdquo;(double &amp;lsquo;)&lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/vimtips-and-tricks1.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-7183883755320823350</guid><pubDate>Sun, 08 Aug 2010 13:15:00 +0000</pubDate><atom:updated>2010-08-08T06:15:42.944-07:00</atom:updated><title>《Fight Club》</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1311094.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1039&quot; height=&quot;475&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1311094.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1311094&quot; width=&quot;354&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#27599;&amp;#20010;&amp;#20154;&amp;#24515;&amp;#20013;&amp;#37117;&amp;#26377;&amp;#22836;&amp;#23567;&amp;#24618;&amp;#20861;&amp;#65292;&amp;#21487;&amp;#24182;&amp;#19981;&amp;#26159;&amp;#27599;&amp;#20010;&amp;#20154;&amp;#37117;&amp;#26377;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#32966;&amp;#37327;&amp;#21435;&amp;#23558;&amp;#33258;&amp;#24049;&amp;#24515;&amp;#20013;&amp;#30340;&amp;#37326;&amp;#20861;&amp;#37322;&amp;#25918;&amp;#20986;&amp;#26469;&amp;#12290;&amp;#27491;&amp;#22914;&amp;#29255;&amp;#20013;&amp;#30340;Taylor&amp;#25152;&amp;#35828;&amp;#30340;&amp;#19968;&amp;#26679;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#24037;&amp;#20316;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#38134;&amp;#34892;&amp;#24080;&amp;#21495;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#20320;&amp;#24320;&amp;#30340;&amp;#36710;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#65292;&amp;#30382;&amp;#22841;&amp;#37324;&amp;#30340;&amp;#19996;&amp;#35199;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#65292;&amp;#34915;&amp;#26381;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#65292;&amp;#20320;&amp;#21482;&amp;#26159;&amp;#33464;&amp;#33464;&amp;#20247;&amp;#29983;&amp;#20013;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#12290;&amp;#21482;&amp;#26377;&amp;#20320;&amp;#24515;&amp;#20013;&amp;#30340;&amp;#23567;&amp;#24618;&amp;#20861;&amp;#25165;&amp;#26159;&amp;#30495;&amp;#27491;&amp;#30340;&amp;#20320;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#24456;&amp;#22810;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#37117;&amp;#26159;&amp;#27985;&amp;#27985;&amp;#22121;&amp;#22121;&amp;#65292;&amp;#30475;&amp;#20284;&amp;#22312;&amp;#20026;&amp;#33258;&amp;#24049;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#23454;&amp;#38469;&amp;#19978;&amp;#26159;&amp;#22312;&amp;#20026;&amp;#21035;&amp;#20154;&amp;#27963;&amp;#30528;&amp;#12290;&amp;#22312;&amp;#20026;&amp;#29238;&amp;#27597;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#20026;&amp;#23376;&amp;#22899;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#20026;&amp;#31038;&amp;#20250;&amp;#25152;&amp;#35813;&amp;#36981;&amp;#24490;&amp;#30340;&amp;#35268;&amp;#30697;&amp;#27963;&amp;#30528;&amp;#12290;&amp;#24456;&amp;#22810;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#19968;&amp;#20986;&amp;#29983;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#20154;&amp;#29983;&amp;#36712;&amp;#36857;&amp;#23601;&amp;#22823;&amp;#33268;&amp;#32473;&amp;#23450;&amp;#20102;&amp;#19979;&amp;#26469;&amp;#65292;&amp;#20063;&amp;#35768;&amp;#19982;&amp;#23454;&amp;#38469;&amp;#30340;&amp;#20250;&amp;#30053;&amp;#26377;&amp;#19981;&amp;#21516;&amp;#65292;&amp;#20294;&amp;#30446;&amp;#30340;&amp;#22320;&amp;#19982;&amp;#36335;&amp;#19978;&amp;#30340;&amp;#39118;&amp;#26223;&amp;#37117;&amp;#26159;&amp;#19968;&amp;#26679;&amp;#30340;&amp;#12290;&amp;#20320;&amp;#34987;&amp;#22900;&amp;#24441;&amp;#30528;&amp;#65292;&amp;#26377;&amp;#24418;&amp;#30340;&amp;#29289;&amp;#36136;&amp;#20139;&amp;#21463;&amp;#21644;&amp;#26080;&amp;#24418;&amp;#30340;&amp;#31038;&amp;#20250;&amp;#35268;&amp;#30697;&amp;#32473;&amp;#22900;&amp;#24441;&amp;#30528;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#32467;&amp;#23130;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#20080;&amp;#25151;&amp;#65292;&amp;#20320;&amp;#24212;&amp;#35813;&amp;#26159;&amp;#24322;&amp;#24615;&amp;#24651;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#26377;&amp;#20010;&amp;#23567;&amp;#23401;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#26377;&amp;#20221;&amp;#31283;&amp;#23450;&amp;#30340;&amp;#24037;&amp;#20316;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#12290;&amp;#12290;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24456;&amp;#22810;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#22859;&amp;#21147;&amp;#24037;&amp;#20316;&amp;#65292;&amp;#22312;&amp;#23398;&amp;#26657;&amp;#32844;&amp;#22330;&amp;#21162;&amp;#21147;&amp;#25340;&amp;#26432;&amp;#65292;&amp;#26432;&amp;#20986;&amp;#20102;&amp;#19968;&amp;#26465;&amp;#34880;&amp;#36335;&amp;#65292;&amp;#33258;&amp;#20197;&amp;#20026;&amp;#25670;&amp;#33073;&amp;#20102;&amp;#26463;&amp;#32538;&amp;#65292;&amp;#21364;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#65292;&amp;#33258;&amp;#24049;&amp;#38519;&amp;#20837;&amp;#21040;&amp;#20102;&amp;#21478;&amp;#22806;&amp;#30340;&amp;#19968;&amp;#31181;&amp;#22900;&amp;#24441;&amp;#20043;&amp;#20013;&amp;#12290;&amp;#29983;&amp;#27963;&amp;#21464;&amp;#30340;&amp;#22914;&amp;#27492;&amp;#30340;&amp;#34394;&amp;#26080;&amp;#21644;&amp;#31354;&amp;#34394;&amp;#65292;&amp;#30475;&amp;#20284;&amp;#29289;&amp;#36136;&amp;#19978;&amp;#30340;&amp;#23500;&amp;#36275;&amp;#65292;&amp;#24182;&amp;#19981;&amp;#33021;&amp;#28385;&amp;#36275;&amp;#31934;&amp;#31070;&amp;#19978;&amp;#30340;&amp;#31354;&amp;#34394;&amp;#12290;&amp;#31354;&amp;#34394;&amp;#65292;&amp;#32487;&amp;#32780;&amp;#23547;&amp;#27714;&amp;#24773;&amp;#32490;&amp;#30340;&amp;#23459;&amp;#27844;&amp;#21644;&amp;#37322;&amp;#25918;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#30340;Jack&amp;#25165;&amp;#20250;&amp;#22312;&amp;#21508;&amp;#31181;&amp;#20020;&amp;#32456;&amp;#20851;&amp;#29233;&amp;#22242;&amp;#20307;&amp;#20013;&amp;#21435;&amp;#23547;&amp;#27714;&amp;#24515;&amp;#29702;&amp;#19978;&amp;#30340;&amp;#28385;&amp;#36275;&amp;#24863;&amp;#12290;&amp;#24555;&amp;#27515;&amp;#30340;&amp;#20154;&amp;#35828;&amp;#30340;&amp;#35805;&amp;#65292;&amp;#24635;&amp;#26159;&amp;#29305;&amp;#21035;&amp;#26377;&amp;#20998;&amp;#37327;&amp;#12290;&amp;#32780;&amp;#26377;&amp;#30340; &amp;#20154;&amp;#20063;&amp;#21482;&amp;#26377;&amp;#22312;&amp;#24555;&amp;#27515;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25165;&amp;#20250;&amp;#35273;&amp;#30340;&amp;#24515;&amp;#20013;&amp;#30340;&amp;#23567;&amp;#24618;&amp;#20861;&amp;#25165;&amp;#26159;&amp;#20182;&amp;#20204;&amp;#25152;&amp;#24819;&amp;#35201;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/08/fight-club.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-9085563190933773247</guid><pubDate>Sun, 01 Aug 2010 04:08:00 +0000</pubDate><atom:updated>2010-07-31T21:08:53.322-07:00</atom:updated><title>The world of programming</title><description>&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/aboutprogramming04.eng_.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-large wp-image-1030&quot; height=&quot;1024&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/aboutprogramming04.eng_-409x1024.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;aboutprogramming04.eng_&quot; width=&quot;409&quot;&gt;&lt;/a&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/world-of-programming.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-1713757537788399349</guid><pubDate>Sun, 01 Aug 2010 04:08:00 +0000</pubDate><atom:updated>2010-07-31T21:08:15.099-07:00</atom:updated><title>豆瓣，你可以再太监一点吗？</title><description>&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1026&quot; id=&quot;k2oo&quot; title=&quot;http://www.jdxyw.com/?p=1026&quot;&gt;http://www.jdxyw.com/?p=1026&lt;/a&gt;&lt;div&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25105;&amp;#19968;&amp;#31687;&amp;#27491;&amp;#27668;&amp;#20955;&amp;#28982;&amp;#65292;&amp;#21644;&amp;#35856;&amp;#26080;&amp;#27604;&amp;#65292;&amp;#39118;&amp;#33457;&amp;#38634;&amp;#26376;&amp;#65292;&amp;#20805;&amp;#28385;&amp;#30528;&amp;#31215;&amp;#26497;&amp;#21521;&amp;#19978;&amp;#65292;&amp;#20048;&amp;#35266;&amp;#24320;&amp;#26391;&amp;#24773;&amp;#32490;&amp;#65292;&amp;#34920;&amp;#29616;&amp;#26032;&amp;#26102;&amp;#26399;&amp;#38738;&amp;#24180;&amp;#38761;&amp;#21629;&amp;#29702;&amp;#24819;&amp;#30340;&amp;#26085;&amp;#35760;&amp;#65292;&amp;#34987;&amp;#35910;&amp;#29923;&amp;#19968;&amp;#32780;&amp;#20877;&amp;#65292;&amp;#20877;&amp;#32780;&amp;#19977;&amp;#30340;&amp;#32473;&amp;#25298;&amp;#32477;&amp;#20102;&amp;#12290;&amp;#20320;&amp;#25298;&amp;#32477;&amp;#25105;&amp;#27809;&amp;#20851;&amp;#31995;&amp;#65292;&amp;#20320;&amp;#22909;&amp;#27513;&amp;#21578;&amp;#35785;&amp;#25105;&amp;#20320;&amp;#25298;&amp;#32477;&amp;#20160;&amp;#20040;&amp;#12290;&amp;#25105;&amp;#25913;&amp;#65292;&amp;#25105;&amp;#25913;&amp;#36824;&amp;#19981;&amp;#25104;&amp;#21527;&amp;#65292;&amp;#25105;&amp;#19968;&amp;#23450;&amp;#25913;&amp;#65311;&amp;#31350;&amp;#31455;&amp;#26159;&amp;#21738;&amp;#20123;&amp;#25935;&amp;#24863;&amp;#35789;&amp;#21050;&amp;#28608;&amp;#21040;&amp;#20102;&amp;#20320;&amp;#30340;G&amp;#28857;&amp;#65311;&amp;#20320;&amp;#23601;&amp;#19981;&amp;#33021;&amp;#21578;&amp;#35785;&amp;#25105;&amp;#65292;&amp;#25105;&amp;#31350;&amp;#31455;&amp;#26159;&amp;#20160;&amp;#20040;&amp;#35789;&amp;#35821;&amp;#35753;&amp;#20320;&amp;#39640;&amp;#28526;&amp;#36845;&amp;#36215;&amp;#65311;&amp;#25105;&amp;#25343;&amp;#30528;&amp;#25918;&amp;#22823;&amp;#38236;&amp;#65292;&amp;#23545;&amp;#30528;&amp;#23631;&amp;#24149;&amp;#30475;&amp;#20102;&amp;#20960;&amp;#20998;&amp;#38047;&amp;#65292;&amp;#25343;&amp;#30528;&amp;#26368;&amp;#26032;&amp;#20986;&amp;#29256;&amp;#30340;&amp;#12298;&amp;#36766;&amp;#28023;&amp;#12299;&amp;#26597;&amp;#20102;&amp;#21322;&amp;#20010;&amp;#23567;&amp;#26102;&amp;#65292;&amp;#20063;&amp;#25214;&amp;#19981;&amp;#20986;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#38382;&amp;#39064;&amp;#12290;&amp;#25105;&amp;#19981;&amp;#24471;&amp;#19981;&amp;#21457;&amp;#25381;&amp;#20013;&amp;#22269;&amp;#20154;&amp;#27665;&amp;#22810;&amp;#24180;&amp;#20197;&amp;#26469;&amp;#31215;&amp;#32047;&amp;#19979;&amp;#26469;&amp;#30340;&amp;#26234;&amp;#24935;&amp;#65292;&amp;#29992;&amp;#20102;&amp;#31354;&amp;#26684;&amp;#20998;&amp;#38548;&amp;#27861;&amp;#65292;&amp;#26143;&amp;#21495;&amp;#26367;&amp;#20195;&amp;#27861;&amp;#65292;&amp;#21516;&amp;#38899;&amp;#35789;&amp;#26367;&amp;#20195;&amp;#27861;&amp;#65292;&amp;#21516;&amp;#20041;&amp;#35789;&amp;#26367;&amp;#20195;&amp;#27861;&amp;#65292;&amp;#21516;&amp;#24418;&amp;#35789;&amp;#26367;&amp;#20195;&amp;#27861;&amp;#20197;&amp;#21450;&amp;#21024;&amp;#38500;&amp;#27861;&amp;#21644;&amp;#30465;&amp;#30053;&amp;#27861;&amp;#65292;&amp;#26368;&amp;#32456;&amp;#25552;&amp;#20132;&amp;#20102;&amp;#36825;&amp;#31687;&amp;#26085;&amp;#35760;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#35910;&amp;#29923;&amp;#23558;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#22826;&amp;#30417;&amp;#26412;&amp;#24615;&amp;#21457;&amp;#25381;&amp;#21040;&amp;#20102;&amp;#26497;&amp;#33268;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#19981;&amp;#30456;&amp;#20449;&amp;#26426;&amp;#22120;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#35201;&amp;#20154;&amp;#32905;&amp;#26816;&amp;#26597;&amp;#12290;&amp;#20320;&amp;#23601;&amp;#19981;&amp;#33021;&amp;#20107;&amp;#21518;&amp;#21024;&amp;#38500;&amp;#21527;&amp;#65311;&amp;#21516;&amp;#26679;&amp;#26159;&amp;#21024;&amp;#38500;&amp;#65292;&amp;#22909;&amp;#24453;&amp;#20808;&amp;#35753;&amp;#25105;&amp;#25552;&amp;#20132;&amp;#20102;&amp;#65292;&amp;#20320;&amp;#20063;&amp;#29992;&amp;#19981;&amp;#30528;&amp;#36825;&amp;#26679;&amp;#35844;&amp;#23194;&amp;#21543;&amp;#12290;&lt;/font&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/blog-post_3632.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-8604399281982940282</guid><pubDate>Sun, 01 Aug 2010 04:06:00 +0000</pubDate><atom:updated>2010-07-31T21:06:54.285-07:00</atom:updated><title>上海SB会(九)–亲身体验</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1023&quot; id=&quot;p0eu&quot; title=&quot;http://www.jdxyw.com/?p=1023&quot;&gt;http://www.jdxyw.com/?p=1023&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22914;&amp;#26524;&amp;#19981;&amp;#26159;&amp;#29238;&amp;#27597;&amp;#26469;&amp;#65292;&amp;#25105;&amp;#26412;&amp;#27809;&amp;#26377;&amp;#25171;&amp;#31639;&amp;#21435;SB&amp;#20250;&amp;#30340;&amp;#12290;&amp;#37492;&amp;#20110;&amp;#29616;&amp;#22312;&amp;#27599;&amp;#26085;40+&amp;#19975;&amp;#30340;&amp;#20154;&amp;#27969;&amp;#37327;&amp;#21644;35+&amp;#30340;&amp;#39640;&amp;#28201;&amp;#65292;&amp;#24605;&amp;#32771;&amp;#20877;&amp;#19977;&amp;#65292;&amp;#36824;&amp;#26159;&amp;#36873;&amp;#25321;&amp;#20102;&amp;#26202;&amp;#19978;&amp;#65292;&amp;#20146;&amp;#36523;&amp;#20307;&amp;#39564;&amp;#20102;&amp;#19968;&amp;#25226;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#27604;&amp;#21033;&amp;#26102;&amp;#30422;&amp;#31456;&amp;#30340;&amp;#20004;&amp;#20010;MM&amp;#38750;&amp;#24120;&amp;#28418;&amp;#20142;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25991;&amp;#33713;&amp;#30422;&amp;#31456;&amp;#30340;MM&amp;#30422;&amp;#30340;&amp;#24456;&amp;#40635;&amp;#26408;&amp;#65292;&amp;#24456;&amp;#26426;&amp;#26800;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#35199;&amp;#29677;&amp;#29273;&amp;#39302;&amp;#26377;&amp;#35768;&amp;#22810;&amp;#28418;&amp;#20142;&amp;#30340;&amp;#35199;&amp;#29677;&amp;#29273;&amp;#22899;&amp;#37070;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25105;&amp;#22312;&amp;#25991;&amp;#33713;&amp;#39302;&amp;#37324;&amp;#38754;&amp;#30475;&amp;#21040;&amp;#20102;&amp;#25935;&amp;#24863;&amp;#35789;&amp;#30340;&amp;#24433;&amp;#20687;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23567;&amp;#30333;&amp;#33756;&amp;#37117;&amp;#25402;&amp;#28418;&amp;#20142;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20247;&amp;#22810;&amp;#30340;&amp;#20154;&amp;#27969;&amp;#20877;&amp;#27425;&amp;#35777;&amp;#26126;&amp;#20102;&amp;#32654;&amp;#22899;&amp;#30340;&amp;#36136;&amp;#37327;&amp;#36319;&amp;#25968;&amp;#37327;&amp;#21576;&amp;#27491;&amp;#30456;&amp;#20851;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#28595;&amp;#22823;&amp;#21033;&amp;#20122;&amp;#39302;&amp;#37324;&amp;#26377;&amp;#22909;&amp;#22810;&amp;#20013;&amp;#25991;&amp;#35828;&amp;#30340;&amp;#19981;&amp;#38169;&amp;#30340;&amp;#39640;&amp;#22823;&amp;#30340;&amp;#28595;&amp;#22823;&amp;#21033;&amp;#20122;&amp;#24069;&amp;#21733;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26202;&amp;#19978;&amp;#25490;&amp;#38431;&amp;#30340;&amp;#26102;&amp;#38388;&amp;#35201;&amp;#27604;&amp;#30333;&amp;#22825;&amp;#23569;&amp;#24456;&amp;#22810;&amp;#12290;&amp;#28595;&amp;#22823;&amp;#21033;&amp;#20122;&amp;#65292;&amp;#35199;&amp;#29677;&amp;#29273;&amp;#21644;&amp;#27604;&amp;#21033;&amp;#26102;&amp;#39302;&amp;#25490;&amp;#20010;20&amp;#21040;30&amp;#20998;&amp;#38047;&amp;#23601;&amp;#21487;&amp;#20197;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24503;&amp;#22269;&amp;#36824;&amp;#26159;&amp;#19968;&amp;#22914;&amp;#26082;&amp;#24448;&amp;#30340;&amp;#28909;&amp;#38376;&amp;#65292;&amp;#30446;&amp;#27979;&amp;#24212;&amp;#35813;&amp;#35201;40+&amp;#65292;&amp;#24403;&amp;#28982;&amp;#65292;&amp;#27604;&amp;#30333;&amp;#22825;&amp;#35201;&amp;#23569;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25991;&amp;#33713;&amp;#39302;&amp;#21644;&amp;#26031;&amp;#27931;&amp;#20240;&amp;#20811;&amp;#39302;&amp;#65292;&amp;#26159;&amp;#21363;&amp;#36827;&amp;#21448;&amp;#21363;&amp;#20986;&amp;#12290;&amp;#19968;&amp;#26465;&amp;#36947;&amp;#36890;&amp;#21040;&amp;#24213;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26202;&amp;#19978;&amp;#19971;&amp;#28857;&amp;#21313;&amp;#20998;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20837;&amp;#22253;&amp;#20154;&amp;#25968;&amp;#21040;&amp;#36798;&amp;#20102;50&amp;#19975;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22806;&amp;#22269;&amp;#30340;&amp;#24037;&amp;#20316;&amp;#20154;&amp;#21592;&amp;#30340;&amp;#20013;&amp;#25991;&amp;#37117;&amp;#25402;&amp;#22909;&amp;#30340;&amp;#65292;&amp;#27604;&amp;#35768;&amp;#22810;&amp;#20013;&amp;#22269;&amp;#20154;&amp;#36824;&amp;#35201;&amp;#22909;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#35199;&amp;#29677;&amp;#29273;&amp;#26377;&amp;#20010;&amp;#24037;&amp;#20316;&amp;#20154;&amp;#21592;&amp;#20013;&amp;#25991;&amp;#19981;&amp;#22826;&amp;#22909;&amp;#65292;&amp;#20294;&amp;#26159;&amp;ldquo;&amp;#19981;&amp;#35201;&amp;#25554;&amp;#38431;&amp;rdquo;&amp;#36825;&amp;#22235;&amp;#20010;&amp;#23383;&amp;#35828;&amp;#30340;&amp;#20013;&amp;#27668;&amp;#21313;&amp;#36275;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25490;&amp;#35199;&amp;#29677;&amp;#29273;&amp;#39302;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#26377;&amp;#20010;&amp;#36523;&amp;#24418;&amp;#30805;&amp;#22823;&amp;#30340;&amp;#20013;&amp;#24180;&amp;#22919;&amp;#22899;&amp;#65292;&amp;#20914;&amp;#30772;&amp;#37325;&amp;#37325;&amp;#38459;&amp;#30861;&amp;#65292;&amp;#20174;&amp;#19968;&amp;#20010;&amp;#26102;&amp;#31354;&amp;#31359;&amp;#36234;&amp;#21040;&amp;#21478;&amp;#22806;&amp;#19968;&amp;#20010;&amp;#26102;&amp;#31354;&amp;#12290;&amp;#24037;&amp;#20316;&amp;#20154;&amp;#21592;&amp;#30475;&amp;#21040;&amp;#21518;&amp;#65292;&amp;#40664;&amp;#40664;&amp;#30340;&amp;#25226;&amp;#25481;&amp;#19979;&amp;#30340;&amp;#38081;&amp;#38142;&amp;#37325;&amp;#26032;&amp;#35013;&amp;#19978;&amp;#12290;&amp;#22905;&amp;#21518;&amp;#38754;&amp;#30340;&amp;#21516;&amp;#20276;&amp;#65292;&amp;#34987;&amp;#38459;&amp;#25377;&amp;#22312;&amp;#21478;&amp;#22806;&amp;#30340;&amp;#26102;&amp;#31354;&amp;#24403;&amp;#20013;&amp;#65292;&amp;#22905;&amp;#21482;&amp;#22909;&amp;#22312;&amp;#26032;&amp;#30340;&amp;#26102;&amp;#31354;&amp;#20013;&amp;#31561;&amp;#20505;&amp;#30528;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24635;&amp;#20307;&amp;#19978;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#22823;&amp;#23478;&amp;#36824;&amp;#26159;&amp;#25402;&amp;#35762;&amp;#21355;&amp;#29983;&amp;#30340;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#25490;&amp;#38431;&amp;#30340;&amp;#36890;&amp;#36947;&amp;#20869;&amp;#36824;&amp;#26159;&amp;#25402;&amp;#29436;&amp;#34249;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26032;&amp;#35199;&amp;#20848;&amp;#30340;&amp;#20154;&amp;#27665;&amp;#21809;&amp;#21608;&amp;#21326;&amp;#20581;&amp;#30340;&amp;#12298;&amp;#26379;&amp;#21451;&amp;#12299;&amp;#26377;&amp;#27169;&amp;#26377;&amp;#26679;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#27604;&amp;#21033;&amp;#26102;&amp;#39302;&amp;#20837;&amp;#39302;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#27599;&amp;#20154;&amp;#21457;&amp;#19968;&amp;#22359;&amp;#28966;&amp;#31958;&amp;#39292;&amp;#24178;&amp;#65292;&amp;#22806;&amp;#38754;&amp;#36824;&amp;#26377;&amp;#23567;&amp;#19985;&amp;#38382;&amp;#38382;&amp;#39064;&amp;#65292;&amp;#21457;&amp;#37329;&amp;#24065;&amp;#24039;&amp;#20811;&amp;#21147;&amp;#65292;&amp;#27492;&amp;#24039;&amp;#20811;&amp;#21147;&amp;#20026;&amp;#20013;&amp;#22269;&amp;#21046;&amp;#36896;&amp;#65292;&amp;#19978;&amp;#26377;&amp;#24685;&amp;#21916;&amp;#21457;&amp;#36130;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#27604;&amp;#21033;&amp;#26102;&amp;#21334;&amp;#30340;&amp;#24039;&amp;#20811;&amp;#21147;&amp;#65292;&amp;#20843;&amp;#39063;108&amp;#20803;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21508;&amp;#20010;&amp;#39302;&amp;#30340;&amp;#32426;&amp;#24565;&amp;#31456;&amp;#21644;&amp;#38053;&amp;#21273;&amp;#22280;&amp;#36149;&amp;#30340;&amp;#35201;&amp;#27515;&amp;#65292;40+&amp;#19968;&amp;#20010;&amp;#12290;&amp;#25105;&amp;#31449;&amp;#22312;&amp;#27431;&amp;#27954;&amp;#21306;&amp;#29615;&amp;#39038;&amp;#19968;&amp;#22280;&amp;#65292;&amp;#37117;&amp;#26159;&amp;#27604;&amp;#22825;&amp;#26397;&amp;#35201;&amp;#36807;&amp;#30340;&amp;#22909;&amp;#30340;&amp;#22810;&amp;#30340;&amp;#22810;&amp;#30340;&amp;#22269;&amp;#23478;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#20215;&amp;#26684;&amp;#19968;&amp;#28857;&amp;#37117;&amp;#19981;&amp;#32771;&amp;#34385;&amp;#21040;&amp;#20013;&amp;#22269;&amp;#20154;&amp;#27665;&amp;#30340;&amp;#24863;&amp;#24773;&amp;#12290;&amp;#23601;&amp;#36830;&amp;#19968;&amp;#25226;&amp;#21360;&amp;#24230;&amp;#23612;&amp;#35199;&amp;#20122;&amp;#30340;&amp;#38632;&amp;#20254;&amp;#37117;&amp;#35201;65&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#30475;&amp;#20102;&amp;#19971;&amp;#20010;&amp;#39302;&amp;#65292;&amp;#35273;&amp;#30340;&amp;#21360;&amp;#24230;&amp;#23612;&amp;#35199;&amp;#20122;&amp;#26368;&amp;#26377;&amp;#35802;&amp;#24847;&amp;#65292;&amp;#20854;&amp;#23427;&amp;#30340;&amp;#39302;&amp;#65292;&amp;#37117;&amp;#26159;&amp;#22312;&amp;#27604;&amp;#25340;&amp;#35841;&amp;#30340;&amp;#25237;&amp;#24433;&amp;#20202;&amp;#65292;&amp;#28783;&amp;#20809;&amp;#65292;&amp;#38899;&amp;#21709;&amp;#21644;LED&amp;#23631;&amp;#24149;&amp;#26356;&amp;#29275;&amp;#36924;&amp;#65292;&amp;#25110;&amp;#26159;&amp;#35841;&amp;#30340;&amp;#22270;&amp;#29255;&amp;#25630;&amp;#30340;&amp;#26356;&amp;#22823;&amp;#26356;&amp;#28843;&amp;#12290;&amp;#19968;&amp;#20010;&amp;#30805;&amp;#22823;&amp;#26080;&amp;#27604;&amp;#30340;&amp;#35199;&amp;#29677;&amp;#29273;&amp;#39302;&amp;#65292;&amp;#20854;&amp;#23454;&amp;#31354;&amp;#31354;&amp;#22914;&amp;#20063;&amp;#12290;&amp;#32780;&amp;#21360;&amp;#24230;&amp;#23612;&amp;#35199;&amp;#20122;&amp;#30340;&amp;#21508;&amp;#31181;&amp;#27665;&amp;#26063;&amp;#29305;&amp;#33394;&amp;#30340;&amp;#29289;&amp;#21697;&amp;#25670;&amp;#28385;&amp;#30340;&amp;#36807;&amp;#36947;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23545;&amp;#20110;&amp;#21508;&amp;#22269;&amp;#23637;&amp;#39302;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#21560;&amp;#24341;&amp;#25105;&amp;#30340;&amp;#21482;&amp;#21097;&amp;#19979;&amp;#24314;&amp;#31569;&amp;#21644;&amp;#22806;&amp;#22269;MM&amp;#20204;&amp;#20102;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20960;&amp;#20046;&amp;#27599;&amp;#20010;&amp;#39302;&amp;#37117;&amp;#22312;&amp;#20837;&amp;#21475;&amp;#22788;&amp;#25351;&amp;#26126;&amp;#20102;&amp;#30422;&amp;#31456;&amp;#30340;&amp;#22320;&amp;#28857;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23545;&amp;#20110;&amp;#24819;&amp;#21435;&amp;#35265;&amp;#35265;&amp;#22823;&amp;#21315;&amp;#19990;&amp;#30028;&amp;#65292;&amp;#22686;&amp;#38271;&amp;#35265;&amp;#35782;&amp;#30340;&amp;#20154;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#21487;&amp;#20197;&amp;#19981;&amp;#29992;&amp;#21435;SB&amp;#20250;&amp;#65292;&amp;#21482;&amp;#38656;&amp;#19978;Google&amp;#65292;&amp;#25110;&amp;#26159;&amp;#19968;&amp;#20123;&amp;#35270;&amp;#39057;&amp;#32593;&amp;#31449;&amp;#65292;&amp;#30475;&amp;#30475;&amp;#30456;&amp;#20851;&amp;#30340;&amp;#36164;&amp;#26009;&amp;#65292;&amp;#27604;&amp;#20320;&amp;#30475;&amp;#21313;&amp;#22825;&amp;#21322;&amp;#20010;&amp;#26376;&amp;#37117;&amp;#36824;&amp;#26377;&amp;#25928;&amp;#12290;&amp;#22914;&amp;#26524;&amp;#24819;&amp;#35265;&amp;#35782;&amp;#21508;&amp;#22269;&amp;#21508;&amp;#22320;&amp;#21508;&amp;#26657;&amp;#19981;&amp;#21516;&amp;#30340;&amp;#32654;&amp;#22899;&amp;#65292;&amp;#24314;&amp;#35758;&amp;#20320;&amp;#21435;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/sb.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-5292282596629646024</guid><pubDate>Sun, 01 Aug 2010 04:05:00 +0000</pubDate><atom:updated>2010-07-31T21:05:59.295-07:00</atom:updated><title>赵佶同志书画作品展</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=997&quot; id=&quot;ko5s&quot; title=&quot;http://www.jdxyw.com/?p=997&quot;&gt;http://www.jdxyw.com/?p=997&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22270;&amp;#29255;&amp;#26469;&amp;#33258;&amp;#35910;&amp;#29923;&amp;#30456;&amp;#20876;&lt;a href=&quot;http://www.douban.com/photos/album/17532757/&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;http://www.douban.com/photos/album/17532757/&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;div class=&quot;gallery galleryid-997&quot; id=&quot;mbof&quot; style=&quot;margin-left:auto;margin-right:auto&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888800232.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288880023&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888800232-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288880023&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888802102.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288880210&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888802102-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288880210&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888804892.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288880489&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888804892-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288880489&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888806172.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288880617&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888806172-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288880617&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888808142.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288880814&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888808142-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288880814&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888855462.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288885546&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888855462-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288885546&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888856152.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288885615&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888856152-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288885615&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888856922.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288885692&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;52&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888856922-150x52.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288885692&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888925912.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288892591&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888925912-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288892591&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888926742.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288892674&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888926742-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288892674&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888927352.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288892735&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2888927352-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288892735&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889833162.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288983316&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889833162-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288983316&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889833672.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288983367&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889833672-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288983367&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889834032.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288983403&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889834032-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288983403&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889943122.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288994312&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889943122-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288994312&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889943582.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p288994358&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2889943582-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p288994358&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;br style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2890194642.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p289019464&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2890194642-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p289019464&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2890353992.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;p289035399&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;attachment-thumbnail&quot; height=&quot;150&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/p2890353992-150x150.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;p289035399&quot; width=&quot;150&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/blog-post_31.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-46894476050171231</guid><pubDate>Sun, 01 Aug 2010 04:04:00 +0000</pubDate><atom:updated>2010-07-31T21:04:59.058-07:00</atom:updated><title>《Fight Club》</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=1038&quot; id=&quot;ai:m&quot; title=&quot;http://www.jdxyw.com/?p=1038&quot;&gt;http://www.jdxyw.com/?p=1038&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1311094.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-1039&quot; height=&quot;475&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/08/s1311094.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1311094&quot; width=&quot;354&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#27599;&amp;#20010;&amp;#20154;&amp;#24515;&amp;#20013;&amp;#37117;&amp;#26377;&amp;#22836;&amp;#23567;&amp;#24618;&amp;#20861;&amp;#65292;&amp;#21487;&amp;#24182;&amp;#19981;&amp;#26159;&amp;#27599;&amp;#20010;&amp;#20154;&amp;#37117;&amp;#26377;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#32966;&amp;#37327;&amp;#21435;&amp;#23558;&amp;#33258;&amp;#24049;&amp;#24515;&amp;#20013;&amp;#30340;&amp;#37326;&amp;#20861;&amp;#37322;&amp;#25918;&amp;#20986;&amp;#26469;&amp;#12290;&amp;#27491;&amp;#22914;&amp;#29255;&amp;#20013;&amp;#30340;Taylor&amp;#25152;&amp;#35828;&amp;#30340;&amp;#19968;&amp;#26679;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#24037;&amp;#20316;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#38134;&amp;#34892;&amp;#24080;&amp;#21495;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#33258;&amp;#24049;&amp;#65292;&amp;#20320;&amp;#24320;&amp;#30340;&amp;#36710;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#65292;&amp;#30382;&amp;#22841;&amp;#37324;&amp;#30340;&amp;#19996;&amp;#35199;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#65292;&amp;#34915;&amp;#26381;&amp;#19981;&amp;#33021;&amp;#20195;&amp;#34920;&amp;#20320;&amp;#65292;&amp;#20320;&amp;#21482;&amp;#26159;&amp;#33464;&amp;#33464;&amp;#20247;&amp;#29983;&amp;#20013;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#12290;&amp;#21482;&amp;#26377;&amp;#20320;&amp;#24515;&amp;#20013;&amp;#30340;&amp;#23567;&amp;#24618;&amp;#20861;&amp;#25165;&amp;#26159;&amp;#30495;&amp;#27491;&amp;#30340;&amp;#20320;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#24456;&amp;#22810;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25105;&amp;#20204;&amp;#37117;&amp;#26159;&amp;#27985;&amp;#27985;&amp;#22121;&amp;#22121;&amp;#65292;&amp;#30475;&amp;#20284;&amp;#22312;&amp;#20026;&amp;#33258;&amp;#24049;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#23454;&amp;#38469;&amp;#19978;&amp;#26159;&amp;#22312;&amp;#20026;&amp;#21035;&amp;#20154;&amp;#27963;&amp;#30528;&amp;#12290;&amp;#22312;&amp;#20026;&amp;#29238;&amp;#27597;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#20026;&amp;#23376;&amp;#22899;&amp;#27963;&amp;#30528;&amp;#65292;&amp;#20026;&amp;#31038;&amp;#20250;&amp;#25152;&amp;#35813;&amp;#36981;&amp;#24490;&amp;#30340;&amp;#35268;&amp;#30697;&amp;#27963;&amp;#30528;&amp;#12290;&amp;#24456;&amp;#22810;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#19968;&amp;#20986;&amp;#29983;&amp;#65292;&amp;#20320;&amp;#30340;&amp;#20154;&amp;#29983;&amp;#36712;&amp;#36857;&amp;#23601;&amp;#22823;&amp;#33268;&amp;#32473;&amp;#23450;&amp;#20102;&amp;#19979;&amp;#26469;&amp;#65292;&amp;#20063;&amp;#35768;&amp;#19982;&amp;#23454;&amp;#38469;&amp;#30340;&amp;#20250;&amp;#30053;&amp;#26377;&amp;#19981;&amp;#21516;&amp;#65292;&amp;#20294;&amp;#30446;&amp;#30340;&amp;#22320;&amp;#19982;&amp;#36335;&amp;#19978;&amp;#30340;&amp;#39118;&amp;#26223;&amp;#37117;&amp;#26159;&amp;#19968;&amp;#26679;&amp;#30340;&amp;#12290;&amp;#20320;&amp;#34987;&amp;#22900;&amp;#24441;&amp;#30528;&amp;#65292;&amp;#26377;&amp;#24418;&amp;#30340;&amp;#29289;&amp;#36136;&amp;#20139;&amp;#21463;&amp;#21644;&amp;#26080;&amp;#24418;&amp;#30340;&amp;#31038;&amp;#20250;&amp;#35268;&amp;#30697;&amp;#32473;&amp;#22900;&amp;#24441;&amp;#30528;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#32467;&amp;#23130;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#20080;&amp;#25151;&amp;#65292;&amp;#20320;&amp;#24212;&amp;#35813;&amp;#26159;&amp;#24322;&amp;#24615;&amp;#24651;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#26377;&amp;#20010;&amp;#23567;&amp;#23401;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#26377;&amp;#20221;&amp;#31283;&amp;#23450;&amp;#30340;&amp;#24037;&amp;#20316;&amp;#65292;&amp;#20320;&amp;#35813;&amp;#12290;&amp;#12290;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#24456;&amp;#22810;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20320;&amp;#22859;&amp;#21147;&amp;#24037;&amp;#20316;&amp;#65292;&amp;#22312;&amp;#23398;&amp;#26657;&amp;#32844;&amp;#22330;&amp;#21162;&amp;#21147;&amp;#25340;&amp;#26432;&amp;#65292;&amp;#26432;&amp;#20986;&amp;#20102;&amp;#19968;&amp;#26465;&amp;#34880;&amp;#36335;&amp;#65292;&amp;#33258;&amp;#20197;&amp;#20026;&amp;#25670;&amp;#33073;&amp;#20102;&amp;#26463;&amp;#32538;&amp;#65292;&amp;#21364;&amp;#19981;&amp;#30693;&amp;#36947;&amp;#65292;&amp;#33258;&amp;#24049;&amp;#38519;&amp;#20837;&amp;#21040;&amp;#20102;&amp;#21478;&amp;#22806;&amp;#30340;&amp;#19968;&amp;#31181;&amp;#22900;&amp;#24441;&amp;#20043;&amp;#20013;&amp;#12290;&amp;#29983;&amp;#27963;&amp;#21464;&amp;#30340;&amp;#22914;&amp;#27492;&amp;#30340;&amp;#34394;&amp;#26080;&amp;#21644;&amp;#31354;&amp;#34394;&amp;#65292;&amp;#30475;&amp;#20284;&amp;#29289;&amp;#36136;&amp;#19978;&amp;#30340;&amp;#23500;&amp;#36275;&amp;#65292;&amp;#24182;&amp;#19981;&amp;#33021;&amp;#28385;&amp;#36275;&amp;#31934;&amp;#31070;&amp;#19978;&amp;#30340;&amp;#31354;&amp;#34394;&amp;#12290;&amp;#31354;&amp;#34394;&amp;#65292;&amp;#32487;&amp;#32780;&amp;#23547;&amp;#27714;&amp;#24773;&amp;#32490;&amp;#30340;&amp;#23459;&amp;#27844;&amp;#21644;&amp;#37322;&amp;#25918;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#30340;Jack&amp;#25165;&amp;#20250;&amp;#22312;&amp;#21508;&amp;#31181;&amp;#20020;&amp;#32456;&amp;#20851;&amp;#29233;&amp;#22242;&amp;#20307;&amp;#20013;&amp;#21435;&amp;#23547;&amp;#27714;&amp;#24515;&amp;#29702;&amp;#19978;&amp;#30340;&amp;#28385;&amp;#36275;&amp;#24863;&amp;#12290;&amp;#24555;&amp;#27515;&amp;#30340;&amp;#20154;&amp;#35828;&amp;#30340;&amp;#35805;&amp;#65292;&amp;#24635;&amp;#26159;&amp;#29305;&amp;#21035;&amp;#26377;&amp;#20998;&amp;#37327;&amp;#12290;&amp;#32780;&amp;#26377;&amp;#30340; &amp;#20154;&amp;#20063;&amp;#21482;&amp;#26377;&amp;#22312;&amp;#24555;&amp;#27515;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#25165;&amp;#20250;&amp;#35273;&amp;#30340;&amp;#24515;&amp;#20013;&amp;#30340;&amp;#23567;&amp;#24618;&amp;#20861;&amp;#25165;&amp;#26159;&amp;#20182;&amp;#20204;&amp;#25152;&amp;#24819;&amp;#35201;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/fight-club.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-2898216075112858309</guid><pubDate>Tue, 20 Jul 2010 13:52:00 +0000</pubDate><atom:updated>2010-07-20T06:52:17.760-07:00</atom:updated><title>《活着》</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=957&quot; id=&quot;vv..&quot; title=&quot;http://www.jdxyw.com/?p=957&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=957&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/s1312690.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-958&quot; height=&quot;494&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/s1312690.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1312690&quot; width=&quot;331&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#26377;&amp;#20154;&amp;#35828;&amp;#65292;&amp;#24352;&amp;#33402;&amp;#35851;&amp;#21644;&amp;#38472;&amp;#20975;&amp;#27468;&amp;#26159;&amp;#20013;&amp;#22269;&amp;#30005;&amp;#24433;&amp;#30028;&amp;#30340;&amp;#30340;&amp;#24040;&amp;#20083;&amp;#65292;&amp;#19968;&amp;#36793;&amp;#19968;&amp;#20010;&amp;#12290;&amp;#20504;&amp;#33509;&amp;#26159;&amp;#20320;&amp;#21482;&amp;#30475;&amp;#36807;&amp;#12298;&amp;#26080;&amp;#26497;&amp;#12299;&amp;#12298;&amp;#19977;&amp;#26538;&amp;#12299;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#20302;&amp;#32423;&amp;#23089;&amp;#20048;&amp;#29255;&amp;#30340;&amp;#35805;&amp;#65292;&amp;#20320;&amp;#24403;&amp;#28982;&amp;#26159;&amp;#26080;&amp;#27861;&amp;#29702;&amp;#35299;&amp;#20026;&amp;#20160;&amp;#20040;&amp;#20250;&amp;#26377;&amp;#20154;&amp;#35762;&amp;#20986;&amp;#36825;&amp;#26679;&amp;#27809;&amp;#26377;&amp;#36947;&amp;#29702;&amp;#30340;&amp;#35805;&amp;#26469;&amp;#65292;&amp;#20182;&amp;#20204;&amp;#20005;&amp;#37325;&amp;#30340;&amp;#19979;&amp;#22402;&amp;#22914;&amp;#20309;&amp;#21487;&amp;#20197;&amp;#36319;&amp;#31354;&amp;#22992;&amp;#30456;&amp;#27604;&amp;#12290;&amp;#21487;&amp;#26159;&amp;#20182;&amp;#20204;&amp;#37117;&amp;#26366;&amp;#32463;&amp;#24180;&amp;#36731;&amp;#36807;&amp;#65292;&amp;#20063;&amp;#36824;&amp;#26159;&amp;#26377;&amp;#36807;&amp;#24180;&amp;#23569;&amp;#26080;&amp;#30693;&amp;#30340;&amp;#26102;&amp;#20505;&amp;#65292;&amp;#20063;&amp;#26377;&amp;#36807;&amp;#25077;&amp;#25077;&amp;#25026;&amp;#25026;&amp;#30340;&amp;#24180;&amp;#23569;&amp;#23681;&amp;#26376;&amp;#12290;&amp;#33267;&amp;#23569;&amp;#38472;&amp;#20975;&amp;#27468;&amp;#26377;&amp;#12298;&amp;#38712;&amp;#29579;&amp;#21035;&amp;#23020;&amp;#12299;&amp;#22443;&amp;#30528;&amp;#65292;&amp;#24352;&amp;#33402;&amp;#35851;&amp;#26377;&amp;#12298;&amp;#27963;&amp;#30528;&amp;#12299;&amp;#25239;&amp;#30528;&amp;#12290;&amp;#23427;&amp;#20204;&amp;#23601;&amp;#20687;&amp;#20004;&amp;#22359;&amp;#30789;&amp;#33014;&amp;#65292;&amp;#25176;&amp;#36215;&amp;#20182;&amp;#20204;&amp;#20658;&amp;#20154;&amp;#30340;&amp;#33016;&amp;#37096;&amp;#65292;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#23681;&amp;#26376;&amp;#20652;&amp;#20154;&amp;#32769;&amp;#65292;&amp;#30789;&amp;#33014;&amp;#20063;&amp;#19981;&amp;#26159;&amp;#27704;&amp;#36828;&amp;#37117;&amp;#39030;&amp;#29992;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25105;&amp;#35748;&amp;#20026;&amp;#65292;&amp;#36825;&amp;#37096;&amp;#30001;&amp;#20313;&amp;#21326;&amp;#20316;&amp;#21697;&amp;#25913;&amp;#32534;&amp;#30340;&amp;#21516;&amp;#21517;&amp;#30005;&amp;#24433;&amp;#12298;&amp;#27963;&amp;#30528;&amp;#12299;&amp;#65292;&amp;#26159;&amp;#32769;&amp;#35851;&amp;#23376;&amp;#26368;&amp;#22909;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#20102;&amp;#65292;&amp;#20182;&amp;#20877;&amp;#20063;&amp;#25293;&amp;#19981;&amp;#20986;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#20102;&amp;#65292;&amp;#20182;&amp;#24050;&amp;#32463;&amp;#25165;&amp;#21326;&amp;#23613;&amp;#22833;&amp;#65292;&amp;#26082;&amp;#26080;&amp;#28608;&amp;#24773;&amp;#20063;&amp;#26080;&amp;#28789;&amp;#24863;&amp;#65292;&amp;#26377;&amp;#30340;&amp;#21482;&amp;#26159;&amp;#22885;&amp;#36816;&amp;#20250;&amp;#24320;&amp;#24149;&amp;#24335;&amp;#19978;&amp;#30340;&amp;ldquo;&amp;#21644;&amp;rdquo;&amp;#65292;&amp;#21644;60&amp;#24180;&amp;#22269;&amp;#24198;&amp;#28895;&amp;#28779;&amp;#26202;&amp;#20250;&amp;#19978;&amp;#30340;&amp;#19982;&amp;#27665;&amp;#21516;&amp;#20048;&amp;#20102;&amp;#12290;&amp;#35768;&amp;#22810;&amp;#30475;&amp;#36807;&amp;#20313;&amp;#21326;&amp;#21407;&amp;#33879;&amp;#30340;&amp;#20154;&amp;#37117;&amp;#35828;&amp;#65292;&amp;#30005;&amp;#24433;&amp;#27809;&amp;#26377;&amp;#23436;&amp;#20840;&amp;#25226;&amp;#20070;&amp;#20013;&amp;#30340;&amp;#31934;&amp;#21326;&amp;#32473;&amp;#23637;&amp;#29616;&amp;#20986;&amp;#26469;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#26377;&amp;#26356;&amp;#20026;&amp;#20005;&amp;#21385;&amp;#30340;&amp;#35828;&amp;#27861;&amp;#65292;&amp;#30005;&amp;#24433;&amp;#25226;&amp;#36825;&amp;#37096;&amp;#20316;&amp;#21697;&amp;#32473;&amp;#31967;&amp;#36427;&amp;#20102;&amp;#12290;&amp;#25105;&amp;#35760;&amp;#24471;&amp;#22312;&amp;#19968;&amp;#31687;&amp;#25991;&amp;#31456;&amp;#20013;&amp;#25552;&amp;#21040;&amp;#36807;&amp;#65292;&amp;#20313;&amp;#21326;&amp;#26412;&amp;#20154;&amp;#23545;&amp;#24352;&amp;#33402;&amp;#35851;&amp;#36825;&amp;#26679;&amp;#25913;&amp;#20182;&amp;#30340;&amp;#20316;&amp;#21697;&amp;#20063;&amp;#19981;&amp;#28385;&amp;#24847;&amp;#12290;&amp;#25105;&amp;#27809;&amp;#26377;&amp;#30475;&amp;#36807;&amp;#21407;&amp;#33879;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#30005;&amp;#24433;&amp;#30001;&amp;#20110;&amp;#26102;&amp;#38388;&amp;#30340;&amp;#38480;&amp;#21046;&amp;#65292;&amp;#32780;&amp;#22312;&amp;#22825;&amp;#26397;&amp;#65292;&amp;#36825;&amp;#19981;&amp;#35768;&amp;#65292;&amp;#37027;&amp;#19981;&amp;#35768;&amp;#65292;&amp;#19978;&amp;#38754;&amp;#26377;&amp;#36825;&amp;#20040;&amp;#22810;&amp;#30340;&amp;#23110;&amp;#23110;&amp;#30475;&amp;#30528;&amp;#65292;&amp;#32769;&amp;#24352;&amp;#33021;&amp;#25293;&amp;#25104;&amp;#36825;&amp;#26679;&amp;#20063;&amp;#23454;&amp;#23646;&amp;#19981;&amp;#26131;&amp;#65292;&amp;#21487;&amp;#23601;&amp;#26159;&amp;#36825;&amp;#26679;&amp;#65292;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#36824;&amp;#26159;&amp;#34987;&amp;#22269;&amp;#20869;&amp;#32473;&amp;#31105;&amp;#20102;&amp;#12290;&amp;#32769;&amp;#35851;&amp;#23376;&amp;#36825;&amp;#26679;&amp;#20026;&amp;#39046;&amp;#23548;&amp;#32771;&amp;#34385;&amp;#65292;&amp;#39046;&amp;#23548;&amp;#19968;&amp;#28857;&amp;#20063;&amp;#19981;&amp;#20026;&amp;#20182;&amp;#32771;&amp;#34385;&amp;#65292;&amp;#22826;&amp;#19981;&amp;#21402;&amp;#36947;&amp;#20102;&amp;#12290;&amp;#22871;&amp;#29992;&amp;#19968;&amp;#21477;&amp;#35805;&amp;#65292;&amp;#34987;&amp;#31105;&amp;#20063;&amp;#26159;&amp;#19968;&amp;#31181;&amp;#20809;&amp;#33635;&amp;#12290;&amp;#32780;&amp;#19988;&amp;#26159;&amp;#19968;&amp;#31181;&amp;#26080;&amp;#22768;&amp;#30340;&amp;#23459;&amp;#20256;&amp;#65292;&amp;#21453;&amp;#32780;&amp;#35753;&amp;#26356;&amp;#22810;&amp;#26377;&amp;#22909;&amp;#22855;&amp;#24515;&amp;#30340;&amp;#20154;&amp;#21315;&amp;#19975;&amp;#30334;&amp;#35745;&amp;#30340;&amp;#21435;&amp;#30475;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#25105;&amp;#19981;&amp;#24819;&amp;#21435;&amp;#35762;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#30340;&amp;#20869;&amp;#23481;&amp;#65292;&amp;#37027;&amp;#20123;&amp;#24180;&amp;#20195;&amp;#26377;&amp;#22826;&amp;#22810;&amp;#22826;&amp;#22810;&amp;#27604;&amp;#36825;&amp;#26356;&amp;#20026;&amp;#24754;&amp;#24808;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#65292;&amp;#36825;&amp;#20010;&amp;#21482;&amp;#26159;&amp;#20854;&amp;#20013;&amp;#19981;&amp;#37027;&amp;#20040;&amp;#24754;&amp;#24808;&amp;#65292;&amp;#30456;&amp;#23545;&amp;#20110;&amp;#26469;&amp;#35828;&amp;#32467;&amp;#23616;&amp;#36824;&amp;#22909;&amp;#30340;&amp;#25925;&amp;#20107;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/blog-post_7760.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-8425165117830119776</guid><pubDate>Tue, 20 Jul 2010 13:51:00 +0000</pubDate><atom:updated>2010-07-20T06:51:09.346-07:00</atom:updated><title>向国内字幕组致敬</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=955&quot; id=&quot;fyvc&quot; title=&quot;http://www.jdxyw.com/?p=955&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=955&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#23545;&amp;#20110;&amp;#37027;&amp;#20123;&amp;#23545;&amp;#22269;&amp;#22806;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#30005;&amp;#35270;&amp;#21095;&amp;#26377;&amp;#30528;&amp;#26497;&amp;#22823;&amp;#28909;&amp;#24773;&amp;#30340;&amp;#24191;&amp;#22823;&amp;#32593;&amp;#27665;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#23383;&amp;#24149;&amp;#32452;&amp;#23545;&amp;#20110;&amp;#20182;&amp;#20204;&amp;#26469;&amp;#35828;&amp;#19968;&amp;#28857;&amp;#37117;&amp;#19981;&amp;#38476;&amp;#29983;&amp;#12290;&amp;#20174;&amp;#20154;&amp;#20154;&amp;#21040;&amp;#39118;&amp;#36719;&amp;#65292;&amp;#36825;&amp;#20123;&amp;#26377;&amp;#30528;&amp;#19968;&amp;#39063;&amp;#37329;&amp;#23376;&amp;#19968;&amp;#33324;&amp;#30340;&amp;#24515;&amp;#30340;&amp;#26368;&amp;#21487;&amp;#29233;&amp;#30340;&amp;#20154;&amp;#65292;&amp;#29306;&amp;#29298;&amp;#30528;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#26102;&amp;#38388;&amp;#19982;&amp;#31934;&amp;#21147;&amp;#65292;&amp;#36896;&amp;#31119;&amp;#30528;&amp;#21315;&amp;#21315;&amp;#19975;&amp;#19975;&amp;#30340;&amp;#32593;&amp;#27665;&amp;#20204;&amp;#65292;&amp;#35753;&amp;#20182;&amp;#20204;&amp;#22312;&amp;#22810;&amp;#23569;&amp;#30340;&amp;#23490;&amp;#23518;&amp;#38271;&amp;#22812;&amp;#20013;&amp;#28040;&amp;#30952;&amp;#30528;&amp;#26102;&amp;#38388;&amp;#65292;&amp;#33719;&amp;#24471;&amp;#20102;&amp;#24555;&amp;#20048;&amp;#65292;&amp;#24471;&amp;#21040;&amp;#20102;&amp;#28385;&amp;#36275;&amp;#12290;&amp;#22240;&amp;#20026;&amp;#26377;&amp;#20102;&amp;#20182;&amp;#20204;&amp;#65292;&amp;#22320;&amp;#29699;&amp;#26449;&amp;#36825;&amp;#20010;&amp;#21517;&amp;#23383;&amp;#26356;&amp;#21517;&amp;#21103;&amp;#20854;&amp;#23454;&amp;#20102;&amp;#12290;&amp;#26368;&amp;#26032;&amp;#26368;&amp;#28909;&amp;#38376;&amp;#30340;&amp;#32654;&amp;#21095;&amp;#65292;&amp;#38548;&amp;#22825;&amp;#23601;&amp;#33021;&amp;#19979;&amp;#21040;&amp;#20013;&amp;#25991;&amp;#23383;&amp;#24149;&amp;#29256;&amp;#26412;&amp;#12290;&amp;#19981;&amp;#20165;&amp;#26159;&amp;#37027;&amp;#20123;&amp;#26410;&amp;#34987;&amp;#24341;&amp;#36827;&amp;#30340;&amp;#32654;&amp;#22269;&amp;#22823;&amp;#29255;&amp;#65292;&amp;#24503;&amp;#35821;&amp;#65292;&amp;#27861;&amp;#35821;&amp;#65292;&amp;#24847;&amp;#22823;&amp;#21033;&amp;#35821;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#38463;&amp;#25289;&amp;#20271;&amp;#35821;&amp;#31561;&amp;#23567;&amp;#35821;&amp;#31181;&amp;#30005;&amp;#24433;&amp;#65292;&amp;#22269;&amp;#20869;&amp;#30340;&amp;#24433;&amp;#36855;&amp;#20204;&amp;#20877;&amp;#20063;&amp;#19981;&amp;#29992;&amp;#25285;&amp;#24515;&amp;#35821;&amp;#35328;&amp;#30340;&amp;#38382;&amp;#39064;&amp;#65292;&amp;#32780;&amp;#33021;&amp;#22815;&amp;#27427;&amp;#36175;&amp;#21040;&amp;#39640;&amp;#36136;&amp;#37327;&amp;#30340;&amp;#20013;&amp;#25991;&amp;#32763;&amp;#35793;&amp;#12290;&amp;#36825;&amp;#20123;&amp;#20248;&amp;#31168;&amp;#30340;&amp;#19994;&amp;#20313;&amp;#32763;&amp;#35793;&amp;#20204;&amp;#65292;&amp;#19981;&amp;#20165;&amp;#28145;&amp;#35865;&amp;#35821;&amp;#35328;&amp;#26412;&amp;#36523;&amp;#65292;&amp;#20063;&amp;#20102;&amp;#35299;&amp;#33521;&amp;#32654;&amp;#25991;&amp;#21270;&amp;#65292;&amp;#21448;&amp;#32467;&amp;#21512;&amp;#20102;&amp;#20013;&amp;#22269;&amp;#31038;&amp;#20250;&amp;#23454;&amp;#38469;&amp;#24773;&amp;#20917;&amp;#65292;&amp;#32763;&amp;#35793;&amp;#20986;&amp;#26469;&amp;#30340;&amp;#23383;&amp;#24149;&amp;#19981;&amp;#20165;&amp;#20934;&amp;#30830;&amp;#65292;&amp;#32780;&amp;#19988;&amp;#20256;&amp;#31070;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#21069;&amp;#20960;&amp;#24180;&amp;#65292;&amp;#22914;&amp;#26524;&amp;#35828;&amp;#22269;&amp;#20869;&amp;#30340;&amp;#23383;&amp;#24149;&amp;#32452;&amp;#36824;&amp;#20165;&amp;#20165;&amp;#28909;&amp;#34935;&amp;#20110;&amp;#22269;&amp;#22806;&amp;#26368;&amp;#26032;&amp;#30340;&amp;#30005;&amp;#35270;&amp;#21095;&amp;#65292;&amp;#30005;&amp;#24433;&amp;#25110;&amp;#26159;&amp;#35760;&amp;#24405;&amp;#29255;&amp;#65292;&amp;#37027;&amp;#20040;&amp;#26368;&amp;#36817;&amp;#65292;&amp;#23383;&amp;#24149;&amp;#32452;&amp;#23558;&amp;#20182;&amp;#20204;&amp;#30340;&amp;#30524;&amp;#20809;&amp;#25237;&amp;#21521;&amp;#20102;&amp;#28009;&amp;#22914;&amp;#28895;&amp;#28023;&amp;#30340;&amp;#32654;&amp;#22269;&amp;#21517;&amp;#26657;&amp;#30340;&amp;#24320;&amp;#25918;&amp;#35838;&amp;#31243;&amp;#20013;&amp;#19978;&amp;#20102;&amp;#12290;&lt;a href=&quot;http://en.wikipedia.org/wiki/OpenCourseWare&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;Open Course Ware&quot;&gt;Open Course Ware&lt;/a&gt;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#30001;&amp;#26469;&amp;#24050;&amp;#20037;&amp;#30340;&amp;#39033;&amp;#30446;&amp;#65292;&amp;#20854;&amp;#30446;&amp;#30340;&amp;#26159;&amp;#23558;&amp;#19968;&amp;#20123;&amp;#19990;&amp;#30028;&amp;#39030;&amp;#23574;&amp;#21517;&amp;#26657;&amp;#30340;&amp;#20248;&amp;#31168;&amp;#35838;&amp;#31243;&amp;#20570;&amp;#25104;&amp;#35270;&amp;#39057;&amp;#65292;&amp;#20813;&amp;#36153;&amp;#25918;&amp;#21040;&amp;#32593;&amp;#32476;&amp;#35753;&amp;#20849;&amp;#20840;&amp;#29699;&amp;#20998;&amp;#20139;&amp;#12290;MIT&amp;#65292;Harvard&amp;#65292;Stanford&amp;#65292;Berkly&amp;#65292;Yale&amp;#31561;&amp;#23398;&amp;#26657;&amp;#37117;&amp;#31215;&amp;#26497;&amp;#30340;&amp;#21442;&amp;#19982;&amp;#20854;&amp;#20013;&amp;#12290;&amp;#20170;&amp;#24180;&amp;#24050;&amp;#32463;&amp;#26159;&amp;#36825;&amp;#20010;&amp;#39033;&amp;#30446;&amp;#30340;&amp;#31532;&amp;#21313;&amp;#24180;&amp;#26102;&amp;#38388;&amp;#20102;&amp;#65292;&amp;#20854;&amp;#23454;&amp;#22312;&amp;#24456;&amp;#26089;&amp;#20043;&amp;#21069;&amp;#65292;&amp;#25105;&amp;#24050;&amp;#32463;&amp;#22312;&amp;#23398;&amp;#26657;&amp;#30340;&amp;#19968;&amp;#20123;&amp;#20849;&amp;#20139;&amp;#26381;&amp;#21153;&amp;#22120;&amp;#19978;&amp;#30475;&amp;#21040;&amp;#20102;&amp;#22269;&amp;#22806;&amp;#19968;&amp;#20123;&amp;#35838;&amp;#31243;&amp;#30340;&amp;#35270;&amp;#39057;&amp;#65292;&amp;#21482;&amp;#19981;&amp;#36807;&amp;#36825;&amp;#20123;&amp;#35270;&amp;#39057;&amp;#36136;&amp;#37327;&amp;#19981;&amp;#39640;&amp;#65292;&amp;#32780;&amp;#19988;&amp;#27809;&amp;#26377;&amp;#23383;&amp;#24149;&amp;#65292;&amp;#19981;&amp;#20165;&amp;#20165;&amp;#26159;&amp;#27809;&amp;#26377;&amp;#20013;&amp;#25991;&amp;#23383;&amp;#24149;&amp;#65292;&amp;#32780;&amp;#19988;&amp;#26159;&amp;#27809;&amp;#26377;&amp;#33521;&amp;#25991;&amp;#23383;&amp;#24149;&amp;#12290;&amp;#26366;&amp;#32463;&amp;#26377;&amp;#20154;&amp;#32452;&amp;#32455;&amp;#32763;&amp;#35793;&amp;#36825;&amp;#20123;&amp;#35838;&amp;#31243;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#20027;&amp;#35201;&amp;#26159;&amp;#22312;&amp;#21488;&amp;#28286;&amp;#22320;&amp;#21306;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20294;&amp;#26159;&amp;#65292;&amp;#36825;&amp;#19968;&amp;#20999;&amp;#65292;&amp;#38543;&amp;#30528;&amp;#12298;&lt;a href=&quot;http://www.verycd.com/topics/2803004/&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot; title=&quot;http://www.verycd.com/topics/2803004/&quot;&gt;Justice: What&amp;rsquo;s the Right Thing to Do?&lt;/a&gt;&amp;#12299;&amp;#30340;&amp;#27969;&amp;#34892;&amp;#32780;&amp;#25913;&amp;#21464;&amp;#12290;&amp;#36825;&amp;#37096;&amp;#20248;&amp;#31168;&amp;#30340;&amp;#21704;&amp;#20315;&amp;#22823;&amp;#23398;&amp;#35838;&amp;#31243;&amp;#65292;&amp;#36805;&amp;#36895;&amp;#30340;&amp;#39118;&amp;#38753;&amp;#20102;&amp;#32593;&amp;#32476;&amp;#12290;&amp;#28165;&amp;#26224;&amp;#30340;&amp;#38899;&amp;#39057;&amp;#35270;&amp;#39057;&amp;#65292;&amp;#29420;&amp;#29305;&amp;#30340;&amp;#35762;&amp;#25480;&amp;#26041;&amp;#24335;&amp;#65292;&amp;#26032;&amp;#39062;&amp;#27963;&amp;#27900;&amp;#30340;&amp;#35838;&amp;#22530;&amp;#20114;&amp;#21160;&amp;#65292;&amp;#21457;&amp;#20154;&amp;#28145;&amp;#24605;&amp;#30340;&amp;#35838;&amp;#31243;&amp;#20869;&amp;#23481;&amp;#65292;&amp;#35753;&amp;#35768;&amp;#22810;&amp;#36208;&amp;#20986;&amp;#26657;&amp;#22253;&amp;#21644;&amp;#20173;&amp;#22312;&amp;#26657;&amp;#22253;&amp;#30340;&amp;#20154;&amp;#37325;&amp;#26032;&amp;#29123;&amp;#36215;&amp;#20102;&amp;#23545;&amp;#30693;&amp;#35782;&amp;#30340;&amp;#28212;&amp;#27714;&amp;#12290;&amp;#32780;&amp;#38543;&amp;#21518;&amp;#32780;&amp;#26469;&amp;#30340;&amp;#32822;&amp;#40065;&amp;#22823;&amp;#23398;&amp;#30340;&amp;#19968;&amp;#31995;&amp;#21015;&amp;#35838;&amp;#31243;&amp;#12298;&amp;#27515;&amp;#20129;&amp;#12299;&amp;#12298;&amp;#24515;&amp;#29702;&amp;#23398;&amp;#23548;&amp;#35770;&amp;#12299;&amp;#12298;&amp;#21338;&amp;#24328;&amp;#35770;&amp;#12299;&amp;#12298;&amp;#27431;&amp;#27954;&amp;#25991;&amp;#26126;&amp;#12299;&amp;#12290;&amp;#12290;&amp;#12290;&amp;#65292;&amp;#26356;&amp;#26159;&amp;#35753;&amp;#30693;&amp;#35782;&amp;#37325;&amp;#26032;&amp;#30340;&amp;#22312;&amp;#20013;&amp;#22269;&amp;#27969;&amp;#21160;&amp;#20102;&amp;#36215;&amp;#26469;&amp;#12290;Open Course Ware&amp;#36825;&amp;#20010;&amp;#39033;&amp;#30446;&amp;#26159;&amp;#20255;&amp;#22823;&amp;#30340;&amp;#65292;&amp;#20294;&amp;#26159;&amp;#23545;&amp;#20110;&amp;#20013;&amp;#22269;&amp;#30340;&amp;#27665;&amp;#20247;&amp;#26469;&amp;#35828;&amp;#65292;&amp;#23383;&amp;#24149;&amp;#32452;&amp;#21516;&amp;#26679;&amp;#26159;&amp;#21151;&amp;#19981;&amp;#21487;&amp;#27809;&amp;#65292;&amp;#23621;&amp;#21151;&amp;#33267;&amp;#20255;&amp;#12290;&amp;#23427;&amp;#20026;&amp;#26080;&amp;#25968;&amp;#30340;&amp;#20154;&amp;#28165;&amp;#38500;&amp;#20102;&amp;#35821;&amp;#35328;&amp;#36825;&amp;#19968;&amp;#38556;&amp;#30861;&amp;#65292;&amp;#35753;&amp;#21407;&amp;#26412;&amp;#36965;&amp;#19981;&amp;#21487;&amp;#21450;&amp;#30340;&amp;#30805;&amp;#26524;&amp;#65292;&amp;#21464;&amp;#30340;&amp;#35302;&amp;#25163;&amp;#21487;&amp;#21450;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22312;&amp;#25105;&amp;#30475;&amp;#26469;&amp;#65292;&amp;#36825;&amp;#23601;&amp;#26159;&amp;#19968;&amp;#22330;&amp;#23567;&amp;#22411;&amp;#30340;&amp;ldquo;&amp;#25991;&amp;#33402;&amp;#22797;&amp;#20852;&amp;rdquo;&amp;#65292;&amp;#26159;&amp;#35753;&amp;#35768;&amp;#22810;&amp;#20154;&amp;#37325;&amp;#26032;&amp;#23457;&amp;#35270;&amp;#33258;&amp;#24049;&amp;#25991;&amp;#21270;&amp;#65292;&amp;#23457;&amp;#35270;&amp;#33258;&amp;#24049;&amp;#25968;&amp;#21313;&amp;#24180;&amp;#25945;&amp;#32946;&amp;#36807;&amp;#31243;&amp;#65292;&amp;#23398;&amp;#20250;&amp;#29420;&amp;#31435;&amp;#24605;&amp;#32771;&amp;#65292;&amp;#25509;&amp;#32435;&amp;#20248;&amp;#31168;&amp;#35199;&amp;#26041;&amp;#25991;&amp;#21270;&amp;#30340;&amp;#19968;&amp;#20010;&amp;#24320;&amp;#22987;&amp;#65292;&amp;#34429;&amp;#28982;&amp;#23427;&amp;#30340;&amp;#24433;&amp;#21709;&amp;#24182;&amp;#19981;&amp;#20687;&amp;#25105;&amp;#20204;&amp;#25152;&amp;#24819;&amp;#30340;&amp;#37027;&amp;#20040;&amp;#22823;&amp;#65292;&amp;#20294;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#24320;&amp;#22987;&amp;#65292;&amp;#34676;&amp;#34678;&amp;#30340;&amp;#32709;&amp;#33152;&amp;#24182;&amp;#19981;&amp;#20687;&amp;#20320;&amp;#25105;&amp;#24819;&amp;#35937;&amp;#30340;&amp;#37027;&amp;#20040;&amp;#26580;&amp;#24369;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/blog-post_20.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8100530976556742011.post-9016582314352673283</guid><pubDate>Sun, 18 Jul 2010 14:49:00 +0000</pubDate><atom:updated>2010-07-18T07:49:00.999-07:00</atom:updated><title>《小鞋子》–只要第三名</title><description>&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#22681;&amp;#20869;&amp;#22320;&amp;#22336;&lt;a href=&quot;http://www.jdxyw.com/?p=952&quot; id=&quot;mojy&quot; title=&quot;http://www.jdxyw.com/?p=952&quot;&gt;&lt;font color=&quot;#FF0000&quot;&gt;http://www.jdxyw.com/?p=952&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;a href=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/s1645395.jpg&quot; style=&quot;color:#cd4517;margin-left:0px;margin-right:0px;text-decoration:none&quot;&gt;&lt;img alt=&quot;&quot; class=&quot;alignnone size-full wp-image-953&quot; height=&quot;438&quot; src=&quot;http://www.jdxyw.com/wp-content/uploads/2010/07/s1645395.jpg&quot; style=&quot;background-color:#ffffff;background-image:initial;border-color:initial;border-style:initial;margin-left:0px;margin-right:0px&quot; title=&quot;s1645395&quot; width=&quot;303&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#37096;1999&amp;#24180;&amp;#20234;&amp;#26391;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#22885;&amp;#26031;&amp;#21345;&amp;#30340;&amp;#26368;&amp;#20339;&amp;#22806;&amp;#35821;&amp;#29255;&amp;#65292;&amp;#24456;&amp;#26089;&amp;#23601;&amp;#21548;&amp;#35828;&amp;#36807;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#21487;&amp;#19968;&amp;#30452;&amp;#27809;&amp;#26377;&amp;#26426;&amp;#20250;&amp;#30475;&amp;#19968;&amp;#30475;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#20174;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#30340;&amp;#31616;&amp;#20171;&amp;#65292;&amp;#23601;&amp;#21487;&amp;#20197;&amp;#30693;&amp;#36947;&amp;#36825;&amp;#23558;&amp;#21448;&amp;#26159;&amp;#19968;&amp;#37096;&amp;#28201;&amp;#39336;&amp;#65292;&amp;#21169;&amp;#24535;&amp;#32780;&amp;#21448;&amp;#29053;&amp;#24773;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#12290;&amp;#24456;&amp;#22810;&amp;#20154;&amp;#19981;&amp;#21916;&amp;#27426;&amp;#22826;&amp;#36807;&amp;#29053;&amp;#24773;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#35273;&amp;#30340;&amp;#23548;&amp;#28436;&amp;#30828;&amp;#20280;&amp;#30528;&amp;#25163;&amp;#21679;&amp;#21553;&amp;#20320;&amp;#65292;&amp;#26159;&amp;#19968;&amp;#31181;&amp;#19985;&amp;#38475;&amp;#30340;&amp;#32618;&amp;#36807;&amp;#12290;&amp;#36825;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#24517;&amp;#28982;&amp;#21448;&amp;#26159;&amp;#19968;&amp;#37096;&amp;#35302;&amp;#21160;&amp;#20154;&amp;#24515;&amp;#30340;&amp;#29255;&amp;#23376;&amp;#65292;&amp;#21487;&amp;#36825;&amp;#19968;&amp;#20999;&amp;#20877;&amp;#20063;&amp;#19981;&amp;#26159;&amp;#19968;&amp;#31181;&amp;#19985;&amp;#38475;&amp;#30340;&amp;#32618;&amp;#24694;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20102;&amp;#25104;&amp;#24180;&amp;#20154;&amp;#19990;&amp;#30028;&amp;#30340;&amp;#23047;&amp;#26580;&amp;#19982;&amp;#20570;&amp;#20316;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20102;&amp;#23548;&amp;#28436;&amp;#30340;&amp;#21051;&amp;#24847;&amp;#31881;&amp;#39280;&amp;#19982;&amp;#38613;&amp;#29730;&amp;#65292;&amp;#21482;&amp;#21097;&amp;#19979;&amp;#20102;&amp;#20799;&amp;#31461;&amp;#19990;&amp;#30028;&amp;#30340;&amp;#32431;&amp;#31929;&amp;#19982;&amp;#33258;&amp;#28982;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#29255;&amp;#20013;&amp;#26377;&amp;#35768;&amp;#22810;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#30340;&amp;#38236;&amp;#22836;&amp;#12290;&amp;#21733;&amp;#21733;&amp;#23547;&amp;#25214;&amp;#38795;&amp;#23376;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#65307;&amp;#22969;&amp;#22969;&amp;#25918;&amp;#23398;&amp;#22238;&amp;#23478;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#65307;&amp;#21733;&amp;#21733;&amp;#36214;&amp;#21435;&amp;#19978;&amp;#23398;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#65307;&amp;#22969;&amp;#22969;&amp;#36861;&amp;#36880;&amp;#38795;&amp;#23376;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#65307;&amp;#21733;&amp;#21733;&amp;#21442;&amp;#21152;&amp;#27604;&amp;#36187;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#65307;&amp;#22969;&amp;#22969;&amp;#36319;&amp;#36394;&amp;#38795;&amp;#23376;&amp;#30340;&amp;#22868;&amp;#36305;&amp;#12290;&amp;#36825;&amp;#20123;&amp;#22868;&amp;#36305;&amp;#30340;&amp;#21807;&amp;#19968;&amp;#20027;&amp;#39064;&amp;#65292;&amp;#23601;&amp;#26159;&amp;#19968;&amp;#21452;&amp;#20002;&amp;#22833;&amp;#30340;&amp;#38795;&amp;#23376;&amp;#12290;&amp;#27809;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#22269;&amp;#24680;&amp;#23478;&amp;#20167;&amp;#65292;&amp;#20063;&amp;#27809;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#22825;&amp;#28798;&amp;#20154;&amp;#31096;&amp;#65292;&amp;#22312;&amp;#36825;&amp;#20123;&amp;#21313;&amp;#20960;&amp;#23681;&amp;#23401;&amp;#23376;&amp;#30340;&amp;#24515;&amp;#37324;&amp;#65292;&amp;#37325;&amp;#35201;&amp;#30340;&amp;#20165;&amp;#20165;&amp;#26159;&amp;#19968;&amp;#21452;&amp;#38795;&amp;#23376;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#29255;&amp;#20013;&amp;#30340;&amp;#22969;&amp;#22969;&amp;#20054;&amp;#24039;&amp;#21487;&amp;#29233;&amp;#65292;&amp;#21733;&amp;#21733;&amp;#27963;&amp;#27900;&amp;#32874;&amp;#26126;&amp;#65292;&amp;#29238;&amp;#20146;&amp;#26159;&amp;#20010;&amp;#20005;&amp;#29238;&amp;#65292;&amp;#27597;&amp;#20146;&amp;#26159;&amp;#20010;&amp;#24904;&amp;#27597;&amp;#65292;&amp;#19968;&amp;#23478;&amp;#20154;&amp;#36807;&amp;#30528;&amp;#25326;&amp;#25454;&amp;#22256;&amp;#33510;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#12290;&amp;#36825;&amp;#26159;&amp;#19968;&amp;#20010;&amp;#20856;&amp;#22411;&amp;#30340;&amp;#24213;&amp;#23618;&amp;#20154;&amp;#27665;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#29366;&amp;#24577;&amp;#12290;&amp;#20294;&amp;#26159;&amp;#23548;&amp;#28436;&amp;#24182;&amp;#27809;&amp;#26377;&amp;#21435;&amp;#22840;&amp;#22823;&amp;#36825;&amp;#31181;&amp;#22256;&amp;#33510;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#65292;&amp;#21051;&amp;#24847;&amp;#30340;&amp;#21435;&amp;#33829;&amp;#36896;&amp;#19968;&amp;#31181;&amp;#24754;&amp;#20937;&amp;#30340;&amp;#27668;&amp;#27675;&amp;#65292;&amp;#35753;&amp;#20303;&amp;#30528;&amp;#24102;&amp;#33457;&amp;#22253;&amp;#30340;&amp;#26377;&amp;#38065;&amp;#20154;&amp;#19982;&amp;#19968;&amp;#23478;&amp;#22235;&amp;#21475;&amp;#34583;&amp;#23621;&amp;#22312;&amp;#19968;&amp;#38388;&amp;#23627;&amp;#27280;&amp;#19979;&amp;#20570;&amp;#38454;&amp;#32423;&amp;#23545;&amp;#27604;&amp;#12290;&amp;#29255;&amp;#20013;&amp;#27809;&amp;#26377;&amp;#25209;&amp;#21028;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#27604;&amp;#36739;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#35892;&amp;#36131;&amp;#23500;&amp;#20154;&amp;#30340;&amp;#32618;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#28210;&amp;#26579;&amp;#31351;&amp;#20154;&amp;#30340;&amp;#33510;&amp;#12290;&amp;#27809;&amp;#26377;&amp;#35752;&amp;#35770;&amp;#20154;&amp;#20154;&amp;#29983;&amp;#32780;&amp;#24179;&amp;#31561;&amp;#65292;&amp;#26356;&amp;#27809;&amp;#26377;&amp;#35752;&amp;#35770;&amp;#20154;&amp;#30340;&amp;#33510;&amp;#38590;&amp;#24615;&amp;#12290;&amp;#30456;&amp;#21453;&amp;#65292;&amp;#25972;&amp;#37096;&amp;#29255;&amp;#23376;&amp;#22312;&amp;#19968;&amp;#37096;&amp;#24179;&amp;#21644;&amp;#65292;&amp;#20919;&amp;#38745;&amp;#30340;&amp;#22522;&amp;#35843;&amp;#20013;&amp;#36827;&amp;#34892;&amp;#65292;&amp;#29978;&amp;#33267;&amp;#22312;&amp;#35768;&amp;#22810;&amp;#22320;&amp;#26041;&amp;#20805;&amp;#28385;&amp;#30528;&amp;#27426;&amp;#24555;&amp;#30340;&amp;#27668;&amp;#27675;&amp;#12290;&amp;#21733;&amp;#21733;&amp;#23558;&amp;#32771;&amp;#35797;&amp;#24471;&amp;#26469;&amp;#30340;&amp;#31508;&amp;#36865;&amp;#32473;&amp;#22969;&amp;#22969;&amp;#65292;&amp;#21407;&amp;#26412;&amp;#32781;&amp;#23567;&amp;#24615;&amp;#23376;&amp;#30340;&amp;#22969;&amp;#22969;&amp;#31435;&amp;#21051;&amp;#21916;&amp;#31505;&amp;#39068;&amp;#24320;&amp;#65307;&amp;#29238;&amp;#20146;&amp;#20165;&amp;#20165;&amp;#20570;&amp;#20102;&amp;#19968;&amp;#27425;&amp;#22253;&amp;#19969;&amp;#65292;&amp;#25910;&amp;#21040;&amp;#20102;&amp;#19981;&amp;#33778;&amp;#30340;&amp;#37228;&amp;#21171;&amp;#65292;&amp;#23601;&amp;#24320;&amp;#22987;&amp;#35268;&amp;#21010;&amp;#36215;&amp;#32654;&amp;#22909;&amp;#30340;&amp;#29983;&amp;#27963;&amp;#65307;&amp;#22969;&amp;#22969;&amp;#30693;&amp;#36947;&amp;#21733;&amp;#21733;&amp;#26377;&amp;#21487;&amp;#33021;&amp;#32473;&amp;#33258;&amp;#24049;&amp;#36194;&amp;#22238;&amp;#19968;&amp;#21452;&amp;#29699;&amp;#38795;&amp;#26102;&amp;#65292;&amp;#20805;&amp;#28385;&amp;#30528;&amp;#26399;&amp;#30460;&amp;#19982;&amp;#24076;&amp;#26395;&amp;#12290;&amp;#19968;&amp;#20999;&amp;#37117;&amp;#26159;&amp;#37027;&amp;#20040;&amp;#30340;&amp;#26420;&amp;#23454;&amp;#65292;&amp;#37027;&amp;#20040;&amp;#30340;&amp;#33258;&amp;#28982;&amp;#12290;&amp;#27809;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#22823;&amp;#30340;&amp;#36947;&amp;#29702;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#20160;&amp;#20040;&amp;#28145;&amp;#21051;&amp;#30340;&amp;#24605;&amp;#24819;&amp;#65292;&amp;#26377;&amp;#30340;&amp;#21482;&amp;#26159;&amp;#26420;&amp;#32032;&amp;#30340;&amp;#24863;&amp;#24773;&amp;#65292;&amp;#36825;&amp;#31181;&amp;#23384;&amp;#22312;&amp;#20110;&amp;#21315;&amp;#21315;&amp;#19975;&amp;#19975;&amp;#19968;&amp;#33324;&amp;#20154;&amp;#24515;&amp;#37324;&amp;#30340;&amp;#26368;&amp;#26420;&amp;#23454;&amp;#30340;&amp;#24773;&amp;#24863;&amp;#12290;&amp;#36807;&amp;#24230;&amp;#30340;&amp;#29053;&amp;#24773;&amp;#35753;&amp;#20154;&amp;#20316;&amp;#21589;&amp;#65292;&amp;#36947;&amp;#24503;&amp;#30340;&amp;#25209;&amp;#21028;&amp;#21448;&amp;#20250;&amp;#23558;&amp;#23548;&amp;#28436;&amp;#32622;&amp;#20110;&amp;#19968;&amp;#31181;&amp;#23621;&amp;#39640;&amp;#20020;&amp;#19979;&amp;#30340;&amp;#20301;&amp;#32622;&amp;#65292;&amp;#31038;&amp;#20250;&amp;#25209;&amp;#21028;&amp;#21448;&amp;#35753;&amp;#21407;&amp;#26412;&amp;#26420;&amp;#23454;&amp;#26080;&amp;#21326;&amp;#30340;&amp;#24773;&amp;#24863;&amp;#38519;&amp;#20837;&amp;#20439;&amp;#22871;&amp;#20043;&amp;#20013;&amp;#12290;&amp;#21313;&amp;#23681;&amp;#30340;&amp;#23401;&amp;#23376;&amp;#65292;&amp;#37027;&amp;#26377;&amp;#37027;&amp;#20040;&amp;#22810;&amp;#30340;&amp;#31038;&amp;#20250;&amp;#36131;&amp;#20219;&amp;#19982;&amp;#36947;&amp;#24503;&amp;#26551;&amp;#38145;&amp;#65311;&amp;#20182;&amp;#20204;&amp;#26377;&amp;#30340;&amp;#65292;&amp;#21482;&amp;#26377;&amp;#26420;&amp;#23454;&amp;#24179;&amp;#28129;&amp;#30340;&amp;#24863;&amp;#24773;&amp;#65292;&amp;#26377;&amp;#30340;&amp;#21482;&amp;#26159;&amp;#23545;&amp;#19968;&amp;#21452;&amp;#38795;&amp;#23376;&amp;#30340;&amp;#21521;&amp;#24448;&amp;#12290;&amp;#36825;&amp;#24688;&amp;#24688;&amp;#26159;&amp;#35768;&amp;#22810;&amp;#28866;&amp;#30005;&amp;#24433;&amp;#25152;&amp;#32570;&amp;#20047;&amp;#30340;&amp;#12290;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px&quot;&gt;&lt;font color=&quot;#444444&quot;&gt;&amp;#34013;&amp;#33394;&amp;#30340;&amp;#23567;&amp;#36523;&amp;#24433;&amp;#22312;&amp;#22868;&amp;#36305;&amp;#30528;&amp;#65292;&amp;#22312;&amp;#21733;&amp;#21733;&amp;#30340;&amp;#24515;&amp;#20013;&amp;#65292;&amp;#21482;&amp;#26377;&amp;#22969;&amp;#22969;&amp;#30340;&amp;#19968;&amp;#21452;&amp;#38795;&amp;#12290;&amp;#20182;&amp;#21521;&amp;#30528;&amp;#32456;&amp;#28857;&amp;#32447;&amp;#29378;&amp;#22868;&amp;#30528;&amp;#65292;&amp;#21487;&amp;#26159;&amp;#20182;&amp;#30340;&amp;#30446;&amp;#26631;&amp;#21482;&amp;#26159;&amp;#31532;&amp;#19977;&amp;#21517;&amp;#12290;&amp;#20896;&amp;#20891;&amp;#65292;&amp;#21482;&amp;#33021;&amp;#35753;&amp;#20182;&amp;#40687;&amp;#28982;&amp;#31070;&amp;#20260;&amp;#65292;&amp;#22240;&amp;#20026;&amp;#20182;&amp;#27809;&amp;#26377;&amp;#32473;&amp;#33258;&amp;#24049;&amp;#24515;&amp;#29233;&amp;#30340;&amp;#22969;&amp;#22969;&amp;#24102;&amp;#22238;&amp;#19968;&amp;#21452;&amp;#29699;&amp;#38795;&amp;#65292;&amp;#27809;&amp;#26377;&amp;#23454;&amp;#29616;&amp;#22969;&amp;#22969;&amp;#30340;&amp;#24515;&amp;#24895;&amp;#65292;&amp;#20063;&amp;#27809;&amp;#26377;&amp;#36981;&amp;#23432;&amp;#33258;&amp;#24049;&amp;#30340;&amp;#35834;&amp;#35328;&amp;#12290;&amp;#34429;&amp;#28982;&amp;#29255;&amp;#20013;&amp;#27809;&amp;#26377;&amp;#32473;&amp;#20986;&amp;#22969;&amp;#22969;&amp;#24471;&amp;#21040;&amp;#38795;&amp;#23376;&amp;#30340;&amp;#38236;&amp;#22836;&amp;#65292;&amp;#20294;&amp;#29238;&amp;#20146;&amp;#30340;&amp;#36710;&amp;#26550;&amp;#19978;&amp;#25918;&amp;#30528;&amp;#38795;&amp;#23376;&amp;#65292;&amp;#22969;&amp;#22969;&amp;#20250;&amp;#24471;&amp;#21040;&amp;#22905;&amp;#24515;&amp;#29233;&amp;#30340;&amp;#38795;&amp;#23376;&amp;#30340;&amp;#65292;&amp;#21733;&amp;#21733;&amp;#20063;&amp;#20250;&amp;#24471;&amp;#21040;&amp;#30340;&amp;#12290;&amp;#36825;&amp;#26679;&amp;#30340;&amp;#23401;&amp;#23376;&amp;#36824;&amp;#19981;&amp;#33021;&amp;#26377;&amp;#21452;&amp;#26368;&amp;#26222;&amp;#36890;&amp;#30340;&amp;#38795;&amp;#23376;&amp;#65292;&amp;#35841;&amp;#36824;&amp;#26377;&amp;#36164;&amp;#26684;&amp;#26377;&amp;#65311;&lt;/font&gt;&lt;/p&gt;&lt;br&gt;</description><link>http://jdxyw.blogspot.com/2010/07/blog-post_18.html</link><author>noreply@blogger.com (Yongwei Xing)</author><thr:total>0</thr:total></item></channel></rss>