<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/style/rss/style.xsl" type="text/xsl" media="screen"?>
<rss version="2.0">
	<channel>
		<title>pupustory@naver.com</title>
		<link>http://pupustory.tistory.com/</link>
		<description>우리 거북이가 어서 커야 .. 출근할때 타고 다닐텐데 ..</description>
		<language>ko</language>
		<pubDate>Fri,  5 Sep 2008 15:45:57 +0900</pubDate>
		<generator>Tistory 1.1</generator>
		<image>
		<title>pupustory@naver.com</title>
		<url><![CDATA[http://cfs9.tistory.com/upload_control/download.blog?fhandle=YmxvZzEzMTU5MEBmczkudGlzdG9yeS5jb206L2F0dGFjaC8wLzEuanBn]]></url>
		<link>http://pupustory.tistory.com/</link>
		<description>우리 거북이가 어서 커야 .. 출근할때 타고 다닐텐데 ..</description>
		</image>
		<item>
			<title>java md5변환에 대한 삽질 T_T</title>
			<link>http://pupustory.tistory.com/73</link>
			<description>요즘 php로 된거 .. jsp로 변환하는 작업을 하는 중인데 .. &lt;br /&gt;&lt;br /&gt;php처럼 jsp로 옮기는건 정말 멍청한 짓이라고 생각해서 .. &lt;br /&gt;&lt;br /&gt;호출은 Servlet를 하지 않더라도, 최소한 라이브러리등등은 따로 빼야 한다고 생각해서 .. 작업중이다.

&lt;br /&gt;&lt;br /&gt;근데 이놈의 php소스중에 .. password 저장 부분이 md5로 변환되어 저장되더라 ..

아예 클라이언트가 보고 있는 화면에서도 md5로 변환하여(javascript MD5 lib)날라오더라 .. &lt;br /&gt;&lt;br /&gt;쩝 .. 그래서 자바로 이래저래 해봤다.

md5 알고리즘을 찾아보면 구현할 수 잇겠지만.. &lt;br /&gt;&lt;br /&gt;아무래도 그렇게 몇일 보내기엔 아깝고 --;

sun에서 제공되는 라이브러리를 써봤다.
&lt;textarea class=&quot;java&quot; name=&quot;code&quot;&gt;import java.security.*;
public class MD5_Test {
    public static void main(String ar[]) throws NoSuchAlgorithmException {
        MessageDigest di = MessageDigest.getInstance(&quot;MD5&quot;);
        di.update(new String(&quot;admin&quot;).getBytes());
        byte[] md5Code = di.digest();
        System.out.println(&quot;[&quot;+new String(md5Code)+&quot;]&quot;);
    }
}
&lt;/textarea&gt;
결과물&amp;gt;&amp;gt;
[!#/)zWⅶC덶J??]

처참했다.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;왜 이따위로 나오는거야 --; 가만히 생각해보다 &#039;아 byte니까 이거 길이마다 char로 바꺼볼까?&#039;

&lt;textarea class=&quot;java&quot; name=&quot;code&quot;&gt;import java.security.*;
public class MD5_Test {
    public static void main(String ar[]) throws NoSuchAlgorithmException {
        MessageDigest di = MessageDigest.getInstance(&quot;MD5&quot;);
        di.update(new String(&quot;admin&quot;).getBytes());
        byte[] md5Code = di.digest();
        StringBuffer buff = new StringBuffer();
        for (int i=0;i&amp;lt;md5Code.length;i++) {
            buff.append(md5Code[i]);
        }
        System.out.println(&quot;[&quot;+buff.toString()+&quot;]&quot;);
    }
}
&lt;/textarea&gt;
결과물&amp;gt;&amp;gt;
[3335474112287-91-8967-119741474-12831-61]

&lt;br /&gt;&lt;br /&gt;음.. 처음꺼보다 낫지만 그래도 뭔가 이상하다 --; 그래서 구글링 했다. base64를 사용하랜다...

&lt;br /&gt;&lt;br /&gt;base64는 이진데이터를 문자로 바꺼주는 고마운놈이다. &lt;br /&gt;&lt;br /&gt;그래서 이미지도 xml에 처 들어가신다 -0-b!

base64로 인코딩 해서 써봤다.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;
&lt;textarea class=&quot;java&quot; name=&quot;code&quot;&gt;import java.security.*;
public class MD5_Test {
    public static void main(String ar[]) throws NoSuchAlgorithmException {
        sun.misc.BASE64Encoder encoder = new sun.misc.BASE64Encoder();
       
        MessageDigest di = MessageDigest.getInstance(&quot;MD5&quot;);
        di.update(new String(&quot;admin&quot;).getBytes());
        byte[] md5Code = di.digest();
        System.out.println(&quot;[&quot;+encoder.encode(md5Code)+&quot;]&quot;);
    }
}
&lt;/textarea&gt;
결과물&amp;gt;&amp;gt;
[ISMvKXpXpadDiUoOSoAfww==]

&lt;br /&gt;&lt;br /&gt;아 ....뭔가 맞는거...같지만 아니다 !!! &lt;br /&gt;&lt;br /&gt;그러다 ... 2번째 코드를 16진수로 바꿔보라고 누가 얘기해줬다 --;

혹시나 했는데 .. 저거다 .. !! 당장 16진수로 바꺼봤다 ..
&lt;textarea class=&quot;java&quot; name=&quot;code&quot;&gt;import java.security.*;
public class MD5_Test {
    public static void main(String ar[]) throws NoSuchAlgorithmException {
        MessageDigest di = MessageDigest.getInstance(&quot;MD5&quot;);
        di.update(new String(&quot;admin&quot;).getBytes());
        byte[] md5Code = di.digest();
        StringBuffer sb = new StringBuffer();
        for (int i=0;i&amp;lt;md5Code.length;i++) {
            String md5Char = Integer.toHexString(md5Code[i]);
            sb.append(md5Char);
        }
        System.out.println(sb.toString());
    }
}
&lt;/textarea&gt;
결과물&amp;gt;&amp;gt;
[21232f297a57ffffffa5ffffffa743ffffff894ae4affffff801fffffffc3]

&lt;br /&gt;&lt;br /&gt;뭐꼬 이고 .. 쩝... 그래서 찾아봤다. 거의 100점 만점에 98점 짜리 코드를 찾았다 !

&lt;textarea class=&quot;java&quot; name=&quot;code&quot;&gt;import java.security.*;
public class MD5_Test {
    public static void main(String ar[]) throws NoSuchAlgorithmException {
        MessageDigest di = MessageDigest.getInstance(&quot;MD5&quot;);
        di.update(new String(&quot;admin&quot;).getBytes());
        byte[] md5Code = di.digest();
        StringBuffer sb = new StringBuffer();
        for (int i=0;i&amp;lt;md5Code.length;i++) {
            String md5Char = Integer.toHexString(0xff&amp;amp;(char)md5Code[i]);
            sb.append(md5Char);
        }
        System.out.println(sb.toString());
    }
}
&lt;/textarea&gt;
결과물&amp;gt;&amp;gt;
[21232f297a57a5a743894ae4a801fc3]
&lt;br /&gt;&lt;br /&gt;아 .. 다된거같다 .. .
.......................
...............
........
...
.
!!!
!!!!!
!!!!!!!!!!
원본과 비교해 보니 교묘한 차이를 느낄 수 있었다.
&lt;br /&gt;&lt;br /&gt;결과물 &amp;gt;&amp;gt;21232f297a57a5a743894ae4a801fc3
&lt;br /&gt;원본&amp;gt;&amp;gt;&amp;gt;&amp;gt;21232f297a57a5a743894a0e4a801fc3

&lt;br /&gt;&lt;br /&gt;문제는.. 4ae4와 4a0e4 부분이다. 이부분은 .. 0e를 16진수로 변환 시 e로 변환해서 생기는 문제다.

따라서 길이가 1일 경우 앞에 0으로 문자를 하나 더 잡아줘야 한다.
&lt;br /&gt;&lt;br /&gt;....... 무식하게 생각해서 if (md5Char.length() &amp;lt; 2) md5Char =  &quot;0&quot; + md5Char; 라는 코드를 넣어버렸다.

결국.. 맵돌이형이 알려줬다 ㅠㅠ

최종 코드는 다음과 같다.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;
&lt;textarea class=&quot;java&quot; name=&quot;code&quot;&gt;import java.security.*;
public class MD5_Test {
    public static void main(String ar[]) throws NoSuchAlgorithmException {
        MessageDigest di = MessageDigest.getInstance(&quot;MD5&quot;);
        di.update(new String(&quot;admin&quot;).getBytes());
        byte[] md5Code = di.digest();
        StringBuffer sb = new StringBuffer();
        for (int i=0;i&amp;lt;md5Code.length;i++) {
            String md5Char = String.format(&quot;%02x&quot;, 0xff&amp;amp;(char)md5Code[i]);
            sb.append(md5Char);
        }
        System.out.println(sb.toString());
    }
}
&lt;/textarea&gt;</description>
			<category>Java</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/73</guid>
			<comments>http://pupustory.tistory.com/73#entry73comment</comments>
			<pubDate>Fri,  5 Sep 2008 00:19:17 +0900</pubDate>
		</item>
		<item>
			<title>쩝.. 이런기분 맘에 안들어</title>
			<link>http://pupustory.tistory.com/72</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs7.tistory.com/original/36/tistory/2008/09/04/15/39/48bf82b39e874&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/36/tistory/2008/09/04/15/39/48bf82b39e874&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;421&quot; width=&quot;330&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
우리 학번도 했는데 .. 맘에 안들어 ..&lt;br /&gt;
&lt;br /&gt;
도대체 왜..? 휴.. 진짜 .. 할말은 많지만.. 휴 ..&lt;br /&gt;&lt;br /&gt;
</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/72</guid>
			<comments>http://pupustory.tistory.com/72#entry72comment</comments>
			<pubDate>Thu,  4 Sep 2008 15:40:07 +0900</pubDate>
		</item>
		<item>
			<title>구글 크롬 에러난거 . 귀엽네..</title>
			<link>http://pupustory.tistory.com/71</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs7.tistory.com/original/17/tistory/2008/09/04/14/19/48bf6feedd8be&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/original/17/tistory/2008/09/04/14/19/48bf6feedd8be&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;114&quot; width=&quot;407&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
흐흐 .. 귀엽네 .. 아직 베타라 그런거겠지 ??&lt;br /&gt;
&lt;br /&gt;
쩝.. 근데 왜 구글툴바 .. 설치가 안되는거야 ㅠㅠ&lt;br /&gt;
</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/71</guid>
			<comments>http://pupustory.tistory.com/71#entry71comment</comments>
			<pubDate>Thu,  4 Sep 2008 14:20:05 +0900</pubDate>
		</item>
		<item>
			<title>결혼하고 싶다..</title>
			<link>http://pupustory.tistory.com/70</link>
			<description>잠자기 전에 옆에 누군가 있고 ..&lt;br /&gt;&lt;br /&gt;잠에서 깨니 옆에 누군가 있고 ..&lt;br /&gt;&lt;br /&gt;참 아름다운거같에 ...&lt;br /&gt;&lt;br /&gt;그래서 .. 빨리하고싶다 ..&lt;br /&gt;&lt;br /&gt;근데 .. 나한테 잘 어울리는사람 만나는게 쉽지 않은거같에 ...&amp;nbsp; 아니다 쉽지가 않다 ...&lt;br /&gt;&lt;br /&gt;그래도 .. 어딘가 있겠지 뭐..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/70</guid>
			<comments>http://pupustory.tistory.com/70#entry70comment</comments>
			<pubDate>Mon,  1 Sep 2008 23:06:48 +0900</pubDate>
		</item>
		<item>
			<title>전에 본건데 ..</title>
			<link>http://pupustory.tistory.com/69</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/7/tistory/2008/08/31/22/20/48ba9a95eccf7&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/7/tistory/2008/08/31/22/20/48ba9a95eccf7&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;105&quot; width=&quot;140&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;전에 .. 게시판에서 한번 본건데 .. 음 .. 부러운건 아냐 .. &lt;br /&gt;&lt;br /&gt;나도 나중에 여자친구 생기면 저렇게 하고 싶더라구 .. 너무 이쁘자나 .. 모습이 .. &lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;But .. I&#039;m not prepared.&lt;/span&gt;&lt;br /&gt;</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/69</guid>
			<comments>http://pupustory.tistory.com/69#entry69comment</comments>
			<pubDate>Sun, 31 Aug 2008 22:12:48 +0900</pubDate>
		</item>
		<item>
			<title>JMXP 배포자 블로그를 보고 ..</title>
			<link>http://pupustory.tistory.com/68</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs7.tistory.com/original/13/tistory/2008/08/24/01/58/48b041d1965d1&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/13/tistory/2008/08/24/01/58/48b041d1965d1&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;388&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;얼마전에 .. JMXP 라는 MS windows XP 배포버젼의 제작자 블로그를 보게 되었다. &lt;br /&gt;&lt;br /&gt;내용은 대충 .. &#039;JMXP라는 WINXP 튜닝(?)버젼을 무단으로 배포해 소송을 당했으며, 합의금 6억원을 요구하고 있다&#039;는 얘기다.&lt;br /&gt;&lt;br /&gt;MS는 전세계를 상대로 장사를 하고, 전세계에서 꼽히는 기업중 하나이다. 이런 MS가 개인을 상대로 6억원의 합의금을 요구 했다는것은 너무하다는 생각이 든다.&lt;br /&gt;&lt;br /&gt;하지만, 블로그의 본문 내용은 &#039;6억원의 합의금을 요구한 이유&#039;를 조금이나마 생각하게 한다.&lt;br /&gt;(지금 블로그 주인이 비공개 포스트로 막아둬서 본문 내용을 못보는게 아쉽다.)&lt;br /&gt;&lt;br /&gt;먼저 ms관계자에게 사과를 한다고 하지만, 이는 로즈분투만큼이나(혹은 그보다 더) 사과답지 않은 사과를 하고 있다.&lt;br /&gt;&lt;br /&gt;내가 보기에 가장 황당한 부분은 &quot;무단배포 인정한다. 하지만 나도 피해자다.&quot; 라는식으로 시작해서 .. 더욱 화를 돋구는 부분은 &quot;기부금을 준다는 사람도 있었지만 거절했다&quot;라는 부분이다.&lt;br /&gt;&lt;br /&gt;마치 자신이 &#039;MS에 대항하는 혁명가&#039; 혹은 &#039;많은 사람에게 이득을 주는 자선가&#039;인 착각을 하는 모양인데 .. 남이 피땀흘려 만든 소프트웨어를 .. 무단으로 개조하고, 그걸 배포하고 .. 마치 그걸 모두 자기가 만들어 무료배포 한다는 듯이 자기 이름을 박아두고 .. 이게 도대체 말이나 되는 소리인가 ..?&lt;br /&gt;&lt;br /&gt;아무리 무단복제가 판치는 나라라고 하지만 .. &#039;무단복제가 합법&#039;이 되고, 남의 저작물을 함부로 수정하고 자신의 이름을 기입하고 .. 그걸 또 배포하고 .. 거기에 &#039;내가 만든건 버젼업도 합니다&#039;라고 광고하고 .. 도대체 근본부터 틀린 이 행동에 법적 대응을 하는것이 왜 잘못되었다고 생각하는가 ..&lt;br /&gt;&lt;br /&gt;댓글에 남긴 많은글도 이해가 안간다. 도대체 불법복제범에게 손해배상 청구를 하겠다는 것에 대해 &#039;MS의 독점&#039; &#039;버그많은 OS&#039;는 왜 나오는가? 그렇게 맘에 안들면 다른 OS로 갈아타면 될것 아닌가 ? &lt;br /&gt;&lt;br /&gt;네이버에서 쪽지를 받았다. 크리스란 사람이 .. WINDOWS 98라이센스가 있는데 기술지원이 안된다. 왜 강제로 XP로 갈아타게 하느냐는 정신놓은 쪽지이다. 대충 답신 쪽지를 보냈지만 .. 그사람은 OEM라이센스도 이해하지 못하고 기술지원도 이해하지 못하니 .. 별로 좋지않은 쪽지를 다시 보내겠지..&lt;br /&gt;&lt;br /&gt;결론은 간단하다. jmxp만든사람 책임 엄청나게 있다. ms가 개인을 상대로 6억원 합의금 요구는 너무하다고 생각하지만 jmxp만든사람 잘한거 하나없다.&lt;br /&gt;&lt;br /&gt;jmxp만든사람은 라이센스의 개념이 없다.&lt;br /&gt;&lt;br /&gt;jmxp만든사람은 불법복제가 잘못되었다는것을 제대로 모르고있다.&lt;br /&gt;&lt;br /&gt;jmxp만든사람은 windows가 공개 프로그램정도로 생각하고 있다.&lt;br /&gt;&lt;br /&gt;jmxp만든사람은 독립투사가 아니다.&lt;br /&gt;&lt;br /&gt;jmxp만든사람은 남의 저작물에 자기이름을 박았다.&lt;br /&gt;&lt;br /&gt;jmxp만든사람은 그저 배포를 하니 써본사람이 &#039;정말 편리하군요&#039;하며 칭찬하는 모습을 보고싶었던것 뿐이겠지 .. 그렇게 대접받고 싶다면 자기가 모든걸 만들던가 ... 휴.. 답안나오는 사람..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p id=&quot;more68_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;68_0&#039;,&#039; more.. &#039;,&#039; less.. &#039;); return false;&quot;&gt; more.. &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content68_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/14/tistory/2008/08/24/16/19/48b10b9b8f775&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/original/14/tistory/2008/08/24/16/19/48b10b9b8f775&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;160&quot; width=&quot;600&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/17/tistory/2008/08/24/16/19/48b10b97143ad&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/original/17/tistory/2008/08/24/16/19/48b10b97143ad&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;176&quot; width=&quot;600&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;전혀 뉘우치는 기미가 없는 제작자.. 누군가는 이사람을 개발자라고도 하는데 .. 어이없음이다 ..&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/11/tistory/2008/08/24/16/21/48b10bdf4e552&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/11/tistory/2008/08/24/16/21/48b10bdf4e552&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;111&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/34/tistory/2008/08/24/16/21/48b10bdc1f3e0&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/34/tistory/2008/08/24/16/21/48b10bdc1f3e0&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;41&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/19/tistory/2008/08/24/16/20/48b10bdaeab99&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/19/tistory/2008/08/24/16/20/48b10bdaeab99&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;41&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/4/tistory/2008/08/24/16/20/48b10bd9b4856&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/4/tistory/2008/08/24/16/20/48b10bd9b4856&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;41&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/31/tistory/2008/08/24/16/20/48b10bd887ada&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/31/tistory/2008/08/24/16/20/48b10bd887ada&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;53&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/1/tistory/2008/08/24/16/20/48b10bd498ce3&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/1/tistory/2008/08/24/16/20/48b10bd498ce3&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;309&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;말도 안되게 옹호하는 사람들.. 모르는게 이렇게 무섭다니 .. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&amp;nbsp;JMXP 관련글을 찾던중 .. 음.. 제작자 블로그에 자기가 배포한 내용을 설명한 부분을 찾았다..&lt;br /&gt;휴..... 이렇게 떠벌이면서 다른사람이 자기를 인정해주길 바랬구나...&lt;br /&gt;&lt;br /&gt;&lt;font&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;***본 내용은 JMXP 제작자의 블로그에서 퍼왔음***&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;다운 URL:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&amp;nbsp;&lt;u&gt; JMXP 2.7 v1: &lt;/u&gt;&lt;/font&gt;&lt;/strong&gt;&lt;a href=&quot;http://down.clubbox.co.kr/disk1/tttve&quot;&gt;&lt;strong&gt;&lt;font color=&quot;#91556d&quot; face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;http://down.clubbox.co.kr/disk1/tttve&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 인터넷 익스플로러 7 과 윈도우 미디어 플레이어 11 이 포함된 버젼입니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&amp;nbsp;&lt;strong&gt;&lt;u&gt; JMXP 2.7 v2: &lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;a href=&quot;http://down.clubbox.co.kr/disk1/uttve&quot;&gt;&lt;strong&gt;&lt;font color=&quot;#91556d&quot; face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;http://down.clubbox.co.kr/disk1/uttve&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 인터넷 익스플로러 6 와 윈도우 미디어 플레이어 9 이 포함된 버젼입니다. &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; V1과 V2의 차이점은 이 2가지 이며 나머지 사항은 동일합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&amp;nbsp; &lt;strong&gt;&lt;u&gt;JMXP 2.7 v3: &lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;a href=&quot;http://down.clubbox.co.kr/disk1/8auve&quot;&gt;&lt;strong&gt;&lt;font color=&quot;#91556d&quot; face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;http://down.clubbox.co.kr/disk1/8auve&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 설치 중 드라이버 충돌 현상이 일어나 설치가 진행되지 않는 경우를 위하여 &amp;nbsp; &amp;nbsp; &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 포함 드라이버들을 순수 XP와 같도록 수정된 버전입니다. &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; XP가 출시된 시점이 2000년 초반이므로 이 시기의 구형 드라이버들이 포함되어 있습니다. &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 그러므로 V3를 설치 할 때는 메인보드 드라이버등을 따로 구비해 두셔야 합니다. &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; RAID, SATA등의 저장장치 드라이버는 최신장치까지 지원되게 하였습니다. &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 나머지 사항은 V2와 동일합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;주의 : V1, V2는 지포스 MX440과 같은 구형지포스와 충돌이 있으니 &lt;br /&gt;구형 지포스 사용자 분들은 V3를 설치해 주시기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;정식배포버전의 용량은 V1-698M(714812K)&amp;nbsp; V2-674M(690238K)&amp;nbsp; V3-489M(501336K) 이니 용량 확인 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;&lt;a href=&quot;http://cfs4.tistory.com/upload_control/download.blog?fhandle=YmxvZzEyNDc4OEBmczQudGlzdG9yeS5jb206L2F0dGFjaC8wLzAzMDAwMDAwMDAwNy5wbmc=&quot;&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&lt;img style=&quot;border-width: 0px; width: 520px; height: 465px;&quot; alt=&quot;install_solidthink&quot; src=&quot;http://cfs5.tistory.com/upload_control/download.blog?fhandle=YmxvZzEyNDc4OEBmczUudGlzdG9yeS5jb206L2F0dGFjaC8wLzAzMDAwMDAwMDAxMi5wbmc=&quot; width=&quot;644&quot; border=&quot;0&quot; height=&quot;484&quot;&gt;&lt;/font&gt;&lt;/a&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;JMXP 2.7을 배포합니다&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;안정성을 향상시키고 유저분들의 요구를 수렴하여 JMXP 6번째 버젼을 완성하여 배포합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;많은 정성을 기울였으며, XP의 편안한 설치와 사용에 도움이 되었으면 합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;JMXP는 일반적인 XP 이기에 모든 컴퓨터에 설치가능합니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;JMXP의 장점&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치가 간단합니다&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;XP의 설치에 대한 두려움이 있다면 걱정하지 않으셔도 됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;모든 설치과정이 자동으로 이루어지므로 가만히 기다리기만 하시면 됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;그리고 블로그를 통하여 상세한 설치가이드와 유용한 정보들이 제공됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;가볍고 빠릅니다&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;XP나 비스타가 느리고 답답하다면 본 XP를 설치해 보시기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;확실한 체감효과가 있습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;저사양 컴퓨터에서도 빠르게 구동 됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;보기 좋습니다&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;많은 사람들이 공감할 수 있는 보기 좋은 외관을 갖추기 위해 &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;많은 정성을 들이고 세심한 신경을 썼습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;XP의 사용에 있어서 또 다른 즐거움이 아닐까 생각합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;버젼 업 됩니다&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;아무리 정성을 들여 제작해도 완벽한 OS의 제작은 불가능 합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;지속적으로 수정, 보완되고 새로운 기능을 추가하여 배포됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;버젼 소개&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;2.7 V1&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;인터넷 익스플로러 7 과 윈도우 미디어 플레이어 11 이 포함된 버젼입니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;2.7 V2&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;인터넷 익스플로러 6 와 윈도우 미디어 플레이어 9 이 포함된 버젼입니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;V1과 V2의 차이점은 이 2가지 이며 나머지 사항은 동일합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;2.7 V3&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치 중 드라이버 충돌 현상이 일어나 설치가 진행되지 않는 경우를 위하여 &amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;포함 드라이버들을 순수 XP와 같도록 수정된 버전입니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;XP가 출시된 시점이 2000년 초반이므로 이 시기의 구형 드라이버들이 포함되어 있습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;그러므로 V3를 설치 할 때는 메인보드 드라이버등을 따로 구비해 두셔야 합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;RAID, SATA등의 저장장치 드라이버는 최신장치까지 지원되게 하였습니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;나머지 사항은 V2와 동일합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;주의 : V1, V2는 지포스 MX440과 같은 구형지포스와 충돌이 있으니 &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;구형 지포스 사용자 분들은 V3를 설치해 주시기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;정식배포버전의 용량은 V1-698M(714812K)&amp;nbsp; V2-674M(690238K)&amp;nbsp; V3-489M(501336K) 이니 용량 확인 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;2.7 변경 사항&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;높아진 안정성&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;블루스크린오류와 관련하여 여러 수정이 이루어 졌습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;USB 인식관련 수정이 이루어 졌습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;CD 인식관련 수정이 이루어 졌습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;일부프로그램의 설치문제와 관련하여 수정이 이루어 졌습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;자동구성 중 멈춤현상을 수정하였습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;그외 많은 사항이 개선되어 안정성을 높였습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;업데이트(핫픽스) 추가&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;문제를 일으킬 수 있는 업데이트들은 제외하고&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;최신 업데이트들을 추가하였습니다. 80 개의 업데이트가 포함되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;마이크로소프트 업데이트 사이트를 방문하여 직접 시행해야 하는 업데이트도 있으니&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치 뒤 윈도우 업데이트를 시행해 주시기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;지원 하드웨어 추가&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;포함 드라이버들을 최신버젼으로 교체하였고&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;사운드 드라이버가 대폭 추가되었습니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;방대한 목록의 드라이버가 포함되어 있으며 &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치과정에서 알맞은 드라이버가 자동으로 설치됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;지원 하드웨어 목록은&lt;/font&gt;&lt;span id=&quot;callbacknesttylerngtistorycom76224&quot; style=&quot;float: right; width: 1px; height: 1px;&quot;&gt;&lt;font&gt;&lt;embed wmode=&quot;transparent&quot; id=&quot;tylerngtistorycom76224&quot; src=&quot;http://cfs.tistory.com/blog/plugins/CallBack/callback.swf?destDocId=callbacknesttylerngtistorycom76224&amp;amp;id=7&amp;amp;callbackId=tylerngtistorycom76224&amp;amp;host=http://tylerng.tistory.com&amp;amp;float=left&amp;amp;&quot; allowscriptaccess=&quot;always&quot; menu=&quot;false&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;&lt;/font&gt;&lt;/span&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt; 아래에 있습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;지원언어 추가&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;사용자분들의 요청으로&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;국가설정에 English (USA, UK) 가 추가 되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;JMXP에서 공식적으로 지원하는 입력언어는 중국어, 일본어, 영어입니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;포함 유틸리티 변경&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;일부 유틸리티가 교체되고 최신버젼으로 바뀌었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;자세한 설명은 설치 뒤 바탕화면의 &#039;반드시 읽으세요&#039; 를 보기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;압축 툴 : 알집 에서 WinRAR 로 교체되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;하드 분할 : Partition Magic 에서 Acronis Partition Expert 로 교체되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;조각모음 : Ultra Defrag 에서 Ultimate Defrag 로 교체되었습니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;사양확인 : EVEREST 에서 AIDA32 로 교체되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;핫픽스제거 : Update Cleanup, 전과 동일합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;디스크 정리 : CCleaner, 최신버젼이 포함되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;코덱팩 : K-lite codec, 최신버젼이 포함되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;하드 백업 : 스누피 고스트, 정상작동 되는 것으로 교체되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;사운드 : 비스타 사운드팩이 추가되었습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;듀얼코어 CPU 패치 : XP에서 AMD, 인텔등의 듀얼코어 CPU를 지원하기 위한 패치가 포함되어 있습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;실질적인 성능향상이 이루어 지니, 설치를 권장합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;이 외에 내부적인 많은 변경이 이루어 졌습니다.&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;상세한 설치법은 블로그( &lt;/font&gt;&lt;a href=&quot;http://blog.naver.com/solidthink&quot;&gt;&lt;font color=&quot;#91556d&quot; face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;http://blog.naver.com/solidthink&lt;/font&gt;&lt;/a&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt; ) 오른쪽 메뉴의 &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;&#039; 설치 가이드&#039; 를 참고하여 주시기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;2.5를 기준으로 작성되어 몇몇부분에서 차이가 있으나 거의 동일합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;- 설치 요약 -&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;JMXP는 설치가 매우 간단하다고 쉽다는 장점이 있습니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;시디키가 심어져 있고, 모든 설정과 설치는 자동으로 이루어 집니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치자는 가만히 기다리기만 하면 됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;먼저 공유사이트를 통해 ISO파일을 받습니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;레코딩 프로그램으로 ISO파일을 CD로 굽습니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;(본 블로그의 자료실에 있는 프로그램을 이용하면 간편하게 레코딩 할 수 있습니다.)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;부팅 뒤&amp;nbsp; press any key to boot from CD 메시지가 뜨면 아무키나 누릅니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치화면과 함께 설치가 시작됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;초기에 설치할 하드만 지정하면 모든과정은 자동으로 진행됩니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;설치 뒤 바탕화면의 &#039;반드시 읽으세요&#039; 를 읽어 보시기 바랍니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;주의 사항&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;노트북에 설치하셨다면 각 노트북마다 따로 설정해야 할 부분들이 있으니 &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;제조사나 관련 카페, 동호회를 들려서 반드시 XP설치 가이드와 주의점을 확인하셔야 하며&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;그 모델에 맞는 XP용 드라이버와 유틸리티를 따로 다운로드 받아 순서를 지켜 설치해야 합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;드라이버나 유틸리티 설치 시 부팅 메시지가 뜬다면 꼬박꼬박 지켜 주셔야 합니다.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;간혹 펑션키 유틸리티도 설치하지 않으시고 &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;기능키가 작동하지 않는다고 OS의 문제로 치부하는 분들이 계신데, &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;OS만 설치해서는 펑션키등의 기능이 당연히 작동하지 않습니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;그것은 제조사 제공 드라이버와 펑션키 유틸리티를 올바로 설치하지 않은 본인의 잘못입니다. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;&#039;GulimChe&#039;, &#039;Sans-serif&#039;&quot;&gt;관련 카페나 노트북 동호회에 들리셔서 관련 정보를 얻으시기 바랍니다.&lt;/font&gt;&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;br /&gt;</description>
			<category>I am ..</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/68</guid>
			<comments>http://pupustory.tistory.com/68#entry68comment</comments>
			<pubDate>Sun, 24 Aug 2008 02:03:32 +0900</pubDate>
		</item>
		<item>
			<title>비온뒤 하늘이 맑았다 ..</title>
			<link>http://pupustory.tistory.com/67</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/24/tistory/2008/08/20/22/00/48ac1587adfd2&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/original/24/tistory/2008/08/20/22/00/48ac1587adfd2&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;525&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(142, 142, 142);&quot;&gt;쩝.. 난 맑지 못한데 ..&lt;/span&gt;&lt;br /&gt;</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/67</guid>
			<comments>http://pupustory.tistory.com/67#entry67comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:52:40 +0900</pubDate>
		</item>
		<item>
			<title>합정역 tv가에러를 뿜었다.</title>
			<link>http://pupustory.tistory.com/66</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/16/tistory/2008/08/20/21/57/48ac149d91c4c&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/original/16/tistory/2008/08/20/21/57/48ac149d91c4c&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;525&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs8.tistory.com/original/8/tistory/2008/08/20/21/57/48ac14a0f0ded&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/original/8/tistory/2008/08/20/21/57/48ac14a0f0ded&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;525&quot; width=&quot;700&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;쩝 더러운 윈도우 .. &lt;br /&gt;</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/66</guid>
			<comments>http://pupustory.tistory.com/66#entry66comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:50:16 +0900</pubDate>
		</item>
		<item>
			<title>습관 고치기 ..</title>
			<link>http://pupustory.tistory.com/65</link>
			<description>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs7.tistory.com/original/34/tistory/2008/08/10/00/26/489db742efecc&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/original/34/tistory/2008/08/10/00/26/489db742efecc&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;427&quot; width=&quot;640&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;남의말을 끝까지 잘 들어주기&lt;/span&gt;&lt;br style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;욕하지 말기&lt;/span&gt;&lt;br style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;화나는 일 있어도 한번 더 생각 하기&lt;/span&gt;&lt;br style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;약속 잊지 않기&lt;/span&gt;&lt;br style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-family: &#039;Dotum&#039;,&#039;Sans-serif&#039;; color: rgb(142, 142, 142); background-color: rgb(255, 255, 255); text-decoration: underline;&quot;&gt;사랑하는 사람이 생기면 항상 생각 하기&lt;/span&gt;&lt;br style=&quot;font-family: &#039;Batang&#039;,&#039;Serif&#039;; background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;
&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;지금 처럼 항상 웃기&lt;/span&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;&lt;br style=&quot;background-color: rgb(255, 255, 255); color: rgb(142, 142, 142);&quot;&gt;&lt;/div&gt;</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/65</guid>
			<comments>http://pupustory.tistory.com/65#entry65comment</comments>
			<pubDate>Sat,  9 Aug 2008 23:18:26 +0900</pubDate>
		</item>
		<item>
			<title>네이버 일부 서버가 죽으셨네 ..</title>
			<link>http://pupustory.tistory.com/64</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs7.tistory.com/original/23/tistory/2008/08/02/17/49/48941fb5eb8be&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/original/23/tistory/2008/08/02/17/49/48941fb5eb8be&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;406&quot; width=&quot;870&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;가끔 네이버 서비스를 이용하다 보면 .. 이런 메시지가 많이 뜨는데 ..&lt;br /&gt;&lt;br /&gt;검색엔진에서 본적은 없고 .. 꼭 날씨부분에서 이런게 많이 뜨던데 ..&lt;br /&gt;&lt;br /&gt;뭐 가끔 서버가 죽어서 .. 이런거 뜨는건 맞지만...&lt;br /&gt;&lt;br /&gt;난 너무 자주보는거 같다 .&lt;br /&gt;&lt;br /&gt;</description>
			<category>LifeStyle</category>
			<author>Pupustory</author>
			<guid>http://pupustory.tistory.com/64</guid>
			<comments>http://pupustory.tistory.com/64#entry64comment</comments>
			<pubDate>Sat,  2 Aug 2008 17:42:53 +0900</pubDate>
		</item>
	</channel>
</rss>
