Realtime Register: Make phone optional, allow for multiple address lines, and make parsing rules consistent for all contact types.

master
Sven Slootweg 10 years ago
parent 95d3ef68f6
commit 8bc8463d15

@ -247,7 +247,7 @@ registrant_regexes = [
" Registrant:\n (?P<organization>.+)\n (?P<name>.+) (?P<email>.+)\n (?P<phone>.*)\n (?P<fax>.*)\n (?P<street>.*)\n (?P<city>.+), (?P<state>[^,\n]*)\n (?P<country>.+)\n", # .com.tw (Western registrars)
"Registrant:\n(?P<organization1>.+)\n(?P<organization2>.+)\n(?P<street1>.+?)(?:,+(?P<street2>.+?)(?:,+(?P<street3>.+?)(?:,+(?P<street4>.+?)(?:,+(?P<street5>.+?)(?:,+(?P<street6>.+?)(?:,+(?P<street7>.+?))?)?)?)?)?)?,(?P<city>.+),(?P<country>.+)\n\n Contact:\n (?P<name>.+) (?P<email>.+)\n TEL: (?P<phone>.+?)(?:(?:#|ext.?)(?P<phone_ext>.+))?\n FAX: (?P<fax>.+)(?:(?:#|ext.?)(?P<fax_ext>.+))?\n", # .com.tw (TWNIC/SEEDNET, Taiwanese companies only?)
"Registrant Contact Information:\n\nCompany English Name \(It should be the same as the registered/corporation name on your Business Register Certificate or relevant documents\):(?P<organization1>.+)\nCompany Chinese name:(?P<organization2>.+)\nAddress: (?P<street>.+)\nCountry: (?P<country>.+)\nEmail: (?P<email>.+)\n", # HKDNR (.hk)
"Registrant ID:(?P<handle>.+)\nRegistrant Name:(?P<name>.*)\n(?:Registrant Organization:(?P<organization>.+)\n)?Registrant Street1:(?P<street1>.+?)\nRegistrant City:(?P<city>.+)\nRegistrant State:(?P<state>.*)\nRegistrant Postal Code:(?P<postalcode>.+)\nRegistrant Country:(?P<country>[A-Z]+)\nRegistrant Phone:(?P<phone>.+?)\nRegistrant Fax:(?P<fax>.*)\nRegistrant Email:(?P<email>.+)\n", # Realtime Register
"Registrant ID:(?P<handle>.+)\nRegistrant Name:(?P<name>.*)\n(?:Registrant Organization:(?P<organization>.*)\n)?Registrant Street1:(?P<street1>.+?)\n(?:Registrant Street2:(?P<street2>.+?)\n(?:Registrant Street2:(?P<street3>.+?)\n)?)?Registrant City:(?P<city>.+)\nRegistrant State:(?P<state>.*)\nRegistrant Postal Code:(?P<postalcode>.+)\nRegistrant Country:(?P<country>[A-Z]+)\nRegistrant Phone:(?P<phone>.*?)\nRegistrant Fax:(?P<fax>.*)\nRegistrant Email:(?P<email>.+)\n", # Realtime Register
"owner:\s+(?P<name>.+)", # .br
"person:\s+(?P<name>.+)", # nic.ru (person)
"org:\s+(?P<organization>.+)", # nic.ru (organization)
@ -285,7 +285,7 @@ tech_contact_regexes = [
"Tech Contact: (?P<handle>.+)\n(?P<organization>.+)\n(?P<street1>.+)\n(?P<street2>.+)\n(?:(?P<street3>.+)\n)?(?P<city>.+)\n(?P<postalcode>.+)\n(?P<country>[A-Z]+)\n", # .co.th, format 6
" Technical Contact:\n (?P<name>.+) (?P<email>.+)\n (?P<phone>.*)\n (?P<fax>.*)\n", # .com.tw (Western registrars)
"Technical Contact Information:\n\n(?:Given name: (?P<firstname>.+)\n)?(?:Family name: (?P<lastname>.+)\n)?(?:Company name: (?P<organization>.+)\n)?Address: (?P<street>.+)\nCountry: (?P<country>.+)\nPhone: (?P<phone>.*)\nFax: (?P<fax>.*)\nEmail: (?P<email>.+)\n(?:Account Name: (?P<handle>.+)\n)?", # HKDNR (.hk)
"TECH ID:(?P<handle>.+)\nTECH Name:(?P<name>.*)\nTECH Organization:(?P<organization>.*)\nTECH Street1:(?P<street1>.+?)\nTECH City:(?P<city>.+)\nTECH State:(?P<state>.*)\nTECH Postal Code:(?P<postalcode>.+)\nTECH Country:(?P<country>[A-Z]+)\nTECH Phone:(?P<phone>.+?)\nTECH Fax:(?P<fax>.*)\nTECH Email:(?P<email>.+)\n", # Realtime Register
"TECH ID:(?P<handle>.+)\nTECH Name:(?P<name>.*)\n(?:TECH Organization:(?P<organization>.*)\n)?TECH Street1:(?P<street1>.+?)\n(?:TECH Street2:(?P<street2>.+?)\n(?:TECH Street2:(?P<street3>.+?)\n)?)?TECH City:(?P<city>.+)\nTECH State:(?P<state>.*)\nTECH Postal Code:(?P<postalcode>.+)\nTECH Country:(?P<country>[A-Z]+)\nTECH Phone:(?P<phone>.*?)\nTECH Fax:(?P<fax>.*)\nTECH Email:(?P<email>.+)\n", # Realtime Register
]
admin_contact_regexes = [
@ -311,7 +311,7 @@ admin_contact_regexes = [
"\[Tech-C\]\nType: (?P<type>.+)\nName: (?P<name>.+)\n(Organisation: (?P<organization>.+)\n){0,1}(Address: (?P<street1>.+)\n){1}(Address: (?P<street2>.+)\n){0,1}(Address: (?P<street3>.+)\n){0,1}(Address: (?P<street4>.+)\n){0,1}PostalCode: (?P<postalcode>.+)\nCity: (?P<city>.+)\nCountryCode: (?P<country>[A-Za-z]{2})\nPhone: (?P<phone>.+)\nFax: (?P<fax>.+)\nEmail: (?P<email>.+)\n(Remarks: (?P<remark>.+)\n){0,1}Changed: (?P<changed>.+)", # DeNIC
" Administrative Contact:\n (?P<name>.+) (?P<email>.+)\n (?P<phone>.*)\n (?P<fax>.*)\n", # .com.tw (Western registrars)
"Administrative Contact Information:\n\n(?:Given name: (?P<firstname>.+)\n)?(?:Family name: (?P<lastname>.+)\n)?(?:Company name: (?P<organization>.+)\n)?Address: (?P<street>.+)\nCountry: (?P<country>.+)\nPhone: (?P<phone>.*)\nFax: (?P<fax>.*)\nEmail: (?P<email>.+)\n(?:Account Name: (?P<handle>.+)\n)?", # HKDNR (.hk)
"ADMIN ID:(?P<handle>.+)\nADMIN Name:(?P<name>.*)\nADMIN Organization:(?P<organization>.*)\nADMIN Street1:(?P<street1>.+?)\nADMIN City:(?P<city>.+)\nADMIN State:(?P<state>.*)\nADMIN Postal Code:(?P<postalcode>.+)\nADMIN Country:(?P<country>[A-Z]+)\nADMIN Phone:(?P<phone>.+?)\nADMIN Fax:(?P<fax>.*)\nADMIN Email:(?P<email>.+)\n", # Realtime Register
"ADMIN ID:(?P<handle>.+)\nADMIN Name:(?P<name>.*)\n(?:ADMIN Organization:(?P<organization>.*)\n)?ADMIN Street1:(?P<street1>.+?)\n(?:ADMIN Street2:(?P<street2>.+?)\n(?:ADMIN Street2:(?P<street3>.+?)\n)?)?ADMIN City:(?P<city>.+)\nADMIN State:(?P<state>.*)\nADMIN Postal Code:(?P<postalcode>.+)\nADMIN Country:(?P<country>[A-Z]+)\nADMIN Phone:(?P<phone>.*?)\nADMIN Fax:(?P<fax>.*)\nADMIN Email:(?P<email>.+)\n", # Realtime Register
]
billing_contact_regexes = [
@ -328,7 +328,7 @@ billing_contact_regexes = [
"Billing contact:\n(?: (?P<organization>.+)\n)? (?P<name>.+)\n (?P<email>.+)\n (?P<street>.+)\n (?P<city>.+), (?P<state>.+) (?P<postalcode>.+) (?P<country>.+)\n Phone: (?P<phone>.*)\n Fax: (?P<fax>.*)\n", # Fabulous.com
"Billing Contact Information :[ ]*\n[ ]+(?P<firstname>.*)\n[ ]+(?P<lastname>.*)\n[ ]+(?P<organization>.*)\n[ ]+(?P<email>.*)\n[ ]+(?P<street>.*)\n[ ]+(?P<city>.*)\n[ ]+(?P<postalcode>.*)\n[ ]+(?P<phone>.*)\n[ ]+(?P<fax>.*)\n\n", # GAL Communication
"Billing Contact:\n Name: (?P<name>.+)\n City: (?P<city>.+)\n State: (?P<state>.+)\n Country: (?P<country>.+)\n", # Akky (.com.mx)
"BILLING ID:(?P<handle>.+)\nBILLING Name:(?P<name>.*)\nBILLING Organization:(?P<organization>.*)\nBILLING Street1:(?P<street1>.+?)\nBILLING City:(?P<city>.+)\nBILLING State:(?P<state>.*)\nBILLING Postal Code:(?P<postalcode>.+)\nBILLING Country:(?P<country>[A-Z]+)\nBILLING Phone:(?P<phone>.+?)\nBILLING Fax:(?P<fax>.*)\nBILLING Email:(?P<email>.+)\n", # Realtime Register
"BILLING ID:(?P<handle>.+)\nBILLING Name:(?P<name>.*)\n(?:BILLING Organization:(?P<organization>.*)\n)?BILLING Street1:(?P<street1>.+?)\n(?:BILLING Street2:(?P<street2>.+?)\n(?:BILLING Street2:(?P<street3>.+?)\n)?)?BILLING City:(?P<city>.+)\nBILLING State:(?P<state>.*)\nBILLING Postal Code:(?P<postalcode>.+)\nBILLING Country:(?P<country>[A-Z]+)\nBILLING Phone:(?P<phone>.*?)\nBILLING Fax:(?P<fax>.*)\nBILLING Email:(?P<email>.+)\n", # Realtime Register
]
# Some registries use NIC handle references instead of directly listing contacts...

@ -1 +1 @@
{"status": ["OK"], "updated_date": ["2014-03-27T00:00:25"], "contacts": {"admin": {"city": "Zwolle", "fax": "+31.384524734", "handle": "admin@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "NL", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "admin@yourhosting.nl"}, "tech": {"city": "Zwolle", "fax": "+31.384524734", "handle": "tech@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "NL", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "tech@yourhosting.nl"}, "registrant": null, "billing": {"city": "Zwolle", "fax": "+31.384524734", "handle": "billing@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "NL", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "billing@yourhosting.nl"}}, "nameservers": ["ns3.firstfind.nl", "ns4.firstfind.nl", "ns5.firstfind.net"], "expiration_date": ["2015-03-25T10:48:37"], "creation_date": ["2013-03-25T11:48:37", "2013-03-25T11:48:37", "2013-03-25T11:48:37"], "raw": ["Domain Name:0031fashion.com\nName Server:ns3.firstfind.nl\nName Server:ns4.firstfind.nl\nName Server:ns5.firstfind.net\nCreated On:2013-03-25 11:48:37.0\nLast Updated On:2014-03-27 00:00:25.0\nExpiration Date:2015-03-25 10:48:37.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Your Hosting B.V.\nStatus:OK\nRegistrant ID:ULYdHkU6vYELLiJqKUmu\nRegistrant Name:A. Blom\nRegistrant Organization:Hotshopper\nRegistrant Street1:Blankenheymstraat 13\nRegistrant City:NUMANSDORP\nRegistrant State:\nRegistrant Postal Code:3281 SB\nRegistrant Country:NL\nRegistrant Phone:+31.648265085\nRegistrant Fax:\nRegistrant Email:info@hotshopper.nl\nBILLING ID:billing@yourhosting.nl\nBILLING Name:Valentijn Borstlap\nBILLING Organization:YourHosting BV\nBILLING Street1:Schrevenweg 5\nBILLING City:Zwolle\nBILLING State:Overijssel\nBILLING Postal Code:8024 HB\nBILLING Country:NL\nBILLING Phone:+31.384530752\nBILLING Fax:+31.384524734\nBILLING Email:billing@yourhosting.nl\nTECH ID:tech@yourhosting.nl\nTECH Name:Valentijn Borstlap\nTECH Organization:YourHosting BV\nTECH Street1:Schrevenweg 5\nTECH City:Zwolle\nTECH State:Overijssel\nTECH Postal Code:8024 HB\nTECH Country:NL\nTECH Phone:+31.384530752\nTECH Fax:+31.384524734\nTECH Email:tech@yourhosting.nl\nADMIN ID:admin@yourhosting.nl\nADMIN Name:Valentijn Borstlap\nADMIN Organization:YourHosting BV\nADMIN Street1:Schrevenweg 5\nADMIN City:Zwolle\nADMIN State:Overijssel\nADMIN Postal Code:8024 HB\nADMIN Country:NL\nADMIN Phone:+31.384530752\nADMIN Fax:+31.384524734\nADMIN Email:admin@yourhosting.nl\n", " Domain Name: 0031FASHION.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS3.FIRSTFIND.NL\n Name Server: NS4.FIRSTFIND.NL\n Name Server: NS5.FIRSTFIND.NET\n Status: ok\n Updated Date: 26-mar-2014\n Creation Date: 25-mar-2013\n Expiration Date: 25-mar-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["REALTIME REGISTER B.V."], "emails": ["info@hotshopper.nl"]}
{"status": ["OK"], "updated_date": ["2014-03-27T00:00:25"], "contacts": {"admin": {"city": "Zwolle", "fax": "+31.384524734", "handle": "admin@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "NL", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "admin@yourhosting.nl"}, "tech": {"city": "Zwolle", "fax": "+31.384524734", "handle": "tech@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "NL", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "tech@yourhosting.nl"}, "registrant": {"city": "NUMANSDORP", "handle": "ULYdHkU6vYELLiJqKUmu", "name": "A. Blom", "phone": "+31.648265085", "street": "Blankenheymstraat 13", "country": "NL", "postalcode": "3281 SB", "organization": "Hotshopper", "email": "info@hotshopper.nl"}, "billing": {"city": "Zwolle", "fax": "+31.384524734", "handle": "billing@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "NL", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "billing@yourhosting.nl"}}, "nameservers": ["ns3.firstfind.nl", "ns4.firstfind.nl", "ns5.firstfind.net"], "expiration_date": ["2015-03-25T10:48:37"], "creation_date": ["2013-03-25T11:48:37", "2013-03-25T11:48:37", "2013-03-25T11:48:37"], "raw": ["Domain Name:0031fashion.com\nName Server:ns3.firstfind.nl\nName Server:ns4.firstfind.nl\nName Server:ns5.firstfind.net\nCreated On:2013-03-25 11:48:37.0\nLast Updated On:2014-03-27 00:00:25.0\nExpiration Date:2015-03-25 10:48:37.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Your Hosting B.V.\nStatus:OK\nRegistrant ID:ULYdHkU6vYELLiJqKUmu\nRegistrant Name:A. Blom\nRegistrant Organization:Hotshopper\nRegistrant Street1:Blankenheymstraat 13\nRegistrant City:NUMANSDORP\nRegistrant State:\nRegistrant Postal Code:3281 SB\nRegistrant Country:NL\nRegistrant Phone:+31.648265085\nRegistrant Fax:\nRegistrant Email:info@hotshopper.nl\nBILLING ID:billing@yourhosting.nl\nBILLING Name:Valentijn Borstlap\nBILLING Organization:YourHosting BV\nBILLING Street1:Schrevenweg 5\nBILLING City:Zwolle\nBILLING State:Overijssel\nBILLING Postal Code:8024 HB\nBILLING Country:NL\nBILLING Phone:+31.384530752\nBILLING Fax:+31.384524734\nBILLING Email:billing@yourhosting.nl\nTECH ID:tech@yourhosting.nl\nTECH Name:Valentijn Borstlap\nTECH Organization:YourHosting BV\nTECH Street1:Schrevenweg 5\nTECH City:Zwolle\nTECH State:Overijssel\nTECH Postal Code:8024 HB\nTECH Country:NL\nTECH Phone:+31.384530752\nTECH Fax:+31.384524734\nTECH Email:tech@yourhosting.nl\nADMIN ID:admin@yourhosting.nl\nADMIN Name:Valentijn Borstlap\nADMIN Organization:YourHosting BV\nADMIN Street1:Schrevenweg 5\nADMIN City:Zwolle\nADMIN State:Overijssel\nADMIN Postal Code:8024 HB\nADMIN Country:NL\nADMIN Phone:+31.384530752\nADMIN Fax:+31.384524734\nADMIN Email:admin@yourhosting.nl\n", " Domain Name: 0031FASHION.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS3.FIRSTFIND.NL\n Name Server: NS4.FIRSTFIND.NL\n Name Server: NS5.FIRSTFIND.NET\n Status: ok\n Updated Date: 26-mar-2014\n Creation Date: 25-mar-2013\n Expiration Date: 25-mar-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["REALTIME REGISTER B.V."]}

@ -1 +1 @@
{"status": ["OK"], "updated_date": ["2014-04-09T14:53:04"], "contacts": {"admin": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "CZ", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "tech": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "CZ", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "registrant": null, "billing": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "CZ", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}}, "nameservers": ["ns.axfone.sk", "ns.axfone.eu", "ns.axfone.cz"], "expiration_date": ["2015-01-21T16:11:03"], "creation_date": ["2013-01-21T16:11:03", "2013-01-21T16:11:03", "2013-01-21T16:11:03"], "raw": ["Domain Name:arkeysolutions.com\nName Server:ns.axfone.sk\nName Server:ns.axfone.eu\nName Server:ns.axfone.cz\nCreated On:2013-01-21 16:11:03.0\nLast Updated On:2014-04-09 14:53:04.0\nExpiration Date:2015-01-21 16:11:03.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Axfone s.r.o.\nStatus:OK\nRegistrant ID:AXC432303721\nRegistrant Name:R\u00f3bert Kri\u0161ko\nRegistrant Organization:Arkey, s.r.o.\nRegistrant Street1:Tr. SNP 74\nRegistrant City:Ko\u0161ice\nRegistrant State:\nRegistrant Postal Code:04011\nRegistrant Country:SK\nRegistrant Phone:+421.902110378\nRegistrant Fax:\nRegistrant Email:r.krisko@arkeysolutions.com\nADMIN ID:REG_AXFONE\nADMIN Name:Jakub Vlach\nADMIN Organization:Axfone s.r.o.\nADMIN Street1:Pripotocni 1519/10c\nADMIN City:Praha 10\nADMIN State:Praha\nADMIN Postal Code:10100\nADMIN Country:CZ\nADMIN Phone:+420.277277272\nADMIN Fax:+420.241410071\nADMIN Email:domeny@axfone.cz\nTECH ID:REG_AXFONE\nTECH Name:Jakub Vlach\nTECH Organization:Axfone s.r.o.\nTECH Street1:Pripotocni 1519/10c\nTECH City:Praha 10\nTECH State:Praha\nTECH Postal Code:10100\nTECH Country:CZ\nTECH Phone:+420.277277272\nTECH Fax:+420.241410071\nTECH Email:domeny@axfone.cz\nBILLING ID:REG_AXFONE\nBILLING Name:Jakub Vlach\nBILLING Organization:Axfone s.r.o.\nBILLING Street1:Pripotocni 1519/10c\nBILLING City:Praha 10\nBILLING State:Praha\nBILLING Postal Code:10100\nBILLING Country:CZ\nBILLING Phone:+420.277277272\nBILLING Fax:+420.241410071\nBILLING Email:domeny@axfone.cz\n", " Domain Name: ARKEYSOLUTIONS.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS.AXFONE.CZ\n Name Server: NS.AXFONE.EU\n Name Server: NS.AXFONE.SK\n Status: ok\n Updated Date: 09-apr-2014\n Creation Date: 21-jan-2013\n Expiration Date: 21-jan-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["REALTIME REGISTER B.V."], "emails": ["r.krisko@arkeysolutions.com"]}
{"status": ["OK"], "updated_date": ["2014-04-09T14:53:04"], "contacts": {"admin": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "CZ", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "tech": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "CZ", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "registrant": {"city": "Ko\u0161ice", "handle": "AXC432303721", "name": "R\u00f3bert Kri\u0161ko", "phone": "+421.902110378", "street": "Tr. SNP 74", "country": "SK", "postalcode": "04011", "organization": "Arkey, s.r.o.", "email": "r.krisko@arkeysolutions.com"}, "billing": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "CZ", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}}, "nameservers": ["ns.axfone.sk", "ns.axfone.eu", "ns.axfone.cz"], "expiration_date": ["2015-01-21T16:11:03"], "creation_date": ["2013-01-21T16:11:03", "2013-01-21T16:11:03", "2013-01-21T16:11:03"], "raw": ["Domain Name:arkeysolutions.com\nName Server:ns.axfone.sk\nName Server:ns.axfone.eu\nName Server:ns.axfone.cz\nCreated On:2013-01-21 16:11:03.0\nLast Updated On:2014-04-09 14:53:04.0\nExpiration Date:2015-01-21 16:11:03.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Axfone s.r.o.\nStatus:OK\nRegistrant ID:AXC432303721\nRegistrant Name:R\u00f3bert Kri\u0161ko\nRegistrant Organization:Arkey, s.r.o.\nRegistrant Street1:Tr. SNP 74\nRegistrant City:Ko\u0161ice\nRegistrant State:\nRegistrant Postal Code:04011\nRegistrant Country:SK\nRegistrant Phone:+421.902110378\nRegistrant Fax:\nRegistrant Email:r.krisko@arkeysolutions.com\nADMIN ID:REG_AXFONE\nADMIN Name:Jakub Vlach\nADMIN Organization:Axfone s.r.o.\nADMIN Street1:Pripotocni 1519/10c\nADMIN City:Praha 10\nADMIN State:Praha\nADMIN Postal Code:10100\nADMIN Country:CZ\nADMIN Phone:+420.277277272\nADMIN Fax:+420.241410071\nADMIN Email:domeny@axfone.cz\nTECH ID:REG_AXFONE\nTECH Name:Jakub Vlach\nTECH Organization:Axfone s.r.o.\nTECH Street1:Pripotocni 1519/10c\nTECH City:Praha 10\nTECH State:Praha\nTECH Postal Code:10100\nTECH Country:CZ\nTECH Phone:+420.277277272\nTECH Fax:+420.241410071\nTECH Email:domeny@axfone.cz\nBILLING ID:REG_AXFONE\nBILLING Name:Jakub Vlach\nBILLING Organization:Axfone s.r.o.\nBILLING Street1:Pripotocni 1519/10c\nBILLING City:Praha 10\nBILLING State:Praha\nBILLING Postal Code:10100\nBILLING Country:CZ\nBILLING Phone:+420.277277272\nBILLING Fax:+420.241410071\nBILLING Email:domeny@axfone.cz\n", " Domain Name: ARKEYSOLUTIONS.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS.AXFONE.CZ\n Name Server: NS.AXFONE.EU\n Name Server: NS.AXFONE.SK\n Status: ok\n Updated Date: 09-apr-2014\n Creation Date: 21-jan-2013\n Expiration Date: 21-jan-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["REALTIME REGISTER B.V."]}

@ -1 +1 @@
{"status": ["OK"], "updated_date": ["2014-03-27T00:00:25"], "contacts": {"admin": {"city": "Zwolle", "fax": "+31.384524734", "handle": "admin@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "Netherlands", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "admin@yourhosting.nl"}, "tech": {"city": "Zwolle", "fax": "+31.384524734", "handle": "tech@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "Netherlands", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "tech@yourhosting.nl"}, "registrant": null, "billing": {"city": "Zwolle", "fax": "+31.384524734", "handle": "billing@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "Netherlands", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "billing@yourhosting.nl"}}, "nameservers": ["ns3.firstfind.nl", "ns4.firstfind.nl", "ns5.firstfind.net"], "expiration_date": ["2015-03-25T10:48:37"], "creation_date": ["2013-03-25T11:48:37", "2013-03-25T11:48:37", "2013-03-25T11:48:37"], "raw": ["Domain Name:0031fashion.com\nName Server:ns3.firstfind.nl\nName Server:ns4.firstfind.nl\nName Server:ns5.firstfind.net\nCreated On:2013-03-25 11:48:37.0\nLast Updated On:2014-03-27 00:00:25.0\nExpiration Date:2015-03-25 10:48:37.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Your Hosting B.V.\nStatus:OK\nRegistrant ID:ULYdHkU6vYELLiJqKUmu\nRegistrant Name:A. Blom\nRegistrant Organization:Hotshopper\nRegistrant Street1:Blankenheymstraat 13\nRegistrant City:NUMANSDORP\nRegistrant State:\nRegistrant Postal Code:3281 SB\nRegistrant Country:NL\nRegistrant Phone:+31.648265085\nRegistrant Fax:\nRegistrant Email:info@hotshopper.nl\nBILLING ID:billing@yourhosting.nl\nBILLING Name:Valentijn Borstlap\nBILLING Organization:YourHosting BV\nBILLING Street1:Schrevenweg 5\nBILLING City:Zwolle\nBILLING State:Overijssel\nBILLING Postal Code:8024 HB\nBILLING Country:NL\nBILLING Phone:+31.384530752\nBILLING Fax:+31.384524734\nBILLING Email:billing@yourhosting.nl\nTECH ID:tech@yourhosting.nl\nTECH Name:Valentijn Borstlap\nTECH Organization:YourHosting BV\nTECH Street1:Schrevenweg 5\nTECH City:Zwolle\nTECH State:Overijssel\nTECH Postal Code:8024 HB\nTECH Country:NL\nTECH Phone:+31.384530752\nTECH Fax:+31.384524734\nTECH Email:tech@yourhosting.nl\nADMIN ID:admin@yourhosting.nl\nADMIN Name:Valentijn Borstlap\nADMIN Organization:YourHosting BV\nADMIN Street1:Schrevenweg 5\nADMIN City:Zwolle\nADMIN State:Overijssel\nADMIN Postal Code:8024 HB\nADMIN Country:NL\nADMIN Phone:+31.384530752\nADMIN Fax:+31.384524734\nADMIN Email:admin@yourhosting.nl\n", " Domain Name: 0031FASHION.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS3.FIRSTFIND.NL\n Name Server: NS4.FIRSTFIND.NL\n Name Server: NS5.FIRSTFIND.NET\n Status: ok\n Updated Date: 26-mar-2014\n Creation Date: 25-mar-2013\n Expiration Date: 25-mar-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["Realtime Register B.V."], "emails": ["info@hotshopper.nl"]}
{"status": ["OK"], "updated_date": ["2014-03-27T00:00:25"], "contacts": {"admin": {"city": "Zwolle", "fax": "+31.384524734", "handle": "admin@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "Netherlands", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "admin@yourhosting.nl"}, "tech": {"city": "Zwolle", "fax": "+31.384524734", "handle": "tech@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "Netherlands", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "tech@yourhosting.nl"}, "registrant": {"city": "Numansdorp", "handle": "ULYdHkU6vYELLiJqKUmu", "name": "A. Blom", "phone": "+31.648265085", "street": "Blankenheymstraat 13", "country": "Netherlands", "postalcode": "3281 SB", "organization": "Hotshopper", "email": "info@hotshopper.nl"}, "billing": {"city": "Zwolle", "fax": "+31.384524734", "handle": "billing@yourhosting.nl", "name": "Valentijn Borstlap", "phone": "+31.384530752", "state": "Overijssel", "street": "Schrevenweg 5", "country": "Netherlands", "postalcode": "8024 HB", "organization": "YourHosting BV", "email": "billing@yourhosting.nl"}}, "nameservers": ["ns3.firstfind.nl", "ns4.firstfind.nl", "ns5.firstfind.net"], "expiration_date": ["2015-03-25T10:48:37"], "creation_date": ["2013-03-25T11:48:37", "2013-03-25T11:48:37", "2013-03-25T11:48:37"], "raw": ["Domain Name:0031fashion.com\nName Server:ns3.firstfind.nl\nName Server:ns4.firstfind.nl\nName Server:ns5.firstfind.net\nCreated On:2013-03-25 11:48:37.0\nLast Updated On:2014-03-27 00:00:25.0\nExpiration Date:2015-03-25 10:48:37.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Your Hosting B.V.\nStatus:OK\nRegistrant ID:ULYdHkU6vYELLiJqKUmu\nRegistrant Name:A. Blom\nRegistrant Organization:Hotshopper\nRegistrant Street1:Blankenheymstraat 13\nRegistrant City:NUMANSDORP\nRegistrant State:\nRegistrant Postal Code:3281 SB\nRegistrant Country:NL\nRegistrant Phone:+31.648265085\nRegistrant Fax:\nRegistrant Email:info@hotshopper.nl\nBILLING ID:billing@yourhosting.nl\nBILLING Name:Valentijn Borstlap\nBILLING Organization:YourHosting BV\nBILLING Street1:Schrevenweg 5\nBILLING City:Zwolle\nBILLING State:Overijssel\nBILLING Postal Code:8024 HB\nBILLING Country:NL\nBILLING Phone:+31.384530752\nBILLING Fax:+31.384524734\nBILLING Email:billing@yourhosting.nl\nTECH ID:tech@yourhosting.nl\nTECH Name:Valentijn Borstlap\nTECH Organization:YourHosting BV\nTECH Street1:Schrevenweg 5\nTECH City:Zwolle\nTECH State:Overijssel\nTECH Postal Code:8024 HB\nTECH Country:NL\nTECH Phone:+31.384530752\nTECH Fax:+31.384524734\nTECH Email:tech@yourhosting.nl\nADMIN ID:admin@yourhosting.nl\nADMIN Name:Valentijn Borstlap\nADMIN Organization:YourHosting BV\nADMIN Street1:Schrevenweg 5\nADMIN City:Zwolle\nADMIN State:Overijssel\nADMIN Postal Code:8024 HB\nADMIN Country:NL\nADMIN Phone:+31.384530752\nADMIN Fax:+31.384524734\nADMIN Email:admin@yourhosting.nl\n", " Domain Name: 0031FASHION.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS3.FIRSTFIND.NL\n Name Server: NS4.FIRSTFIND.NL\n Name Server: NS5.FIRSTFIND.NET\n Status: ok\n Updated Date: 26-mar-2014\n Creation Date: 25-mar-2013\n Expiration Date: 25-mar-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["Realtime Register B.V."]}

@ -1 +1 @@
{"status": ["OK"], "updated_date": ["2014-04-09T14:53:04"], "contacts": {"admin": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "Czech Republic", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "tech": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "Czech Republic", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "registrant": null, "billing": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "Czech Republic", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}}, "nameservers": ["ns.axfone.sk", "ns.axfone.eu", "ns.axfone.cz"], "expiration_date": ["2015-01-21T16:11:03"], "creation_date": ["2013-01-21T16:11:03", "2013-01-21T16:11:03", "2013-01-21T16:11:03"], "raw": ["Domain Name:arkeysolutions.com\nName Server:ns.axfone.sk\nName Server:ns.axfone.eu\nName Server:ns.axfone.cz\nCreated On:2013-01-21 16:11:03.0\nLast Updated On:2014-04-09 14:53:04.0\nExpiration Date:2015-01-21 16:11:03.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Axfone s.r.o.\nStatus:OK\nRegistrant ID:AXC432303721\nRegistrant Name:R\u00f3bert Kri\u0161ko\nRegistrant Organization:Arkey, s.r.o.\nRegistrant Street1:Tr. SNP 74\nRegistrant City:Ko\u0161ice\nRegistrant State:\nRegistrant Postal Code:04011\nRegistrant Country:SK\nRegistrant Phone:+421.902110378\nRegistrant Fax:\nRegistrant Email:r.krisko@arkeysolutions.com\nADMIN ID:REG_AXFONE\nADMIN Name:Jakub Vlach\nADMIN Organization:Axfone s.r.o.\nADMIN Street1:Pripotocni 1519/10c\nADMIN City:Praha 10\nADMIN State:Praha\nADMIN Postal Code:10100\nADMIN Country:CZ\nADMIN Phone:+420.277277272\nADMIN Fax:+420.241410071\nADMIN Email:domeny@axfone.cz\nTECH ID:REG_AXFONE\nTECH Name:Jakub Vlach\nTECH Organization:Axfone s.r.o.\nTECH Street1:Pripotocni 1519/10c\nTECH City:Praha 10\nTECH State:Praha\nTECH Postal Code:10100\nTECH Country:CZ\nTECH Phone:+420.277277272\nTECH Fax:+420.241410071\nTECH Email:domeny@axfone.cz\nBILLING ID:REG_AXFONE\nBILLING Name:Jakub Vlach\nBILLING Organization:Axfone s.r.o.\nBILLING Street1:Pripotocni 1519/10c\nBILLING City:Praha 10\nBILLING State:Praha\nBILLING Postal Code:10100\nBILLING Country:CZ\nBILLING Phone:+420.277277272\nBILLING Fax:+420.241410071\nBILLING Email:domeny@axfone.cz\n", " Domain Name: ARKEYSOLUTIONS.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS.AXFONE.CZ\n Name Server: NS.AXFONE.EU\n Name Server: NS.AXFONE.SK\n Status: ok\n Updated Date: 09-apr-2014\n Creation Date: 21-jan-2013\n Expiration Date: 21-jan-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["Realtime Register B.V."], "emails": ["r.krisko@arkeysolutions.com"]}
{"status": ["OK"], "updated_date": ["2014-04-09T14:53:04"], "contacts": {"admin": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "Czech Republic", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "tech": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "Czech Republic", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}, "registrant": {"city": "Ko\u0161ice", "handle": "AXC432303721", "name": "R\u00f3bert Kri\u0161ko", "phone": "+421.902110378", "street": "Tr. SNP 74", "country": "Slovakia", "postalcode": "04011", "organization": "Arkey, s.r.o.", "email": "r.krisko@arkeysolutions.com"}, "billing": {"city": "Praha 10", "fax": "+420.241410071", "handle": "REG_AXFONE", "name": "Jakub Vlach", "phone": "+420.277277272", "state": "Praha", "street": "Pripotocni 1519/10c", "country": "Czech Republic", "postalcode": "10100", "organization": "Axfone s.r.o.", "email": "domeny@axfone.cz"}}, "nameservers": ["ns.axfone.sk", "ns.axfone.eu", "ns.axfone.cz"], "expiration_date": ["2015-01-21T16:11:03"], "creation_date": ["2013-01-21T16:11:03", "2013-01-21T16:11:03", "2013-01-21T16:11:03"], "raw": ["Domain Name:arkeysolutions.com\nName Server:ns.axfone.sk\nName Server:ns.axfone.eu\nName Server:ns.axfone.cz\nCreated On:2013-01-21 16:11:03.0\nLast Updated On:2014-04-09 14:53:04.0\nExpiration Date:2015-01-21 16:11:03.0\nSponsoring Registrar:REALTIME REGISTER B.V.\nReseller:Axfone s.r.o.\nStatus:OK\nRegistrant ID:AXC432303721\nRegistrant Name:R\u00f3bert Kri\u0161ko\nRegistrant Organization:Arkey, s.r.o.\nRegistrant Street1:Tr. SNP 74\nRegistrant City:Ko\u0161ice\nRegistrant State:\nRegistrant Postal Code:04011\nRegistrant Country:SK\nRegistrant Phone:+421.902110378\nRegistrant Fax:\nRegistrant Email:r.krisko@arkeysolutions.com\nADMIN ID:REG_AXFONE\nADMIN Name:Jakub Vlach\nADMIN Organization:Axfone s.r.o.\nADMIN Street1:Pripotocni 1519/10c\nADMIN City:Praha 10\nADMIN State:Praha\nADMIN Postal Code:10100\nADMIN Country:CZ\nADMIN Phone:+420.277277272\nADMIN Fax:+420.241410071\nADMIN Email:domeny@axfone.cz\nTECH ID:REG_AXFONE\nTECH Name:Jakub Vlach\nTECH Organization:Axfone s.r.o.\nTECH Street1:Pripotocni 1519/10c\nTECH City:Praha 10\nTECH State:Praha\nTECH Postal Code:10100\nTECH Country:CZ\nTECH Phone:+420.277277272\nTECH Fax:+420.241410071\nTECH Email:domeny@axfone.cz\nBILLING ID:REG_AXFONE\nBILLING Name:Jakub Vlach\nBILLING Organization:Axfone s.r.o.\nBILLING Street1:Pripotocni 1519/10c\nBILLING City:Praha 10\nBILLING State:Praha\nBILLING Postal Code:10100\nBILLING Country:CZ\nBILLING Phone:+420.277277272\nBILLING Fax:+420.241410071\nBILLING Email:domeny@axfone.cz\n", " Domain Name: ARKEYSOLUTIONS.COM\n Registrar: REALTIME REGISTER BV\n Whois Server: whois.yoursrs.com\n Referral URL: http://www.realtimeregister.com\n Name Server: NS.AXFONE.CZ\n Name Server: NS.AXFONE.EU\n Name Server: NS.AXFONE.SK\n Status: ok\n Updated Date: 09-apr-2014\n Creation Date: 21-jan-2013\n Expiration Date: 21-jan-2015\n"], "whois_server": ["whois.yoursrs.com"], "registrar": ["Realtime Register B.V."]}
Loading…
Cancel
Save