diff --git a/pythonwhois/parse.py b/pythonwhois/parse.py index 4ffd9cb..5f77991 100644 --- a/pythonwhois/parse.py +++ b/pythonwhois/parse.py @@ -40,7 +40,7 @@ grammar = { 'Expiration date\s*:\s?(?P.+)', 'Expires on:\s?(?P.+)', 'Expires on\s?[.]*:\s?(?P.+)\.', - 'Expiry Date\s?[.]*:\s?(?P.+)', + 'Exp(?:iry)? Date\s?[.]*:\s?(?P.+)', 'Expiry\s*:\s?(?P.+)', 'Domain Currently Expires\s?[.]*:\s?(?P.+)', 'Record will expire on\s?[.]*:\s?(?P.+)', @@ -545,6 +545,10 @@ def parse_registrants(data, never_query_handles=True, handle_server=""): "Registrant Contact Information :[ ]*\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n\n", # GAL Communication "Contact Information : For Customer # [0-9]+[ ]*\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n[ ]+(?P.*)\n\n", # GAL Communication alternative (private WHOIS) format? " Registrant:\n (?P.+)\n (?P.+)\n (?P.+) (?P\S+),[ ]+(?P.+)\n (?P.+)", # .am + "Domain Holder: (?P.+)\n(?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?))?)?)?)?)?)?, (?P[^.,]+), (?P.+), (?P.+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 1 + "Domain Holder: (?P.+)\n(?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?))?)?)?)?)?)?, (?P.+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 2 + "Domain Holder: (?P.+)\n(?P.+)\n(?:(?P.+)\n)?(?:(?P.+)\n)?.+?, (?P.+)\n(?P.+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 3 + "Domain Holder: (?P.+)\n(?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?))?)?)?)?)?)?\n(?P.+),? (?P[A-Z]{2,3})(?: [A-Z0-9]+)?\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 4 "owner:\s+(?P.+)", # .br "person:\s+(?P.+)", # nic.ru (person) "org:\s+(?P.+)", # nic.ru (organization) @@ -573,6 +577,12 @@ def parse_registrants(data, never_query_handles=True, handle_server=""): " Technical contact:\n (?P.+)\n (?P.*)\n (?P.+)\n (?P.+) (?P\S+),[ ]+(?P.+)\n (?P.+)\n (?P.+)\n (?P.*)\n (?P.*)", # .am "Technical:\n\s*Name:\s*(?P.*)\n\s*Organisation:\s*(?P.*)\n\s*Language:.*\n\s*Phone:\s*(?P.*)\n\s*Fax:\s*(?P.*)\n\s*Email:\s*(?P.*)\n", # EURid "\[Zone-C\]\nType: (?P.+)\nName: (?P.+)\n(Organisation: (?P.+)\n){0,1}(Address: (?P.+)\n){1}(Address: (?P.+)\n){0,1}(Address: (?P.+)\n){0,1}(Address: (?P.+)\n){0,1}PostalCode: (?P.+)\nCity: (?P.+)\nCountryCode: (?P[A-Za-z]{2})\nPhone: (?P.+)\nFax: (?P.+)\nEmail: (?P.+)\n(Remarks: (?P.+)\n){0,1}Changed: (?P.+)", # DeNIC + "Tech Contact: (?P.+)\n(?P.+)\n(?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?))?)?)?)?)?)?\n(?P.+),? (?P[A-Z]{2,3})(?: [A-Z0-9]+)?\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 1 + "Tech Contact: (?P.+)\n(?P.+)\n(?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?))?)?)?)?)?)?\n(?P.+), (?P.+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 2 + "Tech Contact: (?P.+)\n(?P.+)\n(?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?)(?:,+ (?P.+?))?)?)?)?)?)?, (?P.+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 3 + "Tech Contact: (?P.+)\n(?P.+) (?P[^\s]+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 4 + "Tech Contact: (?P.+)\n(?P.+)\n(?P.+)\n(?P.+) (?P[^\s]+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 5 + "Tech Contact: (?P.+)\n(?P.+)\n(?P.+)\n(?P.+)\n(?:(?P.+)\n)?(?P.+)\n(?P.+)\n(?P[A-Z]+)\n", # .co.th, format 6 ] admin_contact_regexes = [ diff --git a/test/data/asiahotel.co.th b/test/data/asiahotel.co.th new file mode 100644 index 0000000..f3317a1 --- /dev/null +++ b/test/data/asiahotel.co.th @@ -0,0 +1,30 @@ + +Whois Server Version 2.1.2 + +Domain: ASIAHOTEL.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS1.ASIAHOTEL.CO.TH +Name Server: NS2.ASIAHOTEL.CO.TH +Status: ACTIVE +Updated date: 25 Dec 2013 +Created date: 17 Jan 1999 +Renew date: 17 Jan 2014 +Exp date: 16 Jan 2017 +Domain Holder: Asia Hotel Public Co., Ltd. ( บริษัท เอเชียโฮเต็ล จำกัด (มหาชน) ) +296 Phayathai Road Ratchathewi, Bangkok +10400 +TH + +Tech Contact: 85476 +Asia Hotel Public Co.,Ltd. +296 Phayathai Road Ratchathewi, Bangkok +10400 +TH + + + +>>> Last update of whois data: Fri, 27 Jun 2014 14:54:30 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/bts.co.th b/test/data/bts.co.th new file mode 100644 index 0000000..145de45 --- /dev/null +++ b/test/data/bts.co.th @@ -0,0 +1,30 @@ + +Whois Server Version 2.1.2 + +Domain: BTS.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS.LOXINFO.CO.TH +Name Server: NS.TNET.CO.TH +Status: ACTIVE +Updated date: 18 Jul 2009 +Created date: 4 Aug 1999 +Renew date: 4 Aug 1999 +Exp date: 3 Aug 2021 +Domain Holder: Bangkok Mass Transit System Public Company Limited (บริษัท ระบบขนส่งมวลชนกรุงเทพ จำกัด (มหาชน)) +BTS Building, Phaholyothin Rd.,Lardpao, Chatujak, Bangkok +10900 +TH + +Tech Contact: 74252 +Loxley Information Services Co., Ltd. +304 Suapha Rd., Pomprab, Pomprab Suttruphai, Bangkok +10110 +TH + + + +>>> Last update of whois data: Fri, 27 Jun 2014 16:32:41 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/google.co.th b/test/data/google.co.th new file mode 100644 index 0000000..c2efd48 --- /dev/null +++ b/test/data/google.co.th @@ -0,0 +1,34 @@ + +Whois Server Version 2.1.2 + +Domain: GOOGLE.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS1.GOOGLE.COM +Name Server: NS2.GOOGLE.COM +Name Server: NS3.GOOGLE.COM +Name Server: NS4.GOOGLE.COM +Status: ACTIVE +Updated date: 19 Jun 2014 +Created date: 8 Oct 2004 +Renew date: 8 Oct 2013 +Exp date: 7 Oct 2014 +Domain Holder: Google Inc. +1600 Amphitheatre Parkway +Mountain View, CA 94043 +94043 +US + +Tech Contact: 491182 +Markmonitor +391 N. Ancestor PL +Boise ID +83704 +US + + + +>>> Last update of whois data: Fri, 27 Jun 2014 15:46:58 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/ricoh.co.th b/test/data/ricoh.co.th new file mode 100644 index 0000000..ac590f9 --- /dev/null +++ b/test/data/ricoh.co.th @@ -0,0 +1,35 @@ + +Whois Server Version 2.1.2 + +Domain: RICOH.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS.CSCOMS.COM +Name Server: NS2.CSCOMS.COM +Status: ACTIVE +Updated date: 5 Aug 2013 +Created date: 5 Nov 1999 +Renew date: 5 Nov 2012 +Exp date: 4 Nov 2014 +Domain Holder: RICOH (THAILAND) CO., LTD. (บริษัท ริโก้ (ประเทศไทย) จำกัด) +Ricoh (Thailand) Ltd. +341 Onnuj Road, +Prawet, Prawet , +Bangkok +10250 +TH + +Tech Contact: 503400 +บริษัท ริโก้(ประเทศไทย)จำกัด +341 ถนนอ่อนนุช +แขวงประเวศ เขตประเวศ +กรุงเทพมหานคร +10250 +TH + + + +>>> Last update of whois data: Fri, 27 Jun 2014 16:34:18 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/rs.co.th b/test/data/rs.co.th new file mode 100644 index 0000000..18b8dda --- /dev/null +++ b/test/data/rs.co.th @@ -0,0 +1,30 @@ + +Whois Server Version 2.1.2 + +Domain: RS.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: CLARINET.ASIANET.CO.TH +Name Server: CONDUCTOR.ASIANET.CO.TH +Status: ACTIVE +Updated date: 1 Feb 2012 +Created date: 19 Jan 2007 +Renew date: 18 Mar 2012 +Exp date: 17 Mar 2017 +Domain Holder: RS. Promotion PCL. ( บริษัท อาร์.เอส.โปรโมชั่น จำกัด (มหาชน) ) +419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, BKK +10900 +TH + +Tech Contact: 37581 +RS Promotion Public Co.,Ltd. +419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, bangkok +10900 +TH + + + +>>> Last update of whois data: Fri, 27 Jun 2014 16:34:24 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/siamparagon.co.th b/test/data/siamparagon.co.th new file mode 100644 index 0000000..a23d3bc --- /dev/null +++ b/test/data/siamparagon.co.th @@ -0,0 +1,29 @@ + +Whois Server Version 2.1.2 + +Domain: SIAMPARAGON.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS.BEENETS.COM +Name Server: NS2.BEENETS.COM +Status: ACTIVE +Updated date: 12 Apr 2013 +Created date: 25 Mar 2002 +Renew date: 25 Mar 2013 +Exp date: 24 Mar 2016 +Domain Holder: SIAM PARAGON DEVELOPMENT CO., LTD. (บริษัท สยามพารากอน ดีเวลลอปเม้นท์ จำกัด) +991 SIAM Paragon Shopping Center RAMA1 ROAD, PATUMWAN, BANGKOK +10330 +TH + +Tech Contact: 15190 +991 ศูนย์การค้า สยามพารากอน ถ.พระราม 1 แขวงปทุมวัน เขตปทุมวัน กรุงเทพฯ +10330 +TH + + + +>>> Last update of whois data: Fri, 27 Jun 2014 16:32:46 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/starbucks.co.th b/test/data/starbucks.co.th new file mode 100644 index 0000000..c6801d8 --- /dev/null +++ b/test/data/starbucks.co.th @@ -0,0 +1,31 @@ + +Whois Server Version 2.1.2 + +Domain: STARBUCKS.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS.KSC.CO.TH +Name Server: NS2.KSC.CO.TH +Status: ACTIVE +Updated date: 10 Sep 2009 +Created date: 17 Jun 2003 +Renew date: 17 Jun 2003 +Exp date: 16 Dec 2014 +Domain Holder: Starbucks Coffee ( Thailand ) Co., Ltd. +12th floor,Exchange Tower, 388 Sukhumvit Road, Klongtoey, Bangkok +10110 +TH + +Tech Contact: 24897 +บริษัท เคเอสซี คอมเมอร์เชียล อินเตอร์เนต จำกัด +2/4 อาคารไทยพาณิชย์สามัคคีประกันภัย ชั้น 10 ถนนวิภาวดีรังสิต +แขวงทุ่งสองห้อง เขตหลักสี่ กรุงเทพฯ +10210 +TH + + + +>>> Last update of whois data: Tue, 24 Jun 2014 04:58:54 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/data/toyota.co.th b/test/data/toyota.co.th new file mode 100644 index 0000000..c80b26f --- /dev/null +++ b/test/data/toyota.co.th @@ -0,0 +1,32 @@ + +Whois Server Version 2.1.2 + +Domain: TOYOTA.CO.TH +Registrar: T.H.NIC Co., Ltd. +Name Server: NS1.NTT.CO.TH +Name Server: NS1.TOYOTA.CO.TH +Name Server: NS2.TOYOTA.CO.TH +Status: ACTIVE +Updated date: 20 Jan 2014 +Created date: 17 Jan 1999 +Renew date: 17 Jan 2014 +Exp date: 16 Jan 2015 +Domain Holder: Toyota Motor Thailand Co., Ltd. ( บริษัท โตโยต้า มอเตอร์ ประเทศไทย จำกัด ) +186/1 Mu1 Old Railway Rd., Samrong Tai, PhraPradaeng, Samut Prakan +10130 +TH + +Tech Contact: 92144 +Toyota Motor Asia Pacific Engineering & Manufacturing Co.,Ltd. +99 Moo 5, Bangna-Trad K.M. 29.5 Rd., Ban-Ragad, +Bang Bor, Samutprakarn +10560 +TH + + + +>>> Last update of whois data: Fri, 27 Jun 2014 16:34:06 UTC+7 <<< + +For more information please visit: https://www.thnic.co.th/whois + + diff --git a/test/target_default/asiahotel.co.th b/test/target_default/asiahotel.co.th new file mode 100644 index 0000000..3354c78 --- /dev/null +++ b/test/target_default/asiahotel.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2013-12-25T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "85476", "street": "296 Phayathai Road Ratchathewi", "country": "TH", "postalcode": "10400", "organization": "Asia Hotel Public Co.,Ltd."}, "registrant": {"city": "Bangkok", "street": "296 Phayathai Road Ratchathewi", "country": "TH", "postalcode": "10400", "organization": "Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["NS1.ASIAHOTEL.CO.TH", "NS2.ASIAHOTEL.CO.TH"], "expiration_date": ["2017-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: ASIAHOTEL.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.ASIAHOTEL.CO.TH\nName Server: NS2.ASIAHOTEL.CO.TH\nStatus: ACTIVE\nUpdated date: 25 Dec 2013\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2017\nDomain Holder: Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\nTech Contact: 85476\nAsia Hotel Public Co.,Ltd.\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 14:54:30 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/bts.co.th b/test/target_default/bts.co.th new file mode 100644 index 0000000..032e4ad --- /dev/null +++ b/test/target_default/bts.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2009-07-18T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "74252", "street": "304 Suapha Rd.\nPomprab\nPomprab Suttruphai", "country": "TH", "postalcode": "10110", "organization": "Loxley Information Services Co., Ltd."}, "registrant": {"city": "Bangkok", "street": "BTS Building\nPhaholyothin Rd.,Lardpao\nChatujak", "country": "TH", "postalcode": "10900", "organization": "Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))"}, "billing": null}, "nameservers": ["NS.LOXINFO.CO.TH", "NS.TNET.CO.TH"], "expiration_date": ["2021-08-03T00:00:00"], "creation_date": ["1999-08-04T00:00:00", "1999-08-04T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: BTS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.LOXINFO.CO.TH\nName Server: NS.TNET.CO.TH\nStatus: ACTIVE\nUpdated date: 18 Jul 2009\nCreated date: 4 Aug 1999\nRenew date: 4 Aug 1999\nExp date: 3 Aug 2021\nDomain Holder: Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))\nBTS Building, Phaholyothin Rd.,Lardpao, Chatujak, Bangkok\n10900\nTH\n\nTech Contact: 74252\nLoxley Information Services Co., Ltd.\n304 Suapha Rd., Pomprab, Pomprab Suttruphai, Bangkok\n10110\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:41 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/google.co.th b/test/target_default/google.co.th new file mode 100644 index 0000000..2db69ea --- /dev/null +++ b/test/target_default/google.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2014-06-19T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Boise", "handle": "491182", "state": "ID", "street": "391 N. Ancestor PL", "country": "US", "postalcode": "83704", "organization": "Markmonitor"}, "registrant": {"city": "Mountain View,", "state": "CA", "street": "1600 Amphitheatre Parkway", "country": "US", "postalcode": "94043", "organization": "Google Inc."}, "billing": null}, "nameservers": ["NS1.GOOGLE.COM", "NS2.GOOGLE.COM", "NS3.GOOGLE.COM", "NS4.GOOGLE.COM"], "expiration_date": ["2014-10-07T00:00:00"], "creation_date": ["2004-10-08T00:00:00", "2004-10-08T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: GOOGLE.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.GOOGLE.COM\nName Server: NS2.GOOGLE.COM\nName Server: NS3.GOOGLE.COM\nName Server: NS4.GOOGLE.COM\nStatus: ACTIVE\nUpdated date: 19 Jun 2014\nCreated date: 8 Oct 2004\nRenew date: 8 Oct 2013\nExp date: 7 Oct 2014\nDomain Holder: Google Inc.\n1600 Amphitheatre Parkway\nMountain View, CA 94043\n94043\nUS\n\nTech Contact: 491182\nMarkmonitor\n391 N. Ancestor PL \nBoise ID\n83704\nUS\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 15:46:58 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/ricoh.co.th b/test/target_default/ricoh.co.th new file mode 100644 index 0000000..bec1476 --- /dev/null +++ b/test/target_default/ricoh.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2013-08-05T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23", "handle": "503400", "country": "TH", "street": "341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a\n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28", "postalcode": "10250", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "Bangkok", "district": "Prawet ,", "country": "TH", "street": "Ricoh (Thailand) Ltd.\n341 Onnuj Road,", "postalcode": "10250", "organization": "RICOH (THAILAND) CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["NS.CSCOMS.COM", "NS2.CSCOMS.COM"], "expiration_date": ["2014-11-04T00:00:00"], "creation_date": ["1999-11-05T00:00:00", "1999-11-05T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RICOH.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.CSCOMS.COM\nName Server: NS2.CSCOMS.COM\nStatus: ACTIVE\nUpdated date: 5 Aug 2013\nCreated date: 5 Nov 1999\nRenew date: 5 Nov 2012\nExp date: 4 Nov 2014\nDomain Holder: RICOH (THAILAND) CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)\nRicoh (Thailand) Ltd.\n341 Onnuj Road, \nPrawet, Prawet , \nBangkok\n10250\nTH\n\nTech Contact: 503400\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14\n341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a \n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28\n\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23\n10250\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:18 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/rs.co.th b/test/target_default/rs.co.th new file mode 100644 index 0000000..6591381 --- /dev/null +++ b/test/target_default/rs.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2012-02-01T00:00:00"], "contacts": {"admin": null, "tech": {"city": "bangkok", "handle": "37581", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "TH", "postalcode": "10900", "organization": "RS Promotion Public Co.,Ltd."}, "registrant": {"city": "BKK", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "TH", "postalcode": "10900", "organization": "RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["CLARINET.ASIANET.CO.TH", "CONDUCTOR.ASIANET.CO.TH"], "expiration_date": ["2017-03-17T00:00:00"], "creation_date": ["2007-01-19T00:00:00", "2007-01-19T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: CLARINET.ASIANET.CO.TH\nName Server: CONDUCTOR.ASIANET.CO.TH\nStatus: ACTIVE\nUpdated date: 1 Feb 2012\nCreated date: 19 Jan 2007\nRenew date: 18 Mar 2012\nExp date: 17 Mar 2017\nDomain Holder: RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, BKK\n10900\nTH\n\nTech Contact: 37581\nRS Promotion Public Co.,Ltd.\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, bangkok\n10900\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:24 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/siamparagon.co.th b/test/target_default/siamparagon.co.th new file mode 100644 index 0000000..1e2711f --- /dev/null +++ b/test/target_default/siamparagon.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2013-04-12T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "15190", "country": "TH", "street": "991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19", "postalcode": "10330"}, "registrant": {"city": "BANGKOK", "street": "991 SIAM Paragon Shopping Center RAMA1 ROAD\nPATUMWAN", "country": "TH", "postalcode": "10330", "organization": "SIAM PARAGON DEVELOPMENT CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["NS.BEENETS.COM", "NS2.BEENETS.COM"], "expiration_date": ["2016-03-24T00:00:00"], "creation_date": ["2002-03-25T00:00:00", "2002-03-25T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: SIAMPARAGON.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.BEENETS.COM\nName Server: NS2.BEENETS.COM\nStatus: ACTIVE\nUpdated date: 12 Apr 2013\nCreated date: 25 Mar 2002\nRenew date: 25 Mar 2013\nExp date: 24 Mar 2016\nDomain Holder: SIAM PARAGON DEVELOPMENT CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)\n991 SIAM Paragon Shopping Center RAMA1 ROAD, PATUMWAN, BANGKOK\n10330\nTH\n\nTech Contact: 15190\n991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10330\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:46 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/starbucks.co.th b/test/target_default/starbucks.co.th new file mode 100644 index 0000000..8c0aa94 --- /dev/null +++ b/test/target_default/starbucks.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2009-09-10T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "24897", "district": "\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48", "country": "TH", "street": "2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15", "postalcode": "10210", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "388 Sukhumvit Road", "district": "Klongtoey", "state": "Bangkok", "street": "12th floor,Exchange Tower", "country": "TH", "postalcode": "10110", "organization": "Starbucks Coffee ( Thailand ) Co., Ltd."}, "billing": null}, "nameservers": ["NS.KSC.CO.TH", "NS2.KSC.CO.TH"], "expiration_date": ["2014-12-16T00:00:00"], "creation_date": ["2003-06-17T00:00:00", "2003-06-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: STARBUCKS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.KSC.CO.TH\nName Server: NS2.KSC.CO.TH\nStatus: ACTIVE\nUpdated date: 10 Sep 2009\nCreated date: 17 Jun 2003\nRenew date: 17 Jun 2003\nExp date: 16 Dec 2014\nDomain Holder: Starbucks Coffee ( Thailand ) Co., Ltd.\n12th floor,Exchange Tower, 388 Sukhumvit Road, Klongtoey, Bangkok\n10110\nTH\n\nTech Contact: 24897\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14\n2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15 \n\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10210\nTH\n\n\n\n>>> Last update of whois data: Tue, 24 Jun 2014 04:58:54 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_default/toyota.co.th b/test/target_default/toyota.co.th new file mode 100644 index 0000000..1684b1d --- /dev/null +++ b/test/target_default/toyota.co.th @@ -0,0 +1 @@ +{"status": ["ACTIVE"], "updated_date": ["2014-01-20T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bang Bor", "handle": "92144", "state": "Samutprakarn", "street": "99 Moo 5\nBangna-Trad K.M. 29.5 Rd.\nBan-Ragad,", "country": "TH", "postalcode": "10560", "organization": "Toyota Motor Asia Pacific Engineering & Manufacturing Co.,Ltd."}, "registrant": {"city": "Samrong Tai", "district": "PhraPradaeng", "state": "Samut Prakan", "street": "186/1 Mu1 Old Railway Rd.", "country": "TH", "postalcode": "10130", "organization": "Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )"}, "billing": null}, "nameservers": ["NS1.NTT.CO.TH", "NS1.TOYOTA.CO.TH", "NS2.TOYOTA.CO.TH"], "expiration_date": ["2015-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: TOYOTA.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.NTT.CO.TH\nName Server: NS1.TOYOTA.CO.TH\nName Server: NS2.TOYOTA.CO.TH\nStatus: ACTIVE\nUpdated date: 20 Jan 2014\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2015\nDomain Holder: Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )\n186/1 Mu1 Old Railway Rd., Samrong Tai, PhraPradaeng, Samut Prakan\n10130\nTH\n\nTech Contact: 92144\nToyota Motor Asia Pacific Engineering & Manufacturing Co.,Ltd.\n99 Moo 5, Bangna-Trad K.M. 29.5 Rd., Ban-Ragad, \nBang Bor, Samutprakarn\n10560\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:06 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/asiahotel.co.th b/test/target_normalized/asiahotel.co.th new file mode 100644 index 0000000..3ad8288 --- /dev/null +++ b/test/target_normalized/asiahotel.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2013-12-25T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "85476", "street": "296 Phayathai Road Ratchathewi", "country": "TH", "postalcode": "10400", "organization": "Asia Hotel Public Co.,Ltd."}, "registrant": {"city": "Bangkok", "street": "296 Phayathai Road Ratchathewi", "country": "TH", "postalcode": "10400", "organization": "Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["ns1.asiahotel.co.th", "ns2.asiahotel.co.th"], "expiration_date": ["2017-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: ASIAHOTEL.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.ASIAHOTEL.CO.TH\nName Server: NS2.ASIAHOTEL.CO.TH\nStatus: ACTIVE\nUpdated date: 25 Dec 2013\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2017\nDomain Holder: Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\nTech Contact: 85476\nAsia Hotel Public Co.,Ltd.\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 14:54:30 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/bts.co.th b/test/target_normalized/bts.co.th new file mode 100644 index 0000000..93c52a8 --- /dev/null +++ b/test/target_normalized/bts.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2009-07-18T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "74252", "street": "304 Suapha Rd.\nPomprab\nPomprab Suttruphai", "country": "TH", "postalcode": "10110", "organization": "Loxley Information Services Co., Ltd."}, "registrant": {"city": "Bangkok", "street": "BTS Building\nPhaholyothin Rd.,Lardpao\nChatujak", "country": "TH", "postalcode": "10900", "organization": "Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))"}, "billing": null}, "nameservers": ["ns.loxinfo.co.th", "ns.tnet.co.th"], "expiration_date": ["2021-08-03T00:00:00"], "creation_date": ["1999-08-04T00:00:00", "1999-08-04T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: BTS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.LOXINFO.CO.TH\nName Server: NS.TNET.CO.TH\nStatus: ACTIVE\nUpdated date: 18 Jul 2009\nCreated date: 4 Aug 1999\nRenew date: 4 Aug 1999\nExp date: 3 Aug 2021\nDomain Holder: Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))\nBTS Building, Phaholyothin Rd.,Lardpao, Chatujak, Bangkok\n10900\nTH\n\nTech Contact: 74252\nLoxley Information Services Co., Ltd.\n304 Suapha Rd., Pomprab, Pomprab Suttruphai, Bangkok\n10110\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:41 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/google.co.th b/test/target_normalized/google.co.th new file mode 100644 index 0000000..1ea808d --- /dev/null +++ b/test/target_normalized/google.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2014-06-19T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Boise", "handle": "491182", "state": "ID", "street": "391 N. Ancestor PL", "country": "US", "postalcode": "83704", "organization": "Markmonitor"}, "registrant": {"city": "Mountain View", "state": "CA", "street": "1600 Amphitheatre Parkway", "country": "US", "postalcode": "94043", "organization": "Google Inc."}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2014-10-07T00:00:00"], "creation_date": ["2004-10-08T00:00:00", "2004-10-08T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: GOOGLE.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.GOOGLE.COM\nName Server: NS2.GOOGLE.COM\nName Server: NS3.GOOGLE.COM\nName Server: NS4.GOOGLE.COM\nStatus: ACTIVE\nUpdated date: 19 Jun 2014\nCreated date: 8 Oct 2004\nRenew date: 8 Oct 2013\nExp date: 7 Oct 2014\nDomain Holder: Google Inc.\n1600 Amphitheatre Parkway\nMountain View, CA 94043\n94043\nUS\n\nTech Contact: 491182\nMarkmonitor\n391 N. Ancestor PL \nBoise ID\n83704\nUS\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 15:46:58 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/ricoh.co.th b/test/target_normalized/ricoh.co.th new file mode 100644 index 0000000..32ee757 --- /dev/null +++ b/test/target_normalized/ricoh.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2013-08-05T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23", "handle": "503400", "country": "TH", "street": "341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a\n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28", "postalcode": "10250", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "Bangkok", "district": "Prawet", "country": "TH", "street": "Ricoh (Thailand) Ltd.\n341 Onnuj Road", "postalcode": "10250", "organization": "Ricoh (thailand) co., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["ns.cscoms.com", "ns2.cscoms.com"], "expiration_date": ["2014-11-04T00:00:00"], "creation_date": ["1999-11-05T00:00:00", "1999-11-05T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RICOH.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.CSCOMS.COM\nName Server: NS2.CSCOMS.COM\nStatus: ACTIVE\nUpdated date: 5 Aug 2013\nCreated date: 5 Nov 1999\nRenew date: 5 Nov 2012\nExp date: 4 Nov 2014\nDomain Holder: RICOH (THAILAND) CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)\nRicoh (Thailand) Ltd.\n341 Onnuj Road, \nPrawet, Prawet , \nBangkok\n10250\nTH\n\nTech Contact: 503400\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14\n341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a \n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28\n\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23\n10250\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:18 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/rs.co.th b/test/target_normalized/rs.co.th new file mode 100644 index 0000000..fa0974e --- /dev/null +++ b/test/target_normalized/rs.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2012-02-01T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "37581", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "TH", "postalcode": "10900", "organization": "RS Promotion Public Co.,Ltd."}, "registrant": {"city": "Bkk", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "TH", "postalcode": "10900", "organization": "RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["clarinet.asianet.co.th", "conductor.asianet.co.th"], "expiration_date": ["2017-03-17T00:00:00"], "creation_date": ["2007-01-19T00:00:00", "2007-01-19T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: CLARINET.ASIANET.CO.TH\nName Server: CONDUCTOR.ASIANET.CO.TH\nStatus: ACTIVE\nUpdated date: 1 Feb 2012\nCreated date: 19 Jan 2007\nRenew date: 18 Mar 2012\nExp date: 17 Mar 2017\nDomain Holder: RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, BKK\n10900\nTH\n\nTech Contact: 37581\nRS Promotion Public Co.,Ltd.\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, bangkok\n10900\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:24 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/siamparagon.co.th b/test/target_normalized/siamparagon.co.th new file mode 100644 index 0000000..2c0da95 --- /dev/null +++ b/test/target_normalized/siamparagon.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2013-04-12T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "15190", "country": "TH", "street": "991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19", "postalcode": "10330"}, "registrant": {"city": "Bangkok", "street": "991 SIAM Paragon Shopping Center RAMA1 ROAD\nPatumwan", "country": "TH", "postalcode": "10330", "organization": "Siam Paragon Development co., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["ns.beenets.com", "ns2.beenets.com"], "expiration_date": ["2016-03-24T00:00:00"], "creation_date": ["2002-03-25T00:00:00", "2002-03-25T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: SIAMPARAGON.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.BEENETS.COM\nName Server: NS2.BEENETS.COM\nStatus: ACTIVE\nUpdated date: 12 Apr 2013\nCreated date: 25 Mar 2002\nRenew date: 25 Mar 2013\nExp date: 24 Mar 2016\nDomain Holder: SIAM PARAGON DEVELOPMENT CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)\n991 SIAM Paragon Shopping Center RAMA1 ROAD, PATUMWAN, BANGKOK\n10330\nTH\n\nTech Contact: 15190\n991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10330\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:46 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/starbucks.co.th b/test/target_normalized/starbucks.co.th new file mode 100644 index 0000000..51d65b9 --- /dev/null +++ b/test/target_normalized/starbucks.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2009-09-10T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "24897", "district": "\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48", "country": "TH", "street": "2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15", "postalcode": "10210", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "388 Sukhumvit Road", "district": "Klongtoey", "state": "Bangkok", "street": "12th floor,Exchange Tower", "country": "TH", "postalcode": "10110", "organization": "Starbucks Coffee ( Thailand ) Co., Ltd."}, "billing": null}, "nameservers": ["ns.ksc.co.th", "ns2.ksc.co.th"], "expiration_date": ["2014-12-16T00:00:00"], "creation_date": ["2003-06-17T00:00:00", "2003-06-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: STARBUCKS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.KSC.CO.TH\nName Server: NS2.KSC.CO.TH\nStatus: ACTIVE\nUpdated date: 10 Sep 2009\nCreated date: 17 Jun 2003\nRenew date: 17 Jun 2003\nExp date: 16 Dec 2014\nDomain Holder: Starbucks Coffee ( Thailand ) Co., Ltd.\n12th floor,Exchange Tower, 388 Sukhumvit Road, Klongtoey, Bangkok\n10110\nTH\n\nTech Contact: 24897\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14\n2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15 \n\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10210\nTH\n\n\n\n>>> Last update of whois data: Tue, 24 Jun 2014 04:58:54 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file diff --git a/test/target_normalized/toyota.co.th b/test/target_normalized/toyota.co.th new file mode 100644 index 0000000..b7ddba1 --- /dev/null +++ b/test/target_normalized/toyota.co.th @@ -0,0 +1 @@ +{"status": ["Active"], "updated_date": ["2014-01-20T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bang Bor", "handle": "92144", "state": "Samutprakarn", "street": "99 Moo 5\nBangna-Trad K.M. 29.5 Rd.\nBan-Ragad", "country": "TH", "postalcode": "10560", "organization": "Toyota Motor Asia Pacific Engineering & Manufacturing Co.,Ltd."}, "registrant": {"city": "Samrong Tai", "district": "PhraPradaeng", "state": "Samut Prakan", "street": "186/1 Mu1 Old Railway Rd.", "country": "TH", "postalcode": "10130", "organization": "Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )"}, "billing": null}, "nameservers": ["ns1.ntt.co.th", "ns1.toyota.co.th", "ns2.toyota.co.th"], "expiration_date": ["2015-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: TOYOTA.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.NTT.CO.TH\nName Server: NS1.TOYOTA.CO.TH\nName Server: NS2.TOYOTA.CO.TH\nStatus: ACTIVE\nUpdated date: 20 Jan 2014\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2015\nDomain Holder: Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )\n186/1 Mu1 Old Railway Rd., Samrong Tai, PhraPradaeng, Samut Prakan\n10130\nTH\n\nTech Contact: 92144\nToyota Motor Asia Pacific Engineering & Manufacturing Co.,Ltd.\n99 Moo 5, Bangna-Trad K.M. 29.5 Rd., Ban-Ragad, \nBang Bor, Samutprakarn\n10560\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:06 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]} \ No newline at end of file