양리와 함께하는 행복한 세상

YangRee.egloos.com

포토로그



2011/01/19 19:16

안드로이드 sms. 안드로이드!

어우 -_-


음; '호환성이슈'이라는 항목으로 올리는게 맞는지 모르겠습니다만...
기존에 XDADevelopers 사이트에서 포팅해놓은 HTC WinMo 기기들의 한국 SMS 포팅 관련 문제가 있어서 이렇게 포스팅합니다.

실제로 저는 Xperia X1 (HTC Kovsky)를 가지고 있으며
xdandoid를 이용해 Froyo 버젼 제 스마트폰에 사용중입니다.

한국 SMS 문제를 정리하면 다음과 같습니다
  • SMS 수신오류 - 잘못된 전화번호 / 메세지 없음
  • SMS 발신오류 - 메세지 내용 깨짐 (인코딩 문제)
결론부터 말씀드리면 문제의 원인은 SKT, KTF가 GSM SMS 기준을 약간? 어겼기 때문입니다. (완전이 어긴건 아니지만서도;;;)

GSM SMS의 전송 규칙은 음... 네트워크의 DataGram같은 일종의 데이터 형식을 따르는데 이를 PDU라고 부릅니다.
PDU(Protocol Data Unit)는 SMS를 전송할 때 일종의 데이터 포맷인데 3GPP라는 기관에서 정한다고 합니다.

문자가 왔을 때 전송되는 SMS-DELIVERY PDU 문자열을 예로들면,
"0791280102198188440AA15117180890000401802291018263130A22080B811040309814F761623132B0A1B3AA"
이런식으로 PDU 문자열이 날아옵니다

이 PDU를 조각조각 분해하면 다음과 같은 결과가 나옵니다.
이전에 제가 안드로이드펍에서 SMS 분석 슬라이드를 본적이 있는데 링크를 까먹어서;
무책임하지만 그 슬라이드를 찾아서 확인해 보시면 매우 자세하게 SMS PDU구조가 나옵니다.

07 // SMSC octet size = 7
91 // type-of-address of the SMSC
280102198188 // service center +82102091888
44 // TP-UDHI(UserDataHeaderIndicator), TP-MMS(More messages to send)
0A // length of sender number
A1 // 1010 0001, national number/isdn/telephone numbering plan
5117180890 // 1571818009
00 // Protocol Identifier
84 // Data Coding Scheme 1000 0100
01802291018263 // 2010/08/22 19:10:28
13 // (User Data) length, 0x13 = 19
0A // (User Data) Header octet size = 10
22 // (User Data) type-of-address(toa)
08 // (User Data) type-of-protocol(TP)
0B // (User Data) length of local phone number, 0x0b = 11
81 // (User Data) 1000 0001, unknown/telephone numbering plan
101021436587 // (User Data), sender number 01012345678
61623132B0A1B3AA // (User Data) text message "ab12가나"

만일 이 SMS-DELIVERY PDU를 국내 SMS 처리가 안된 안드로이드 소스로 처리하게 되면
    발신자: 1571818009
    내용:(내용없음)
이런 식으로 SMS 가 도착합니다. 실제 발신자는 01012345678이고 내용은 "ab12가나"임에도 불구하고 말이죠;

이제 문제를 밝혀봅시다

  1. 수신 문제의 첫번째 '메세지 없음'은 위에 빨간색으로 표시한 두부분에 의해서 발생합니다
첫째로 Data Coding Scheme에 0x80 비트는 미래를 위해 남겨놓은 그룹지정 비트입니다.
따라서 외국에서 개발된 소스에는 저 그룹지정 비트에 대한 어떠한 언급도 없죠. 그냥 Unknown Encoding Scheme입니다;
당연히 모르는 타입의 메세지를 더이상 처리안하고 넘어가는 경우가 많습니다. 따라서 메세지 수신시에 어떠한 내용도 표시되지 않죠;

=> RIL code에서 저 Data Coding Scheme을 처리해주던가
=> 또는 안드로이드 프레임워크내의 Telephony 소스에서 저 Data Coding Scheme에 대해서 처리할 수 있도록 변경해줘야합니다.

  2. 이상한 번호로 문자가 오는 문제는 위에 파란색으로 표시한 부분에 의해 발생합니다.
