domain_prefix 0.2.2.4 → 0.3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +59 -0
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/Rakefile +10 -0
- data/VERSION +1 -1
- data/data/effective_tld_names.dat +883 -107
- data/domain_prefix.gemspec +18 -5
- data/lib/domain_prefix.rb +24 -67
- data/lib/domain_prefix/tree.rb +61 -0
- data/test/helper.rb +2 -0
- data/test/sample/test.txt +27 -7
- data/test/test_domain_prefix.rb +2 -1
- metadata +54 -11
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b7e352d4a124f1ae6da071526592bb695b5078d9
|
4
|
+
data.tar.gz: 1f709912017b124259d0530f64c0724b1e93212a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f04133ae42e4bf9a9f6d9afcba448cf72c4b6f866fcee696fa66ef8e20a2aab38f2dbd067b989bcbff2f3efd0b9cbdfd55bd849701be6808269f00d1ddd11563
|
7
|
+
data.tar.gz: 5c7170036ab4ea53dff6a5df5642814d1532836d57fd84d989e48257ca53f57789f64fdad395f00bfa1f109d4489b346463c087fb2f11309554382b21cbb12d3
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
addressable (2.3.5)
|
5
|
+
ansi (1.4.3)
|
6
|
+
builder (3.2.2)
|
7
|
+
descendants_tracker (0.0.3)
|
8
|
+
faraday (0.9.0)
|
9
|
+
multipart-post (>= 1.2, < 3)
|
10
|
+
git (1.2.6)
|
11
|
+
github_api (0.11.3)
|
12
|
+
addressable (~> 2.3)
|
13
|
+
descendants_tracker (~> 0.0.1)
|
14
|
+
faraday (~> 0.8, < 0.10)
|
15
|
+
hashie (>= 1.2)
|
16
|
+
multi_json (>= 1.7.5, < 2.0)
|
17
|
+
nokogiri (~> 1.6.0)
|
18
|
+
oauth2
|
19
|
+
hashie (2.0.5)
|
20
|
+
highline (1.6.20)
|
21
|
+
jeweler (2.0.1)
|
22
|
+
builder
|
23
|
+
bundler (>= 1.0)
|
24
|
+
git (>= 1.2.5)
|
25
|
+
github_api
|
26
|
+
highline (>= 1.6.15)
|
27
|
+
nokogiri (>= 1.5.10)
|
28
|
+
rake
|
29
|
+
rdoc
|
30
|
+
json (1.8.1)
|
31
|
+
jwt (0.1.11)
|
32
|
+
multi_json (>= 1.5)
|
33
|
+
mini_portile (0.5.2)
|
34
|
+
multi_json (1.8.4)
|
35
|
+
multi_xml (0.5.5)
|
36
|
+
multipart-post (2.0.0)
|
37
|
+
nokogiri (1.6.1)
|
38
|
+
mini_portile (~> 0.5.0)
|
39
|
+
oauth2 (0.9.3)
|
40
|
+
faraday (>= 0.8, < 0.10)
|
41
|
+
jwt (~> 0.1.8)
|
42
|
+
multi_json (~> 1.3)
|
43
|
+
multi_xml (~> 0.5)
|
44
|
+
rack (~> 1.2)
|
45
|
+
rack (1.5.2)
|
46
|
+
rake (10.1.1)
|
47
|
+
rdoc (4.1.1)
|
48
|
+
json (~> 1.4)
|
49
|
+
simpleidn (0.0.5)
|
50
|
+
turn (0.9.6)
|
51
|
+
ansi
|
52
|
+
|
53
|
+
PLATFORMS
|
54
|
+
ruby
|
55
|
+
|
56
|
+
DEPENDENCIES
|
57
|
+
jeweler (>= 2.0.0)
|
58
|
+
simpleidn (>= 0.0.5)
|
59
|
+
turn (>= 0.9.0)
|
data/LICENSE
CHANGED
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'rake'
|
3
3
|
|
4
|
+
require 'bundler/setup'
|
5
|
+
|
4
6
|
begin
|
5
7
|
require 'jeweler'
|
8
|
+
|
6
9
|
Jeweler::Tasks.new do |gem|
|
7
10
|
gem.name = "domain_prefix"
|
8
11
|
gem.summary = "Domain Prefix Extraction Library"
|
@@ -11,6 +14,7 @@ begin
|
|
11
14
|
gem.homepage = "http://github.com/twg/domain_prefix"
|
12
15
|
gem.authors = %w[ tadman ]
|
13
16
|
end
|
17
|
+
|
14
18
|
Jeweler::GemcutterTasks.new
|
15
19
|
rescue LoadError
|
16
20
|
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
@@ -33,5 +37,11 @@ namespace :domain_prefix do
|
|
33
37
|
dest.write(source.read)
|
34
38
|
end
|
35
39
|
end
|
40
|
+
|
41
|
+
open("http://mxr.mozilla.org/mozilla-central/source/netwerk/test/unit/data/test_psl.txt?raw=1") do |source|
|
42
|
+
open(File.expand_path(File.join('test', 'sample', 'test.txt'), File.dirname(__FILE__)), 'w') do |dest|
|
43
|
+
dest.write(source.read)
|
44
|
+
end
|
45
|
+
end
|
36
46
|
end
|
37
47
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.0.0
|
@@ -175,20 +175,20 @@ it.ao
|
|
175
175
|
// aq : http://en.wikipedia.org/wiki/.aq
|
176
176
|
aq
|
177
177
|
|
178
|
-
// ar :
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
!uba.ar
|
178
|
+
// ar : https://nic.ar/normativa-vigente.xhtml
|
179
|
+
ar
|
180
|
+
com.ar
|
181
|
+
edu.ar
|
182
|
+
gob.ar
|
183
|
+
int.ar
|
184
|
+
mil.ar
|
185
|
+
net.ar
|
186
|
+
org.ar
|
187
|
+
tur.ar
|
189
188
|
|
190
189
|
// arpa : http://en.wikipedia.org/wiki/.arpa
|
191
190
|
// Confirmed by registry <iana-questions@icann.org> 2008-06-18
|
191
|
+
arpa
|
192
192
|
e164.arpa
|
193
193
|
in-addr.arpa
|
194
194
|
ip6.arpa
|
@@ -213,6 +213,7 @@ or.at
|
|
213
213
|
|
214
214
|
// au : http://en.wikipedia.org/wiki/.au
|
215
215
|
// http://www.auda.org.au/
|
216
|
+
au
|
216
217
|
// 2LDs
|
217
218
|
com.au
|
218
219
|
net.au
|
@@ -245,9 +246,8 @@ tas.edu.au
|
|
245
246
|
vic.edu.au
|
246
247
|
wa.edu.au
|
247
248
|
act.gov.au
|
248
|
-
// Removed at request of Shae.Donelan@services.nsw.gov.au
|
249
|
-
//
|
250
|
-
nt.gov.au
|
249
|
+
// nsw.gov.au Bug 547985 - Removed at request of <Shae.Donelan@services.nsw.gov.au>
|
250
|
+
// nt.gov.au Bug 940478 - Removed at request of Greg Connors <Greg.Connors@nt.gov.au>
|
251
251
|
qld.gov.au
|
252
252
|
sa.gov.au
|
253
253
|
tas.gov.au
|
@@ -350,7 +350,7 @@ z.bg
|
|
350
350
|
6.bg
|
351
351
|
7.bg
|
352
352
|
8.bg
|
353
|
-
9.bg
|
353
|
+
9.bg
|
354
354
|
|
355
355
|
// bh : http://en.wikipedia.org/wiki/.bh
|
356
356
|
bh
|
@@ -402,7 +402,7 @@ mil.bo
|
|
402
402
|
tv.bo
|
403
403
|
|
404
404
|
// br : http://registro.br/dominio/dpn.html
|
405
|
-
//
|
405
|
+
// Submitted by registry <fneves@registro.br> 2011-03-01
|
406
406
|
br
|
407
407
|
adm.br
|
408
408
|
adv.br
|
@@ -492,6 +492,7 @@ org.bt
|
|
492
492
|
|
493
493
|
// bv : No registrations at this time.
|
494
494
|
// Submitted by registry <jarle@uninett.no> 2006-06-16
|
495
|
+
bv
|
495
496
|
|
496
497
|
// bw : http://en.wikipedia.org/wiki/.bw
|
497
498
|
// http://www.gobin.info/domainname/bw.doc
|
@@ -788,7 +789,7 @@ org.ee
|
|
788
789
|
fie.ee
|
789
790
|
|
790
791
|
// eg : http://en.wikipedia.org/wiki/.eg
|
791
|
-
eg
|
792
|
+
eg
|
792
793
|
com.eg
|
793
794
|
edu.eg
|
794
795
|
eun.eg
|
@@ -870,6 +871,7 @@ ga
|
|
870
871
|
|
871
872
|
// gb : This registry is effectively dormant
|
872
873
|
// Submitted by registry <Damien.Shaw@ja.net> 2008-06-12
|
874
|
+
gb
|
873
875
|
|
874
876
|
// gd : http://en.wikipedia.org/wiki/.gd
|
875
877
|
gd
|
@@ -887,13 +889,12 @@ pvt.ge
|
|
887
889
|
// gf : http://en.wikipedia.org/wiki/.gf
|
888
890
|
gf
|
889
891
|
|
890
|
-
// gg : http://www.channelisles.net/
|
892
|
+
// gg : http://www.channelisles.net/register-domains/
|
893
|
+
// Confirmed by registry <nigel@channelisles.net> 2013-11-28
|
891
894
|
gg
|
892
895
|
co.gg
|
893
|
-
org.gg
|
894
896
|
net.gg
|
895
|
-
|
896
|
-
gov.gg
|
897
|
+
org.gg
|
897
898
|
|
898
899
|
// gh : http://en.wikipedia.org/wiki/.gh
|
899
900
|
// see also: http://www.nic.gh/reg_now.php
|
@@ -924,6 +925,7 @@ gm
|
|
924
925
|
|
925
926
|
// gn : http://psg.com/dns/gn/gn.txt
|
926
927
|
// Submitted by registry <randy@psg.com> 2008-06-17
|
928
|
+
gn
|
927
929
|
ac.gn
|
928
930
|
com.gn
|
929
931
|
edu.gn
|
@@ -1004,7 +1006,7 @@ org.hk
|
|
1004
1006
|
网絡.hk
|
1005
1007
|
组织.hk
|
1006
1008
|
組織.hk
|
1007
|
-
組织.hk
|
1009
|
+
組织.hk
|
1008
1010
|
|
1009
1011
|
// hm : http://en.wikipedia.org/wiki/.hm
|
1010
1012
|
hm
|
@@ -1100,16 +1102,18 @@ gov.ie
|
|
1100
1102
|
// il : http://en.wikipedia.org/wiki/.il
|
1101
1103
|
*.il
|
1102
1104
|
|
1103
|
-
// im : https://www.nic.im/
|
1105
|
+
// im : https://www.nic.im/
|
1106
|
+
// Submitted by registry <info@nic.im> 2013-11-15
|
1104
1107
|
im
|
1108
|
+
ac.im
|
1105
1109
|
co.im
|
1110
|
+
com.im
|
1106
1111
|
ltd.co.im
|
1107
|
-
plc.co.im
|
1108
1112
|
net.im
|
1109
|
-
gov.im
|
1110
1113
|
org.im
|
1111
|
-
|
1112
|
-
|
1114
|
+
plc.co.im
|
1115
|
+
tt.im
|
1116
|
+
tv.im
|
1113
1117
|
|
1114
1118
|
// in : http://en.wikipedia.org/wiki/.in
|
1115
1119
|
// see also: http://www.inregistry.in/policies/
|
@@ -1181,9 +1185,9 @@ int.is
|
|
1181
1185
|
it
|
1182
1186
|
gov.it
|
1183
1187
|
edu.it
|
1184
|
-
// list of reserved geo-names :
|
1188
|
+
// list of reserved geo-names :
|
1185
1189
|
// http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazione-versione-6.0.pdf
|
1186
|
-
// (There is also a list of reserved geo-names corresponding to Italian
|
1190
|
+
// (There is also a list of reserved geo-names corresponding to Italian
|
1187
1191
|
// municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is
|
1188
1192
|
// not included here.)
|
1189
1193
|
agrigento.it
|
@@ -1462,13 +1466,12 @@ vi.it
|
|
1462
1466
|
viterbo.it
|
1463
1467
|
vt.it
|
1464
1468
|
|
1465
|
-
// je : http://www.channelisles.net/
|
1469
|
+
// je : http://www.channelisles.net/register-domains/
|
1470
|
+
// Confirmed by registry <nigel@channelisles.net> 2013-11-28
|
1466
1471
|
je
|
1467
1472
|
co.je
|
1468
|
-
org.je
|
1469
1473
|
net.je
|
1470
|
-
|
1471
|
-
gov.je
|
1474
|
+
org.je
|
1472
1475
|
|
1473
1476
|
// jm : http://www.com.jm/register.html
|
1474
1477
|
*.jm
|
@@ -1489,7 +1492,7 @@ jobs
|
|
1489
1492
|
|
1490
1493
|
// jp : http://en.wikipedia.org/wiki/.jp
|
1491
1494
|
// http://jprs.co.jp/en/jpdomain.html
|
1492
|
-
//
|
1495
|
+
// Submitted by registry <info@jprs.jp> 2012-05-28
|
1493
1496
|
jp
|
1494
1497
|
// jp organizational type names
|
1495
1498
|
ac.jp
|
@@ -3303,6 +3306,7 @@ edu.kn
|
|
3303
3306
|
gov.kn
|
3304
3307
|
|
3305
3308
|
// kp : http://www.kcce.kp/en_index.php
|
3309
|
+
kp
|
3306
3310
|
com.kp
|
3307
3311
|
edu.kp
|
3308
3312
|
gov.kp
|
@@ -3380,6 +3384,7 @@ org.la
|
|
3380
3384
|
|
3381
3385
|
// lb : http://en.wikipedia.org/wiki/.lb
|
3382
3386
|
// Submitted by registry <randy@psg.com> 2008-06-17
|
3387
|
+
lb
|
3383
3388
|
com.lb
|
3384
3389
|
edu.lb
|
3385
3390
|
gov.lb
|
@@ -3418,6 +3423,7 @@ hotel.lk
|
|
3418
3423
|
|
3419
3424
|
// lr : http://psg.com/dns/lr/lr.txt
|
3420
3425
|
// Submitted by registry <randy@psg.com> 2008-06-17
|
3426
|
+
lr
|
3421
3427
|
com.lr
|
3422
3428
|
edu.lr
|
3423
3429
|
gov.lr
|
@@ -3563,8 +3569,13 @@ gov.mr
|
|
3563
3569
|
// ms : http://en.wikipedia.org/wiki/.ms
|
3564
3570
|
ms
|
3565
3571
|
|
3566
|
-
// mt : https://www.nic.org.mt/
|
3567
|
-
|
3572
|
+
// mt : https://www.nic.org.mt/go/policy
|
3573
|
+
// Submitted by registry <help@nic.org.mt> 2013-11-19
|
3574
|
+
mt
|
3575
|
+
com.mt
|
3576
|
+
edu.mt
|
3577
|
+
net.mt
|
3578
|
+
org.mt
|
3568
3579
|
|
3569
3580
|
// mu : http://en.wikipedia.org/wiki/.mu
|
3570
3581
|
mu
|
@@ -4231,13 +4242,16 @@ other.nf
|
|
4231
4242
|
store.nf
|
4232
4243
|
|
4233
4244
|
// ng : http://psg.com/dns/ng/
|
4234
|
-
|
4235
|
-
ac.ng
|
4245
|
+
ng
|
4236
4246
|
com.ng
|
4237
4247
|
edu.ng
|
4238
|
-
|
4248
|
+
name.ng
|
4239
4249
|
net.ng
|
4240
4250
|
org.ng
|
4251
|
+
sch.ng
|
4252
|
+
gov.ng
|
4253
|
+
mil.ng
|
4254
|
+
mobi.ng
|
4241
4255
|
|
4242
4256
|
// ni : http://www.nic.ni/dominios.htm
|
4243
4257
|
*.ni
|
@@ -4253,7 +4267,7 @@ bv.nl
|
|
4253
4267
|
// no : http://www.norid.no/regelverk/index.en.html
|
4254
4268
|
// The Norwegian registry has declined to notify us of updates. The web pages
|
4255
4269
|
// referenced below are the official source of the data. There is also an
|
4256
|
-
// announce mailing list:
|
4270
|
+
// announce mailing list:
|
4257
4271
|
// https://postlister.uninett.no/sympa/info/norid-diskusjon
|
4258
4272
|
no
|
4259
4273
|
// Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
|
@@ -5038,17 +5052,16 @@ nu
|
|
5038
5052
|
*.nz
|
5039
5053
|
|
5040
5054
|
// om : http://en.wikipedia.org/wiki/.om
|
5041
|
-
|
5042
|
-
|
5043
|
-
|
5044
|
-
|
5045
|
-
|
5046
|
-
|
5047
|
-
|
5048
|
-
|
5049
|
-
|
5050
|
-
|
5051
|
-
!statecouncil.om
|
5055
|
+
om
|
5056
|
+
co.om
|
5057
|
+
com.om
|
5058
|
+
edu.om
|
5059
|
+
gov.om
|
5060
|
+
med.om
|
5061
|
+
museum.om
|
5062
|
+
net.om
|
5063
|
+
org.om
|
5064
|
+
pro.om
|
5052
5065
|
|
5053
5066
|
// org : http://en.wikipedia.org/wiki/.org
|
5054
5067
|
org
|
@@ -5688,6 +5701,7 @@ si
|
|
5688
5701
|
|
5689
5702
|
// sj : No registrations at this time.
|
5690
5703
|
// Submitted by registry <jarle@uninett.no> 2008-06-16
|
5704
|
+
sj
|
5691
5705
|
|
5692
5706
|
// sk : http://en.wikipedia.org/wiki/.sk
|
5693
5707
|
// list of 2nd level domains ?
|
@@ -5742,8 +5756,13 @@ store.st
|
|
5742
5756
|
// su : http://en.wikipedia.org/wiki/.su
|
5743
5757
|
su
|
5744
5758
|
|
5745
|
-
// sv : http://www.svnet.org.sv/
|
5746
|
-
|
5759
|
+
// sv : http://www.svnet.org.sv/niveldos.pdf
|
5760
|
+
sv
|
5761
|
+
com.sv
|
5762
|
+
edu.sv
|
5763
|
+
gob.sv
|
5764
|
+
org.sv
|
5765
|
+
red.sv
|
5747
5766
|
|
5748
5767
|
// sx : http://en.wikipedia.org/wiki/.sx
|
5749
5768
|
// Confirmed by registry <jcvignes@openregistry.com> 2012-05-31
|
@@ -5865,6 +5884,10 @@ org.to
|
|
5865
5884
|
edu.to
|
5866
5885
|
mil.to
|
5867
5886
|
|
5887
|
+
// tp : No registrations at this time.
|
5888
|
+
// Submitted by Ryan Sleevi <ryan.sleevi@gmail.com> 2014-01-03
|
5889
|
+
tp
|
5890
|
+
|
5868
5891
|
// tr : http://en.wikipedia.org/wiki/.tr
|
5869
5892
|
*.tr
|
5870
5893
|
!nic.tr
|
@@ -5918,6 +5941,7 @@ club.tw
|
|
5918
5941
|
|
5919
5942
|
// tz : http://www.tznic.or.tz/index.php/domains
|
5920
5943
|
// Confirmed by registry <manager@tznic.or.tz> 2013-01-22
|
5944
|
+
tz
|
5921
5945
|
ac.tz
|
5922
5946
|
co.tz
|
5923
5947
|
go.tz
|
@@ -6126,7 +6150,7 @@ k12.de.us
|
|
6126
6150
|
k12.fl.us
|
6127
6151
|
k12.ga.us
|
6128
6152
|
k12.gu.us
|
6129
|
-
// k12.hi.us Hawaii has a state-wide DOE login
|
6153
|
+
// k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
|
6130
6154
|
k12.ia.us
|
6131
6155
|
k12.id.us
|
6132
6156
|
k12.il.us
|
@@ -6157,7 +6181,7 @@ k12.pa.us
|
|
6157
6181
|
k12.pr.us
|
6158
6182
|
k12.ri.us
|
6159
6183
|
k12.sc.us
|
6160
|
-
k12.sd.us
|
6184
|
+
// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
|
6161
6185
|
k12.tn.us
|
6162
6186
|
k12.tx.us
|
6163
6187
|
k12.ut.us
|
@@ -6166,7 +6190,7 @@ k12.vt.us
|
|
6166
6190
|
k12.va.us
|
6167
6191
|
k12.wa.us
|
6168
6192
|
k12.wi.us
|
6169
|
-
k12.wv.us
|
6193
|
+
// k12.wv.us Bug 947705 - Removed at request of Verne Britton <verne@wvnet.edu>
|
6170
6194
|
k12.wy.us
|
6171
6195
|
|
6172
6196
|
cc.ak.us
|
@@ -6278,12 +6302,12 @@ lib.vt.us
|
|
6278
6302
|
lib.va.us
|
6279
6303
|
lib.wa.us
|
6280
6304
|
lib.wi.us
|
6281
|
-
lib.wv.us
|
6305
|
+
// lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold@wvlc.lib.wv.us>
|
6282
6306
|
lib.wy.us
|
6283
6307
|
|
6284
|
-
// k12.ma.us contains school districts in Massachusetts. The 4LDs are
|
6308
|
+
// k12.ma.us contains school districts in Massachusetts. The 4LDs are
|
6285
6309
|
// managed indepedently except for private (PVT), charter (CHTR) and
|
6286
|
-
// parochial (PAROCH) schools. Those are delegated dorectly to the
|
6310
|
+
// parochial (PAROCH) schools. Those are delegated dorectly to the
|
6287
6311
|
// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
|
6288
6312
|
pvt.k12.ma.us
|
6289
6313
|
chtr.k12.ma.us
|
@@ -6391,75 +6415,78 @@ yt
|
|
6391
6415
|
// http://nic.ae/english/arabicdomain/rules.jsp
|
6392
6416
|
امارات
|
6393
6417
|
|
6394
|
-
// xn--54b7fta0cc ("Bangla" Bangla) : BD
|
6418
|
+
// xn--54b7fta0cc ("Bangla" Bangla) : BD
|
6395
6419
|
বাংলা
|
6396
6420
|
|
6397
|
-
// xn--fiqs8s ("China" Chinese-Han-Simplified <.
|
6421
|
+
// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhongguo>) : CN
|
6398
6422
|
// CNNIC
|
6399
6423
|
// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
|
6400
6424
|
中国
|
6401
6425
|
|
6402
|
-
// xn--fiqz9s ("China" Chinese-Han-Traditional <.
|
6426
|
+
// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhongguo>) : CN
|
6403
6427
|
// CNNIC
|
6404
6428
|
// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
|
6405
6429
|
中國
|
6406
6430
|
|
6407
|
-
// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
|
6431
|
+
// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
|
6408
6432
|
الجزائر
|
6409
6433
|
|
6410
6434
|
// xn--wgbh1c ("Egypt" Arabic .masr) : EG
|
6411
6435
|
// http://www.dotmasr.eg/
|
6412
6436
|
مصر
|
6413
6437
|
|
6414
|
-
// xn--node ("ge" Georgian (Mkhedruli)) : GE
|
6438
|
+
// xn--node ("ge" Georgian (Mkhedruli)) : GE
|
6415
6439
|
გე
|
6416
6440
|
|
6417
6441
|
// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
|
6418
6442
|
// https://www2.hkirc.hk/register/rules.jsp
|
6419
6443
|
香港
|
6420
6444
|
|
6421
|
-
// xn--h2brj9c ("Bharat" Devanagari) : IN
|
6445
|
+
// xn--h2brj9c ("Bharat" Devanagari) : IN
|
6422
6446
|
// India
|
6423
6447
|
भारत
|
6424
6448
|
|
6425
|
-
// xn--mgbbh1a71e ("Bharat" Arabic) : IN
|
6449
|
+
// xn--mgbbh1a71e ("Bharat" Arabic) : IN
|
6426
6450
|
// India
|
6427
6451
|
بھارت
|
6428
6452
|
|
6429
|
-
// xn--fpcrj9c3d ("Bharat" Telugu) : IN
|
6453
|
+
// xn--fpcrj9c3d ("Bharat" Telugu) : IN
|
6430
6454
|
// India
|
6431
6455
|
భారత్
|
6432
6456
|
|
6433
|
-
// xn--gecrj9c ("Bharat" Gujarati) : IN
|
6457
|
+
// xn--gecrj9c ("Bharat" Gujarati) : IN
|
6434
6458
|
// India
|
6435
6459
|
ભારત
|
6436
6460
|
|
6437
|
-
// xn--s9brj9c ("Bharat" Gurmukhi) : IN
|
6461
|
+
// xn--s9brj9c ("Bharat" Gurmukhi) : IN
|
6438
6462
|
// India
|
6439
6463
|
ਭਾਰਤ
|
6440
6464
|
|
6441
|
-
// xn--45brj9c ("Bharat" Bengali) : IN
|
6465
|
+
// xn--45brj9c ("Bharat" Bengali) : IN
|
6442
6466
|
// India
|
6443
6467
|
ভারত
|
6444
6468
|
|
6445
|
-
// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
|
6469
|
+
// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
|
6446
6470
|
// India
|
6447
6471
|
இந்தியா
|
6448
6472
|
|
6449
|
-
// xn--mgba3a4f16a ("Iran" Persian) : IR
|
6473
|
+
// xn--mgba3a4f16a ("Iran" Persian) : IR
|
6450
6474
|
ایران
|
6451
6475
|
|
6452
|
-
// xn--mgba3a4fra ("Iran" Arabic) : IR
|
6476
|
+
// xn--mgba3a4fra ("Iran" Arabic) : IR
|
6453
6477
|
ايران
|
6454
6478
|
|
6455
6479
|
// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
|
6456
|
-
// National Information Technology Center (NITC)
|
6480
|
+
// National Information Technology Center (NITC)
|
6457
6481
|
// Royal Scientific Society, Al-Jubeiha
|
6458
6482
|
الاردن
|
6459
6483
|
|
6460
|
-
// xn--3e0b707e ("Republic of Korea" Hangul) : KR
|
6484
|
+
// xn--3e0b707e ("Republic of Korea" Hangul) : KR
|
6461
6485
|
한국
|
6462
6486
|
|
6487
|
+
// xn--80ao21a ("Kaz" Kazakh) : KZ
|
6488
|
+
қаз
|
6489
|
+
|
6463
6490
|
// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
|
6464
6491
|
// http://nic.lk
|
6465
6492
|
ලංකා
|
@@ -6468,10 +6495,16 @@ yt
|
|
6468
6495
|
// http://nic.lk
|
6469
6496
|
இலங்கை
|
6470
6497
|
|
6471
|
-
// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
|
6498
|
+
// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
|
6472
6499
|
المغرب
|
6473
6500
|
|
6474
|
-
// xn--
|
6501
|
+
// xn--l1acc ("mon" Mongolian) : MN
|
6502
|
+
мон
|
6503
|
+
|
6504
|
+
// xn--mgbx4cd0ab ("Malaysia" Malay) : MY
|
6505
|
+
مليسيا
|
6506
|
+
|
6507
|
+
// xn--mgb9awbf ("Oman" Arabic) : OM
|
6475
6508
|
عمان
|
6476
6509
|
|
6477
6510
|
// xn--ygbi2ammx ("Falasteen" Arabic) : PS
|
@@ -6479,7 +6512,7 @@ yt
|
|
6479
6512
|
// http://www.pnina.ps
|
6480
6513
|
فلسطين
|
6481
6514
|
|
6482
|
-
// xn--90a3ac ("srb" Cyrillic) : RS
|
6515
|
+
// xn--90a3ac ("srb" Cyrillic) : RS
|
6483
6516
|
срб
|
6484
6517
|
|
6485
6518
|
// xn--p1ai ("rf" Russian-Cyrillic) : RU
|
@@ -6494,19 +6527,19 @@ yt
|
|
6494
6527
|
// http://www.nic.net.sa/
|
6495
6528
|
السعودية
|
6496
6529
|
|
6497
|
-
// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
|
6530
|
+
// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
|
6498
6531
|
السعودیة
|
6499
6532
|
|
6500
|
-
// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
|
6533
|
+
// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
|
6501
6534
|
السعودیۃ
|
6502
6535
|
|
6503
|
-
// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
|
6536
|
+
// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
|
6504
6537
|
السعوديه
|
6505
6538
|
|
6506
|
-
// xn--ogbpf8fl ("Syria" Arabic) : SY
|
6539
|
+
// xn--ogbpf8fl ("Syria" Arabic) : SY
|
6507
6540
|
سورية
|
6508
6541
|
|
6509
|
-
// xn--mgbtf8fl ("Syria" Arabic) variant : SY
|
6542
|
+
// xn--mgbtf8fl ("Syria" Arabic) variant : SY
|
6510
6543
|
سوريا
|
6511
6544
|
|
6512
6545
|
// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
|
@@ -6531,13 +6564,13 @@ yt
|
|
6531
6564
|
// http://www.twnic.net/english/dn/dn_07a.htm
|
6532
6565
|
台湾
|
6533
6566
|
|
6534
|
-
// xn--nnx388a ("Taiwan") variant : TW
|
6567
|
+
// xn--nnx388a ("Taiwan") variant : TW
|
6535
6568
|
臺灣
|
6536
6569
|
|
6537
|
-
// xn--j1amh ("ukr" Cyrillic) : UA
|
6570
|
+
// xn--j1amh ("ukr" Cyrillic) : UA
|
6538
6571
|
укр
|
6539
6572
|
|
6540
|
-
// xn--mgb2ddes ("AlYemen" Arabic) : YE
|
6573
|
+
// xn--mgb2ddes ("AlYemen" Arabic) : YE
|
6541
6574
|
اليمن
|
6542
6575
|
|
6543
6576
|
// xxx : http://icmregistry.com
|
@@ -6555,15 +6588,746 @@ xxx
|
|
6555
6588
|
// zw : http://en.wikipedia.org/wiki/.zw
|
6556
6589
|
*.zw
|
6557
6590
|
|
6591
|
+
|
6592
|
+
// xn--80asehdb : 2013-07-14 CORE Association
|
6593
|
+
онлайн
|
6594
|
+
|
6595
|
+
// xn--80aswg : 2013-07-14 CORE Association
|
6596
|
+
сайт
|
6597
|
+
|
6598
|
+
// xn--ngbc5azd : 2013-07-14 International Domain Registry Pty. Ltd.
|
6599
|
+
شبكة
|
6600
|
+
|
6601
|
+
// xn--unup4y : 2013-07-14 Spring Fields, LLC
|
6602
|
+
游戏
|
6603
|
+
|
6604
|
+
// xn--vhquv : 2013-08-28 Dash McCook, LLC
|
6605
|
+
企业
|
6606
|
+
|
6607
|
+
// camera : 2013-08-28 Atomic Maple, LLC
|
6608
|
+
camera
|
6609
|
+
|
6610
|
+
// clothing : 2013-08-28 Steel Lake, LLC
|
6611
|
+
clothing
|
6612
|
+
|
6613
|
+
// lighting : 2013-08-28 John McCook, LLC
|
6614
|
+
lighting
|
6615
|
+
|
6616
|
+
// singles : 2013-08-28 Fern Madison, LLC
|
6617
|
+
singles
|
6618
|
+
|
6619
|
+
// ventures : 2013-08-28 Binky Lake, LLC
|
6620
|
+
ventures
|
6621
|
+
|
6622
|
+
// voyage : 2013-08-28 Ruby House, LLC
|
6623
|
+
voyage
|
6624
|
+
|
6625
|
+
// guru : 2013-08-28 Pioneer Cypress, LLC
|
6626
|
+
guru
|
6627
|
+
|
6628
|
+
// holdings : 2013-08-28 John Madison, LLC
|
6629
|
+
holdings
|
6630
|
+
|
6631
|
+
// equipment : 2013-08-28 Corn Station, LLC
|
6632
|
+
equipment
|
6633
|
+
|
6634
|
+
// bike : 2013-08-28 Grand Hollow, LLC
|
6635
|
+
bike
|
6636
|
+
|
6637
|
+
// estate : 2013-08-28 Trixy Park, LLC
|
6638
|
+
estate
|
6639
|
+
|
6640
|
+
// tattoo : 2013-08-30 Uniregistry,Corp.
|
6641
|
+
tattoo
|
6642
|
+
|
6643
|
+
// xn--3ds443g : 2013-09-09 TLD Registry Limited
|
6644
|
+
在线
|
6645
|
+
|
6646
|
+
// xn--fiq228c5hs : 2013-09-09 TLD Registry Limited
|
6647
|
+
中文网
|
6648
|
+
|
6649
|
+
// land : 2013-09-10 Pine Moon, LLC
|
6650
|
+
land
|
6651
|
+
|
6652
|
+
// plumbing : 2013-09-10 Spring Tigers, LLC
|
6653
|
+
plumbing
|
6654
|
+
|
6655
|
+
// contractors : 2013-09-10 Magic Woods, LLC
|
6656
|
+
contractors
|
6657
|
+
|
6658
|
+
// sexy : 2013-09-11 Uniregistry,Corp.
|
6659
|
+
sexy
|
6660
|
+
|
6661
|
+
// menu : 2013-09-11 Wedding TLD2, LLC
|
6662
|
+
menu
|
6663
|
+
|
6664
|
+
// xn--rhqv96g : 2013-09-11 Stable Tone Limited
|
6665
|
+
世界
|
6666
|
+
|
6667
|
+
// uno : 2013-09-11 Dot Latin, LLC
|
6668
|
+
uno
|
6669
|
+
|
6670
|
+
// gallery : 2013-09-13 Sugar House, LLC
|
6671
|
+
gallery
|
6672
|
+
|
6673
|
+
// technology : 2013-09-13 Auburn Falls
|
6674
|
+
technology
|
6675
|
+
|
6676
|
+
// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
|
6677
|
+
集团
|
6678
|
+
|
6679
|
+
// reviews : 2013-09-13 Extra Cover, LLC
|
6680
|
+
reviews
|
6681
|
+
|
6682
|
+
// guide : 2013-09-13 Snow Moon, LLC
|
6683
|
+
guide
|
6684
|
+
|
6685
|
+
// xn--6qq986b3x1 : 2013-09-13 Tycoon Treasure Limited
|
6686
|
+
我爱你
|
6687
|
+
|
6688
|
+
// graphics : 2013-09-13 Over Madison, LLC
|
6689
|
+
graphics
|
6690
|
+
|
6691
|
+
// construction : 2013-09-13 Fox Dynamite, LLC
|
6692
|
+
construction
|
6693
|
+
|
6694
|
+
// onl : 2013-09-16 I-Registry Ltd.
|
6695
|
+
onl
|
6696
|
+
|
6697
|
+
// xn--q9jyb4c : 2013-09-17 Charleston Road Registry
|
6698
|
+
みんな
|
6699
|
+
|
6700
|
+
// diamonds : 2013-09-23 John Edge, LLC
|
6701
|
+
diamonds
|
6702
|
+
|
6703
|
+
// kiwi : 2013-09-23 Dot Kiwi Limited
|
6704
|
+
kiwi
|
6705
|
+
|
6706
|
+
// enterprises : 2013-09-23 Snow Oaks LLC
|
6707
|
+
enterprises
|
6708
|
+
|
6709
|
+
// today : 2013-09-23 Pearl Woods, LLC
|
6710
|
+
today
|
6711
|
+
|
6712
|
+
// futbol : 2013-09-23 Atomic Falls, LLC
|
6713
|
+
futbol
|
6714
|
+
|
6715
|
+
// photography : 2013-09-23 Sugar Glen, LLC
|
6716
|
+
photography
|
6717
|
+
|
6718
|
+
// tips : 2013-09-23 Corn Willow, LLC
|
6719
|
+
tips
|
6720
|
+
|
6721
|
+
// directory : 2013-09-23 Extra Madison, LLC
|
6722
|
+
directory
|
6723
|
+
|
6724
|
+
// kitchen : 2013-09-23 Just Goodbye, LLC
|
6725
|
+
kitchen
|
6726
|
+
|
6727
|
+
// xn--6frz82g : 2013-09-24 Afilias Limited
|
6728
|
+
移动
|
6729
|
+
|
6730
|
+
// kim : 2013-09-24 Afilias Limited
|
6731
|
+
kim
|
6732
|
+
|
6733
|
+
// xn--cg4bki : 2013-09-27 Samsung SDS Co., LTD
|
6734
|
+
삼성
|
6735
|
+
|
6736
|
+
// monash : 2013-10-01 Monash University
|
6737
|
+
monash
|
6738
|
+
|
6739
|
+
// wed : 2013-10-02 Atgron, Inc.
|
6740
|
+
wed
|
6741
|
+
|
6742
|
+
// pink : 2013-10-02 Afilias Limited
|
6743
|
+
pink
|
6744
|
+
|
6745
|
+
// ruhr : 2013-10-02 regiodot GmbH & Co. KG
|
6746
|
+
ruhr
|
6747
|
+
|
6748
|
+
// buzz : 2013-10-03 DOTSTRATEGY CO.
|
6749
|
+
buzz
|
6750
|
+
|
6751
|
+
// careers : 2013-10-03 Wild Corner, LLC
|
6752
|
+
careers
|
6753
|
+
|
6754
|
+
// shoes : 2013-10-03 Binky Galley, LLC
|
6755
|
+
shoes
|
6756
|
+
|
6757
|
+
// xn--4gbrim : 2013-10-07 Suhub Electronic Establishment
|
6758
|
+
موقع
|
6759
|
+
|
6760
|
+
// career : 2013-10-09 dotCareer, LLC
|
6761
|
+
career
|
6762
|
+
|
6763
|
+
// otsuka : 2013-10-11 Otsuka Holdings Co. Ltd.
|
6764
|
+
otsuka
|
6765
|
+
|
6766
|
+
// xn--fiQ64b : 2013-10-14 CITIC Group Corporation
|
6767
|
+
中信
|
6768
|
+
|
6769
|
+
// gift : 2013-10-18 Uniregistry Corp.
|
6770
|
+
gift
|
6771
|
+
|
6772
|
+
// recipes : 2013-10-18 Grand Island, LLC
|
6773
|
+
recipes
|
6774
|
+
|
6775
|
+
// coffee : 2013-10-18 Trixy Cover, LLC
|
6776
|
+
coffee
|
6777
|
+
|
6778
|
+
// luxury : 2013-10-18 Luxury Partners, LLC
|
6779
|
+
luxury
|
6780
|
+
|
6781
|
+
// domains : 2013-10-18 Sugar Cross, LLC
|
6782
|
+
domains
|
6783
|
+
|
6784
|
+
// photos : 2013-10-18 Sea Corner, LLC
|
6785
|
+
photos
|
6786
|
+
|
6787
|
+
// limo : 2013-10-18 Hidden Frostbite, LLC
|
6788
|
+
limo
|
6789
|
+
|
6790
|
+
// viajes : 2013-10-18 Black Madison, LLC
|
6791
|
+
viajes
|
6792
|
+
|
6793
|
+
// wang : 2013-10-24 Zodiac Leo Limited
|
6794
|
+
wang
|
6795
|
+
|
6796
|
+
// democrat : 2013-10-24 United TLD Holdco Ltd.
|
6797
|
+
democrat
|
6798
|
+
|
6799
|
+
// mango : 2013-10-25 PUNTO FA S.L.
|
6800
|
+
mango
|
6801
|
+
|
6802
|
+
// cab : 2013-10-25 Half Sunset, LLC
|
6803
|
+
cab
|
6804
|
+
|
6805
|
+
// support : 2013-10-25 Grand Orchard, LLC
|
6806
|
+
support
|
6807
|
+
|
6808
|
+
// dance : 2013-10-25 United TLD Holdco Ltd.
|
6809
|
+
dance
|
6810
|
+
|
6811
|
+
// nagoya : 2013-10-25 GMO Registry, Inc.
|
6812
|
+
nagoya
|
6813
|
+
|
6814
|
+
// computer : 2013-10-25 Pine Mill, LLC
|
6815
|
+
computer
|
6816
|
+
|
6817
|
+
// wien : 2013-10-28 punkt.wien GmbH
|
6818
|
+
wien
|
6819
|
+
|
6820
|
+
// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
|
6821
|
+
berlin
|
6822
|
+
|
6823
|
+
// codes : 2013-10-31 Puff Willow, LLC
|
6824
|
+
codes
|
6825
|
+
|
6826
|
+
// email : 2013-10-31 Spring Madison, LLC
|
6827
|
+
email
|
6828
|
+
|
6829
|
+
// xn--mgbab2bd : 2013-10-31 CORE Association
|
6830
|
+
بازار
|
6831
|
+
|
6832
|
+
// repair : 2013-11-07 Lone Sunset, LLC
|
6833
|
+
repair
|
6834
|
+
|
6835
|
+
// holiday : 2013-11-07 Goose Woods, LLC
|
6836
|
+
holiday
|
6837
|
+
|
6838
|
+
// center : 2013-11-07 Tin Mill, LLC
|
6839
|
+
center
|
6840
|
+
|
6841
|
+
// systems : 2013-11-07 Dash Cypress, LLC
|
6842
|
+
systems
|
6843
|
+
|
6844
|
+
// wiki : 2013-11-07 Top Level Design, LLC
|
6845
|
+
wiki
|
6846
|
+
|
6847
|
+
// ceo : 2013-11-07 CEOTLD Pty Ltd
|
6848
|
+
ceo
|
6849
|
+
|
6850
|
+
// international : 2013-11-07 Wild Way, LLC
|
6851
|
+
international
|
6852
|
+
|
6853
|
+
// solar : 2013-11-07 Ruby Town, LLC
|
6854
|
+
solar
|
6855
|
+
|
6856
|
+
// company : 2013-11-07 Silver Avenue, LLC
|
6857
|
+
company
|
6858
|
+
|
6859
|
+
// education : 2013-11-07 Brice Way, LLC
|
6860
|
+
education
|
6861
|
+
|
6862
|
+
// training : 2013-11-07 Wild Willow, LLC
|
6863
|
+
training
|
6864
|
+
|
6865
|
+
// academy : 2013-11-07 Half Oaks, LLC
|
6866
|
+
academy
|
6867
|
+
|
6868
|
+
// marketing : 2013-11-07 Fern Pass, LLC
|
6869
|
+
marketing
|
6870
|
+
|
6871
|
+
// florist : 2013-11-08 Half Cypress, LLC
|
6872
|
+
florist
|
6873
|
+
|
6874
|
+
// solutions : 2013-11-07 Silver Cover, LLC
|
6875
|
+
solutions
|
6876
|
+
|
6877
|
+
// build : 2013-11-07 Plan Bee LLC
|
6878
|
+
build
|
6879
|
+
|
6880
|
+
// institute : 2013-11-07 Outer Maple, LLC
|
6881
|
+
institute
|
6882
|
+
|
6883
|
+
// builders : 2013-11-07 Atomic Madison, LLC
|
6884
|
+
builders
|
6885
|
+
|
6886
|
+
// red : 2013-11-07 Afilias Limited
|
6887
|
+
red
|
6888
|
+
|
6889
|
+
// blue : 2013-11-07 Afilias Limited
|
6890
|
+
blue
|
6891
|
+
|
6892
|
+
// ninja : 2013-11-07 United TLD Holdco Ltd.
|
6893
|
+
ninja
|
6894
|
+
|
6895
|
+
// business : 2013-11-07 Spring Cross, LLC
|
6896
|
+
business
|
6897
|
+
|
6898
|
+
// gal : 2013-11-07 Asociación puntoGAL
|
6899
|
+
gal
|
6900
|
+
|
6901
|
+
// social : 2013-11-07 United TLD Holdco Ltd.
|
6902
|
+
social
|
6903
|
+
|
6904
|
+
// house : 2013-11-07 Sugar Park, LLC
|
6905
|
+
house
|
6906
|
+
|
6907
|
+
// camp : 2013-11-07 Delta Dynamite, LLC
|
6908
|
+
camp
|
6909
|
+
|
6910
|
+
// immobilien : 2013-11-07 United TLD Holdco Ltd.
|
6911
|
+
immobilien
|
6912
|
+
|
6913
|
+
// moda : 2013-11-07 United TLD Holdco Ltd.
|
6914
|
+
moda
|
6915
|
+
|
6916
|
+
// glass : 2013-11-07 Black Cover, LLC
|
6917
|
+
glass
|
6918
|
+
|
6919
|
+
// management : 2013-11-07 John Goodbye, LLC
|
6920
|
+
management
|
6921
|
+
|
6922
|
+
// kaufen : 2013-11-07 United TLD Holdco Ltd.
|
6923
|
+
kaufen
|
6924
|
+
|
6925
|
+
// farm : 2013-11-07 Just Maple, LLC
|
6926
|
+
farm
|
6927
|
+
|
6928
|
+
// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
|
6929
|
+
公益
|
6930
|
+
|
6931
|
+
// xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
|
6932
|
+
政务
|
6933
|
+
|
6934
|
+
// club : 2013-11-08 .CLUB DOMAINS, LLC
|
6935
|
+
club
|
6936
|
+
|
6937
|
+
// voting : 2013-11-13 Valuetainment Corp.
|
6938
|
+
voting
|
6939
|
+
|
6940
|
+
// TOKYO : 2013-11-13 GMO Registry, Inc.
|
6941
|
+
tokyo
|
6942
|
+
|
6943
|
+
// moe : 2013-11-13 Interlink Co., Ltd.
|
6944
|
+
moe
|
6945
|
+
|
6946
|
+
// guitars : 2013-11-14 Uniregistry, Corp.
|
6947
|
+
guitars
|
6948
|
+
|
6949
|
+
// bargains : 2013-11-14 Half Hallow, LLC
|
6950
|
+
bargains
|
6951
|
+
|
6952
|
+
// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
|
6953
|
+
组织机构
|
6954
|
+
|
6955
|
+
// desi : 2013-11-14 Desi Networks LLC
|
6956
|
+
desi
|
6957
|
+
|
6958
|
+
// cool : 2013-11-14 Koko Lake, LLC
|
6959
|
+
cool
|
6960
|
+
|
6961
|
+
// boutique : 2013-11-14 Over Galley, LLC
|
6962
|
+
boutique
|
6963
|
+
|
6964
|
+
// pics : 2013-11-14 Uniregistry, Corp.
|
6965
|
+
pics
|
6966
|
+
|
6967
|
+
// xn--c1avg : 2013-11-14 Public Interest Registry
|
6968
|
+
орг
|
6969
|
+
|
6970
|
+
// xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
6971
|
+
公司
|
6972
|
+
|
6973
|
+
// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
6974
|
+
网络
|
6975
|
+
|
6976
|
+
// cheap : 2013-11-14 Sand Cover, LLC
|
6977
|
+
cheap
|
6978
|
+
|
6979
|
+
// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
|
6980
|
+
广东
|
6981
|
+
|
6982
|
+
// photo : 2013-11-14 Uniregistry, Corp.
|
6983
|
+
photo
|
6984
|
+
|
6985
|
+
// network : 2013-11-14 Trixy Manor, LLC
|
6986
|
+
network
|
6987
|
+
|
6988
|
+
// zone : 2013-11-14 Outer Falls, LLC
|
6989
|
+
zone
|
6990
|
+
|
6991
|
+
// xn--nqv7f : 2013-11-14 Public Interest Registry
|
6992
|
+
机构
|
6993
|
+
|
6994
|
+
// link : 2013-11-14 Uniregistry, Corp.
|
6995
|
+
link
|
6996
|
+
|
6997
|
+
// QPON : 2013-11-14 dotCOOL, Inc.
|
6998
|
+
qpon
|
6999
|
+
|
7000
|
+
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
7001
|
+
संगठन
|
7002
|
+
|
7003
|
+
// agency : 2013-11-14 Steel Falls, LLC
|
7004
|
+
agency
|
7005
|
+
|
7006
|
+
// tienda : 2013-11-14 Victor Manor, LLC
|
7007
|
+
tienda
|
7008
|
+
|
7009
|
+
// works : 2013-11-14 Little Dynamite, LLC
|
7010
|
+
works
|
7011
|
+
|
7012
|
+
// london : 2013-11-14 Dot London Domains Limited
|
7013
|
+
london
|
7014
|
+
|
7015
|
+
// watch : 2013-11-14 Sand Shadow, LLC
|
7016
|
+
watch
|
7017
|
+
|
7018
|
+
// rocks : 2013-11-14 Ruby Moon, LLC
|
7019
|
+
rocks
|
7020
|
+
|
7021
|
+
// SHIKSHA : 2013-11-14 Afilias Limited
|
7022
|
+
shiksha
|
7023
|
+
|
7024
|
+
// xn--d1acj3b : 2013-11-21 The Foundation for Network Initiatives “The Smart Internet”
|
7025
|
+
дети
|
7026
|
+
|
7027
|
+
// budapest : 2013-11-21 Top Level Domain Holdings Limited
|
7028
|
+
budapest
|
7029
|
+
|
7030
|
+
// nrw : 2013-11-21 Minds + Machines GmbH
|
7031
|
+
nrw
|
7032
|
+
|
7033
|
+
// VOTE : 2013-11-21 Monolith Registry LLC
|
7034
|
+
vote
|
7035
|
+
|
7036
|
+
// fishing : 2013-11-21 Top Level Domain Holdings Limited
|
7037
|
+
fishing
|
7038
|
+
|
7039
|
+
// expert : 2013-11-21 Magic Pass, LLC
|
7040
|
+
expert
|
7041
|
+
|
7042
|
+
// horse : 2013-11-21 Top Level Domain Holdings Limited
|
7043
|
+
horse
|
7044
|
+
|
7045
|
+
// christmas : 2013-11-21 Uniregistry, Corp.
|
7046
|
+
christmas
|
7047
|
+
|
7048
|
+
// cooking : 2013-11-21 Top Level Domain Holdings Limited
|
7049
|
+
cooking
|
7050
|
+
|
7051
|
+
// xn--czru2d : 2013-11-21 Zodiac Capricorn Limited
|
7052
|
+
商城
|
7053
|
+
|
7054
|
+
// casa : 2013-11-21 Top Level Domain Holdings Limited
|
7055
|
+
casa
|
7056
|
+
|
7057
|
+
// rich : 2013-11-21 I-REGISTRY Ltd., Niederlassung Deutschland
|
7058
|
+
rich
|
7059
|
+
|
7060
|
+
// VOTO : 2013-11-21 Monolith Registry LLC
|
7061
|
+
voto
|
7062
|
+
|
7063
|
+
// tools : 2013-11-21 Pioneer North, LLC
|
7064
|
+
tools
|
7065
|
+
|
7066
|
+
// xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
|
7067
|
+
八卦
|
7068
|
+
|
7069
|
+
// praxi : 2013-12-05 Praxi S.p.A.
|
7070
|
+
praxi
|
7071
|
+
|
7072
|
+
// events : 2013-12-05 Pioneer Maple, LLC
|
7073
|
+
events
|
7074
|
+
|
7075
|
+
// flights : 2013-12-05 Fox Station, LLC
|
7076
|
+
flights
|
7077
|
+
|
7078
|
+
// report : 2013-12-05 Binky Glen, LLC
|
7079
|
+
report
|
7080
|
+
|
7081
|
+
// partners : 2013-12-05 Magic Glen, LLC
|
7082
|
+
partners
|
7083
|
+
|
7084
|
+
// neustar : 2013-12-05 NeuStar, Inc.
|
7085
|
+
neustar
|
7086
|
+
|
7087
|
+
// rentals : 2013-12-05 Big Hollow,LLC
|
7088
|
+
rentals
|
7089
|
+
|
7090
|
+
// catering : 2013-12-05 New Falls. LLC
|
7091
|
+
catering
|
7092
|
+
|
7093
|
+
// community : 2013-12-05 Fox Orchard, LLC
|
7094
|
+
community
|
7095
|
+
|
7096
|
+
// maison : 2013-12-05 Victor Frostbite, LLC
|
7097
|
+
maison
|
7098
|
+
|
7099
|
+
// parts : 2013-12-05 Sea Goodbye, LLC
|
7100
|
+
parts
|
7101
|
+
|
7102
|
+
// cleaning : 2013-12-05 Fox Shadow, LLC
|
7103
|
+
cleaning
|
7104
|
+
|
7105
|
+
// okinawa : 2013-12-05 BusinessRalliart inc.
|
7106
|
+
okinawa
|
7107
|
+
|
7108
|
+
// foundation : 2013-12-05 John Dale, LLC
|
7109
|
+
foundation
|
7110
|
+
|
7111
|
+
// properties : 2013-12-05 Big Pass, LLC
|
7112
|
+
properties
|
7113
|
+
|
7114
|
+
// vacations : 2013-12-05 Atomic Tigers, LLC
|
7115
|
+
vacations
|
7116
|
+
|
7117
|
+
// productions : 2013-12-05 Magic Birch, LLC
|
7118
|
+
productions
|
7119
|
+
|
7120
|
+
// industries : 2013-12-05 Outer House, LLC
|
7121
|
+
industries
|
7122
|
+
|
7123
|
+
// haus : 2013-12-05 Pixie Edge, LLC
|
7124
|
+
haus
|
7125
|
+
|
7126
|
+
// vision : 2013-12-05 Koko Station, LLC
|
7127
|
+
vision
|
7128
|
+
|
7129
|
+
// mormon : 2013-12-05 IRI Domain Management, LLC (""Applicant"")
|
7130
|
+
mormon
|
7131
|
+
|
7132
|
+
// cards : 2013-12-05 Foggy Hollow, LLC
|
7133
|
+
cards
|
7134
|
+
|
7135
|
+
// ink : 2013-12-05 Top Level Design, LLC
|
7136
|
+
ink
|
7137
|
+
|
7138
|
+
// villas : 2013-12-05 New Sky, LLC
|
7139
|
+
villas
|
7140
|
+
|
7141
|
+
// consulting : 2013-12-05 Pixie Station, LLC
|
7142
|
+
consulting
|
7143
|
+
|
7144
|
+
// cruises : 2013-12-05 Spring Way, LLC
|
7145
|
+
cruises
|
7146
|
+
|
7147
|
+
// krd : 2013-12-05 KRG Department of Information Technology
|
7148
|
+
krd
|
7149
|
+
|
7150
|
+
// xyz : 2013-12-05 XYZ.COM LLC
|
7151
|
+
xyz
|
7152
|
+
|
7153
|
+
// dating : 2013-12-05 Pine Fest, LLC
|
7154
|
+
dating
|
7155
|
+
|
7156
|
+
// exposed : 2013-12-05 Victor Beach, LLC
|
7157
|
+
exposed
|
7158
|
+
|
7159
|
+
// condos : 2013-12-05 Pine House, LLC
|
7160
|
+
condos
|
7161
|
+
|
7162
|
+
// eus : 2013-12-12 Puntueus Fundazioa
|
7163
|
+
eus
|
7164
|
+
|
7165
|
+
// Caravan : 2013-12-12 Caravan International, Inc.
|
7166
|
+
caravan
|
7167
|
+
|
7168
|
+
// actor : 2013-12-12 United TLD Holdco Ltd.
|
7169
|
+
actor
|
7170
|
+
|
7171
|
+
// saarland : 2013-12-12 dotSaarland GmbH
|
7172
|
+
saarland
|
7173
|
+
|
7174
|
+
// yokohama : 2013-12-12 GMO Registry, Inc.
|
7175
|
+
yokohama
|
7176
|
+
|
7177
|
+
// pub : 2013-12-12 United TLD Holdco Ltd.
|
7178
|
+
pub
|
7179
|
+
|
7180
|
+
// xn--p1acf : 2013-12-12 Rusnames Limited
|
7181
|
+
рус
|
7182
|
+
|
7183
|
+
// ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
|
7184
|
+
ren
|
7185
|
+
|
7186
|
+
// fish : 2013-12-12 Fox Woods, LLC
|
7187
|
+
fish
|
7188
|
+
|
7189
|
+
// BAR : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
|
7190
|
+
bar
|
7191
|
+
|
7192
|
+
// DNP : 2013-12-13 Dai Nippon Printing Co., Ltd.
|
7193
|
+
dnp
|
7194
|
+
|
7195
|
+
// bid : 2013-12-19 dot Bid Limited
|
7196
|
+
bid
|
7197
|
+
|
7198
|
+
// supply : 2013-12-19 Half Falls, LLC
|
7199
|
+
supply
|
7200
|
+
|
7201
|
+
// Miami : 2013-12-19 Top Level Domain Holdings Limited
|
7202
|
+
miami
|
7203
|
+
|
7204
|
+
// supplies : 2013-12-19 Atomic Fields, LLC
|
7205
|
+
supplies
|
7206
|
+
|
7207
|
+
// quebec : 2013-12-19 PointQuébec Inc
|
7208
|
+
quebec
|
7209
|
+
|
7210
|
+
// MOSCOW : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
|
7211
|
+
moscow
|
7212
|
+
|
7213
|
+
// globo : 2013-12-19 Globo Comunicação e Participações S.A
|
7214
|
+
globo
|
7215
|
+
|
7216
|
+
// AXA : 2013-12-19 AXA SA
|
7217
|
+
axa
|
7218
|
+
|
7219
|
+
// xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
|
7220
|
+
москва
|
7221
|
+
|
7222
|
+
// xn--czrs0t : 2013-12-19 Wild Island, LLC
|
7223
|
+
商店
|
7224
|
+
|
7225
|
+
// vodka : 2013-12-19 Top Level Domain Holdings Limited
|
7226
|
+
vodka
|
7227
|
+
|
7228
|
+
// REST : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
|
7229
|
+
rest
|
7230
|
+
|
7231
|
+
// frogans : 2013-12-19 OP3FT
|
7232
|
+
frogans
|
7233
|
+
|
7234
|
+
// WTC : 2013-12-19 World Trade Centers Association, Inc.
|
7235
|
+
wtc
|
7236
|
+
|
7237
|
+
// rodeo : 2013-12-19 Top Level Domain Holdings Limited
|
7238
|
+
rodeo
|
7239
|
+
|
7240
|
+
// sohu : 2013-12-19 Sohu.com Limited
|
7241
|
+
sohu
|
7242
|
+
|
7243
|
+
// BEST : 2013-12-19 BestTLD Pty Ltd
|
7244
|
+
best
|
7245
|
+
|
7246
|
+
// country : 2013-12-19 Top Level Domain Holdings Limited
|
7247
|
+
country
|
7248
|
+
|
7249
|
+
// KRED : 2013-12-19 KredTLD Pty Ltd
|
7250
|
+
kred
|
7251
|
+
|
7252
|
+
// feedback : 2013-12-19 Top Level Spectrum, Inc.
|
7253
|
+
feedback
|
7254
|
+
|
7255
|
+
// work : 2013-12-19 Top Level Domain Holdings Limited
|
7256
|
+
work
|
7257
|
+
|
7258
|
+
// luxe : 2014-01-09 Top Level Domain Holdings Limited
|
7259
|
+
luxe
|
7260
|
+
|
7261
|
+
// ryukyu : 2014-01-09 BusinessRalliart inc.
|
7262
|
+
ryukyu
|
7263
|
+
|
7264
|
+
// autos : 2014-01-09 DERAutos, LLC
|
7265
|
+
autos
|
7266
|
+
|
7267
|
+
// homes : 2014-01-09 DERHomes, LLC
|
7268
|
+
homes
|
7269
|
+
|
7270
|
+
// jetzt : 2014-01-09 New TLD Company AB
|
7271
|
+
jetzt
|
7272
|
+
|
7273
|
+
// yachts : 2014-01-09 DERYachts, LLC
|
7274
|
+
yachts
|
7275
|
+
|
7276
|
+
// motorcycles : 2014-01-09 DERMotorcycles, LLC
|
7277
|
+
motorcycles
|
7278
|
+
|
7279
|
+
// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
7280
|
+
mini
|
7281
|
+
|
7282
|
+
// ggee : 2014-01-09 GMO Internet, Inc.
|
7283
|
+
ggee
|
7284
|
+
|
7285
|
+
// beer : 2014-01-09 Top Level Domain Holdings Limited
|
7286
|
+
beer
|
7287
|
+
|
7288
|
+
// xn--1qqw23a : 2014-01-13 Guangzhou YU Wei Information Technology Co., Ltd.
|
7289
|
+
佛山
|
7290
|
+
|
7291
|
+
// college : 2014-01-16 XYZ.COM LLC
|
7292
|
+
college
|
7293
|
+
|
7294
|
+
// ovh : 2014-01-16 OVH SAS
|
7295
|
+
ovh
|
7296
|
+
|
7297
|
+
// meet : 2014-01-16 Afilias Limited
|
7298
|
+
meet
|
7299
|
+
|
7300
|
+
// xn--ses554g : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
|
7301
|
+
网址
|
7302
|
+
|
7303
|
+
// gop : 2014-01-16 Republican State Leadership Committee, Inc.
|
7304
|
+
gop
|
7305
|
+
|
7306
|
+
// blackfriday : 2014-01-16 Uniregistry, Corp.
|
7307
|
+
blackfriday
|
7308
|
+
|
7309
|
+
// lacaixa : 2014-01-16 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
|
7310
|
+
lacaixa
|
7311
|
+
|
7312
|
+
// xn--czr694b : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED
|
7313
|
+
商标
|
7314
|
+
|
7315
|
+
// vegas : 2014-01-16 Dot Vegas, Inc.
|
7316
|
+
vegas
|
7317
|
+
|
7318
|
+
// black : 2014-01-16 Afilias Limited
|
7319
|
+
black
|
7320
|
+
|
7321
|
+
|
6558
7322
|
// ===END ICANN DOMAINS===
|
6559
7323
|
// ===BEGIN PRIVATE DOMAINS===
|
6560
7324
|
|
6561
7325
|
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
|
6562
|
-
//
|
7326
|
+
// Submitted by Donavan Miller <donavanm@amazon.com> 2013-03-22
|
6563
7327
|
cloudfront.net
|
6564
7328
|
|
6565
7329
|
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
6566
|
-
//
|
7330
|
+
// Submitted by Osman Surkatty <osmans@amazon.com> 2013-04-02
|
6567
7331
|
compute.amazonaws.com
|
6568
7332
|
us-east-1.amazonaws.com
|
6569
7333
|
compute-1.amazonaws.com
|
@@ -6578,16 +7342,16 @@ us-gov-west-1.compute.amazonaws.com
|
|
6578
7342
|
us-west-1.compute.amazonaws.com
|
6579
7343
|
us-west-2.compute.amazonaws.com
|
6580
7344
|
|
6581
|
-
// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
|
6582
|
-
//
|
7345
|
+
// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
|
7346
|
+
// Submitted by Adam Stein <astein@amazon.com> 2013-04-02
|
6583
7347
|
elasticbeanstalk.com
|
6584
7348
|
|
6585
7349
|
// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
|
6586
|
-
//
|
7350
|
+
// Submitted by Scott Vidmar <svidmar@amazon.com> 2013-03-27
|
6587
7351
|
elb.amazonaws.com
|
6588
7352
|
|
6589
7353
|
// Amazon S3 : https://aws.amazon.com/s3/
|
6590
|
-
//
|
7354
|
+
// Submitted by Courtney Eckhardt <coec@amazon.com> 2013-03-22
|
6591
7355
|
s3.amazonaws.com
|
6592
7356
|
s3-us-west-2.amazonaws.com
|
6593
7357
|
s3-us-west-1.amazonaws.com
|
@@ -6609,11 +7373,11 @@ s3-website-sa-east-1.amazonaws.com
|
|
6609
7373
|
s3-website-us-gov-west-1.amazonaws.com
|
6610
7374
|
|
6611
7375
|
// BetaInABox
|
6612
|
-
//
|
7376
|
+
// Submitted by adrian@betainabox.com 2012-09-13
|
6613
7377
|
betainabox.com
|
6614
7378
|
|
6615
7379
|
// CentralNic : http://www.centralnic.com/names/domains
|
6616
|
-
//
|
7380
|
+
// Submitted by registry <gavin.brown@centralnic.com> 2012-09-27
|
6617
7381
|
ae.org
|
6618
7382
|
ar.com
|
6619
7383
|
br.com
|
@@ -6646,7 +7410,7 @@ za.com
|
|
6646
7410
|
c.la
|
6647
7411
|
|
6648
7412
|
// cloudControl : https://www.cloudcontrol.com/
|
6649
|
-
//
|
7413
|
+
// Submitted by Tobias Wilken <tw@cloudcontrol.com> 2013-07-23
|
6650
7414
|
cloudcontrolled.com
|
6651
7415
|
cloudcontrolapp.com
|
6652
7416
|
|
@@ -6657,8 +7421,12 @@ co.ca
|
|
6657
7421
|
co.nl
|
6658
7422
|
co.no
|
6659
7423
|
|
7424
|
+
// Cupcake : https://cupcake.io/
|
7425
|
+
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io> 2013-10-08
|
7426
|
+
cupcake.is
|
7427
|
+
|
6660
7428
|
// DreamHost : http://www.dreamhost.com/
|
6661
|
-
//
|
7429
|
+
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com> 2012-10-02
|
6662
7430
|
dreamhosters.com
|
6663
7431
|
|
6664
7432
|
// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
|
@@ -6943,7 +7711,7 @@ worse-than.tv
|
|
6943
7711
|
writesthisblog.com
|
6944
7712
|
|
6945
7713
|
// Fastly Inc. http://www.fastly.com/
|
6946
|
-
//
|
7714
|
+
// Submitted by Vladimir Vuksan <vladimir@fastly.com> 2013-05-31
|
6947
7715
|
a.ssl.fastly.net
|
6948
7716
|
b.ssl.fastly.net
|
6949
7717
|
global.ssl.fastly.net
|
@@ -6951,15 +7719,16 @@ a.prod.fastly.net
|
|
6951
7719
|
global.prod.fastly.net
|
6952
7720
|
|
6953
7721
|
// GitHub, Inc.
|
6954
|
-
//
|
7722
|
+
// Submitted by Ben Toews <btoews@github.com> 2014-02-06
|
6955
7723
|
github.io
|
7724
|
+
githubusercontent.com
|
6956
7725
|
|
6957
7726
|
// GlobeHosting, Inc.
|
6958
|
-
//
|
7727
|
+
// Submitted by Zoltan Egresi <egresi@globehosting.com> 2013-07-12
|
6959
7728
|
ro.com
|
6960
7729
|
|
6961
7730
|
// Google, Inc.
|
6962
|
-
//
|
7731
|
+
// Submitted by Eduardo Vela <evn@google.com> 2012-10-24
|
6963
7732
|
appspot.com
|
6964
7733
|
blogspot.be
|
6965
7734
|
blogspot.bj
|
@@ -7004,14 +7773,15 @@ blogspot.tw
|
|
7004
7773
|
codespot.com
|
7005
7774
|
googleapis.com
|
7006
7775
|
googlecode.com
|
7776
|
+
withgoogle.com
|
7007
7777
|
|
7008
7778
|
// Heroku : https://www.heroku.com/
|
7009
|
-
//
|
7779
|
+
// Submitted by Tom Maher <tmaher@heroku.com> 2013-05-02
|
7010
7780
|
herokuapp.com
|
7011
7781
|
herokussl.com
|
7012
7782
|
|
7013
7783
|
// iki.fi
|
7014
|
-
//
|
7784
|
+
// Submitted by Hannu Aronsson <haa@iki.fi> 2009-11-05
|
7015
7785
|
iki.fi
|
7016
7786
|
|
7017
7787
|
// info.at : http://www.info.at/
|
@@ -7021,24 +7791,30 @@ info.at
|
|
7021
7791
|
// Michau Enterprises Limited : http://www.co.pl/
|
7022
7792
|
co.pl
|
7023
7793
|
|
7794
|
+
// Microsoft : http://microsoft.com
|
7795
|
+
// Submitted by Barry Dorrans <bdorrans@microsoft.com> 2014-01-24
|
7796
|
+
azurewebsites.net
|
7797
|
+
azure-mobile.net
|
7798
|
+
cloudapp.net
|
7799
|
+
|
7024
7800
|
// NYC.mn : http://www.information.nyc.mn
|
7025
|
-
//
|
7801
|
+
// Submitted by Matthew Brown <mattbrown@nyc.mn> 2013-03-11
|
7026
7802
|
nyc.mn
|
7027
7803
|
|
7028
7804
|
// Opera Software, A.S.A.
|
7029
|
-
//
|
7805
|
+
// Submitted by Yngve Pettersen <yngve@opera.com> 2009-11-26
|
7030
7806
|
operaunite.com
|
7031
7807
|
|
7032
7808
|
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
|
7033
|
-
//
|
7809
|
+
// Submitted by Tim Kramer <tkramer@rhcloud.com> 2012-10-24
|
7034
7810
|
rhcloud.com
|
7035
7811
|
|
7036
7812
|
// priv.at : http://www.nic.priv.at/
|
7037
|
-
//
|
7813
|
+
// Submitted by registry <lendl@nic.at> 2008-06-09
|
7038
7814
|
priv.at
|
7039
7815
|
|
7040
7816
|
// ZaNiC : http://www.za.net/
|
7041
|
-
//
|
7817
|
+
// Submitted by registry <hostmaster@nic.za.net> 2009-10-03
|
7042
7818
|
za.net
|
7043
7819
|
za.org
|
7044
7820
|
|