위의 PDU 예에 따르면 보낸사람 번호는 "1571818009"이지 "01012345678"이 아닙니다;
당연히 문자를 보낸사람은 "1571818009"로 표시가 됩니다; 그리고 국내에서 사용한 전화번호는 밑에 User Data Header에 숨겨져 있네요;

=> Data Coding Scheme & 0x80 혹은 User DataHeaderNumberingPlan & 80 이라면 User Data Header에서 보낸사람 주소를 꺼내서 표시해줘야합니다. 이것도 역시 RIL SMS 코드내에서 수정을 하던가 혹은 안드로이드 Telephony 코드를 수정해야합니다

  3. 보너스 문제로 한국어 인코딩 문제가 있습니다.
위 PDU 예에서 텍스트 메세지 "61623132B0A1B3AA" 가 "ab12가나"로 해석되어야합니다.
그런데 "61623132"는 쉽게 해석이 됩니다. 0x61 => 'a', 0x31 => '1' 이 부분은 ASCII 코드이면서 동시에 UTF-8 코드로 해석될 수 있죠.
문제는 "B0A1B3AA"가 왜 "가나"로 해석되냐 입니다. 실제로 GSM SMS 표준에 따르면 Data Coding Scheme으로 3가지가 가능합니다
  1. GSM7bit (Default 7bit 문자셋에 기반한 7bit 코딩입니다. 자세한건 패스;)
  2. 8bit (UTF-8)
  3. 16bit (UCS-2)
그러면 "61623132"같은 8bit 단위 문자에 따라서 "B0A1B3AA"도 UTF-8 코딩으로 해석하면 될까요? 그렇지 않습니다.
UTF-8 코딩에 따르면 "가나"같은 문자는 한 문자당 3byte로 변환이 됩니다;
위에 "B0A1B3AA"는 실제로 EUC-KR (KSC5601) 코딩을 사용하고 있습니다.
당연히 위에 GSM SMS의 Data Coding Scheme 표준에 따르지 않으므로 한글은 깨져서 해석이 됩니다;
이 문제를 해결하면 문자를 받았을 때 글자가 깨지는 문제가 없어지겠죠.

=> Data Coding Scheme & 0x80 이라면 메세지 내용을 EUC-KR => UTF-8 혹은 UCS-2 변환해야합니다
다행히도 C로 개발시에는 안드로이드 소스의 external/icu4c를 사용하시면 되고
Java에서는 스트링을 읽을때 String(text, "KSC5601") 하시면 될겁니다.


여기까지가 제가 문제를 확인하고 분석한 결과입니다.
마지막으로, 만일 SMS 소스 부분의 작업이 필요하시면 안드로이드 프레임워크내의 Telephony코드를 수정하라고 권해드리고 싶네요.
왜냐하면 어떤 스마트폰이냐에 상관없이 수정해야하는 SMS 코드이기 때문입니다.
음; 그러나 저는 불행히도 제가 빌드하지 않은 안드로이드 system.img를 사용하고 있기 때문에 RIL 코드를 수정해야 했습니다.
HTC ril 소스 부분은 정말 버그가 많네요; 제가 능력이 된다면 xdandroid 부분에 htc-ril 관련 소스 코드를 바로잡고 싶습니다.
기회가 될런지 모르겠네요.

틀린 부분이 있으면 지적해주시고
게시판을 잘못 찾아왔다면 역시 지적해주시고
뭔가 궁금한 부분이 있으시면 역시 질문해주시길 바랍니다.
그럼 저로인해 삽질이 조금이라도 줄어들기를 바라며 이만 줄입니다.

출처 : 안드로이드펍

덧글

  • George 2019/05/23 11:35 # 삭제 답글

    Nice read, I just passed this onto a friend who was doing some research on that. And he actually bought me lunch as I found it for him smile Thus let me rephrase that Thanks for lunch!
  • George 2019/05/23 12:27 # 삭제 답글

    An interesting dialogue is value comment. I feel that it is best to write extra on this subject, it won't be a taboo subject but generally persons are not sufficient to speak on such topics. To the next. Cheers
  • William 2019/05/27 14:05 # 삭제 답글

    betamethasone acetatena phos
  • Thomas 2019/05/28 07:40 # 삭제 답글

    You are my breathing in, I possess few blogs and very sporadically run out from to brand.
  • Richard 2019/05/29 20:06 # 삭제 답글

    I am now not certain the place you're getting your info, however good topic. I needs to spend some time learning more or figuring out more. Thank you for magnificent info I was on the lookout for this information for my mission.
  • George 2019/05/31 18:32 # 삭제 답글

    I was very pleased to discover this website. I wanted to thank you for your time for this fantastic read!!
  • Donald 2019/06/01 17:27 # 삭제 답글

    When I originally commented I clicked the Notify me when new comments are added checkbox and now every time a comment is added I get 4 emails using the same comment. Is there any way you may take away me from that service? Thanks!
  • George 2019/06/02 07:48 # 삭제 답글

    It'll also save a lot of cash and time for those on a restricted budget who
  • Mark 2019/06/02 13:57 # 삭제 답글

    In My Bambino site you can find sso many interesting aspefts
  • Paul 2019/06/03 03:29 # 삭제 답글

    whoah this blog is excellent i really like reading your articles. Stay up the good work! You already know, many persons are looking around for this info, you could help them greatly.
  • Richard 2019/06/04 20:34 # 삭제 답글

    You are my inhalation, I have few blogs and sometimes run out from to brand.
  • John 2019/06/09 16:34 # 삭제 답글

    I think you have remarked some very interesting points , appreciate it for the post.
  • Michael 2019/06/10 04:24 # 삭제 답글

    I do consider all the ideas you've presented on your post. They're really convincing and can certainly work. Still, the posts are very brief for novices. May just you please extend them a little from next time? Thanks for the post.
  • Joseph 2019/06/10 09:46 # 삭제 답글

    I have not checked in here for a while since I thought it was getting boring, but the last few posts are good quality so I guess I'll add you back to my daily bloglist. You deserve it my friend
  • Michael 2019/06/12 19:31 # 삭제 답글

    Hey very nice site!! Man .. Beautiful .. Amazing .. I will bookmark your blog and take the feeds alsoI am happy to find a lot of useful info here in the post, we need work out more techniques in this regard, thanks for sharing. . . . . .
  • Donald 2019/06/13 04:10 # 삭제 답글

    I gotta favorite this internet site it seems handy very useful
  • Michael 2019/06/13 12:44 # 삭제 답글

    I am sure this post has touched all the internet people, its really really nice post on building up new web site.
  • Robert 2019/06/15 17:42 # 삭제 답글

    Nice site. On your blogs extremely interest and i will tell a buddies.
  • William 2019/06/24 19:55 # 삭제 답글

    Thank you, I have just been searching for info about this subject for a long time and yours is the greatest I've found out so far. However, what about the bottom line? Are you positive concerning the supply?
  • Joseph 2019/06/26 04:26 # 삭제 답글

    I've been absent for a while, but now I remember why I used to love this website. Thanks, I'll try and check back more frequently. How frequently you update your site?
  • David 2019/06/26 10:19 # 삭제 답글

    I am really enjoying the themedesign of your blog. Do you ever run into any browser compatibility problems? A handful of my blog readers have complained about my website not operating correctly in Explorer but looks great in Chrome. Do you have any advice to help fix this issue?
  • John 2019/06/29 23:17 # 삭제 답글

    I appreciate, cause I found just what I was looking for. You have ended my 4 day long hunt! God Bless you man. Have a nice day. Bye
  • Donald 2019/07/02 18:36 # 삭제 답글

    Wonderful beat ! I wish to apprentice while you amend your web site, how can i subscribe for a blog site? The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast offered bright clear idea
  • Charles 2019/07/04 19:41 # 삭제 답글

    But a smiling visitor here to share the love , btw outstanding layout.
  • Paul 2019/07/06 01:54 # 삭제 답글

    Actually its referred to as Search engine optimization that when i search for this post I found this web page at the top of all web pages in search engine.
  • Donald 2019/07/06 05:08 # 삭제 답글

    It's a mammoth playground built of mountains, hills, lakes,
  • John 2019/07/06 14:38 # 삭제 답글

    Whats Taking place i am new to this, I stumbled upon this I have found It positively helpful and it has aided me out loads. I hope to contribute &amp assist other users like its helped me. Great job.
  • Robert 2019/07/07 10:57 # 삭제 답글

    Somebody necessarily lend a hand to make significantly posts I might state. This is the very first time I frequented your website page and thus far? I surprised with the analysis you made to make this actual publish incredible. Magnificent job!
  • Donald 2019/07/09 22:33 # 삭제 답글

    Thank you for some other informative website. Where else may I get that type of info written in such an ideal way? I've a mission that I'm just now operating on, and I've been on the look out for such information.
  • William 2019/07/13 12:38 # 삭제 답글

    Hahahahahahaha, this politics related YouTube video is really so comical, I loved it. Thanks in favor of sharing this.
  • James 2019/07/14 05:46 # 삭제 답글

    This kind of game gives a real experience of building a farm and planting
  • Donald 2019/07/16 04:05 # 삭제 답글

    I have to agree with your statement with this issue and
  • Daniel 2019/07/16 15:57 # 삭제 답글

    Heya im for the first time here. I found this board and I find It really useful &amp it helped me out much. I hope to give something back and help others like you aided me.
  • Paul 2019/07/20 00:44 # 삭제 답글

    I truly enjoy looking at on this web site , it contains superb blog posts. Heavierthanair flying machines are impossible. by Lord Kelvin.
  • Donald 2019/07/20 18:10 # 삭제 답글

    Hi, Neat post. There is a problem with your web site in internet explorer, would check this IE still is the market leader and a large portion of people will miss your magnificent writing because of this problem.
  • Thomas 2019/07/21 13:01 # 삭제 답글

    Because here is a list of multiplayer games is that the leave was asked
  • Michael 2019/07/22 05:35 # 삭제 답글

    You completed a number of fine points there. I did a search on the theme and found the majority of folks will agree with your blog.
  • Charles 2019/07/22 23:47 # 삭제 답글

    Wonderful work! This is the kind of info that are meant to be shared across the internet. Disgrace on the search engines for not positioning this post higher! Come on over and consult with my website . Thank you
  • Robert 2019/07/24 14:46 # 삭제 답글

    It is also possible that Zynga's chosen advertising network is to blame if we consider the case of the New York Times' website
  • David 2019/07/25 12:31 # 삭제 답글

    If you are going for best contents like myself, simply go to see this site all
  • Michael 2019/07/26 05:59 # 삭제 답글

    Every weekend i used to pay a visit this website, for the reason that i wish for enjoyment, for the reason
  • Paul 2019/07/27 05:00 # 삭제 답글

    Fantastic beat ! I wish to apprentice while you amend your website, how can i subscribe for a blog web site? The account aided me a acceptable deal. I had been a little bit acquainted of this your broadcast offered bright clear concept
  • John 2019/07/27 13:53 # 삭제 답글

    Thank you, I have just been searching for info about this subject for a long time and yours is the greatest I've found out so far. However, what about the bottom line? Are you positive concerning the supply?
  • William 2019/07/30 13:27 # 삭제 답글

    Heya im for the first time here. I found this board and I find It really useful &amp it helped me out much. I hope to give something back and help others like you aided me.
  • Richard 2019/07/31 03:36 # 삭제 답글

    I just couldn't go away your web site before suggesting that I really enjoyed the usual information an individual provide on your visitors? Is gonna be again continuously in order to check up on new posts
  • Paul 2019/07/31 06:48 # 삭제 답글

    That is some inspirational stuff. Never knew that opinions could be this varied. Be certain to keep writing.
  • Robert 2019/08/04 06:32 # 삭제 답글

    I think this is a real great blog post.Much thanks again.
  • George 2019/08/05 04:07 # 삭제 답글

    What a video it is! In fact amazing and fastidious quality, please upload more video clips having such good quality. Thanks.
  • Joseph 2019/08/06 21:24 # 삭제 답글

    Nice blog! Is your theme custom made or did you download it from somewhere? A theme like yours with a few simple tweeks would really make my blog stand out. Please let me know where you got your design. Bless you
  • Thomas 2019/08/08 15:53 # 삭제 답글

    Keep working ,impressive job!
  • Daniel 2019/08/08 23:44 # 삭제 답글

    Where To Purchase Generic Ciprofloxacin 0.3 5ml in Albuquerque
  • Paul 2019/08/10 18:30 # 삭제 답글

    I needed to thank you for this good read!! I certainly enjoyed every little bit of it. I've got you bookmarked to check out new stuff you post
  • Joseph 2019/08/15 05:12 # 삭제 답글

    free cell phone number lookup by name You can certainly see your
  • David 2019/08/16 22:28 # 삭제 답글

    garcinia cambogia extract weight loss results She is to make pill
  • Charles 2019/08/18 03:19 # 삭제 답글

    I am not sure where you are getting your info, but great topic. I needs to spend some time learning much more or understanding more. Thanks for fantastic information I was looking for this info for my mission.
  • William 2019/08/19 08:45 # 삭제 답글

    I just like the helpful info you supply on your articles. I will bookmark your blog and take a look at once more here regularly. I'm somewhat sure Ill learn a lot of new stuff right right here! Best of luck for the following!
  • James 2019/08/20 11:29 # 삭제 답글

    My own wife and I fell over here by a poles apart trap forward also contemplated I'd personally restraint points unconscious. I like exactly what I envision i really am located absolutely charting you. Look forward to
  • William 2019/08/23 06:29 # 삭제 답글

    Very well written article. It will be helpful to anyone who usess it, as well as yours truly
  • William 2019/08/23 11:49 # 삭제 답글

    Hi, Neat post. There's a problem with your site in internet explorer, would test this IE still is the market leader and a good portion of people will miss your excellent writing because of this problem.
  • David 2019/08/24 14:23 # 삭제 답글

    I need to input, like a bunch at the same time as I hadn't the benefit of examining everything you had to declare, I couldnt rally round on the contrary elude draw your attention before long. The as if you needed an excellent grasp on the subject
  • Paul 2019/08/25 00:24 # 삭제 답글

    It'll also save a lot of cash and time for those on
  • John 2019/08/25 18:02 # 삭제 답글

    A big thank you for your article.Really thank you! Cool.
  • Thomas 2019/08/28 20:45 # 삭제 답글

    Hey I am so excited I found your website, I really found you
  • George 2019/09/01 00:14 # 삭제 답글

    Definitely, what a fantastic website and informative posts, I definitely will bookmark your blog.All the Best!
  • Robert 2019/09/02 08:00 # 삭제 답글

    Im genuinely enjoying the style and layout of one's website. Its a very uncomplicated on the eyes which makes it a great deal much more enjoyable for me to come here and pay a visit to far more typically. Did you hire out a designer to make your theme? Excellent perform!
  • Joseph 2019/09/03 23:22 # 삭제 답글

    My spouse and I stumbled over here by a different internet address and thought I might check items out. I like what I see so i am just following you. Appear forward to checking out your web page again.
  • Mark 2019/09/07 03:12 # 삭제 답글

    requirements. Recognitions pro suggestion like operative, balanced, explanatory as well as moreover exuberance thinkings about this issue to Gloria.
  • Donald 2019/09/12 05:08 # 삭제 답글

    butenafine solubility
  • Joseph 2019/09/15 14:52 # 삭제 답글

    reverse lookup cell phone free christian louboutin shoes you are
  • David 2019/09/16 16:31 # 삭제 답글

    I would definitely not recommend these as ways to break the ice however.
  • Paul 2019/09/26 07:10 # 삭제 답글

    Wynn documented revenue before last number of quartersit could possibly preserve stagnating, or maybe counterpicking.
  • Mark 2019/09/30 23:41 # 삭제 답글

    Definitely pent topic matter, appreciate it for selective information.
  • Donald 2019/10/03 15:48 # 삭제 답글

    I'm really enjoying the themedesign of your website. Do you ever run into any internet browser compatibility issues? A handful of my blog audience have complained about my site not operating correctly in Explorer but looks great in Firefox. Do you have any solutions to help fix this problem?
  • Paul 2019/10/04 01:14 # 삭제 답글

    Wonderful beat ! I wish to apprentice while you amend your web site, how can i subscribe for a blog site? The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast offered bright clear idea
  • Paul 2019/10/12 10:34 # 삭제 답글

    I just like the helpful info you supply on your articles. I will bookmark your blog and take a look at once more here regularly. I'm somewhat sure Ill learn a lot of new stuff right right here! Best of luck for the following!
  • Mark 2019/10/13 00:29 # 삭제 답글

    A big thank you for your article.Thanks Again. Great.
  • Thomas 2019/10/13 21:13 # 삭제 답글

    Thanks for any other informative web site. Where else may just I get that kind of information written in such an ideal way? I have a mission that I am just now operating on, and I have been on the look out for such information.
  • James 2019/10/14 18:38 # 삭제 답글

    You are my inhalation, I have few web logs and rarely run out from post
  • Donald 2019/10/15 19:53 # 삭제 답글

    Awesome article post.Thanks Again. Much obliged.
  • Daniel 2019/10/18 05:26 # 삭제 답글

    Because here is a list of multiplayer games is that the leave was asked
  • William 2019/10/18 10:29 # 삭제 답글

    Beneficial Location Hi gentleman the following transpire a number of web page link with the aim of represses information that will a person may possibly acquire positive yourselves. The Significance Verifying away from home.
  • Charles 2019/10/22 09:18 # 삭제 답글

    Thanks a bunch for sharing this with all of us you actually realize what you're talking approximately! Bookmarked. Kindly also visit my web site . We will have a hyperlink exchange arrangement among us!
  • William 2019/10/23 13:33 # 삭제 답글

    I'm really enjoying the themedesign of your website. Do you ever run into any internet browser compatibility issues? A handful of my blog audience have complained about my site not operating correctly in Explorer but looks great in Firefox. Do you have any solutions to help fix this problem?
  • William 2019/10/23 19:04 # 삭제 답글

    Magnificent site. Plenty of useful information here. I'm sending it to some friends ans additionally sharing in delicious. And certainly, thanks in your sweat!
  • William 2019/10/27 07:00 # 삭제 답글

    Hello, i think that i saw you visited my site so i came to return the favor.I am trying to find things to enhance my web site!I suppose its ok to use some of your ideas!!
  • David 2019/10/27 17:03 # 삭제 답글

    Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content!
  • Michael 2019/10/29 17:33 # 삭제 답글

    I like this post, enjoyed this one regards for posting. He removes the greatest ornament of friendship, who takes away from it respect. by Cicero.
  • Donald 2019/10/30 01:23 # 삭제 답글

    Wow! This blog looks exactly like my old one! It's on a completely different topic but it has pretty much the same page layout and design. Excellent choice of colors!
  • William 2019/11/03 11:52 # 삭제 답글

    Fckin awesome things here. I am very glad to see your article. Thanks a lot and i'm looking forward to contact you. Will you please drop me a mail?
  • Donald 2019/11/04 12:36 # 삭제 답글

    Heya im for the first time here. I found this board and I find It really useful &amp it helped me out much. I hope to give something back and help others like you aided me.
  • Daniel 2019/11/05 07:47 # 삭제 답글

    Hi, Neat post. There is a problem with your web site in internet explorer, would check this IE still is the market leader and a large portion of people will miss your magnificent writing because of this problem.
  • Donald 2019/11/05 19:09 # 삭제 답글

    Thanks for the post.Really looking forward to read more. Will read on
  • Michael 2019/11/08 04:41 # 삭제 답글

    very nice post, i certainly love this web site, keep on it
  • Thomas 2019/11/10 11:16 # 삭제 답글

    Pretty portion of content. I just stumbled upon your web site and in accession capital to assert that I acquire actually enjoyed account your blog posts. Any way I will be subscribing in your augment or even I fulfillment you access constantly quickly.
  • Joseph 2019/11/11 07:09 # 삭제 답글

    Someone essentially help to make seriously posts I would state. This is the very first time I frequented your web page and thus far? I surprised with the research you made to make this particular publish incredible. Magnificent job!
  • Richard 2019/11/13 11:28 # 삭제 답글

    I truly prize your function, Wonderful post.
  • Donald 2019/11/16 11:42 # 삭제 답글

    Farmville coins are used to make experience points and to purchae things for tthe farm.
  • Mark 2019/11/17 02:21 # 삭제 답글

    I'm searching for websites that may have excellent tips about what's popular and what the most effective makeup products is..
  • George 2019/11/18 17:20 # 삭제 답글

    I really like your writing style, good information, thankyou for posting D.
  • Daniel 2019/11/20 09:40 # 삭제 답글

    Wow! This could be one particular of the most useful blogs We've ever arrive across on this subject. Actually Excellent. I'm also an expert in this topic so I can understand your hard work.
댓글 입력 영역
◀ 다음덧글    이전덧글 ▶

와이드



트위터

rss1

rss2

Add to Google Reader or Homepage

광고1

광고2