domain_prefix 0.4.20190409 → 0.4.20210906
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +7 -5
- data/Gemfile +1 -1
- data/{LICENSE → LICENSE.txt} +1 -1
- data/README.md +14 -14
- data/Rakefile +14 -15
- data/VERSION +1 -1
- data/data/effective_tld_names.dat +1557 -521
- data/domain_prefix.gemspec +17 -22
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19377d93943aa3c58af1fecd3377d8f4d71234c2cea689ee16834dcee1cb829e
|
4
|
+
data.tar.gz: b2a9e3ffd95c6e9742efc85769779addefb3dc08b4db659e330ec16e61c0a9b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3743a23fca49a94bbbda10351061cd60590cb0cda5fa5bf0be651899a7afacbf9aefb9a05782463601e837c478c39e180aba03ef82647ff4833d51e8885c89b
|
7
|
+
data.tar.gz: 1000e5a8d62214ecfcc774c1bae5580483d71d2bc9be46eaab13db3a531b99c3d8402e12838f1c75fc98dd906539d8237ccbaf6ee4e290397ad0fe1c01fe6df9
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/{LICENSE → LICENSE.txt}
RENAMED
data/README.md
CHANGED
@@ -8,22 +8,22 @@ and can be used to assert if a given domain name is valid or not.
|
|
8
8
|
The `registered_domain` method returns the name of the registered domain
|
9
9
|
associated witha given hostname, or Fully Qualified Domain Name (FQDN):
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
DomainPrefix.registered_domain('test.example.com')
|
12
|
+
# => 'example.com'
|
13
|
+
DomainPrefix.registered_domain('test.example.ca')
|
14
|
+
# => 'example.ca'
|
15
|
+
DomainPrefix.registered_domain('test.example.co.uk')
|
16
|
+
# => 'example.co.uk'
|
17
17
|
|
18
18
|
The `public_suffix` method returns the suffix into which this domain is
|
19
19
|
registered:
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
21
|
+
DomainPrefix.public_suffix('test.example.com')
|
22
|
+
# => 'com'
|
23
|
+
DomainPrefix.public_suffix('test.example.ca')
|
24
|
+
# => 'ca'
|
25
|
+
DomainPrefix.public_suffix('test.example.co.uk')
|
26
|
+
# => 'co.uk'
|
27
27
|
|
28
28
|
Note that the "public suffix" component of a domain can be quite lengthy
|
29
29
|
depending on the context. Some countries have three or more levels of structure
|
@@ -54,5 +54,5 @@ project is included in this gem.
|
|
54
54
|
|
55
55
|
## Copyright
|
56
56
|
|
57
|
-
Copyright (c) 2009-
|
58
|
-
See LICENSE for details.
|
57
|
+
Copyright (c) 2009-2019 Scott Tadman, PostageApp Ltd.
|
58
|
+
See [LICENSE](LICENSE.txt) for details.
|
data/Rakefile
CHANGED
@@ -2,22 +2,23 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
|
4
4
|
require 'bundler/setup'
|
5
|
+
require 'open-uri'
|
5
6
|
|
6
7
|
begin
|
7
|
-
require '
|
8
|
-
|
9
|
-
|
10
|
-
gem.name =
|
11
|
-
gem.summary =
|
12
|
-
gem.description =
|
13
|
-
gem.email =
|
14
|
-
gem.homepage =
|
8
|
+
require 'juwelier'
|
9
|
+
|
10
|
+
Juwelier::Tasks.new do |gem|
|
11
|
+
gem.name = 'domain_prefix'
|
12
|
+
gem.summary = 'Domain Prefix Extraction Library'
|
13
|
+
gem.description = 'A library to extract information about top-level domain and registered name from generic and international domain names'
|
14
|
+
gem.email = 'tadman@postageapp.com'
|
15
|
+
gem.homepage = 'http://github.com/postageapp/domain_prefix'
|
15
16
|
gem.authors = [ 'Scott Tadman' ]
|
16
17
|
end
|
17
18
|
|
18
|
-
|
19
|
+
Juwelier::GemcutterTasks.new
|
19
20
|
rescue LoadError
|
20
|
-
puts
|
21
|
+
puts 'Juwelier (or a dependency) not available. Install it with: gem install Juwelier'
|
21
22
|
end
|
22
23
|
|
23
24
|
require 'rake/testtask'
|
@@ -29,17 +30,15 @@ Rake::TestTask.new(:test) do |test|
|
|
29
30
|
end
|
30
31
|
|
31
32
|
namespace :domain_prefix do
|
32
|
-
desc
|
33
|
+
desc 'Update the domain information'
|
33
34
|
task :update do
|
34
|
-
|
35
|
-
|
36
|
-
open("https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat") do |source|
|
35
|
+
URI.open('https://publicsuffix.org/list/public_suffix_list.dat') do |source|
|
37
36
|
open(File.expand_path(File.join('data', 'effective_tld_names.dat'), File.dirname(__FILE__)), 'w') do |dest|
|
38
37
|
dest.write(source.read)
|
39
38
|
end
|
40
39
|
end
|
41
40
|
|
42
|
-
open(
|
41
|
+
URI.open('https://raw.githubusercontent.com/publicsuffix/list/master/tests/test_psl.txt') do |source|
|
43
42
|
open(File.expand_path(File.join('test', 'sample', 'test.txt'), File.dirname(__FILE__)), 'w') do |dest|
|
44
43
|
dest.write(source.read)
|
45
44
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.20210906
|
@@ -79,7 +79,6 @@ exchange.aero
|
|
79
79
|
express.aero
|
80
80
|
federation.aero
|
81
81
|
flight.aero
|
82
|
-
freight.aero
|
83
82
|
fuel.aero
|
84
83
|
gliding.aero
|
85
84
|
government.aero
|
@@ -213,6 +212,7 @@ ac.at
|
|
213
212
|
co.at
|
214
213
|
gv.at
|
215
214
|
or.at
|
215
|
+
sth.ac.at
|
216
216
|
|
217
217
|
// au : https://en.wikipedia.org/wiki/.au
|
218
218
|
// http://www.auda.org.au/
|
@@ -240,6 +240,8 @@ vic.au
|
|
240
240
|
wa.au
|
241
241
|
// 3LDs
|
242
242
|
act.edu.au
|
243
|
+
catholic.edu.au
|
244
|
+
// eq.edu.au - Removed at the request of the Queensland Department of Education
|
243
245
|
nsw.edu.au
|
244
246
|
nt.edu.au
|
245
247
|
qld.edu.au
|
@@ -255,6 +257,9 @@ sa.gov.au
|
|
255
257
|
tas.gov.au
|
256
258
|
vic.gov.au
|
257
259
|
wa.gov.au
|
260
|
+
// 4LDs
|
261
|
+
// education.tas.edu.au - Removed at the request of the Department of Education Tasmania
|
262
|
+
schools.nsw.edu.au
|
258
263
|
|
259
264
|
// aw : https://en.wikipedia.org/wiki/.aw
|
260
265
|
aw
|
@@ -451,6 +456,7 @@ aju.br
|
|
451
456
|
am.br
|
452
457
|
anani.br
|
453
458
|
aparecida.br
|
459
|
+
app.br
|
454
460
|
arq.br
|
455
461
|
art.br
|
456
462
|
ato.br
|
@@ -458,6 +464,7 @@ b.br
|
|
458
464
|
barueri.br
|
459
465
|
belem.br
|
460
466
|
bhz.br
|
467
|
+
bib.br
|
461
468
|
bio.br
|
462
469
|
blog.br
|
463
470
|
bmd.br
|
@@ -472,14 +479,19 @@ cnt.br
|
|
472
479
|
com.br
|
473
480
|
contagem.br
|
474
481
|
coop.br
|
482
|
+
coz.br
|
475
483
|
cri.br
|
476
484
|
cuiaba.br
|
477
485
|
curitiba.br
|
478
486
|
def.br
|
487
|
+
des.br
|
488
|
+
det.br
|
489
|
+
dev.br
|
479
490
|
ecn.br
|
480
491
|
eco.br
|
481
492
|
edu.br
|
482
493
|
emp.br
|
494
|
+
enf.br
|
483
495
|
eng.br
|
484
496
|
esp.br
|
485
497
|
etc.br
|
@@ -495,6 +507,7 @@ fot.br
|
|
495
507
|
foz.br
|
496
508
|
fst.br
|
497
509
|
g12.br
|
510
|
+
geo.br
|
498
511
|
ggf.br
|
499
512
|
goiania.br
|
500
513
|
gov.br
|
@@ -538,6 +551,7 @@ jor.br
|
|
538
551
|
jus.br
|
539
552
|
leg.br
|
540
553
|
lel.br
|
554
|
+
log.br
|
541
555
|
londrina.br
|
542
556
|
macapa.br
|
543
557
|
maceio.br
|
@@ -570,6 +584,7 @@ qsl.br
|
|
570
584
|
radio.br
|
571
585
|
rec.br
|
572
586
|
recife.br
|
587
|
+
rep.br
|
573
588
|
ribeirao.br
|
574
589
|
rio.br
|
575
590
|
riobranco.br
|
@@ -580,12 +595,15 @@ santamaria.br
|
|
580
595
|
santoandre.br
|
581
596
|
saobernardo.br
|
582
597
|
saogonca.br
|
598
|
+
seg.br
|
583
599
|
sjc.br
|
584
600
|
slg.br
|
585
601
|
slz.br
|
586
602
|
sorocaba.br
|
587
603
|
srv.br
|
588
604
|
taxi.br
|
605
|
+
tc.br
|
606
|
+
tec.br
|
589
607
|
teo.br
|
590
608
|
the.br
|
591
609
|
tmp.br
|
@@ -713,11 +731,12 @@ gouv.ci
|
|
713
731
|
*.ck
|
714
732
|
!www.ck
|
715
733
|
|
716
|
-
// cl : https://
|
734
|
+
// cl : https://www.nic.cl
|
735
|
+
// Confirmed by .CL registry <hsalgado@nic.cl>
|
717
736
|
cl
|
718
|
-
gov.cl
|
719
|
-
gob.cl
|
720
737
|
co.cl
|
738
|
+
gob.cl
|
739
|
+
gov.cl
|
721
740
|
mil.cl
|
722
741
|
|
723
742
|
// cm : https://en.wikipedia.org/wiki/.cm plus bug 981927
|
@@ -887,16 +906,18 @@ org.do
|
|
887
906
|
sld.do
|
888
907
|
web.do
|
889
908
|
|
890
|
-
// dz :
|
909
|
+
// dz : http://www.nic.dz/images/pdf_nic/charte.pdf
|
891
910
|
dz
|
911
|
+
art.dz
|
912
|
+
asso.dz
|
892
913
|
com.dz
|
914
|
+
edu.dz
|
915
|
+
gov.dz
|
893
916
|
org.dz
|
894
917
|
net.dz
|
895
|
-
gov.dz
|
896
|
-
edu.dz
|
897
|
-
asso.dz
|
898
918
|
pol.dz
|
899
|
-
|
919
|
+
soc.dz
|
920
|
+
tm.dz
|
900
921
|
|
901
922
|
// ec : http://www.nic.ec/reg/paso1.asp
|
902
923
|
// Submitted by registry <vabboud@nic.ec>
|
@@ -976,13 +997,28 @@ fi
|
|
976
997
|
// TODO: Check for updates (expected to be phased out around Q1/2009)
|
977
998
|
aland.fi
|
978
999
|
|
979
|
-
// fj :
|
980
|
-
|
1000
|
+
// fj : http://domains.fj/
|
1001
|
+
// Submitted by registry <garth.miller@cocca.org.nz> 2020-02-11
|
1002
|
+
fj
|
1003
|
+
ac.fj
|
1004
|
+
biz.fj
|
1005
|
+
com.fj
|
1006
|
+
gov.fj
|
1007
|
+
info.fj
|
1008
|
+
mil.fj
|
1009
|
+
name.fj
|
1010
|
+
net.fj
|
1011
|
+
org.fj
|
1012
|
+
pro.fj
|
981
1013
|
|
982
1014
|
// fk : https://en.wikipedia.org/wiki/.fk
|
983
1015
|
*.fk
|
984
1016
|
|
985
1017
|
// fm : https://en.wikipedia.org/wiki/.fm
|
1018
|
+
com.fm
|
1019
|
+
edu.fm
|
1020
|
+
net.fm
|
1021
|
+
org.fm
|
986
1022
|
fm
|
987
1023
|
|
988
1024
|
// fo : https://en.wikipedia.org/wiki/.fo
|
@@ -1022,6 +1058,8 @@ ga
|
|
1022
1058
|
gb
|
1023
1059
|
|
1024
1060
|
// gd : https://en.wikipedia.org/wiki/.gd
|
1061
|
+
edu.gd
|
1062
|
+
gov.gd
|
1025
1063
|
gd
|
1026
1064
|
|
1027
1065
|
// ge : http://www.nic.net.ge/policy_en.pdf
|
@@ -1113,7 +1151,7 @@ gov.gr
|
|
1113
1151
|
// gs : https://en.wikipedia.org/wiki/.gs
|
1114
1152
|
gs
|
1115
1153
|
|
1116
|
-
// gt :
|
1154
|
+
// gt : https://www.gt/sitio/registration_policy.php?lang=en
|
1117
1155
|
gt
|
1118
1156
|
com.gt
|
1119
1157
|
edu.gt
|
@@ -1362,7 +1400,7 @@ it
|
|
1362
1400
|
gov.it
|
1363
1401
|
edu.it
|
1364
1402
|
// Reserved geo-names (regions and provinces):
|
1365
|
-
//
|
1403
|
+
// https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
|
1366
1404
|
// Regions
|
1367
1405
|
abr.it
|
1368
1406
|
abruzzo.it
|
@@ -3766,7 +3804,7 @@ gov.lc
|
|
3766
3804
|
// li : https://en.wikipedia.org/wiki/.li
|
3767
3805
|
li
|
3768
3806
|
|
3769
|
-
// lk :
|
3807
|
+
// lk : https://www.nic.lk/index.php/domain-registration/lk-domain-naming-structure
|
3770
3808
|
lk
|
3771
3809
|
gov.lk
|
3772
3810
|
sch.lk
|
@@ -4333,8 +4371,6 @@ niepce.museum
|
|
4333
4371
|
norfolk.museum
|
4334
4372
|
north.museum
|
4335
4373
|
nrw.museum
|
4336
|
-
nuernberg.museum
|
4337
|
-
nuremberg.museum
|
4338
4374
|
nyc.museum
|
4339
4375
|
nyny.museum
|
4340
4376
|
oceanographic.museum
|
@@ -4557,15 +4593,17 @@ gob.mx
|
|
4557
4593
|
edu.mx
|
4558
4594
|
net.mx
|
4559
4595
|
|
4560
|
-
// my : http://www.mynic.
|
4596
|
+
// my : http://www.mynic.my/
|
4597
|
+
// Available strings: https://mynic.my/resources/domains/buying-a-domain/
|
4561
4598
|
my
|
4599
|
+
biz.my
|
4562
4600
|
com.my
|
4563
|
-
net.my
|
4564
|
-
org.my
|
4565
|
-
gov.my
|
4566
4601
|
edu.my
|
4602
|
+
gov.my
|
4567
4603
|
mil.my
|
4568
4604
|
name.my
|
4605
|
+
net.my
|
4606
|
+
org.my
|
4569
4607
|
|
4570
4608
|
// mz : http://www.uem.mz/
|
4571
4609
|
// Submitted by registry <antonio@uem.mz>
|
@@ -4662,13 +4700,13 @@ web.ni
|
|
4662
4700
|
// ccTLD for the Netherlands
|
4663
4701
|
nl
|
4664
4702
|
|
4665
|
-
// no :
|
4666
|
-
//
|
4667
|
-
//
|
4668
|
-
//
|
4669
|
-
// https://
|
4703
|
+
// no : https://www.norid.no/en/om-domenenavn/regelverk-for-no/
|
4704
|
+
// Norid geographical second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-b/
|
4705
|
+
// Norid category second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-c/
|
4706
|
+
// Norid category second-level domains managed by parties other than Norid : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-d/
|
4707
|
+
// RSS feed: https://teknisk.norid.no/en/feed/
|
4670
4708
|
no
|
4671
|
-
// Norid
|
4709
|
+
// Norid category second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-c/
|
4672
4710
|
fhs.no
|
4673
4711
|
vgs.no
|
4674
4712
|
fylkesbibl.no
|
@@ -4676,13 +4714,13 @@ folkebibl.no
|
|
4676
4714
|
museum.no
|
4677
4715
|
idrett.no
|
4678
4716
|
priv.no
|
4679
|
-
//
|
4717
|
+
// Norid category second-level domains managed by parties other than Norid : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-d/
|
4680
4718
|
mil.no
|
4681
4719
|
stat.no
|
4682
4720
|
dep.no
|
4683
4721
|
kommune.no
|
4684
4722
|
herad.no
|
4685
|
-
//
|
4723
|
+
// Norid geographical second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-b/
|
4686
4724
|
// counties
|
4687
4725
|
aa.no
|
4688
4726
|
ah.no
|
@@ -5882,26 +5920,19 @@ gov.rs
|
|
5882
5920
|
in.rs
|
5883
5921
|
org.rs
|
5884
5922
|
|
5885
|
-
// ru : https://cctld.ru/
|
5923
|
+
// ru : https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
|
5924
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
5886
5925
|
ru
|
5887
|
-
ac.ru
|
5888
|
-
edu.ru
|
5889
|
-
gov.ru
|
5890
|
-
int.ru
|
5891
|
-
mil.ru
|
5892
|
-
test.ru
|
5893
5926
|
|
5894
|
-
// rw :
|
5927
|
+
// rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
|
5895
5928
|
rw
|
5896
|
-
gov.rw
|
5897
|
-
net.rw
|
5898
|
-
edu.rw
|
5899
5929
|
ac.rw
|
5900
|
-
com.rw
|
5901
5930
|
co.rw
|
5902
|
-
|
5931
|
+
coop.rw
|
5932
|
+
gov.rw
|
5903
5933
|
mil.rw
|
5904
|
-
|
5934
|
+
net.rw
|
5935
|
+
org.rw
|
5905
5936
|
|
5906
5937
|
// sa : http://www.nic.net.sa/
|
5907
5938
|
sa
|
@@ -6036,15 +6067,30 @@ org.sn
|
|
6036
6067
|
perso.sn
|
6037
6068
|
univ.sn
|
6038
6069
|
|
6039
|
-
// so : http://
|
6070
|
+
// so : http://sonic.so/policies/
|
6040
6071
|
so
|
6041
6072
|
com.so
|
6073
|
+
edu.so
|
6074
|
+
gov.so
|
6075
|
+
me.so
|
6042
6076
|
net.so
|
6043
6077
|
org.so
|
6044
6078
|
|
6045
6079
|
// sr : https://en.wikipedia.org/wiki/.sr
|
6046
6080
|
sr
|
6047
6081
|
|
6082
|
+
// ss : https://registry.nic.ss/
|
6083
|
+
// Submitted by registry <technical@nic.ss>
|
6084
|
+
ss
|
6085
|
+
biz.ss
|
6086
|
+
com.ss
|
6087
|
+
edu.ss
|
6088
|
+
gov.ss
|
6089
|
+
me.ss
|
6090
|
+
net.ss
|
6091
|
+
org.ss
|
6092
|
+
sch.ss
|
6093
|
+
|
6048
6094
|
// st : http://www.nic.st/html/policyrules/
|
6049
6095
|
st
|
6050
6096
|
co.st
|
@@ -6052,7 +6098,6 @@ com.st
|
|
6052
6098
|
consulado.st
|
6053
6099
|
edu.st
|
6054
6100
|
embaixada.st
|
6055
|
-
gov.st
|
6056
6101
|
mil.st
|
6057
6102
|
net.st
|
6058
6103
|
org.st
|
@@ -6191,34 +6236,33 @@ org.to
|
|
6191
6236
|
edu.to
|
6192
6237
|
mil.to
|
6193
6238
|
|
6194
|
-
//
|
6195
|
-
//
|
6196
|
-
//
|
6239
|
+
// tr : https://nic.tr/
|
6240
|
+
// https://nic.tr/forms/eng/policies.pdf
|
6241
|
+
// https://nic.tr/index.php?USRACTN=PRICELST
|
6197
6242
|
tr
|
6198
|
-
com.tr
|
6199
|
-
info.tr
|
6200
|
-
biz.tr
|
6201
|
-
net.tr
|
6202
|
-
org.tr
|
6203
|
-
web.tr
|
6204
|
-
gen.tr
|
6205
|
-
tv.tr
|
6206
6243
|
av.tr
|
6207
|
-
dr.tr
|
6208
6244
|
bbs.tr
|
6209
|
-
name.tr
|
6210
|
-
tel.tr
|
6211
|
-
gov.tr
|
6212
6245
|
bel.tr
|
6213
|
-
|
6246
|
+
biz.tr
|
6247
|
+
com.tr
|
6248
|
+
dr.tr
|
6249
|
+
edu.tr
|
6250
|
+
gen.tr
|
6251
|
+
gov.tr
|
6252
|
+
info.tr
|
6214
6253
|
mil.tr
|
6215
6254
|
k12.tr
|
6216
|
-
edu.tr
|
6217
6255
|
kep.tr
|
6218
|
-
|
6256
|
+
name.tr
|
6257
|
+
net.tr
|
6258
|
+
org.tr
|
6259
|
+
pol.tr
|
6260
|
+
tel.tr
|
6261
|
+
tsk.tr
|
6262
|
+
tv.tr
|
6263
|
+
web.tr
|
6219
6264
|
// Used by Northern Cyprus
|
6220
6265
|
nc.tr
|
6221
|
-
|
6222
6266
|
// Used by government agencies of Northern Cyprus
|
6223
6267
|
gov.nc.tr
|
6224
6268
|
|
@@ -6305,7 +6349,6 @@ cv.ua
|
|
6305
6349
|
dn.ua
|
6306
6350
|
dnepropetrovsk.ua
|
6307
6351
|
dnipropetrovsk.ua
|
6308
|
-
dominic.ua
|
6309
6352
|
donetsk.ua
|
6310
6353
|
dp.ua
|
6311
6354
|
if.ua
|
@@ -6499,7 +6542,7 @@ k12.ok.us
|
|
6499
6542
|
k12.or.us
|
6500
6543
|
k12.pa.us
|
6501
6544
|
k12.pr.us
|
6502
|
-
k12.ri.us
|
6545
|
+
// k12.ri.us Removed at request of Kim Cournoyer <netsupport@staff.ri.net>
|
6503
6546
|
k12.sc.us
|
6504
6547
|
// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
|
6505
6548
|
k12.tn.us
|
@@ -6671,9 +6714,10 @@ mil.vc
|
|
6671
6714
|
edu.vc
|
6672
6715
|
|
6673
6716
|
// ve : https://registro.nic.ve/
|
6674
|
-
// Submitted by registry
|
6717
|
+
// Submitted by registry nic@nic.ve and nicve@conatel.gob.ve
|
6675
6718
|
ve
|
6676
6719
|
arts.ve
|
6720
|
+
bib.ve
|
6677
6721
|
co.ve
|
6678
6722
|
com.ve
|
6679
6723
|
e12.ve
|
@@ -6685,7 +6729,9 @@ info.ve
|
|
6685
6729
|
int.ve
|
6686
6730
|
mil.ve
|
6687
6731
|
net.ve
|
6732
|
+
nom.ve
|
6688
6733
|
org.ve
|
6734
|
+
rar.ve
|
6689
6735
|
rec.ve
|
6690
6736
|
store.ve
|
6691
6737
|
tec.ve
|
@@ -6764,6 +6810,9 @@ yt
|
|
6764
6810
|
// xn--90ae ("bg", Bulgarian) : BG
|
6765
6811
|
бг
|
6766
6812
|
|
6813
|
+
// xn--mgbcpq6gpa1a ("albahrain", Arabic) : BH
|
6814
|
+
البحرين
|
6815
|
+
|
6767
6816
|
// xn--90ais ("bel", Belarusian/Russian Cyrillic) : BY
|
6768
6817
|
// Operated by .by registry
|
6769
6818
|
бел
|
@@ -6786,8 +6835,16 @@ yt
|
|
6786
6835
|
مصر
|
6787
6836
|
|
6788
6837
|
// xn--e1a4c ("eu", Cyrillic) : EU
|
6838
|
+
// https://eurid.eu
|
6789
6839
|
ею
|
6790
6840
|
|
6841
|
+
// xn--qxa6a ("eu", Greek) : EU
|
6842
|
+
// https://eurid.eu
|
6843
|
+
ευ
|
6844
|
+
|
6845
|
+
// xn--mgbah1a3hjkrd ("Mauritania", Arabic) : MR
|
6846
|
+
موريتانيا
|
6847
|
+
|
6791
6848
|
// xn--node ("ge", Georgian Mkhedruli) : GE
|
6792
6849
|
გე
|
6793
6850
|
|
@@ -6888,12 +6945,15 @@ yt
|
|
6888
6945
|
// xn--80ao21a ("Kaz", Kazakh) : KZ
|
6889
6946
|
қаз
|
6890
6947
|
|
6948
|
+
// xn--q7ce6a ("Lao", Lao) : LA
|
6949
|
+
ລາວ
|
6950
|
+
|
6891
6951
|
// xn--fzc2c9e2c ("Lanka", Sinhalese-Sinhala) : LK
|
6892
|
-
//
|
6952
|
+
// https://nic.lk
|
6893
6953
|
ලංකා
|
6894
6954
|
|
6895
6955
|
// xn--xkc2al3hye2a ("Ilangai", Tamil) : LK
|
6896
|
-
//
|
6956
|
+
// https://nic.lk
|
6897
6957
|
இலங்கை
|
6898
6958
|
|
6899
6959
|
// xn--mgbc0a9azcg ("Morocco/al-Maghrib", Arabic) : MA
|
@@ -6941,7 +7001,8 @@ yt
|
|
6941
7001
|
ак.срб
|
6942
7002
|
|
6943
7003
|
// xn--p1ai ("rf", Russian-Cyrillic) : RU
|
6944
|
-
//
|
7004
|
+
// https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
|
7005
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
6945
7006
|
рф
|
6946
7007
|
|
6947
7008
|
// xn--wgbl6a ("Qatar", Arabic) : QA
|
@@ -7012,9 +7073,15 @@ yt
|
|
7012
7073
|
xxx
|
7013
7074
|
|
7014
7075
|
// ye : http://www.y.net.ye/services/domain_name.htm
|
7015
|
-
|
7016
|
-
|
7017
|
-
|
7076
|
+
ye
|
7077
|
+
com.ye
|
7078
|
+
edu.ye
|
7079
|
+
gov.ye
|
7080
|
+
net.ye
|
7081
|
+
mil.ye
|
7082
|
+
org.ye
|
7083
|
+
|
7084
|
+
// za : https://www.zadna.org.za/content/page/domain-information/
|
7018
7085
|
ac.za
|
7019
7086
|
agric.za
|
7020
7087
|
alt.za
|
@@ -7026,6 +7093,7 @@ law.za
|
|
7026
7093
|
mil.za
|
7027
7094
|
net.za
|
7028
7095
|
ngo.za
|
7096
|
+
nic.za
|
7029
7097
|
nis.za
|
7030
7098
|
nom.za
|
7031
7099
|
org.za
|
@@ -7059,9 +7127,9 @@ org.zw
|
|
7059
7127
|
|
7060
7128
|
|
7061
7129
|
// newGTLDs
|
7062
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2018-05-08T19:40:37Z
|
7063
|
-
// This list is auto-generated, don't edit it manually.
|
7064
7130
|
|
7131
|
+
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2021-08-19T15:13:52Z
|
7132
|
+
// This list is auto-generated, don't edit it manually.
|
7065
7133
|
// aaa : 2015-02-26 American Automobile Association, Inc.
|
7066
7134
|
aaa
|
7067
7135
|
|
@@ -7086,7 +7154,7 @@ abc
|
|
7086
7154
|
// able : 2015-06-25 Able Inc.
|
7087
7155
|
able
|
7088
7156
|
|
7089
|
-
// abogado : 2014-04-24
|
7157
|
+
// abogado : 2014-04-24 Registry Services, LLC
|
7090
7158
|
abogado
|
7091
7159
|
|
7092
7160
|
// abudhabi : 2015-07-30 Abu Dhabi Systems and Information Centre
|
@@ -7107,7 +7175,7 @@ accountants
|
|
7107
7175
|
// aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
|
7108
7176
|
aco
|
7109
7177
|
|
7110
|
-
// actor : 2013-12-12
|
7178
|
+
// actor : 2013-12-12 Dog Beach, LLC
|
7111
7179
|
actor
|
7112
7180
|
|
7113
7181
|
// adac : 2015-07-16 Allgemeiner Deutscher Automobil-Club e.V. (ADAC)
|
@@ -7143,13 +7211,10 @@ agency
|
|
7143
7211
|
// aig : 2014-12-18 American International Group, Inc.
|
7144
7212
|
aig
|
7145
7213
|
|
7146
|
-
// aigo : 2015-08-06 aigo Digital Technology Co,Ltd.
|
7147
|
-
aigo
|
7148
|
-
|
7149
7214
|
// airbus : 2015-07-30 Airbus S.A.S.
|
7150
7215
|
airbus
|
7151
7216
|
|
7152
|
-
// airforce : 2014-03-06
|
7217
|
+
// airforce : 2014-03-06 Dog Beach, LLC
|
7153
7218
|
airforce
|
7154
7219
|
|
7155
7220
|
// airtel : 2014-10-24 Bharti Airtel Limited
|
@@ -7182,6 +7247,9 @@ alsace
|
|
7182
7247
|
// alstom : 2015-07-30 ALSTOM
|
7183
7248
|
alstom
|
7184
7249
|
|
7250
|
+
// amazon : 2019-12-19 Amazon Registry Services, Inc.
|
7251
|
+
amazon
|
7252
|
+
|
7185
7253
|
// americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc.
|
7186
7254
|
americanexpress
|
7187
7255
|
|
@@ -7206,7 +7274,7 @@ analytics
|
|
7206
7274
|
// android : 2014-08-07 Charleston Road Registry Inc.
|
7207
7275
|
android
|
7208
7276
|
|
7209
|
-
// anquan : 2015-01-08
|
7277
|
+
// anquan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
7210
7278
|
anquan
|
7211
7279
|
|
7212
7280
|
// anz : 2015-07-31 Australia and New Zealand Banking Group Limited
|
@@ -7233,10 +7301,10 @@ arab
|
|
7233
7301
|
// aramco : 2014-11-20 Aramco Services Company
|
7234
7302
|
aramco
|
7235
7303
|
|
7236
|
-
// archi : 2014-02-06 Afilias
|
7304
|
+
// archi : 2014-02-06 Afilias Limited
|
7237
7305
|
archi
|
7238
7306
|
|
7239
|
-
// army : 2014-03-06
|
7307
|
+
// army : 2014-03-06 Dog Beach, LLC
|
7240
7308
|
army
|
7241
7309
|
|
7242
7310
|
// art : 2016-03-24 UK Creative Ideas Limited
|
@@ -7254,10 +7322,10 @@ associates
|
|
7254
7322
|
// athleta : 2015-07-30 The Gap, Inc.
|
7255
7323
|
athleta
|
7256
7324
|
|
7257
|
-
// attorney : 2014-03-20
|
7325
|
+
// attorney : 2014-03-20 Dog Beach, LLC
|
7258
7326
|
attorney
|
7259
7327
|
|
7260
|
-
// auction : 2014-03-20
|
7328
|
+
// auction : 2014-03-20 Dog Beach, LLC
|
7261
7329
|
auction
|
7262
7330
|
|
7263
7331
|
// audi : 2015-05-21 AUDI Aktiengesellschaft
|
@@ -7266,7 +7334,7 @@ audi
|
|
7266
7334
|
// audible : 2015-06-25 Amazon Registry Services, Inc.
|
7267
7335
|
audible
|
7268
7336
|
|
7269
|
-
// audio : 2014-03-20
|
7337
|
+
// audio : 2014-03-20 UNR Corp.
|
7270
7338
|
audio
|
7271
7339
|
|
7272
7340
|
// auspost : 2015-08-13 Australian Postal Corporation
|
@@ -7275,25 +7343,25 @@ auspost
|
|
7275
7343
|
// author : 2014-12-18 Amazon Registry Services, Inc.
|
7276
7344
|
author
|
7277
7345
|
|
7278
|
-
// auto : 2014-11-13
|
7346
|
+
// auto : 2014-11-13 XYZ.COM LLC
|
7279
7347
|
auto
|
7280
7348
|
|
7281
|
-
// autos : 2014-01-09
|
7349
|
+
// autos : 2014-01-09 XYZ.COM LLC
|
7282
7350
|
autos
|
7283
7351
|
|
7284
|
-
// avianca : 2015-01-08
|
7352
|
+
// avianca : 2015-01-08 Avianca Holdings S.A.
|
7285
7353
|
avianca
|
7286
7354
|
|
7287
|
-
// aws : 2015-06-25
|
7355
|
+
// aws : 2015-06-25 AWS Registry LLC
|
7288
7356
|
aws
|
7289
7357
|
|
7290
|
-
// axa : 2013-12-19 AXA
|
7358
|
+
// axa : 2013-12-19 AXA Group Operations SAS
|
7291
7359
|
axa
|
7292
7360
|
|
7293
7361
|
// azure : 2014-12-18 Microsoft Corporation
|
7294
7362
|
azure
|
7295
7363
|
|
7296
|
-
// baby : 2015-04-09
|
7364
|
+
// baby : 2015-04-09 XYZ.COM LLC
|
7297
7365
|
baby
|
7298
7366
|
|
7299
7367
|
// baidu : 2015-01-08 Baidu, Inc.
|
@@ -7305,7 +7373,7 @@ banamex
|
|
7305
7373
|
// bananarepublic : 2015-07-31 The Gap, Inc.
|
7306
7374
|
bananarepublic
|
7307
7375
|
|
7308
|
-
// band : 2014-06-12
|
7376
|
+
// band : 2014-06-12 Dog Beach, LLC
|
7309
7377
|
band
|
7310
7378
|
|
7311
7379
|
// bank : 2014-09-25 fTLD Registry Services LLC
|
@@ -7359,10 +7427,10 @@ bcn
|
|
7359
7427
|
// beats : 2015-05-14 Beats Electronics, LLC
|
7360
7428
|
beats
|
7361
7429
|
|
7362
|
-
// beauty : 2015-12-03
|
7430
|
+
// beauty : 2015-12-03 XYZ.COM LLC
|
7363
7431
|
beauty
|
7364
7432
|
|
7365
|
-
// beer : 2014-01-09
|
7433
|
+
// beer : 2014-01-09 Registry Services, LLC
|
7366
7434
|
beer
|
7367
7435
|
|
7368
7436
|
// bentley : 2014-12-18 Bentley Motors Limited
|
@@ -7377,7 +7445,7 @@ best
|
|
7377
7445
|
// bestbuy : 2015-07-31 BBY Solutions, Inc.
|
7378
7446
|
bestbuy
|
7379
7447
|
|
7380
|
-
// bet : 2015-05-07 Afilias
|
7448
|
+
// bet : 2015-05-07 Afilias Limited
|
7381
7449
|
bet
|
7382
7450
|
|
7383
7451
|
// bharti : 2014-01-09 Bharti Enterprises (Holding) Private Limited
|
@@ -7398,13 +7466,13 @@ bing
|
|
7398
7466
|
// bingo : 2014-12-04 Binky Moon, LLC
|
7399
7467
|
bingo
|
7400
7468
|
|
7401
|
-
// bio : 2014-03-06 Afilias
|
7469
|
+
// bio : 2014-03-06 Afilias Limited
|
7402
7470
|
bio
|
7403
7471
|
|
7404
|
-
// black : 2014-01-16 Afilias
|
7472
|
+
// black : 2014-01-16 Afilias Limited
|
7405
7473
|
black
|
7406
7474
|
|
7407
|
-
// blackfriday : 2014-01-16
|
7475
|
+
// blackfriday : 2014-01-16 UNR Corp.
|
7408
7476
|
blackfriday
|
7409
7477
|
|
7410
7478
|
// blockbuster : 2015-07-30 Dish DBS Corporation
|
@@ -7416,7 +7484,7 @@ blog
|
|
7416
7484
|
// bloomberg : 2014-07-17 Bloomberg IP Holdings LLC
|
7417
7485
|
bloomberg
|
7418
7486
|
|
7419
|
-
// blue : 2013-11-07 Afilias
|
7487
|
+
// blue : 2013-11-07 Afilias Limited
|
7420
7488
|
blue
|
7421
7489
|
|
7422
7490
|
// bms : 2014-10-30 Bristol-Myers Squibb Company
|
@@ -7425,13 +7493,10 @@ bms
|
|
7425
7493
|
// bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
7426
7494
|
bmw
|
7427
7495
|
|
7428
|
-
// bnl : 2014-07-24 Banca Nazionale del Lavoro
|
7429
|
-
bnl
|
7430
|
-
|
7431
7496
|
// bnpparibas : 2014-05-29 BNP Paribas
|
7432
7497
|
bnpparibas
|
7433
7498
|
|
7434
|
-
// boats : 2014-12-04
|
7499
|
+
// boats : 2014-12-04 XYZ.COM LLC
|
7435
7500
|
boats
|
7436
7501
|
|
7437
7502
|
// boehringer : 2015-07-09 Boehringer Ingelheim International GmbH
|
@@ -7443,7 +7508,7 @@ bofa
|
|
7443
7508
|
// bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
|
7444
7509
|
bom
|
7445
7510
|
|
7446
|
-
// bond : 2014-06-05
|
7511
|
+
// bond : 2014-06-05 ShortDot SA
|
7447
7512
|
bond
|
7448
7513
|
|
7449
7514
|
// boo : 2014-01-30 Charleston Road Registry Inc.
|
@@ -7470,7 +7535,7 @@ bot
|
|
7470
7535
|
// boutique : 2013-11-14 Binky Moon, LLC
|
7471
7536
|
boutique
|
7472
7537
|
|
7473
|
-
// box : 2015-11-12
|
7538
|
+
// box : 2015-11-12 Intercap Registry Inc.
|
7474
7539
|
box
|
7475
7540
|
|
7476
7541
|
// bradesco : 2014-12-18 Banco Bradesco S.A.
|
@@ -7482,7 +7547,7 @@ bridgestone
|
|
7482
7547
|
// broadway : 2014-12-22 Celebrate Broadway, Inc.
|
7483
7548
|
broadway
|
7484
7549
|
|
7485
|
-
// broker : 2014-12-11
|
7550
|
+
// broker : 2014-12-11 Dog Beach, LLC
|
7486
7551
|
broker
|
7487
7552
|
|
7488
7553
|
// brother : 2015-01-29 Brother Industries, Ltd.
|
@@ -7554,7 +7619,7 @@ capital
|
|
7554
7619
|
// capitalone : 2015-08-06 Capital One Financial Corporation
|
7555
7620
|
capitalone
|
7556
7621
|
|
7557
|
-
// car : 2015-01-22
|
7622
|
+
// car : 2015-01-22 XYZ.COM LLC
|
7558
7623
|
car
|
7559
7624
|
|
7560
7625
|
// caravan : 2013-12-12 Caravan International, Inc.
|
@@ -7572,21 +7637,15 @@ career
|
|
7572
7637
|
// careers : 2013-10-02 Binky Moon, LLC
|
7573
7638
|
careers
|
7574
7639
|
|
7575
|
-
// cars : 2014-11-13
|
7640
|
+
// cars : 2014-11-13 XYZ.COM LLC
|
7576
7641
|
cars
|
7577
7642
|
|
7578
|
-
//
|
7579
|
-
cartier
|
7580
|
-
|
7581
|
-
// casa : 2013-11-21 Minds + Machines Group Limited
|
7643
|
+
// casa : 2013-11-21 Registry Services, LLC
|
7582
7644
|
casa
|
7583
7645
|
|
7584
7646
|
// case : 2015-09-03 CNH Industrial N.V.
|
7585
7647
|
case
|
7586
7648
|
|
7587
|
-
// caseih : 2015-09-03 CNH Industrial N.V.
|
7588
|
-
caseih
|
7589
|
-
|
7590
7649
|
// cash : 2014-03-06 Binky Moon, LLC
|
7591
7650
|
cash
|
7592
7651
|
|
@@ -7611,9 +7670,6 @@ cbre
|
|
7611
7670
|
// cbs : 2015-08-06 CBS Domains Inc.
|
7612
7671
|
cbs
|
7613
7672
|
|
7614
|
-
// ceb : 2015-04-09 The Corporate Executive Board Company
|
7615
|
-
ceb
|
7616
|
-
|
7617
7673
|
// center : 2013-11-07 Binky Moon, LLC
|
7618
7674
|
center
|
7619
7675
|
|
@@ -7626,7 +7682,7 @@ cern
|
|
7626
7682
|
// cfa : 2014-08-28 CFA Institute
|
7627
7683
|
cfa
|
7628
7684
|
|
7629
|
-
// cfd : 2014-12-11
|
7685
|
+
// cfd : 2014-12-11 ShortDot SA
|
7630
7686
|
cfd
|
7631
7687
|
|
7632
7688
|
// chanel : 2015-04-09 Chanel International B.V.
|
@@ -7635,7 +7691,7 @@ chanel
|
|
7635
7691
|
// channel : 2014-05-08 Charleston Road Registry Inc.
|
7636
7692
|
channel
|
7637
7693
|
|
7638
|
-
// charity : 2018-04-11
|
7694
|
+
// charity : 2018-04-11 Binky Moon, LLC
|
7639
7695
|
charity
|
7640
7696
|
|
7641
7697
|
// chase : 2015-04-30 JPMorgan Chase Bank, National Association
|
@@ -7650,15 +7706,12 @@ cheap
|
|
7650
7706
|
// chintai : 2015-06-11 CHINTAI Corporation
|
7651
7707
|
chintai
|
7652
7708
|
|
7653
|
-
// christmas : 2013-11-21
|
7709
|
+
// christmas : 2013-11-21 UNR Corp.
|
7654
7710
|
christmas
|
7655
7711
|
|
7656
7712
|
// chrome : 2014-07-24 Charleston Road Registry Inc.
|
7657
7713
|
chrome
|
7658
7714
|
|
7659
|
-
// chrysler : 2015-07-30 FCA US LLC.
|
7660
|
-
chrysler
|
7661
|
-
|
7662
7715
|
// church : 2014-02-06 Binky Moon, LLC
|
7663
7716
|
church
|
7664
7717
|
|
@@ -7692,7 +7745,7 @@ claims
|
|
7692
7745
|
// cleaning : 2013-12-05 Binky Moon, LLC
|
7693
7746
|
cleaning
|
7694
7747
|
|
7695
|
-
// click : 2014-06-05
|
7748
|
+
// click : 2014-06-05 UNR Corp.
|
7696
7749
|
click
|
7697
7750
|
|
7698
7751
|
// clinic : 2014-03-20 Binky Moon, LLC
|
@@ -7707,7 +7760,7 @@ clothing
|
|
7707
7760
|
// cloud : 2015-04-16 Aruba PEC S.p.A.
|
7708
7761
|
cloud
|
7709
7762
|
|
7710
|
-
// club : 2013-11-08
|
7763
|
+
// club : 2013-11-08 Registry Services, LLC
|
7711
7764
|
club
|
7712
7765
|
|
7713
7766
|
// clubmed : 2015-06-25 Club Méditerranée S.A.
|
@@ -7725,7 +7778,7 @@ coffee
|
|
7725
7778
|
// college : 2014-01-16 XYZ.COM LLC
|
7726
7779
|
college
|
7727
7780
|
|
7728
|
-
// cologne : 2014-02-05
|
7781
|
+
// cologne : 2014-02-05 dotKoeln GmbH
|
7729
7782
|
cologne
|
7730
7783
|
|
7731
7784
|
// comcast : 2015-07-23 Comcast IP Holdings I, LLC
|
@@ -7740,7 +7793,7 @@ community
|
|
7740
7793
|
// company : 2013-11-07 Binky Moon, LLC
|
7741
7794
|
company
|
7742
7795
|
|
7743
|
-
// compare : 2015-10-08
|
7796
|
+
// compare : 2015-10-08 Registry Services, LLC
|
7744
7797
|
compare
|
7745
7798
|
|
7746
7799
|
// computer : 2013-10-24 Binky Moon, LLC
|
@@ -7755,16 +7808,16 @@ condos
|
|
7755
7808
|
// construction : 2013-09-16 Binky Moon, LLC
|
7756
7809
|
construction
|
7757
7810
|
|
7758
|
-
// consulting : 2013-12-05
|
7811
|
+
// consulting : 2013-12-05 Dog Beach, LLC
|
7759
7812
|
consulting
|
7760
7813
|
|
7761
|
-
// contact : 2015-01-08
|
7814
|
+
// contact : 2015-01-08 Dog Beach, LLC
|
7762
7815
|
contact
|
7763
7816
|
|
7764
7817
|
// contractors : 2013-09-10 Binky Moon, LLC
|
7765
7818
|
contractors
|
7766
7819
|
|
7767
|
-
// cooking : 2013-11-21
|
7820
|
+
// cooking : 2013-11-21 Registry Services, LLC
|
7768
7821
|
cooking
|
7769
7822
|
|
7770
7823
|
// cookingchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
@@ -7788,13 +7841,16 @@ coupons
|
|
7788
7841
|
// courses : 2014-12-04 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
7789
7842
|
courses
|
7790
7843
|
|
7844
|
+
// cpa : 2019-06-10 American Institute of Certified Public Accountants
|
7845
|
+
cpa
|
7846
|
+
|
7791
7847
|
// credit : 2014-03-20 Binky Moon, LLC
|
7792
7848
|
credit
|
7793
7849
|
|
7794
7850
|
// creditcard : 2014-03-20 Binky Moon, LLC
|
7795
7851
|
creditcard
|
7796
7852
|
|
7797
|
-
// creditunion : 2015-01-22
|
7853
|
+
// creditunion : 2015-01-22 DotCooperation LLC
|
7798
7854
|
creditunion
|
7799
7855
|
|
7800
7856
|
// cricket : 2014-10-09 dot Cricket Limited
|
@@ -7815,13 +7871,13 @@ cruises
|
|
7815
7871
|
// csc : 2014-09-25 Alliance-One Services, Inc.
|
7816
7872
|
csc
|
7817
7873
|
|
7818
|
-
// cuisinella : 2014-04-03
|
7874
|
+
// cuisinella : 2014-04-03 SCHMIDT GROUPE S.A.S.
|
7819
7875
|
cuisinella
|
7820
7876
|
|
7821
7877
|
// cymru : 2014-05-08 Nominet UK
|
7822
7878
|
cymru
|
7823
7879
|
|
7824
|
-
// cyou : 2015-01-22
|
7880
|
+
// cyou : 2015-01-22 ShortDot SA
|
7825
7881
|
cyou
|
7826
7882
|
|
7827
7883
|
// dabur : 2014-02-06 Dabur India Limited
|
@@ -7830,7 +7886,7 @@ dabur
|
|
7830
7886
|
// dad : 2014-01-23 Charleston Road Registry Inc.
|
7831
7887
|
dad
|
7832
7888
|
|
7833
|
-
// dance : 2013-10-24
|
7889
|
+
// dance : 2013-10-24 Dog Beach, LLC
|
7834
7890
|
dance
|
7835
7891
|
|
7836
7892
|
// data : 2016-06-02 Dish DBS Corporation
|
@@ -7851,19 +7907,19 @@ day
|
|
7851
7907
|
// dclk : 2014-11-20 Charleston Road Registry Inc.
|
7852
7908
|
dclk
|
7853
7909
|
|
7854
|
-
// dds : 2015-05-07
|
7910
|
+
// dds : 2015-05-07 Registry Services, LLC
|
7855
7911
|
dds
|
7856
7912
|
|
7857
7913
|
// deal : 2015-06-25 Amazon Registry Services, Inc.
|
7858
7914
|
deal
|
7859
7915
|
|
7860
|
-
// dealer : 2014-12-22
|
7916
|
+
// dealer : 2014-12-22 Intercap Registry Inc.
|
7861
7917
|
dealer
|
7862
7918
|
|
7863
7919
|
// deals : 2014-05-22 Binky Moon, LLC
|
7864
7920
|
deals
|
7865
7921
|
|
7866
|
-
// degree : 2014-03-06
|
7922
|
+
// degree : 2014-03-06 Dog Beach, LLC
|
7867
7923
|
degree
|
7868
7924
|
|
7869
7925
|
// delivery : 2014-09-11 Binky Moon, LLC
|
@@ -7878,19 +7934,19 @@ deloitte
|
|
7878
7934
|
// delta : 2015-02-19 Delta Air Lines, Inc.
|
7879
7935
|
delta
|
7880
7936
|
|
7881
|
-
// democrat : 2013-10-24
|
7937
|
+
// democrat : 2013-10-24 Dog Beach, LLC
|
7882
7938
|
democrat
|
7883
7939
|
|
7884
7940
|
// dental : 2014-03-20 Binky Moon, LLC
|
7885
7941
|
dental
|
7886
7942
|
|
7887
|
-
// dentist : 2014-03-20
|
7943
|
+
// dentist : 2014-03-20 Dog Beach, LLC
|
7888
7944
|
dentist
|
7889
7945
|
|
7890
7946
|
// desi : 2013-11-14 Desi Networks LLC
|
7891
7947
|
desi
|
7892
7948
|
|
7893
|
-
// design : 2014-11-07
|
7949
|
+
// design : 2014-11-07 Registry Services, LLC
|
7894
7950
|
design
|
7895
7951
|
|
7896
7952
|
// dev : 2014-10-16 Charleston Road Registry Inc.
|
@@ -7902,7 +7958,7 @@ dhl
|
|
7902
7958
|
// diamonds : 2013-09-22 Binky Moon, LLC
|
7903
7959
|
diamonds
|
7904
7960
|
|
7905
|
-
// diet : 2014-06-26
|
7961
|
+
// diet : 2014-06-26 UNR Corp.
|
7906
7962
|
diet
|
7907
7963
|
|
7908
7964
|
// digital : 2014-03-06 Binky Moon, LLC
|
@@ -7935,15 +7991,9 @@ docs
|
|
7935
7991
|
// doctor : 2016-06-02 Binky Moon, LLC
|
7936
7992
|
doctor
|
7937
7993
|
|
7938
|
-
// dodge : 2015-07-30 FCA US LLC.
|
7939
|
-
dodge
|
7940
|
-
|
7941
7994
|
// dog : 2014-12-04 Binky Moon, LLC
|
7942
7995
|
dog
|
7943
7996
|
|
7944
|
-
// doha : 2014-09-18 Communications Regulatory Authority (CRA)
|
7945
|
-
doha
|
7946
|
-
|
7947
7997
|
// domains : 2013-10-17 Binky Moon, LLC
|
7948
7998
|
domains
|
7949
7999
|
|
@@ -7968,9 +8018,6 @@ duck
|
|
7968
8018
|
// dunlop : 2015-07-02 The Goodyear Tire & Rubber Company
|
7969
8019
|
dunlop
|
7970
8020
|
|
7971
|
-
// duns : 2015-08-06 The Dun & Bradstreet Corporation
|
7972
|
-
duns
|
7973
|
-
|
7974
8021
|
// dupont : 2015-06-25 E. I. du Pont de Nemours and Company
|
7975
8022
|
dupont
|
7976
8023
|
|
@@ -7980,7 +8027,7 @@ durban
|
|
7980
8027
|
// dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
7981
8028
|
dvag
|
7982
8029
|
|
7983
|
-
// dvr : 2016-05-26
|
8030
|
+
// dvr : 2016-05-26 DISH Technologies L.L.C.
|
7984
8031
|
dvr
|
7985
8032
|
|
7986
8033
|
// earth : 2014-12-04 Interlink Co., Ltd.
|
@@ -8007,7 +8054,7 @@ emerck
|
|
8007
8054
|
// energy : 2014-09-11 Binky Moon, LLC
|
8008
8055
|
energy
|
8009
8056
|
|
8010
|
-
// engineer : 2014-03-06
|
8057
|
+
// engineer : 2014-03-06 Dog Beach, LLC
|
8011
8058
|
engineer
|
8012
8059
|
|
8013
8060
|
// engineering : 2014-03-06 Binky Moon, LLC
|
@@ -8034,9 +8081,6 @@ esq
|
|
8034
8081
|
// estate : 2013-08-27 Binky Moon, LLC
|
8035
8082
|
estate
|
8036
8083
|
|
8037
|
-
// esurance : 2015-07-23 Esurance Insurance Company
|
8038
|
-
esurance
|
8039
|
-
|
8040
8084
|
// etisalat : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat)
|
8041
8085
|
etisalat
|
8042
8086
|
|
@@ -8049,9 +8093,6 @@ eus
|
|
8049
8093
|
// events : 2013-12-05 Binky Moon, LLC
|
8050
8094
|
events
|
8051
8095
|
|
8052
|
-
// everbank : 2014-05-15 EverBank
|
8053
|
-
everbank
|
8054
|
-
|
8055
8096
|
// exchange : 2014-03-06 Binky Moon, LLC
|
8056
8097
|
exchange
|
8057
8098
|
|
@@ -8079,13 +8120,13 @@ fairwinds
|
|
8079
8120
|
// faith : 2014-11-20 dot Faith Limited
|
8080
8121
|
faith
|
8081
8122
|
|
8082
|
-
// family : 2015-04-02
|
8123
|
+
// family : 2015-04-02 Dog Beach, LLC
|
8083
8124
|
family
|
8084
8125
|
|
8085
|
-
// fan : 2014-03-06
|
8126
|
+
// fan : 2014-03-06 Dog Beach, LLC
|
8086
8127
|
fan
|
8087
8128
|
|
8088
|
-
// fans : 2014-11-07
|
8129
|
+
// fans : 2014-11-07 ZDNS International Limited
|
8089
8130
|
fans
|
8090
8131
|
|
8091
8132
|
// farm : 2013-11-07 Binky Moon, LLC
|
@@ -8094,7 +8135,7 @@ farm
|
|
8094
8135
|
// farmers : 2015-07-09 Farmers Insurance Exchange
|
8095
8136
|
farmers
|
8096
8137
|
|
8097
|
-
// fashion : 2014-07-03
|
8138
|
+
// fashion : 2014-07-03 Registry Services, LLC
|
8098
8139
|
fashion
|
8099
8140
|
|
8100
8141
|
// fast : 2014-12-18 Amazon Registry Services, Inc.
|
@@ -8145,16 +8186,16 @@ firmdale
|
|
8145
8186
|
// fish : 2013-12-12 Binky Moon, LLC
|
8146
8187
|
fish
|
8147
8188
|
|
8148
|
-
// fishing : 2013-11-21
|
8189
|
+
// fishing : 2013-11-21 Registry Services, LLC
|
8149
8190
|
fishing
|
8150
8191
|
|
8151
|
-
// fit : 2014-11-07
|
8192
|
+
// fit : 2014-11-07 Registry Services, LLC
|
8152
8193
|
fit
|
8153
8194
|
|
8154
8195
|
// fitness : 2014-03-06 Binky Moon, LLC
|
8155
8196
|
fitness
|
8156
8197
|
|
8157
|
-
// flickr : 2015-04-02
|
8198
|
+
// flickr : 2015-04-02 Flickr, Inc.
|
8158
8199
|
flickr
|
8159
8200
|
|
8160
8201
|
// flights : 2013-12-05 Binky Moon, LLC
|
@@ -8166,7 +8207,7 @@ flir
|
|
8166
8207
|
// florist : 2013-11-07 Binky Moon, LLC
|
8167
8208
|
florist
|
8168
8209
|
|
8169
|
-
// flowers : 2014-10-09
|
8210
|
+
// flowers : 2014-10-09 UNR Corp.
|
8170
8211
|
flowers
|
8171
8212
|
|
8172
8213
|
// fly : 2014-05-08 Charleston Road Registry Inc.
|
@@ -8187,10 +8228,10 @@ football
|
|
8187
8228
|
// ford : 2014-11-13 Ford Motor Company
|
8188
8229
|
ford
|
8189
8230
|
|
8190
|
-
// forex : 2014-12-11
|
8231
|
+
// forex : 2014-12-11 Dog Beach, LLC
|
8191
8232
|
forex
|
8192
8233
|
|
8193
|
-
// forsale : 2014-05-22
|
8234
|
+
// forsale : 2014-05-22 Dog Beach, LLC
|
8194
8235
|
forsale
|
8195
8236
|
|
8196
8237
|
// forum : 2015-04-02 Fegistry, LLC
|
@@ -8226,10 +8267,7 @@ ftr
|
|
8226
8267
|
// fujitsu : 2015-07-30 Fujitsu Limited
|
8227
8268
|
fujitsu
|
8228
8269
|
|
8229
|
-
//
|
8230
|
-
fujixerox
|
8231
|
-
|
8232
|
-
// fun : 2016-01-14 DotSpace Inc.
|
8270
|
+
// fun : 2016-01-14 Radix FZC
|
8233
8271
|
fun
|
8234
8272
|
|
8235
8273
|
// fund : 2014-03-20 Binky Moon, LLC
|
@@ -8238,7 +8276,7 @@ fund
|
|
8238
8276
|
// furniture : 2014-03-20 Binky Moon, LLC
|
8239
8277
|
furniture
|
8240
8278
|
|
8241
|
-
// futbol : 2013-09-20
|
8279
|
+
// futbol : 2013-09-20 Dog Beach, LLC
|
8242
8280
|
futbol
|
8243
8281
|
|
8244
8282
|
// fyi : 2015-04-02 Binky Moon, LLC
|
@@ -8256,18 +8294,21 @@ gallo
|
|
8256
8294
|
// gallup : 2015-02-19 Gallup, Inc.
|
8257
8295
|
gallup
|
8258
8296
|
|
8259
|
-
// game : 2015-05-28
|
8297
|
+
// game : 2015-05-28 UNR Corp.
|
8260
8298
|
game
|
8261
8299
|
|
8262
|
-
// games : 2015-05-28
|
8300
|
+
// games : 2015-05-28 Dog Beach, LLC
|
8263
8301
|
games
|
8264
8302
|
|
8265
8303
|
// gap : 2015-07-31 The Gap, Inc.
|
8266
8304
|
gap
|
8267
8305
|
|
8268
|
-
// garden : 2014-06-26
|
8306
|
+
// garden : 2014-06-26 Registry Services, LLC
|
8269
8307
|
garden
|
8270
8308
|
|
8309
|
+
// gay : 2019-05-23 Top Level Design, LLC
|
8310
|
+
gay
|
8311
|
+
|
8271
8312
|
// gbiz : 2014-07-17 Charleston Road Registry Inc.
|
8272
8313
|
gbiz
|
8273
8314
|
|
@@ -8295,7 +8336,7 @@ gift
|
|
8295
8336
|
// gifts : 2014-07-03 Binky Moon, LLC
|
8296
8337
|
gifts
|
8297
8338
|
|
8298
|
-
// gives : 2014-03-06
|
8339
|
+
// gives : 2014-03-06 Dog Beach, LLC
|
8299
8340
|
gives
|
8300
8341
|
|
8301
8342
|
// giving : 2014-11-13 Giving Limited
|
@@ -8322,7 +8363,7 @@ gmail
|
|
8322
8363
|
// gmbh : 2016-01-29 Binky Moon, LLC
|
8323
8364
|
gmbh
|
8324
8365
|
|
8325
|
-
// gmo : 2014-01-09 GMO Internet
|
8366
|
+
// gmo : 2014-01-09 GMO Internet, Inc.
|
8326
8367
|
gmo
|
8327
8368
|
|
8328
8369
|
// gmx : 2014-04-24 1&1 Mail & Media GmbH
|
@@ -8367,7 +8408,7 @@ graphics
|
|
8367
8408
|
// gratis : 2014-03-20 Binky Moon, LLC
|
8368
8409
|
gratis
|
8369
8410
|
|
8370
|
-
// green : 2014-05-08 Afilias
|
8411
|
+
// green : 2014-05-08 Afilias Limited
|
8371
8412
|
green
|
8372
8413
|
|
8373
8414
|
// gripe : 2014-03-06 Binky Moon, LLC
|
@@ -8391,13 +8432,13 @@ guge
|
|
8391
8432
|
// guide : 2013-09-13 Binky Moon, LLC
|
8392
8433
|
guide
|
8393
8434
|
|
8394
|
-
// guitars : 2013-11-14
|
8435
|
+
// guitars : 2013-11-14 UNR Corp.
|
8395
8436
|
guitars
|
8396
8437
|
|
8397
8438
|
// guru : 2013-08-27 Binky Moon, LLC
|
8398
8439
|
guru
|
8399
8440
|
|
8400
|
-
// hair : 2015-12-03
|
8441
|
+
// hair : 2015-12-03 XYZ.COM LLC
|
8401
8442
|
hair
|
8402
8443
|
|
8403
8444
|
// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
|
@@ -8406,7 +8447,7 @@ hamburg
|
|
8406
8447
|
// hangout : 2014-11-13 Charleston Road Registry Inc.
|
8407
8448
|
hangout
|
8408
8449
|
|
8409
|
-
// haus : 2013-12-05
|
8450
|
+
// haus : 2013-12-05 Dog Beach, LLC
|
8410
8451
|
haus
|
8411
8452
|
|
8412
8453
|
// hbo : 2015-07-30 HBO Registry Services, Inc.
|
@@ -8424,7 +8465,7 @@ health
|
|
8424
8465
|
// healthcare : 2014-06-12 Binky Moon, LLC
|
8425
8466
|
healthcare
|
8426
8467
|
|
8427
|
-
// help : 2014-06-26
|
8468
|
+
// help : 2014-06-26 UNR Corp.
|
8428
8469
|
help
|
8429
8470
|
|
8430
8471
|
// helsinki : 2015-02-05 City of Helsinki
|
@@ -8439,7 +8480,7 @@ hermes
|
|
8439
8480
|
// hgtv : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
8440
8481
|
hgtv
|
8441
8482
|
|
8442
|
-
// hiphop : 2014-03-06
|
8483
|
+
// hiphop : 2014-03-06 UNR Corp.
|
8443
8484
|
hiphop
|
8444
8485
|
|
8445
8486
|
// hisamitsu : 2015-07-16 Hisamitsu Pharmaceutical Co.,Inc.
|
@@ -8448,7 +8489,7 @@ hisamitsu
|
|
8448
8489
|
// hitachi : 2014-10-31 Hitachi, Ltd.
|
8449
8490
|
hitachi
|
8450
8491
|
|
8451
|
-
// hiv : 2014-03-13
|
8492
|
+
// hiv : 2014-03-13 UNR Corp.
|
8452
8493
|
hiv
|
8453
8494
|
|
8454
8495
|
// hkt : 2015-05-14 PCCW-HKT DataCom Services Limited
|
@@ -8469,7 +8510,7 @@ homedepot
|
|
8469
8510
|
// homegoods : 2015-07-16 The TJX Companies, Inc.
|
8470
8511
|
homegoods
|
8471
8512
|
|
8472
|
-
// homes : 2014-01-09
|
8513
|
+
// homes : 2014-01-09 XYZ.COM LLC
|
8473
8514
|
homes
|
8474
8515
|
|
8475
8516
|
// homesense : 2015-07-16 The TJX Companies, Inc.
|
@@ -8478,19 +8519,16 @@ homesense
|
|
8478
8519
|
// honda : 2014-12-18 Honda Motor Co., Ltd.
|
8479
8520
|
honda
|
8480
8521
|
|
8481
|
-
//
|
8482
|
-
honeywell
|
8483
|
-
|
8484
|
-
// horse : 2013-11-21 Minds + Machines Group Limited
|
8522
|
+
// horse : 2013-11-21 Registry Services, LLC
|
8485
8523
|
horse
|
8486
8524
|
|
8487
8525
|
// hospital : 2016-10-20 Binky Moon, LLC
|
8488
8526
|
hospital
|
8489
8527
|
|
8490
|
-
// host : 2014-04-17
|
8528
|
+
// host : 2014-04-17 Radix FZC
|
8491
8529
|
host
|
8492
8530
|
|
8493
|
-
// hosting : 2014-05-29
|
8531
|
+
// hosting : 2014-05-29 UNR Corp.
|
8494
8532
|
hosting
|
8495
8533
|
|
8496
8534
|
// hot : 2015-08-27 Amazon Registry Services, Inc.
|
@@ -8553,10 +8591,10 @@ imdb
|
|
8553
8591
|
// immo : 2014-07-10 Binky Moon, LLC
|
8554
8592
|
immo
|
8555
8593
|
|
8556
|
-
// immobilien : 2013-11-07
|
8594
|
+
// immobilien : 2013-11-07 Dog Beach, LLC
|
8557
8595
|
immobilien
|
8558
8596
|
|
8559
|
-
// inc : 2018-03-10
|
8597
|
+
// inc : 2018-03-10 Intercap Registry Inc.
|
8560
8598
|
inc
|
8561
8599
|
|
8562
8600
|
// industries : 2013-12-05 Binky Moon, LLC
|
@@ -8580,9 +8618,6 @@ insurance
|
|
8580
8618
|
// insure : 2014-03-20 Binky Moon, LLC
|
8581
8619
|
insure
|
8582
8620
|
|
8583
|
-
// intel : 2015-08-06 Intel Corporation
|
8584
|
-
intel
|
8585
|
-
|
8586
8621
|
// international : 2013-11-07 Binky Moon, LLC
|
8587
8622
|
international
|
8588
8623
|
|
@@ -8598,9 +8633,6 @@ ipiranga
|
|
8598
8633
|
// irish : 2014-08-07 Binky Moon, LLC
|
8599
8634
|
irish
|
8600
8635
|
|
8601
|
-
// iselect : 2015-02-11 iSelect Ltd
|
8602
|
-
iselect
|
8603
|
-
|
8604
8636
|
// ismaili : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation)
|
8605
8637
|
ismaili
|
8606
8638
|
|
@@ -8616,9 +8648,6 @@ itau
|
|
8616
8648
|
// itv : 2015-07-09 ITV Services Limited
|
8617
8649
|
itv
|
8618
8650
|
|
8619
|
-
// iveco : 2015-09-03 CNH Industrial N.V.
|
8620
|
-
iveco
|
8621
|
-
|
8622
8651
|
// jaguar : 2014-11-13 Jaguar Land Rover Ltd
|
8623
8652
|
jaguar
|
8624
8653
|
|
@@ -8628,9 +8657,6 @@ java
|
|
8628
8657
|
// jcb : 2014-11-20 JCB Co., Ltd.
|
8629
8658
|
jcb
|
8630
8659
|
|
8631
|
-
// jcp : 2015-04-23 JCP Media, Inc.
|
8632
|
-
jcp
|
8633
|
-
|
8634
8660
|
// jeep : 2015-07-30 FCA US LLC.
|
8635
8661
|
jeep
|
8636
8662
|
|
@@ -8667,13 +8693,13 @@ jpmorgan
|
|
8667
8693
|
// jprs : 2014-09-18 Japan Registry Services Co., Ltd.
|
8668
8694
|
jprs
|
8669
8695
|
|
8670
|
-
// juegos : 2014-03-20
|
8696
|
+
// juegos : 2014-03-20 UNR Corp.
|
8671
8697
|
juegos
|
8672
8698
|
|
8673
8699
|
// juniper : 2015-07-30 JUNIPER NETWORKS, INC.
|
8674
8700
|
juniper
|
8675
8701
|
|
8676
|
-
// kaufen : 2013-11-07
|
8702
|
+
// kaufen : 2013-11-07 Dog Beach, LLC
|
8677
8703
|
kaufen
|
8678
8704
|
|
8679
8705
|
// kddi : 2014-09-12 KDDI CORPORATION
|
@@ -8694,7 +8720,10 @@ kfh
|
|
8694
8720
|
// kia : 2015-07-09 KIA MOTORS CORPORATION
|
8695
8721
|
kia
|
8696
8722
|
|
8697
|
-
//
|
8723
|
+
// kids : 2021-08-13 DotKids Foundation Limited
|
8724
|
+
kids
|
8725
|
+
|
8726
|
+
// kim : 2013-09-23 Afilias Limited
|
8698
8727
|
kim
|
8699
8728
|
|
8700
8729
|
// kinder : 2014-11-07 Ferrero Trading Lux S.A.
|
@@ -8709,7 +8738,7 @@ kitchen
|
|
8709
8738
|
// kiwi : 2013-09-20 DOT KIWI LIMITED
|
8710
8739
|
kiwi
|
8711
8740
|
|
8712
|
-
// koeln : 2014-01-09
|
8741
|
+
// koeln : 2014-01-09 dotKoeln GmbH
|
8713
8742
|
koeln
|
8714
8743
|
|
8715
8744
|
// komatsu : 2015-01-08 Komatsu Ltd.
|
@@ -8739,9 +8768,6 @@ kyoto
|
|
8739
8768
|
// lacaixa : 2014-01-09 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”
|
8740
8769
|
lacaixa
|
8741
8770
|
|
8742
|
-
// ladbrokes : 2015-08-06 LADBROKES INTERNATIONAL PLC
|
8743
|
-
ladbrokes
|
8744
|
-
|
8745
8771
|
// lamborghini : 2015-06-04 Automobili Lamborghini S.p.A.
|
8746
8772
|
lamborghini
|
8747
8773
|
|
@@ -8754,9 +8780,6 @@ lancaster
|
|
8754
8780
|
// lancia : 2015-07-31 Fiat Chrysler Automobiles N.V.
|
8755
8781
|
lancia
|
8756
8782
|
|
8757
|
-
// lancome : 2015-07-23 L'Oréal
|
8758
|
-
lancome
|
8759
|
-
|
8760
8783
|
// land : 2013-09-10 Binky Moon, LLC
|
8761
8784
|
land
|
8762
8785
|
|
@@ -8778,13 +8801,13 @@ latino
|
|
8778
8801
|
// latrobe : 2014-06-16 La Trobe University
|
8779
8802
|
latrobe
|
8780
8803
|
|
8781
|
-
// law : 2015-01-22
|
8804
|
+
// law : 2015-01-22 Registry Services, LLC
|
8782
8805
|
law
|
8783
8806
|
|
8784
|
-
// lawyer : 2014-03-20
|
8807
|
+
// lawyer : 2014-03-20 Dog Beach, LLC
|
8785
8808
|
lawyer
|
8786
8809
|
|
8787
|
-
// lds : 2014-03-20 IRI Domain Management, LLC
|
8810
|
+
// lds : 2014-03-20 IRI Domain Management, LLC
|
8788
8811
|
lds
|
8789
8812
|
|
8790
8813
|
// lease : 2014-03-06 Binky Moon, LLC
|
@@ -8805,12 +8828,9 @@ lego
|
|
8805
8828
|
// lexus : 2015-04-23 TOYOTA MOTOR CORPORATION
|
8806
8829
|
lexus
|
8807
8830
|
|
8808
|
-
// lgbt : 2014-05-08 Afilias
|
8831
|
+
// lgbt : 2014-05-08 Afilias Limited
|
8809
8832
|
lgbt
|
8810
8833
|
|
8811
|
-
// liaison : 2014-10-02 Liaison Technologies, Incorporated
|
8812
|
-
liaison
|
8813
|
-
|
8814
8834
|
// lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
8815
8835
|
lidl
|
8816
8836
|
|
@@ -8844,13 +8864,13 @@ lincoln
|
|
8844
8864
|
// linde : 2014-12-04 Linde Aktiengesellschaft
|
8845
8865
|
linde
|
8846
8866
|
|
8847
|
-
// link : 2013-11-14
|
8867
|
+
// link : 2013-11-14 UNR Corp.
|
8848
8868
|
link
|
8849
8869
|
|
8850
8870
|
// lipsy : 2015-06-25 Lipsy Ltd
|
8851
8871
|
lipsy
|
8852
8872
|
|
8853
|
-
// live : 2014-12-04
|
8873
|
+
// live : 2014-12-04 Dog Beach, LLC
|
8854
8874
|
live
|
8855
8875
|
|
8856
8876
|
// living : 2015-07-30 Lifestyle Domain Holdings, Inc.
|
@@ -8859,9 +8879,12 @@ living
|
|
8859
8879
|
// lixil : 2015-03-19 LIXIL Group Corporation
|
8860
8880
|
lixil
|
8861
8881
|
|
8862
|
-
// llc : 2017-12-14 Afilias
|
8882
|
+
// llc : 2017-12-14 Afilias Limited
|
8863
8883
|
llc
|
8864
8884
|
|
8885
|
+
// llp : 2019-08-26 UNR Corp.
|
8886
|
+
llp
|
8887
|
+
|
8865
8888
|
// loan : 2014-11-20 dot Loan Limited
|
8866
8889
|
loan
|
8867
8890
|
|
@@ -8877,7 +8900,7 @@ locus
|
|
8877
8900
|
// loft : 2015-07-30 Annco, Inc.
|
8878
8901
|
loft
|
8879
8902
|
|
8880
|
-
// lol : 2015-01-30
|
8903
|
+
// lol : 2015-01-30 UNR Corp.
|
8881
8904
|
lol
|
8882
8905
|
|
8883
8906
|
// london : 2013-11-14 Dot London Domains Limited
|
@@ -8886,7 +8909,7 @@ london
|
|
8886
8909
|
// lotte : 2014-11-07 Lotte Holdings Co., Ltd.
|
8887
8910
|
lotte
|
8888
8911
|
|
8889
|
-
// lotto : 2014-04-10 Afilias
|
8912
|
+
// lotto : 2014-04-10 Afilias Limited
|
8890
8913
|
lotto
|
8891
8914
|
|
8892
8915
|
// love : 2014-12-22 Merchant Law Group LLP
|
@@ -8907,10 +8930,7 @@ ltda
|
|
8907
8930
|
// lundbeck : 2015-08-06 H. Lundbeck A/S
|
8908
8931
|
lundbeck
|
8909
8932
|
|
8910
|
-
//
|
8911
|
-
lupin
|
8912
|
-
|
8913
|
-
// luxe : 2014-01-09 Minds + Machines Group Limited
|
8933
|
+
// luxe : 2014-01-09 Registry Services, LLC
|
8914
8934
|
luxe
|
8915
8935
|
|
8916
8936
|
// luxury : 2013-10-17 Luxury Partners, LLC
|
@@ -8928,7 +8948,7 @@ maif
|
|
8928
8948
|
// maison : 2013-12-05 Binky Moon, LLC
|
8929
8949
|
maison
|
8930
8950
|
|
8931
|
-
// makeup : 2015-01-15
|
8951
|
+
// makeup : 2015-01-15 XYZ.COM LLC
|
8932
8952
|
makeup
|
8933
8953
|
|
8934
8954
|
// man : 2014-12-04 MAN SE
|
@@ -8943,13 +8963,13 @@ mango
|
|
8943
8963
|
// map : 2016-06-09 Charleston Road Registry Inc.
|
8944
8964
|
map
|
8945
8965
|
|
8946
|
-
// market : 2014-03-06
|
8966
|
+
// market : 2014-03-06 Dog Beach, LLC
|
8947
8967
|
market
|
8948
8968
|
|
8949
8969
|
// marketing : 2013-11-07 Binky Moon, LLC
|
8950
8970
|
marketing
|
8951
8971
|
|
8952
|
-
// markets : 2014-12-11
|
8972
|
+
// markets : 2014-12-11 Dog Beach, LLC
|
8953
8973
|
markets
|
8954
8974
|
|
8955
8975
|
// marriott : 2014-10-09 Marriott Worldwide Corporation
|
@@ -8991,15 +9011,12 @@ memorial
|
|
8991
9011
|
// men : 2015-02-26 Exclusive Registry Limited
|
8992
9012
|
men
|
8993
9013
|
|
8994
|
-
// menu : 2013-09-11
|
9014
|
+
// menu : 2013-09-11 Dot Menu Registry, LLC
|
8995
9015
|
menu
|
8996
9016
|
|
8997
9017
|
// merckmsd : 2016-07-14 MSD Registry Holdings, Inc.
|
8998
9018
|
merckmsd
|
8999
9019
|
|
9000
|
-
// metlife : 2015-05-07 MetLife Services and Solutions, LLC
|
9001
|
-
metlife
|
9002
|
-
|
9003
9020
|
// miami : 2013-12-19 Minds + Machines Group Limited
|
9004
9021
|
miami
|
9005
9022
|
|
@@ -9030,10 +9047,7 @@ mma
|
|
9030
9047
|
// mobile : 2016-06-02 Dish DBS Corporation
|
9031
9048
|
mobile
|
9032
9049
|
|
9033
|
-
//
|
9034
|
-
mobily
|
9035
|
-
|
9036
|
-
// moda : 2013-11-07 United TLD Holdco Ltd.
|
9050
|
+
// moda : 2013-11-07 Dog Beach, LLC
|
9037
9051
|
moda
|
9038
9052
|
|
9039
9053
|
// moe : 2013-11-13 Interlink Co., Ltd.
|
@@ -9042,7 +9056,7 @@ moe
|
|
9042
9056
|
// moi : 2014-12-18 Amazon Registry Services, Inc.
|
9043
9057
|
moi
|
9044
9058
|
|
9045
|
-
// mom : 2015-04-16
|
9059
|
+
// mom : 2015-04-16 UNR Corp.
|
9046
9060
|
mom
|
9047
9061
|
|
9048
9062
|
// monash : 2013-09-30 Monash University
|
@@ -9051,16 +9065,13 @@ monash
|
|
9051
9065
|
// money : 2014-10-16 Binky Moon, LLC
|
9052
9066
|
money
|
9053
9067
|
|
9054
|
-
// monster : 2015-09-11
|
9068
|
+
// monster : 2015-09-11 XYZ.COM LLC
|
9055
9069
|
monster
|
9056
9070
|
|
9057
|
-
//
|
9058
|
-
mopar
|
9059
|
-
|
9060
|
-
// mormon : 2013-12-05 IRI Domain Management, LLC ("Applicant")
|
9071
|
+
// mormon : 2013-12-05 IRI Domain Management, LLC
|
9061
9072
|
mormon
|
9062
9073
|
|
9063
|
-
// mortgage : 2014-03-20
|
9074
|
+
// mortgage : 2014-03-20 Dog Beach, LLC
|
9064
9075
|
mortgage
|
9065
9076
|
|
9066
9077
|
// moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
|
@@ -9069,7 +9080,7 @@ moscow
|
|
9069
9080
|
// moto : 2015-06-04 Motorola Trademark Holdings, LLC
|
9070
9081
|
moto
|
9071
9082
|
|
9072
|
-
// motorcycles : 2014-01-09
|
9083
|
+
// motorcycles : 2014-01-09 XYZ.COM LLC
|
9073
9084
|
motorcycles
|
9074
9085
|
|
9075
9086
|
// mov : 2014-01-30 Charleston Road Registry Inc.
|
@@ -9078,9 +9089,6 @@ mov
|
|
9078
9089
|
// movie : 2015-02-05 Binky Moon, LLC
|
9079
9090
|
movie
|
9080
9091
|
|
9081
|
-
// movistar : 2014-10-16 Telefónica S.A.
|
9082
|
-
movistar
|
9083
|
-
|
9084
9092
|
// msd : 2015-07-23 MSD Registry Holdings, Inc.
|
9085
9093
|
msd
|
9086
9094
|
|
@@ -9090,25 +9098,22 @@ mtn
|
|
9090
9098
|
// mtr : 2015-03-12 MTR Corporation Limited
|
9091
9099
|
mtr
|
9092
9100
|
|
9101
|
+
// music : 2021-05-04 DotMusic Limited
|
9102
|
+
music
|
9103
|
+
|
9093
9104
|
// mutual : 2015-04-02 Northwestern Mutual MU TLD Registry, LLC
|
9094
9105
|
mutual
|
9095
9106
|
|
9096
9107
|
// nab : 2015-08-20 National Australia Bank Limited
|
9097
9108
|
nab
|
9098
9109
|
|
9099
|
-
// nadex : 2014-12-11 Nadex Domains, Inc.
|
9100
|
-
nadex
|
9101
|
-
|
9102
9110
|
// nagoya : 2013-10-24 GMO Registry, Inc.
|
9103
9111
|
nagoya
|
9104
9112
|
|
9105
|
-
// nationwide : 2015-07-23 Nationwide Mutual Insurance Company
|
9106
|
-
nationwide
|
9107
|
-
|
9108
9113
|
// natura : 2015-03-12 NATURA COSMÉTICOS S.A.
|
9109
9114
|
natura
|
9110
9115
|
|
9111
|
-
// navy : 2014-03-06
|
9116
|
+
// navy : 2014-03-06 Dog Beach, LLC
|
9112
9117
|
navy
|
9113
9118
|
|
9114
9119
|
// nba : 2015-07-31 NBA REGISTRY, LLC
|
@@ -9126,16 +9131,13 @@ netflix
|
|
9126
9131
|
// network : 2013-11-14 Binky Moon, LLC
|
9127
9132
|
network
|
9128
9133
|
|
9129
|
-
// neustar : 2013-12-05
|
9134
|
+
// neustar : 2013-12-05 NeuStar, Inc.
|
9130
9135
|
neustar
|
9131
9136
|
|
9132
9137
|
// new : 2014-01-30 Charleston Road Registry Inc.
|
9133
9138
|
new
|
9134
9139
|
|
9135
|
-
//
|
9136
|
-
newholland
|
9137
|
-
|
9138
|
-
// news : 2014-12-18 United TLD Holdco Ltd.
|
9140
|
+
// news : 2014-12-18 Dog Beach, LLC
|
9139
9141
|
news
|
9140
9142
|
|
9141
9143
|
// next : 2015-06-18 Next plc
|
@@ -9165,7 +9167,7 @@ nike
|
|
9165
9167
|
// nikon : 2015-05-21 NIKON CORPORATION
|
9166
9168
|
nikon
|
9167
9169
|
|
9168
|
-
// ninja : 2013-11-07
|
9170
|
+
// ninja : 2013-11-07 Dog Beach, LLC
|
9169
9171
|
ninja
|
9170
9172
|
|
9171
9173
|
// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
|
@@ -9180,7 +9182,7 @@ nokia
|
|
9180
9182
|
// northwesternmutual : 2015-06-18 Northwestern Mutual Registry, LLC
|
9181
9183
|
northwesternmutual
|
9182
9184
|
|
9183
|
-
// norton : 2014-12-04
|
9185
|
+
// norton : 2014-12-04 NortonLifeLock Inc.
|
9184
9186
|
norton
|
9185
9187
|
|
9186
9188
|
// now : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -9207,7 +9209,7 @@ nyc
|
|
9207
9209
|
// obi : 2014-09-25 OBI Group Holding SE & Co. KGaA
|
9208
9210
|
obi
|
9209
9211
|
|
9210
|
-
// observer : 2015-04-30
|
9212
|
+
// observer : 2015-04-30 Dog Beach, LLC
|
9211
9213
|
observer
|
9212
9214
|
|
9213
9215
|
// off : 2015-07-23 Johnson Shareholdings, Inc.
|
@@ -9240,16 +9242,13 @@ one
|
|
9240
9242
|
// ong : 2014-03-06 Public Interest Registry
|
9241
9243
|
ong
|
9242
9244
|
|
9243
|
-
// onl : 2013-09-16
|
9245
|
+
// onl : 2013-09-16 iRegistry GmbH
|
9244
9246
|
onl
|
9245
9247
|
|
9246
|
-
// online : 2015-01-15
|
9248
|
+
// online : 2015-01-15 Radix FZC
|
9247
9249
|
online
|
9248
9250
|
|
9249
|
-
//
|
9250
|
-
onyourside
|
9251
|
-
|
9252
|
-
// ooo : 2014-01-09 INFIBEAM INCORPORATION LIMITED
|
9251
|
+
// ooo : 2014-01-09 INFIBEAM AVENUES LIMITED
|
9253
9252
|
ooo
|
9254
9253
|
|
9255
9254
|
// open : 2015-07-31 American Express Travel Related Services Company, Inc.
|
@@ -9261,7 +9260,7 @@ oracle
|
|
9261
9260
|
// orange : 2015-03-12 Orange Brand Services Limited
|
9262
9261
|
orange
|
9263
9262
|
|
9264
|
-
// organic : 2014-03-27 Afilias
|
9263
|
+
// organic : 2014-03-27 Afilias Limited
|
9265
9264
|
organic
|
9266
9265
|
|
9267
9266
|
// origins : 2015-10-01 The Estée Lauder Companies Inc.
|
@@ -9276,7 +9275,7 @@ otsuka
|
|
9276
9275
|
// ott : 2015-06-04 Dish DBS Corporation
|
9277
9276
|
ott
|
9278
9277
|
|
9279
|
-
// ovh : 2014-01-16
|
9278
|
+
// ovh : 2014-01-16 MédiaBC
|
9280
9279
|
ovh
|
9281
9280
|
|
9282
9281
|
// page : 2014-12-04 Charleston Road Registry Inc.
|
@@ -9309,7 +9308,7 @@ pay
|
|
9309
9308
|
// pccw : 2015-05-14 PCCW Enterprises Limited
|
9310
9309
|
pccw
|
9311
9310
|
|
9312
|
-
// pet : 2015-05-07 Afilias
|
9311
|
+
// pet : 2015-05-07 Afilias Limited
|
9313
9312
|
pet
|
9314
9313
|
|
9315
9314
|
// pfizer : 2015-09-11 Pfizer Inc.
|
@@ -9327,7 +9326,7 @@ philips
|
|
9327
9326
|
// phone : 2016-06-02 Dish DBS Corporation
|
9328
9327
|
phone
|
9329
9328
|
|
9330
|
-
// photo : 2013-11-14
|
9329
|
+
// photo : 2013-11-14 UNR Corp.
|
9331
9330
|
photo
|
9332
9331
|
|
9333
9332
|
// photography : 2013-09-20 Binky Moon, LLC
|
@@ -9339,10 +9338,7 @@ photos
|
|
9339
9338
|
// physio : 2014-05-01 PhysBiz Pty Ltd
|
9340
9339
|
physio
|
9341
9340
|
|
9342
|
-
//
|
9343
|
-
piaget
|
9344
|
-
|
9345
|
-
// pics : 2013-11-14 Uniregistry, Corp.
|
9341
|
+
// pics : 2013-11-14 UNR Corp.
|
9346
9342
|
pics
|
9347
9343
|
|
9348
9344
|
// pictet : 2014-06-26 Pictet Europe S.A.
|
@@ -9360,7 +9356,7 @@ pin
|
|
9360
9356
|
// ping : 2015-06-11 Ping Registry Provider, Inc.
|
9361
9357
|
ping
|
9362
9358
|
|
9363
|
-
// pink : 2013-10-01 Afilias
|
9359
|
+
// pink : 2013-10-01 Afilias Limited
|
9364
9360
|
pink
|
9365
9361
|
|
9366
9362
|
// pioneer : 2015-07-16 Pioneer Corporation
|
@@ -9375,7 +9371,7 @@ place
|
|
9375
9371
|
// play : 2015-03-05 Charleston Road Registry Inc.
|
9376
9372
|
play
|
9377
9373
|
|
9378
|
-
// playstation : 2015-07-02 Sony
|
9374
|
+
// playstation : 2015-07-02 Sony Interactive Entertainment Inc.
|
9379
9375
|
playstation
|
9380
9376
|
|
9381
9377
|
// plumbing : 2013-09-10 Binky Moon, LLC
|
@@ -9390,7 +9386,7 @@ pnc
|
|
9390
9386
|
// pohl : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
9391
9387
|
pohl
|
9392
9388
|
|
9393
|
-
// poker : 2014-07-03 Afilias
|
9389
|
+
// poker : 2014-07-03 Afilias Limited
|
9394
9390
|
poker
|
9395
9391
|
|
9396
9392
|
// politie : 2015-08-20 Politie Nederland
|
@@ -9405,7 +9401,7 @@ pramerica
|
|
9405
9401
|
// praxi : 2013-12-05 Praxi S.p.A.
|
9406
9402
|
praxi
|
9407
9403
|
|
9408
|
-
// press : 2014-04-03
|
9404
|
+
// press : 2014-04-03 Radix FZC
|
9409
9405
|
press
|
9410
9406
|
|
9411
9407
|
// prime : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -9423,13 +9419,13 @@ prof
|
|
9423
9419
|
// progressive : 2015-07-23 Progressive Casualty Insurance Company
|
9424
9420
|
progressive
|
9425
9421
|
|
9426
|
-
// promo : 2014-12-18 Afilias
|
9422
|
+
// promo : 2014-12-18 Afilias Limited
|
9427
9423
|
promo
|
9428
9424
|
|
9429
9425
|
// properties : 2013-12-05 Binky Moon, LLC
|
9430
9426
|
properties
|
9431
9427
|
|
9432
|
-
// property : 2014-05-22
|
9428
|
+
// property : 2014-05-22 UNR Corp.
|
9433
9429
|
property
|
9434
9430
|
|
9435
9431
|
// protection : 2015-04-23 XYZ.COM LLC
|
@@ -9441,7 +9437,7 @@ pru
|
|
9441
9437
|
// prudential : 2015-07-30 Prudential Financial, Inc.
|
9442
9438
|
prudential
|
9443
9439
|
|
9444
|
-
// pub : 2013-12-12
|
9440
|
+
// pub : 2013-12-12 Dog Beach, LLC
|
9445
9441
|
pub
|
9446
9442
|
|
9447
9443
|
// pwc : 2015-10-29 PricewaterhouseCoopers LLP
|
@@ -9453,7 +9449,7 @@ qpon
|
|
9453
9449
|
// quebec : 2013-12-19 PointQuébec Inc
|
9454
9450
|
quebec
|
9455
9451
|
|
9456
|
-
// quest : 2015-03-26
|
9452
|
+
// quest : 2015-03-26 XYZ.COM LLC
|
9457
9453
|
quest
|
9458
9454
|
|
9459
9455
|
// qvc : 2015-07-30 QVC, Inc.
|
@@ -9477,13 +9473,13 @@ realestate
|
|
9477
9473
|
// realtor : 2014-05-29 Real Estate Domains LLC
|
9478
9474
|
realtor
|
9479
9475
|
|
9480
|
-
// realty : 2015-03-19
|
9476
|
+
// realty : 2015-03-19 Dog Beach, LLC
|
9481
9477
|
realty
|
9482
9478
|
|
9483
9479
|
// recipes : 2013-10-17 Binky Moon, LLC
|
9484
9480
|
recipes
|
9485
9481
|
|
9486
|
-
// red : 2013-11-07 Afilias
|
9482
|
+
// red : 2013-11-07 Afilias Limited
|
9487
9483
|
red
|
9488
9484
|
|
9489
9485
|
// redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
|
@@ -9492,7 +9488,7 @@ redstone
|
|
9492
9488
|
// redumbrella : 2015-03-26 Travelers TLD, LLC
|
9493
9489
|
redumbrella
|
9494
9490
|
|
9495
|
-
// rehab : 2014-03-06
|
9491
|
+
// rehab : 2014-03-06 Dog Beach, LLC
|
9496
9492
|
rehab
|
9497
9493
|
|
9498
9494
|
// reise : 2014-03-13 Binky Moon, LLC
|
@@ -9507,7 +9503,7 @@ reit
|
|
9507
9503
|
// reliance : 2015-04-02 Reliance Industries Limited
|
9508
9504
|
reliance
|
9509
9505
|
|
9510
|
-
// ren : 2013-12-12
|
9506
|
+
// ren : 2013-12-12 ZDNS International Limited
|
9511
9507
|
ren
|
9512
9508
|
|
9513
9509
|
// rent : 2014-12-04 XYZ.COM LLC
|
@@ -9522,7 +9518,7 @@ repair
|
|
9522
9518
|
// report : 2013-12-05 Binky Moon, LLC
|
9523
9519
|
report
|
9524
9520
|
|
9525
|
-
// republican : 2014-03-20
|
9521
|
+
// republican : 2014-03-20 Dog Beach, LLC
|
9526
9522
|
republican
|
9527
9523
|
|
9528
9524
|
// rest : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
|
@@ -9534,13 +9530,13 @@ restaurant
|
|
9534
9530
|
// review : 2014-11-20 dot Review Limited
|
9535
9531
|
review
|
9536
9532
|
|
9537
|
-
// reviews : 2013-09-13
|
9533
|
+
// reviews : 2013-09-13 Dog Beach, LLC
|
9538
9534
|
reviews
|
9539
9535
|
|
9540
9536
|
// rexroth : 2015-06-18 Robert Bosch GMBH
|
9541
9537
|
rexroth
|
9542
9538
|
|
9543
|
-
// rich : 2013-11-21
|
9539
|
+
// rich : 2013-11-21 iRegistry GmbH
|
9544
9540
|
rich
|
9545
9541
|
|
9546
9542
|
// richardli : 2015-05-14 Pacific Century Asset Management (HK) Limited
|
@@ -9549,16 +9545,13 @@ richardli
|
|
9549
9545
|
// ricoh : 2014-11-20 Ricoh Company, Ltd.
|
9550
9546
|
ricoh
|
9551
9547
|
|
9552
|
-
// rightathome : 2015-07-23 Johnson Shareholdings, Inc.
|
9553
|
-
rightathome
|
9554
|
-
|
9555
9548
|
// ril : 2015-04-02 Reliance Industries Limited
|
9556
9549
|
ril
|
9557
9550
|
|
9558
9551
|
// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
|
9559
9552
|
rio
|
9560
9553
|
|
9561
|
-
// rip : 2014-07-10
|
9554
|
+
// rip : 2014-07-10 Dog Beach, LLC
|
9562
9555
|
rip
|
9563
9556
|
|
9564
9557
|
// rmit : 2015-11-19 Royal Melbourne Institute of Technology
|
@@ -9567,10 +9560,10 @@ rmit
|
|
9567
9560
|
// rocher : 2014-12-18 Ferrero Trading Lux S.A.
|
9568
9561
|
rocher
|
9569
9562
|
|
9570
|
-
// rocks : 2013-11-14
|
9563
|
+
// rocks : 2013-11-14 Dog Beach, LLC
|
9571
9564
|
rocks
|
9572
9565
|
|
9573
|
-
// rodeo : 2013-12-19
|
9566
|
+
// rodeo : 2013-12-19 Registry Services, LLC
|
9574
9567
|
rodeo
|
9575
9568
|
|
9576
9569
|
// rogers : 2015-08-06 Rogers Communications Canada Inc.
|
@@ -9609,7 +9602,7 @@ safety
|
|
9609
9602
|
// sakura : 2014-12-18 SAKURA Internet Inc.
|
9610
9603
|
sakura
|
9611
9604
|
|
9612
|
-
// sale : 2014-10-16
|
9605
|
+
// sale : 2014-10-16 Dog Beach, LLC
|
9613
9606
|
sale
|
9614
9607
|
|
9615
9608
|
// salon : 2014-12-11 Binky Moon, LLC
|
@@ -9648,7 +9641,7 @@ saxo
|
|
9648
9641
|
// sbi : 2015-03-12 STATE BANK OF INDIA
|
9649
9642
|
sbi
|
9650
9643
|
|
9651
|
-
// sbs : 2014-11-07
|
9644
|
+
// sbs : 2014-11-07 ShortDot SA
|
9652
9645
|
sbs
|
9653
9646
|
|
9654
9647
|
// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
|
@@ -9660,7 +9653,7 @@ scb
|
|
9660
9653
|
// schaeffler : 2015-08-06 Schaeffler Technologies AG & Co. KG
|
9661
9654
|
schaeffler
|
9662
9655
|
|
9663
|
-
// schmidt : 2014-04-03
|
9656
|
+
// schmidt : 2014-04-03 SCHMIDT GROUPE S.A.S.
|
9664
9657
|
schmidt
|
9665
9658
|
|
9666
9659
|
// scholarships : 2014-04-24 Scholarships.com, LLC
|
@@ -9681,9 +9674,6 @@ science
|
|
9681
9674
|
// scjohnson : 2015-07-23 Johnson Shareholdings, Inc.
|
9682
9675
|
scjohnson
|
9683
9676
|
|
9684
|
-
// scor : 2014-10-31 SCOR SE
|
9685
|
-
scor
|
9686
|
-
|
9687
9677
|
// scot : 2014-01-23 Dot Scot Registry Limited
|
9688
9678
|
scot
|
9689
9679
|
|
@@ -9702,7 +9692,7 @@ security
|
|
9702
9692
|
// seek : 2014-12-04 Seek Limited
|
9703
9693
|
seek
|
9704
9694
|
|
9705
|
-
// select : 2015-10-08
|
9695
|
+
// select : 2015-10-08 Registry Services, LLC
|
9706
9696
|
select
|
9707
9697
|
|
9708
9698
|
// sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A.
|
@@ -9723,7 +9713,7 @@ sew
|
|
9723
9713
|
// sex : 2014-11-13 ICM Registry SX LLC
|
9724
9714
|
sex
|
9725
9715
|
|
9726
|
-
// sexy : 2013-09-11
|
9716
|
+
// sexy : 2013-09-11 UNR Corp.
|
9727
9717
|
sexy
|
9728
9718
|
|
9729
9719
|
// sfr : 2015-08-13 Societe Francaise du Radiotelephone - SFR
|
@@ -9744,7 +9734,7 @@ shell
|
|
9744
9734
|
// shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
9745
9735
|
shia
|
9746
9736
|
|
9747
|
-
// shiksha : 2013-11-14 Afilias
|
9737
|
+
// shiksha : 2013-11-14 Afilias Limited
|
9748
9738
|
shiksha
|
9749
9739
|
|
9750
9740
|
// shoes : 2013-10-02 Binky Moon, LLC
|
@@ -9756,7 +9746,7 @@ shop
|
|
9756
9746
|
// shopping : 2016-03-31 Binky Moon, LLC
|
9757
9747
|
shopping
|
9758
9748
|
|
9759
|
-
// shouji : 2015-01-08
|
9749
|
+
// shouji : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
9760
9750
|
shouji
|
9761
9751
|
|
9762
9752
|
// show : 2015-03-05 Binky Moon, LLC
|
@@ -9765,9 +9755,6 @@ show
|
|
9765
9755
|
// showtime : 2015-08-06 CBS Domains Inc.
|
9766
9756
|
showtime
|
9767
9757
|
|
9768
|
-
// shriram : 2014-01-23 Shriram Capital Ltd.
|
9769
|
-
shriram
|
9770
|
-
|
9771
9758
|
// silk : 2015-06-25 Amazon Registry Services, Inc.
|
9772
9759
|
silk
|
9773
9760
|
|
@@ -9777,13 +9764,13 @@ sina
|
|
9777
9764
|
// singles : 2013-08-27 Binky Moon, LLC
|
9778
9765
|
singles
|
9779
9766
|
|
9780
|
-
// site : 2015-01-15
|
9767
|
+
// site : 2015-01-15 Radix FZC
|
9781
9768
|
site
|
9782
9769
|
|
9783
|
-
// ski : 2015-04-09 Afilias
|
9770
|
+
// ski : 2015-04-09 Afilias Limited
|
9784
9771
|
ski
|
9785
9772
|
|
9786
|
-
// skin : 2015-01-15
|
9773
|
+
// skin : 2015-01-15 XYZ.COM LLC
|
9787
9774
|
skin
|
9788
9775
|
|
9789
9776
|
// sky : 2014-06-19 Sky International AG
|
@@ -9792,7 +9779,7 @@ sky
|
|
9792
9779
|
// skype : 2014-12-18 Microsoft Corporation
|
9793
9780
|
skype
|
9794
9781
|
|
9795
|
-
// sling : 2015-07-30
|
9782
|
+
// sling : 2015-07-30 DISH Technologies L.L.C.
|
9796
9783
|
sling
|
9797
9784
|
|
9798
9785
|
// smart : 2015-07-09 Smart Communications, Inc. (SMART)
|
@@ -9807,13 +9794,13 @@ sncf
|
|
9807
9794
|
// soccer : 2015-03-26 Binky Moon, LLC
|
9808
9795
|
soccer
|
9809
9796
|
|
9810
|
-
// social : 2013-11-07
|
9797
|
+
// social : 2013-11-07 Dog Beach, LLC
|
9811
9798
|
social
|
9812
9799
|
|
9813
|
-
// softbank : 2015-07-02 SoftBank Corp.
|
9800
|
+
// softbank : 2015-07-02 SoftBank Group Corp.
|
9814
9801
|
softbank
|
9815
9802
|
|
9816
|
-
// software : 2014-03-20
|
9803
|
+
// software : 2014-03-20 Dog Beach, LLC
|
9817
9804
|
software
|
9818
9805
|
|
9819
9806
|
// sohu : 2013-12-19 Sohu.com Limited
|
@@ -9834,7 +9821,10 @@ sony
|
|
9834
9821
|
// soy : 2014-01-23 Charleston Road Registry Inc.
|
9835
9822
|
soy
|
9836
9823
|
|
9837
|
-
//
|
9824
|
+
// spa : 2019-09-19 Asia Spa and Wellness Promotion Council Limited
|
9825
|
+
spa
|
9826
|
+
|
9827
|
+
// space : 2014-04-03 Radix FZC
|
9838
9828
|
space
|
9839
9829
|
|
9840
9830
|
// sport : 2017-11-16 Global Association of International Sports Federations (GAISF)
|
@@ -9843,15 +9833,9 @@ sport
|
|
9843
9833
|
// spot : 2015-02-26 Amazon Registry Services, Inc.
|
9844
9834
|
spot
|
9845
9835
|
|
9846
|
-
// spreadbetting : 2014-12-11 Dotspreadbetting Registry Limited
|
9847
|
-
spreadbetting
|
9848
|
-
|
9849
9836
|
// srl : 2015-05-07 InterNetX, Corp
|
9850
9837
|
srl
|
9851
9838
|
|
9852
|
-
// srt : 2015-07-30 FCA US LLC.
|
9853
|
-
srt
|
9854
|
-
|
9855
9839
|
// stada : 2014-11-13 STADA Arzneimittel AG
|
9856
9840
|
stada
|
9857
9841
|
|
@@ -9861,9 +9845,6 @@ staples
|
|
9861
9845
|
// star : 2015-01-08 Star India Private Limited
|
9862
9846
|
star
|
9863
9847
|
|
9864
|
-
// starhub : 2015-02-05 StarHub Ltd
|
9865
|
-
starhub
|
9866
|
-
|
9867
9848
|
// statebank : 2015-03-12 STATE BANK OF INDIA
|
9868
9849
|
statebank
|
9869
9850
|
|
@@ -9882,13 +9863,13 @@ stockholm
|
|
9882
9863
|
// storage : 2014-12-22 XYZ.COM LLC
|
9883
9864
|
storage
|
9884
9865
|
|
9885
|
-
// store : 2015-04-09
|
9866
|
+
// store : 2015-04-09 Radix FZC
|
9886
9867
|
store
|
9887
9868
|
|
9888
9869
|
// stream : 2016-01-08 dot Stream Limited
|
9889
9870
|
stream
|
9890
9871
|
|
9891
|
-
// studio : 2015-02-11
|
9872
|
+
// studio : 2015-02-11 Dog Beach, LLC
|
9892
9873
|
studio
|
9893
9874
|
|
9894
9875
|
// study : 2014-12-11 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
@@ -9909,7 +9890,7 @@ supply
|
|
9909
9890
|
// support : 2013-10-24 Binky Moon, LLC
|
9910
9891
|
support
|
9911
9892
|
|
9912
|
-
// surf : 2014-01-09
|
9893
|
+
// surf : 2014-01-09 Registry Services, LLC
|
9913
9894
|
surf
|
9914
9895
|
|
9915
9896
|
// surgery : 2014-03-20 Binky Moon, LLC
|
@@ -9930,9 +9911,6 @@ swiss
|
|
9930
9911
|
// sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
|
9931
9912
|
sydney
|
9932
9913
|
|
9933
|
-
// symantec : 2014-12-04 Symantec Corporation
|
9934
|
-
symantec
|
9935
|
-
|
9936
9914
|
// systems : 2013-11-07 Binky Moon, LLC
|
9937
9915
|
systems
|
9938
9916
|
|
@@ -9957,7 +9935,7 @@ tatamotors
|
|
9957
9935
|
// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
|
9958
9936
|
tatar
|
9959
9937
|
|
9960
|
-
// tattoo : 2013-08-30
|
9938
|
+
// tattoo : 2013-08-30 UNR Corp.
|
9961
9939
|
tattoo
|
9962
9940
|
|
9963
9941
|
// tax : 2014-03-20 Binky Moon, LLC
|
@@ -9975,15 +9953,12 @@ tdk
|
|
9975
9953
|
// team : 2015-03-05 Binky Moon, LLC
|
9976
9954
|
team
|
9977
9955
|
|
9978
|
-
// tech : 2015-01-30
|
9956
|
+
// tech : 2015-01-30 Radix FZC
|
9979
9957
|
tech
|
9980
9958
|
|
9981
9959
|
// technology : 2013-09-13 Binky Moon, LLC
|
9982
9960
|
technology
|
9983
9961
|
|
9984
|
-
// telefonica : 2014-10-16 Telefónica S.A.
|
9985
|
-
telefonica
|
9986
|
-
|
9987
9962
|
// temasek : 2014-08-07 Temasek Holdings (Private) Limited
|
9988
9963
|
temasek
|
9989
9964
|
|
@@ -10005,7 +9980,7 @@ theatre
|
|
10005
9980
|
// tiaa : 2015-07-23 Teachers Insurance and Annuity Association of America
|
10006
9981
|
tiaa
|
10007
9982
|
|
10008
|
-
// tickets : 2015-02-05
|
9983
|
+
// tickets : 2015-02-05 XYZ.COM LLC
|
10009
9984
|
tickets
|
10010
9985
|
|
10011
9986
|
// tienda : 2013-11-14 Binky Moon, LLC
|
@@ -10071,13 +10046,13 @@ toys
|
|
10071
10046
|
// trade : 2014-01-23 Elite Registry Limited
|
10072
10047
|
trade
|
10073
10048
|
|
10074
|
-
// trading : 2014-12-11
|
10049
|
+
// trading : 2014-12-11 Dog Beach, LLC
|
10075
10050
|
trading
|
10076
10051
|
|
10077
10052
|
// training : 2013-11-07 Binky Moon, LLC
|
10078
10053
|
training
|
10079
10054
|
|
10080
|
-
// travel :
|
10055
|
+
// travel : 2015-10-09 Dog Beach, LLC
|
10081
10056
|
travel
|
10082
10057
|
|
10083
10058
|
// travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
@@ -10089,7 +10064,7 @@ travelers
|
|
10089
10064
|
// travelersinsurance : 2015-03-26 Travelers TLD, LLC
|
10090
10065
|
travelersinsurance
|
10091
10066
|
|
10092
|
-
// trust : 2014-10-16
|
10067
|
+
// trust : 2014-10-16 UNR Corp.
|
10093
10068
|
trust
|
10094
10069
|
|
10095
10070
|
// trv : 2015-03-26 Travelers TLD, LLC
|
@@ -10116,16 +10091,13 @@ ubank
|
|
10116
10091
|
// ubs : 2014-12-11 UBS AG
|
10117
10092
|
ubs
|
10118
10093
|
|
10119
|
-
// uconnect : 2015-07-30 FCA US LLC.
|
10120
|
-
uconnect
|
10121
|
-
|
10122
10094
|
// unicom : 2015-10-15 China United Network Communications Corporation Limited
|
10123
10095
|
unicom
|
10124
10096
|
|
10125
10097
|
// university : 2014-03-06 Binky Moon, LLC
|
10126
10098
|
university
|
10127
10099
|
|
10128
|
-
// uno : 2013-09-11
|
10100
|
+
// uno : 2013-09-11 Radix FZC
|
10129
10101
|
uno
|
10130
10102
|
|
10131
10103
|
// uol : 2014-05-01 UBN INTERNET LTDA.
|
@@ -10152,16 +10124,16 @@ ventures
|
|
10152
10124
|
// verisign : 2015-08-13 VeriSign, Inc.
|
10153
10125
|
verisign
|
10154
10126
|
|
10155
|
-
// versicherung : 2014-03-20
|
10127
|
+
// versicherung : 2014-03-20 tldbox GmbH
|
10156
10128
|
versicherung
|
10157
10129
|
|
10158
|
-
// vet : 2014-03-06
|
10130
|
+
// vet : 2014-03-06 Dog Beach, LLC
|
10159
10131
|
vet
|
10160
10132
|
|
10161
10133
|
// viajes : 2013-10-17 Binky Moon, LLC
|
10162
10134
|
viajes
|
10163
10135
|
|
10164
|
-
// video : 2014-10-16
|
10136
|
+
// video : 2014-10-16 Dog Beach, LLC
|
10165
10137
|
video
|
10166
10138
|
|
10167
10139
|
// vig : 2015-05-14 VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe
|
@@ -10176,7 +10148,7 @@ villas
|
|
10176
10148
|
// vin : 2015-06-18 Binky Moon, LLC
|
10177
10149
|
vin
|
10178
10150
|
|
10179
|
-
// vip : 2015-01-22
|
10151
|
+
// vip : 2015-01-22 Registry Services, LLC
|
10180
10152
|
vip
|
10181
10153
|
|
10182
10154
|
// virgin : 2014-09-25 Virgin Enterprises Limited
|
@@ -10188,9 +10160,6 @@ visa
|
|
10188
10160
|
// vision : 2013-12-05 Binky Moon, LLC
|
10189
10161
|
vision
|
10190
10162
|
|
10191
|
-
// vistaprint : 2014-09-18 Vistaprint Limited
|
10192
|
-
vistaprint
|
10193
|
-
|
10194
10163
|
// viva : 2014-11-07 Saudi Telecom Company
|
10195
10164
|
viva
|
10196
10165
|
|
@@ -10200,7 +10169,7 @@ vivo
|
|
10200
10169
|
// vlaanderen : 2014-02-06 DNS.be vzw
|
10201
10170
|
vlaanderen
|
10202
10171
|
|
10203
|
-
// vodka : 2013-12-19
|
10172
|
+
// vodka : 2013-12-19 Registry Services, LLC
|
10204
10173
|
vodka
|
10205
10174
|
|
10206
10175
|
// volkswagen : 2015-05-14 Volkswagen Group of America Inc.
|
@@ -10239,13 +10208,10 @@ wang
|
|
10239
10208
|
// wanggou : 2014-12-18 Amazon Registry Services, Inc.
|
10240
10209
|
wanggou
|
10241
10210
|
|
10242
|
-
// warman : 2015-06-18 Weir Group IP Limited
|
10243
|
-
warman
|
10244
|
-
|
10245
10211
|
// watch : 2013-11-14 Binky Moon, LLC
|
10246
10212
|
watch
|
10247
10213
|
|
10248
|
-
// watches : 2014-12-22
|
10214
|
+
// watches : 2014-12-22 Afilias Limited
|
10249
10215
|
watches
|
10250
10216
|
|
10251
10217
|
// weather : 2015-01-08 International Business Machines Corporation
|
@@ -10260,13 +10226,10 @@ webcam
|
|
10260
10226
|
// weber : 2015-06-04 Saint-Gobain Weber SA
|
10261
10227
|
weber
|
10262
10228
|
|
10263
|
-
// website : 2014-04-03
|
10229
|
+
// website : 2014-04-03 Radix FZC
|
10264
10230
|
website
|
10265
10231
|
|
10266
|
-
//
|
10267
|
-
wed
|
10268
|
-
|
10269
|
-
// wedding : 2014-04-24 Minds + Machines Group Limited
|
10232
|
+
// wedding : 2014-04-24 Registry Services, LLC
|
10270
10233
|
wedding
|
10271
10234
|
|
10272
10235
|
// weibo : 2015-03-05 Sina Corporation
|
@@ -10308,7 +10271,7 @@ wolterskluwer
|
|
10308
10271
|
// woodside : 2015-07-09 Woodside Petroleum Limited
|
10309
10272
|
woodside
|
10310
10273
|
|
10311
|
-
// work : 2013-12-19
|
10274
|
+
// work : 2013-12-19 Registry Services, LLC
|
10312
10275
|
work
|
10313
10276
|
|
10314
10277
|
// works : 2013-11-14 Binky Moon, LLC
|
@@ -10335,7 +10298,7 @@ xerox
|
|
10335
10298
|
// xfinity : 2015-07-09 Comcast IP Holdings I, LLC
|
10336
10299
|
xfinity
|
10337
10300
|
|
10338
|
-
// xihuan : 2015-01-08
|
10301
|
+
// xihuan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
10339
10302
|
xihuan
|
10340
10303
|
|
10341
10304
|
// xin : 2014-12-11 Elegant Leader Limited
|
@@ -10356,7 +10319,7 @@ xin
|
|
10356
10319
|
// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
|
10357
10320
|
集团
|
10358
10321
|
|
10359
|
-
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED
|
10322
|
+
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED OY
|
10360
10323
|
在线
|
10361
10324
|
|
10362
10325
|
// xn--3oq18vl8pn36a : 2015-07-02 Volkswagen (China) Investment Co., Ltd.
|
@@ -10371,7 +10334,7 @@ xin
|
|
10371
10334
|
// xn--45q11c : 2013-11-21 Zodiac Gemini Ltd
|
10372
10335
|
八卦
|
10373
10336
|
|
10374
|
-
// xn--4gbrim : 2013-10-04
|
10337
|
+
// xn--4gbrim : 2013-10-04 Fans TLD Limited
|
10375
10338
|
موقع
|
10376
10339
|
|
10377
10340
|
// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
|
@@ -10386,7 +10349,7 @@ xin
|
|
10386
10349
|
// xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited
|
10387
10350
|
网站
|
10388
10351
|
|
10389
|
-
// xn--6frz82g : 2013-09-23 Afilias
|
10352
|
+
// xn--6frz82g : 2013-09-23 Afilias Limited
|
10390
10353
|
移动
|
10391
10354
|
|
10392
10355
|
// xn--6qq986b3xl : 2013-09-13 Tycoon Treasure Limited
|
@@ -10431,10 +10394,13 @@ xin
|
|
10431
10394
|
// xn--cck2b3b : 2015-02-26 Amazon Registry Services, Inc.
|
10432
10395
|
ストア
|
10433
10396
|
|
10397
|
+
// xn--cckwcxetd : 2019-12-19 Amazon Registry Services, Inc.
|
10398
|
+
アマゾン
|
10399
|
+
|
10434
10400
|
// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
|
10435
10401
|
삼성
|
10436
10402
|
|
10437
|
-
// xn--czr694b : 2014-01-16
|
10403
|
+
// xn--czr694b : 2014-01-16 Internet DotTrademark Organisation Limited
|
10438
10404
|
商标
|
10439
10405
|
|
10440
10406
|
// xn--czrs0t : 2013-12-19 Binky Moon, LLC
|
@@ -10452,16 +10418,13 @@ xin
|
|
10452
10418
|
// xn--efvy88h : 2014-08-22 Guangzhou YU Wei Information Technology Co., Ltd.
|
10453
10419
|
新闻
|
10454
10420
|
|
10455
|
-
// xn--estv75g : 2015-02-19 Industrial and Commercial Bank of China Limited
|
10456
|
-
工行
|
10457
|
-
|
10458
10421
|
// xn--fct429k : 2015-04-09 Amazon Registry Services, Inc.
|
10459
10422
|
家電
|
10460
10423
|
|
10461
10424
|
// xn--fhbei : 2015-01-15 VeriSign Sarl
|
10462
10425
|
كوم
|
10463
10426
|
|
10464
|
-
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED
|
10427
|
+
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED OY
|
10465
10428
|
中文网
|
10466
10429
|
|
10467
10430
|
// xn--fiq64b : 2013-10-14 CITIC Group Corporation
|
@@ -10476,7 +10439,7 @@ xin
|
|
10476
10439
|
// xn--fzys8d69uvgm : 2015-05-14 PCCW Enterprises Limited
|
10477
10440
|
電訊盈科
|
10478
10441
|
|
10479
|
-
// xn--g2xx48c : 2015-01-30
|
10442
|
+
// xn--g2xx48c : 2015-01-30 Nawang Heli(Xiamen) Network Service Co., LTD.
|
10480
10443
|
购物
|
10481
10444
|
|
10482
10445
|
// xn--gckr3f0f : 2015-02-26 Amazon Registry Services, Inc.
|
@@ -10491,7 +10454,7 @@ xin
|
|
10491
10454
|
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
10492
10455
|
संगठन
|
10493
10456
|
|
10494
|
-
// xn--imr513n : 2014-12-11
|
10457
|
+
// xn--imr513n : 2014-12-11 Internet DotTrademark Organisation Limited
|
10495
10458
|
餐厅
|
10496
10459
|
|
10497
10460
|
// xn--io0a7i : 2013-11-14 China Internet Network Information Center (CNNIC)
|
@@ -10500,6 +10463,9 @@ xin
|
|
10500
10463
|
// xn--j1aef : 2015-01-15 VeriSign Sarl
|
10501
10464
|
ком
|
10502
10465
|
|
10466
|
+
// xn--jlq480n2rg : 2019-12-19 Amazon Registry Services, Inc.
|
10467
|
+
亚马逊
|
10468
|
+
|
10503
10469
|
// xn--jlq61u9w7b : 2015-01-08 Nokia Corporation
|
10504
10470
|
诺基亚
|
10505
10471
|
|
@@ -10509,9 +10475,6 @@ xin
|
|
10509
10475
|
// xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V.
|
10510
10476
|
飞利浦
|
10511
10477
|
|
10512
|
-
// xn--kpu716f : 2014-12-22 Richemont DNS Inc.
|
10513
|
-
手表
|
10514
|
-
|
10515
10478
|
// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
|
10516
10479
|
手机
|
10517
10480
|
|
@@ -10527,9 +10490,6 @@ xin
|
|
10527
10490
|
// xn--mgbab2bd : 2013-10-31 CORE Association
|
10528
10491
|
بازار
|
10529
10492
|
|
10530
|
-
// xn--mgbb9fbpob : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
10531
|
-
موبايلي
|
10532
|
-
|
10533
10493
|
// xn--mgbca7dzdo : 2015-07-30 Abu Dhabi Systems and Information Centre
|
10534
10494
|
ابوظبي
|
10535
10495
|
|
@@ -10563,15 +10523,12 @@ xin
|
|
10563
10523
|
// xn--nyqy26a : 2014-11-07 Stable Tone Limited
|
10564
10524
|
健康
|
10565
10525
|
|
10566
|
-
// xn--otu796d : 2017-08-06
|
10526
|
+
// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited
|
10567
10527
|
招聘
|
10568
10528
|
|
10569
10529
|
// xn--p1acf : 2013-12-12 Rusnames Limited
|
10570
10530
|
рус
|
10571
10531
|
|
10572
|
-
// xn--pbt977c : 2014-12-22 Richemont DNS Inc.
|
10573
|
-
珠宝
|
10574
|
-
|
10575
10532
|
// xn--pssy2u : 2015-01-15 VeriSign Sarl
|
10576
10533
|
大拿
|
10577
10534
|
|
@@ -10629,22 +10586,22 @@ vermögensberatung
|
|
10629
10586
|
// xyz : 2013-12-05 XYZ.COM LLC
|
10630
10587
|
xyz
|
10631
10588
|
|
10632
|
-
// yachts : 2014-01-09
|
10589
|
+
// yachts : 2014-01-09 XYZ.COM LLC
|
10633
10590
|
yachts
|
10634
10591
|
|
10635
|
-
// yahoo : 2015-04-02
|
10592
|
+
// yahoo : 2015-04-02 Oath Inc.
|
10636
10593
|
yahoo
|
10637
10594
|
|
10638
10595
|
// yamaxun : 2014-12-18 Amazon Registry Services, Inc.
|
10639
10596
|
yamaxun
|
10640
10597
|
|
10641
|
-
// yandex : 2014-04-10
|
10598
|
+
// yandex : 2014-04-10 Yandex Europe B.V.
|
10642
10599
|
yandex
|
10643
10600
|
|
10644
10601
|
// yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
10645
10602
|
yodobashi
|
10646
10603
|
|
10647
|
-
// yoga : 2014-05-29
|
10604
|
+
// yoga : 2014-05-29 Registry Services, LLC
|
10648
10605
|
yoga
|
10649
10606
|
|
10650
10607
|
// yokohama : 2013-12-12 GMO Registry, Inc.
|
@@ -10656,7 +10613,7 @@ you
|
|
10656
10613
|
// youtube : 2014-05-01 Charleston Road Registry Inc.
|
10657
10614
|
youtube
|
10658
10615
|
|
10659
|
-
// yun : 2015-01-08
|
10616
|
+
// yun : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
10660
10617
|
yun
|
10661
10618
|
|
10662
10619
|
// zappos : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -10688,15 +10645,47 @@ cc.ua
|
|
10688
10645
|
inf.ua
|
10689
10646
|
ltd.ua
|
10690
10647
|
|
10648
|
+
// 611coin : https://611project.org/
|
10649
|
+
611.to
|
10650
|
+
|
10651
|
+
// Aaron Marais' Gitlab pages: https://lab.aaronleem.co.za
|
10652
|
+
// Submitted by Aaron Marais <its_me@aaronleem.co.za>
|
10653
|
+
graphox.us
|
10654
|
+
|
10655
|
+
// accesso Technology Group, plc. : https://accesso.com/
|
10656
|
+
// Submitted by accesso Team <accessoecommerce@accesso.com>
|
10657
|
+
*.devcdnaccesso.com
|
10658
|
+
|
10659
|
+
// Adobe : https://www.adobe.com/
|
10660
|
+
// Submitted by Ian Boston <boston@adobe.com> and Lars Trieloff <trieloff@adobe.com>
|
10661
|
+
adobeaemcloud.com
|
10662
|
+
*.dev.adobeaemcloud.com
|
10663
|
+
hlx.live
|
10664
|
+
adobeaemcloud.net
|
10665
|
+
hlx.page
|
10666
|
+
hlx3.page
|
10667
|
+
|
10691
10668
|
// Agnat sp. z o.o. : https://domena.pl
|
10692
10669
|
// Submitted by Przemyslaw Plewa <it-admin@domena.pl>
|
10693
10670
|
beep.pl
|
10694
10671
|
|
10672
|
+
// alboto.ca : http://alboto.ca
|
10673
|
+
// Submitted by Anton Avramov <avramov@alboto.ca>
|
10674
|
+
barsy.ca
|
10675
|
+
|
10695
10676
|
// Alces Software Ltd : http://alces-software.com
|
10696
10677
|
// Submitted by Mark J. Titorenko <mark.titorenko@alces-software.com>
|
10697
10678
|
*.compute.estate
|
10698
10679
|
*.alces.network
|
10699
10680
|
|
10681
|
+
// all-inkl.com : https://all-inkl.com
|
10682
|
+
// Submitted by Werner Kaltofen <wk@all-inkl.com>
|
10683
|
+
kasserver.com
|
10684
|
+
|
10685
|
+
// Altervista: https://www.altervista.org
|
10686
|
+
// Submitted by Carlo Cannas <tech_staff@altervista.it>
|
10687
|
+
altervista.org
|
10688
|
+
|
10700
10689
|
// alwaysdata : https://www.alwaysdata.com
|
10701
10690
|
// Submitted by Cyril <admin@alwaysdata.com>
|
10702
10691
|
alwaysdata.net
|
@@ -10740,6 +10729,10 @@ us-west-2.elasticbeanstalk.com
|
|
10740
10729
|
*.elb.amazonaws.com
|
10741
10730
|
*.elb.amazonaws.com.cn
|
10742
10731
|
|
10732
|
+
// Amazon Global Accelerator : https://aws.amazon.com/global-accelerator/
|
10733
|
+
// Submitted by Daniel Massaguer <psl-maintainers@amazon.com>
|
10734
|
+
awsglobalaccelerator.com
|
10735
|
+
|
10743
10736
|
// Amazon S3 : https://aws.amazon.com/s3/
|
10744
10737
|
// Submitted by Luke Wells <psl-maintainers@amazon.com>
|
10745
10738
|
s3.amazonaws.com
|
@@ -10797,6 +10790,10 @@ s3-website.eu-west-2.amazonaws.com
|
|
10797
10790
|
s3-website.eu-west-3.amazonaws.com
|
10798
10791
|
s3-website.us-east-2.amazonaws.com
|
10799
10792
|
|
10793
|
+
// Amsterdam Wireless: https://www.amsterdamwireless.nl/
|
10794
|
+
// Submitted by Imre Jonk <hostmaster@amsterdamwireless.nl>
|
10795
|
+
amsw.nl
|
10796
|
+
|
10800
10797
|
// Amune : https://amune.org/
|
10801
10798
|
// Submitted by Team Amune <cert@amune.org>
|
10802
10799
|
t3l3p0rt.net
|
@@ -10806,10 +10803,25 @@ tele.amune.org
|
|
10806
10803
|
// Submitted by Apigee Security Team <security@apigee.com>
|
10807
10804
|
apigee.io
|
10808
10805
|
|
10806
|
+
// Appspace : https://www.appspace.com
|
10807
|
+
// Submitted by Appspace Security Team <security@appspace.com>
|
10808
|
+
appspacehosted.com
|
10809
|
+
appspaceusercontent.com
|
10810
|
+
|
10811
|
+
// Appudo UG (haftungsbeschränkt) : https://www.appudo.com
|
10812
|
+
// Submitted by Alexander Hochbaum <admin@appudo.com>
|
10813
|
+
appudo.net
|
10814
|
+
|
10809
10815
|
// Aptible : https://www.aptible.com/
|
10810
10816
|
// Submitted by Thomas Orozco <thomas@aptible.com>
|
10811
10817
|
on-aptible.com
|
10812
10818
|
|
10819
|
+
// ASEINet : https://www.aseinet.com/
|
10820
|
+
// Submitted by Asei SEKIGUCHI <mail@aseinet.com>
|
10821
|
+
user.aseinet.ne.jp
|
10822
|
+
gv.vc
|
10823
|
+
d.gv.vc
|
10824
|
+
|
10813
10825
|
// Asociación Amigos de la Informática "Euskalamiga" : http://encounter.eus/
|
10814
10826
|
// Submitted by Hector Martin <marcan@euskalencounter.org>
|
10815
10827
|
user.party.eus
|
@@ -10825,25 +10837,51 @@ sweetpepper.org
|
|
10825
10837
|
// Submitted by Vincent Tseng <vincenttseng@asustor.com>
|
10826
10838
|
myasustor.com
|
10827
10839
|
|
10828
|
-
//
|
10829
|
-
// Submitted by
|
10830
|
-
|
10831
|
-
go-vip.net
|
10832
|
-
wpcomstaging.com
|
10840
|
+
// Atlassian : https://atlassian.com
|
10841
|
+
// Submitted by Sam Smyth <devloop@atlassian.com>
|
10842
|
+
cdn.prod.atlassian-dev.net
|
10833
10843
|
|
10834
10844
|
// AVM : https://avm.de
|
10835
10845
|
// Submitted by Andreas Weise <a.weise@avm.de>
|
10836
10846
|
myfritz.net
|
10837
10847
|
|
10848
|
+
// AVStack Pte. Ltd. : https://avstack.io
|
10849
|
+
// Submitted by Jasper Hugo <jasper@avstack.io>
|
10850
|
+
onavstack.net
|
10851
|
+
|
10838
10852
|
// AW AdvisorWebsites.com Software Inc : https://advisorwebsites.com
|
10839
10853
|
// Submitted by James Kennedy <domains@advisorwebsites.com>
|
10840
10854
|
*.awdev.ca
|
10841
10855
|
*.advisor.ws
|
10842
10856
|
|
10857
|
+
// AZ.pl sp. z.o.o: https://az.pl
|
10858
|
+
// Submited by Krzysztof Wolski <krzysztof.wolski@home.eu>
|
10859
|
+
ecommerce-shop.pl
|
10860
|
+
|
10861
|
+
// b-data GmbH : https://www.b-data.io
|
10862
|
+
// Submitted by Olivier Benz <olivier.benz@b-data.ch>
|
10863
|
+
b-data.io
|
10864
|
+
|
10843
10865
|
// backplane : https://www.backplane.io
|
10844
10866
|
// Submitted by Anthony Voutas <anthony@backplane.io>
|
10845
10867
|
backplaneapp.io
|
10846
10868
|
|
10869
|
+
// Balena : https://www.balena.io
|
10870
|
+
// Submitted by Petros Angelatos <petrosagg@balena.io>
|
10871
|
+
balena-devices.com
|
10872
|
+
|
10873
|
+
// University of Banja Luka : https://unibl.org
|
10874
|
+
// Domains for Republic of Srpska administrative entity.
|
10875
|
+
// Submitted by Marko Ivanovic <kormang@hotmail.rs>
|
10876
|
+
rs.ba
|
10877
|
+
|
10878
|
+
// Banzai Cloud
|
10879
|
+
// Submitted by Janos Matyas <info@banzaicloud.com>
|
10880
|
+
*.banzai.cloud
|
10881
|
+
app.banzaicloud.io
|
10882
|
+
*.backyards.banzaicloud.io
|
10883
|
+
|
10884
|
+
|
10847
10885
|
// BetaInABox
|
10848
10886
|
// Submitted by Adrian <adrian@betainabox.com>
|
10849
10887
|
betainabox.com
|
@@ -10852,14 +10890,30 @@ betainabox.com
|
|
10852
10890
|
// Submitted by Nathan O'Sullivan <nathan@mammoth.com.au>
|
10853
10891
|
bnr.la
|
10854
10892
|
|
10893
|
+
// Bitbucket : http://bitbucket.org
|
10894
|
+
// Submitted by Andy Ortlieb <aortlieb@atlassian.com>
|
10895
|
+
bitbucket.io
|
10896
|
+
|
10855
10897
|
// Blackbaud, Inc. : https://www.blackbaud.com
|
10856
10898
|
// Submitted by Paul Crowder <paul.crowder@blackbaud.com>
|
10857
10899
|
blackbaudcdn.net
|
10858
10900
|
|
10901
|
+
// Blatech : http://www.blatech.net
|
10902
|
+
// Submitted by Luke Bratch <luke@bratch.co.uk>
|
10903
|
+
of.je
|
10904
|
+
|
10905
|
+
// Blue Bite, LLC : https://bluebite.com
|
10906
|
+
// Submitted by Joshua Weiss <admin.engineering@bluebite.com>
|
10907
|
+
bluebite.io
|
10908
|
+
|
10859
10909
|
// Boomla : https://boomla.com
|
10860
10910
|
// Submitted by Tibor Halter <thalter@boomla.com>
|
10861
10911
|
boomla.net
|
10862
10912
|
|
10913
|
+
// Boutir : https://www.boutir.com
|
10914
|
+
// Submitted by Eric Ng Ka Ka <ngkaka@boutir.com>
|
10915
|
+
boutir.com
|
10916
|
+
|
10863
10917
|
// Boxfuse : https://boxfuse.com
|
10864
10918
|
// Submitted by Axel Fontaine <axel@boxfuse.com>
|
10865
10919
|
boxfuse.io
|
@@ -10873,49 +10927,69 @@ square7.de
|
|
10873
10927
|
bplaced.net
|
10874
10928
|
square7.net
|
10875
10929
|
|
10930
|
+
// Brendly : https://brendly.rs
|
10931
|
+
// Submitted by Dusan Radovanovic <dusan.radovanovic@brendly.rs>
|
10932
|
+
shop.brendly.rs
|
10933
|
+
|
10876
10934
|
// BrowserSafetyMark
|
10877
10935
|
// Submitted by Dave Tharp <browsersafetymark.io@quicinc.com>
|
10878
10936
|
browsersafetymark.io
|
10879
10937
|
|
10880
10938
|
// Bytemark Hosting : https://www.bytemark.co.uk
|
10881
10939
|
// Submitted by Paul Cammish <paul.cammish@bytemark.co.uk>
|
10940
|
+
uk0.bigv.io
|
10882
10941
|
dh.bytemark.co.uk
|
10883
10942
|
vm.bytemark.co.uk
|
10884
10943
|
|
10944
|
+
// Caf.js Labs LLC : https://www.cafjs.com
|
10945
|
+
// Submitted by Antonio Lain <antlai@cafjs.com>
|
10946
|
+
cafjs.com
|
10947
|
+
|
10885
10948
|
// callidomus : https://www.callidomus.com/
|
10886
10949
|
// Submitted by Marcus Popp <admin@callidomus.com>
|
10887
10950
|
mycd.eu
|
10888
10951
|
|
10952
|
+
// Carrd : https://carrd.co
|
10953
|
+
// Submitted by AJ <aj@carrd.co>
|
10954
|
+
drr.ac
|
10955
|
+
uwu.ai
|
10956
|
+
carrd.co
|
10957
|
+
crd.co
|
10958
|
+
ju.mp
|
10959
|
+
|
10889
10960
|
// CentralNic : http://www.centralnic.com/names/domains
|
10890
10961
|
// Submitted by registry <gavin.brown@centralnic.com>
|
10891
10962
|
ae.org
|
10892
|
-
ar.com
|
10893
10963
|
br.com
|
10894
10964
|
cn.com
|
10895
10965
|
com.de
|
10896
10966
|
com.se
|
10897
10967
|
de.com
|
10898
10968
|
eu.com
|
10899
|
-
gb.com
|
10900
10969
|
gb.net
|
10901
|
-
hu.com
|
10902
10970
|
hu.net
|
10903
10971
|
jp.net
|
10904
10972
|
jpn.com
|
10905
|
-
kr.com
|
10906
10973
|
mex.com
|
10907
|
-
no.com
|
10908
|
-
qc.com
|
10909
10974
|
ru.com
|
10910
10975
|
sa.com
|
10911
10976
|
se.net
|
10912
10977
|
uk.com
|
10913
10978
|
uk.net
|
10914
10979
|
us.com
|
10915
|
-
uy.com
|
10916
10980
|
za.bz
|
10917
10981
|
za.com
|
10918
10982
|
|
10983
|
+
// No longer operated by CentralNic, these entries should be adopted and/or removed by current operators
|
10984
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10985
|
+
ar.com
|
10986
|
+
gb.com
|
10987
|
+
hu.com
|
10988
|
+
kr.com
|
10989
|
+
no.com
|
10990
|
+
qc.com
|
10991
|
+
uy.com
|
10992
|
+
|
10919
10993
|
// Africa.com Web Solutions Ltd : https://registry.africa.com
|
10920
10994
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10921
10995
|
africa.com
|
@@ -10927,6 +11001,7 @@ gr.com
|
|
10927
11001
|
// Radix FZC : http://domains.in.net
|
10928
11002
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10929
11003
|
in.net
|
11004
|
+
web.in
|
10930
11005
|
|
10931
11006
|
// US REGISTRY LLC : http://us.org
|
10932
11007
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
@@ -10936,6 +11011,16 @@ us.org
|
|
10936
11011
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10937
11012
|
co.com
|
10938
11013
|
|
11014
|
+
// Roar Domains LLC : https://roar.basketball/
|
11015
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
11016
|
+
aus.basketball
|
11017
|
+
nz.basketball
|
11018
|
+
|
11019
|
+
// BRS Media : https://brsmedia.com/
|
11020
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
11021
|
+
radio.am
|
11022
|
+
radio.fm
|
11023
|
+
|
10939
11024
|
// c.la : http://www.c.la/
|
10940
11025
|
c.la
|
10941
11026
|
|
@@ -10943,13 +11028,14 @@ c.la
|
|
10943
11028
|
// Submitted by B. Blechschmidt <hostmaster@certmgr.org>
|
10944
11029
|
certmgr.org
|
10945
11030
|
|
10946
|
-
//
|
10947
|
-
// Submitted by
|
10948
|
-
|
11031
|
+
// Cityhost LLC : https://cityhost.ua
|
11032
|
+
// Submitted by Maksym Rivtin <support@cityhost.net.ua>
|
11033
|
+
cx.ua
|
10949
11034
|
|
10950
11035
|
// Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/
|
10951
|
-
// Submitted by Rishabh Nambiar <
|
11036
|
+
// Submitted by Rishabh Nambiar & Michael Brown <team@discourse.org>
|
10952
11037
|
discourse.group
|
11038
|
+
discourse.team
|
10953
11039
|
|
10954
11040
|
// ClearVox : http://www.clearvox.nl/
|
10955
11041
|
// Submitted by Leon Rowland <leon@clearvox.nl>
|
@@ -10959,10 +11045,28 @@ virtueeldomein.nl
|
|
10959
11045
|
// Submitted by Quentin Adam <noc@clever-cloud.com>
|
10960
11046
|
cleverapps.io
|
10961
11047
|
|
11048
|
+
// Clerk : https://www.clerk.dev
|
11049
|
+
// Submitted by Colin Sidoti <systems@clerk.dev>
|
11050
|
+
clerk.app
|
11051
|
+
clerkstage.app
|
11052
|
+
*.lcl.dev
|
11053
|
+
*.lclstage.dev
|
11054
|
+
*.stg.dev
|
11055
|
+
*.stgstage.dev
|
11056
|
+
|
11057
|
+
// Clic2000 : https://clic2000.fr
|
11058
|
+
// Submitted by Mathilde Blanchemanche <mathilde@clic2000.fr>
|
11059
|
+
clic2000.net
|
11060
|
+
|
11061
|
+
// ClickRising : https://clickrising.com/
|
11062
|
+
// Submitted by Umut Gumeli <infrastructure-publicsuffixlist@clickrising.com>
|
11063
|
+
clickrising.net
|
11064
|
+
|
10962
11065
|
// Cloud66 : https://www.cloud66.com/
|
10963
11066
|
// Submitted by Khash Sajadi <khash@cloud66.com>
|
10964
11067
|
c66.me
|
10965
11068
|
cloud66.ws
|
11069
|
+
cloud66.zone
|
10966
11070
|
|
10967
11071
|
// CloudAccess.net : https://www.cloudaccess.net/
|
10968
11072
|
// Submitted by Pawel Panek <noc@cloudaccess.net>
|
@@ -10977,10 +11081,20 @@ cloudaccess.net
|
|
10977
11081
|
cloudcontrolled.com
|
10978
11082
|
cloudcontrolapp.com
|
10979
11083
|
|
11084
|
+
// Cloudera, Inc. : https://www.cloudera.com/
|
11085
|
+
// Submitted by Kedarnath Waikar <security@cloudera.com>
|
11086
|
+
*.cloudera.site
|
11087
|
+
|
10980
11088
|
// Cloudflare, Inc. : https://www.cloudflare.com/
|
10981
|
-
// Submitted by
|
11089
|
+
// Submitted by Cloudflare Team <publicsuffixlist@cloudflare.com>
|
11090
|
+
pages.dev
|
11091
|
+
trycloudflare.com
|
10982
11092
|
workers.dev
|
10983
11093
|
|
11094
|
+
// Clovyr : https://clovyr.io
|
11095
|
+
// Submitted by Patrick Nielsen <patrick@clovyr.io>
|
11096
|
+
wnext.app
|
11097
|
+
|
10984
11098
|
// co.ca : http://registry.co.ca/
|
10985
11099
|
co.ca
|
10986
11100
|
|
@@ -11014,10 +11128,6 @@ cloudns.pro
|
|
11014
11128
|
cloudns.pw
|
11015
11129
|
cloudns.us
|
11016
11130
|
|
11017
|
-
// Cloudeity Inc : https://cloudeity.com
|
11018
|
-
// Submitted by Stefan Dimitrov <contact@cloudeity.com>
|
11019
|
-
cloudeity.net
|
11020
|
-
|
11021
11131
|
// CNPY : https://cnpy.gdn
|
11022
11132
|
// Submitted by Angelo Gladding <angelo@lahacker.net>
|
11023
11133
|
cnpy.gdn
|
@@ -11031,6 +11141,15 @@ co.no
|
|
11031
11141
|
webhosting.be
|
11032
11142
|
hosting-cluster.nl
|
11033
11143
|
|
11144
|
+
// Coordination Center for TLD RU and XN--P1AI : https://cctld.ru/en/domains/domens_ru/reserved/
|
11145
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
11146
|
+
ac.ru
|
11147
|
+
edu.ru
|
11148
|
+
gov.ru
|
11149
|
+
int.ru
|
11150
|
+
mil.ru
|
11151
|
+
test.ru
|
11152
|
+
|
11034
11153
|
// COSIMO GmbH : http://www.cosimo.de
|
11035
11154
|
// Submitted by Rene Marticke <rmarticke@cosimo.de>
|
11036
11155
|
dyn.cosidns.de
|
@@ -11055,11 +11174,29 @@ realm.cz
|
|
11055
11174
|
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
11056
11175
|
cupcake.is
|
11057
11176
|
|
11177
|
+
// Curv UG : https://curv-labs.de/
|
11178
|
+
// Submitted by Marvin Wiesner <Marvin@curv-labs.de>
|
11179
|
+
curv.dev
|
11180
|
+
|
11181
|
+
// Customer OCI - Oracle Dyn https://cloud.oracle.com/home https://dyn.com/dns/
|
11182
|
+
// Submitted by Gregory Drake <support@dyn.com>
|
11183
|
+
// Note: This is intended to also include customer-oci.com due to wildcards implicitly including the current label
|
11184
|
+
*.customer-oci.com
|
11185
|
+
*.oci.customer-oci.com
|
11186
|
+
*.ocp.customer-oci.com
|
11187
|
+
*.ocs.customer-oci.com
|
11188
|
+
|
11058
11189
|
// cyon GmbH : https://www.cyon.ch/
|
11059
11190
|
// Submitted by Dominic Luechinger <dol@cyon.ch>
|
11060
11191
|
cyon.link
|
11061
11192
|
cyon.site
|
11062
11193
|
|
11194
|
+
// Danger Science Group: https://dangerscience.com/
|
11195
|
+
// Submitted by Skylar MacDonald <skylar@dangerscience.com>
|
11196
|
+
fnwk.site
|
11197
|
+
folionetwork.site
|
11198
|
+
platform0.app
|
11199
|
+
|
11063
11200
|
// Daplie, Inc : https://daplie.com
|
11064
11201
|
// Submitted by AJ ONeal <aj@daplie.com>
|
11065
11202
|
daplie.me
|
@@ -11082,19 +11219,54 @@ firm.dk
|
|
11082
11219
|
reg.dk
|
11083
11220
|
store.dk
|
11084
11221
|
|
11222
|
+
// dappnode.io : https://dappnode.io/
|
11223
|
+
// Submitted by Abel Boldu / DAppNode Team <community@dappnode.io>
|
11224
|
+
dyndns.dappnode.io
|
11225
|
+
|
11085
11226
|
// dapps.earth : https://dapps.earth/
|
11086
11227
|
// Submitted by Daniil Burdakov <icqkill@gmail.com>
|
11087
11228
|
*.dapps.earth
|
11088
11229
|
*.bzz.dapps.earth
|
11089
11230
|
|
11231
|
+
// Dark, Inc. : https://darklang.com
|
11232
|
+
// Submitted by Paul Biggar <ops@darklang.com>
|
11233
|
+
builtwithdark.com
|
11234
|
+
|
11235
|
+
// DataDetect, LLC. : https://datadetect.com
|
11236
|
+
// Submitted by Andrew Banchich <abanchich@sceven.com>
|
11237
|
+
demo.datadetect.com
|
11238
|
+
instance.datadetect.com
|
11239
|
+
|
11240
|
+
// Datawire, Inc : https://www.datawire.io
|
11241
|
+
// Submitted by Richard Li <secalert@datawire.io>
|
11242
|
+
edgestack.me
|
11243
|
+
|
11244
|
+
// DDNS5 : https://ddns5.com
|
11245
|
+
// Submitted by Cameron Elliott <cameron@cameronelliott.com>
|
11246
|
+
ddns5.com
|
11247
|
+
|
11090
11248
|
// Debian : https://www.debian.org/
|
11091
11249
|
// Submitted by Peter Palfrader / Debian Sysadmin Team <dsa-publicsuffixlist@debian.org>
|
11092
11250
|
debian.net
|
11093
11251
|
|
11252
|
+
// Deno Land Inc : https://deno.com/
|
11253
|
+
// Submitted by Luca Casonato <hostmaster@deno.com>
|
11254
|
+
deno.dev
|
11255
|
+
deno-staging.dev
|
11256
|
+
|
11094
11257
|
// deSEC : https://desec.io/
|
11095
11258
|
// Submitted by Peter Thomassen <peter@desec.io>
|
11096
11259
|
dedyn.io
|
11097
11260
|
|
11261
|
+
// Diher Solutions : https://diher.solutions
|
11262
|
+
// Submitted by Didi Hermawan <mail@diher.solutions>
|
11263
|
+
*.rss.my.id
|
11264
|
+
*.diher.solutions
|
11265
|
+
|
11266
|
+
// DNS Africa Ltd https://dns.business
|
11267
|
+
// Submitted by Calvin Browne <calvin@dns.business>
|
11268
|
+
jozi.biz
|
11269
|
+
|
11098
11270
|
// DNShome : https://www.dnshome.de/
|
11099
11271
|
// Submitted by Norbert Auler <mail@dnshome.de>
|
11100
11272
|
dnshome.de
|
@@ -11108,6 +11280,10 @@ shop.th
|
|
11108
11280
|
// Submitted by Paul Fang <mis@draytek.com>
|
11109
11281
|
drayddns.com
|
11110
11282
|
|
11283
|
+
// DreamCommerce : https://shoper.pl/
|
11284
|
+
// Submitted by Konrad Kotarba <konrad.kotarba@dreamcommerce.com>
|
11285
|
+
shoparena.pl
|
11286
|
+
|
11111
11287
|
// DreamHost : http://www.dreamhost.com/
|
11112
11288
|
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com>
|
11113
11289
|
dreamhosters.com
|
@@ -11125,6 +11301,13 @@ drud.us
|
|
11125
11301
|
// Submitted by Richard Harper <richard@duckdns.org>
|
11126
11302
|
duckdns.org
|
11127
11303
|
|
11304
|
+
// Bip : https://bip.sh
|
11305
|
+
// Submitted by Joel Kennedy <joel@bip.sh>
|
11306
|
+
bip.sh
|
11307
|
+
|
11308
|
+
// bitbridge.net : Submitted by Craig Welch, abeliidev@gmail.com
|
11309
|
+
bitbridge.net
|
11310
|
+
|
11128
11311
|
// dy.fi : http://dy.fi/
|
11129
11312
|
// Submitted by Heikki Hannikainen <hessu@hes.iki.fi>
|
11130
11313
|
dy.fi
|
@@ -11428,6 +11611,10 @@ ddnss.org
|
|
11428
11611
|
definima.net
|
11429
11612
|
definima.io
|
11430
11613
|
|
11614
|
+
// DigitalOcean : https://digitalocean.com/
|
11615
|
+
// Submitted by Braxton Huggins <bhuggins@digitalocean.com>
|
11616
|
+
ondigitalocean.app
|
11617
|
+
|
11431
11618
|
// dnstrace.pro : https://dnstrace.pro/
|
11432
11619
|
// Submitted by Chris Partridge <chris@partridge.tech>
|
11433
11620
|
bci.dnstrace.pro
|
@@ -11456,18 +11643,43 @@ blogsite.xyz
|
|
11456
11643
|
// Submitted by Dominik Menke <dom@digineo.de>
|
11457
11644
|
dynv6.net
|
11458
11645
|
|
11646
|
+
// Ellucian : https://ellucian.com
|
11647
|
+
// Submitted by Josue Colon <CloudOps-Network@ellucian.com>
|
11648
|
+
elluciancrmadvance.com
|
11649
|
+
elluciancrmadvise.com
|
11650
|
+
elluciancrmrecruit.com
|
11651
|
+
|
11459
11652
|
// E4YOU spol. s.r.o. : https://e4you.cz/
|
11460
11653
|
// Submitted by Vladimir Dudr <info@e4you.cz>
|
11461
11654
|
e4.cz
|
11462
11655
|
|
11656
|
+
// eero : https://eero.com/
|
11657
|
+
// Submitted by Yue Kang <eero-dynamic-dns@amazon.com>
|
11658
|
+
eero.online
|
11659
|
+
eero-stage.online
|
11660
|
+
|
11661
|
+
// Elementor : Elementor Ltd.
|
11662
|
+
// Submitted by Anton Barkan <antonb@elementor.com>
|
11663
|
+
elementor.cloud
|
11664
|
+
elementor.cool
|
11665
|
+
|
11666
|
+
// En root‽ : https://en-root.org
|
11667
|
+
// Submitted by Emmanuel Raviart <emmanuel@raviart.com>
|
11668
|
+
en-root.fr
|
11669
|
+
|
11463
11670
|
// Enalean SAS: https://www.enalean.com
|
11464
11671
|
// Submitted by Thomas Cottier <thomas.cottier@enalean.com>
|
11465
11672
|
mytuleap.com
|
11673
|
+
tuleap-partners.com
|
11466
11674
|
|
11467
|
-
//
|
11468
|
-
// Submitted by
|
11469
|
-
|
11470
|
-
|
11675
|
+
// ECG Robotics, Inc: https://ecgrobotics.org
|
11676
|
+
// Submitted by <frc1533@ecgrobotics.org>
|
11677
|
+
onred.one
|
11678
|
+
staging.onred.one
|
11679
|
+
|
11680
|
+
// One.com: https://www.one.com/
|
11681
|
+
// Submitted by Jacob Bunk Nielsen <jbn@one.com>
|
11682
|
+
service.one
|
11471
11683
|
|
11472
11684
|
// EU.org https://eu.org/
|
11473
11685
|
// Submitted by Pierre Beyssac <hostmaster@eu.org>
|
@@ -11528,6 +11740,10 @@ tr.eu.org
|
|
11528
11740
|
uk.eu.org
|
11529
11741
|
us.eu.org
|
11530
11742
|
|
11743
|
+
// Eurobyte : https://eurobyte.ru
|
11744
|
+
// Submitted by Evgeniy Subbotin <e.subbotin@eurobyte.ru>
|
11745
|
+
eurodir.ru
|
11746
|
+
|
11531
11747
|
// Evennode : http://www.evennode.com/
|
11532
11748
|
// Submitted by Michal Kralik <support@evennode.com>
|
11533
11749
|
eu-1.evennode.com
|
@@ -11547,6 +11763,10 @@ twmail.org
|
|
11547
11763
|
mymailer.com.tw
|
11548
11764
|
url.tw
|
11549
11765
|
|
11766
|
+
// Fabrica Technologies, Inc. : https://www.fabrica.dev/
|
11767
|
+
// Submitted by Eric Jiang <eric@fabrica.dev>
|
11768
|
+
onfabrica.com
|
11769
|
+
|
11550
11770
|
// Facebook, Inc.
|
11551
11771
|
// Submitted by Peter Ruibal <public-suffix@fb.com>
|
11552
11772
|
apps.fbsbx.com
|
@@ -11630,9 +11850,11 @@ vologda.su
|
|
11630
11850
|
// Fancy Bits, LLC : http://getchannels.com
|
11631
11851
|
// Submitted by Aman Gupta <aman@getchannels.com>
|
11632
11852
|
channelsdvr.net
|
11853
|
+
u.channelsdvr.net
|
11633
11854
|
|
11634
11855
|
// Fastly Inc. : http://www.fastly.com/
|
11635
11856
|
// Submitted by Fastly Security <security@fastly.com>
|
11857
|
+
edgecompute.app
|
11636
11858
|
fastly-terrarium.com
|
11637
11859
|
fastlylb.net
|
11638
11860
|
map.fastlylb.net
|
@@ -11646,12 +11868,11 @@ global.ssl.fastly.net
|
|
11646
11868
|
|
11647
11869
|
// FASTVPS EESTI OU : https://fastvps.ru/
|
11648
11870
|
// Submitted by Likhachev Vasiliy <lihachev@fastvps.ru>
|
11649
|
-
fastpanel.direct
|
11650
11871
|
fastvps-server.com
|
11651
|
-
|
11652
|
-
|
11653
|
-
|
11654
|
-
|
11872
|
+
fastvps.host
|
11873
|
+
myfast.host
|
11874
|
+
fastvps.site
|
11875
|
+
myfast.space
|
11655
11876
|
|
11656
11877
|
// Fedora : https://fedoraproject.org/
|
11657
11878
|
// submitted by Patrick Uiterwijk <puiterwijk@fedoraproject.org>
|
@@ -11661,10 +11882,22 @@ cloud.fedoraproject.org
|
|
11661
11882
|
app.os.fedoraproject.org
|
11662
11883
|
app.os.stg.fedoraproject.org
|
11663
11884
|
|
11885
|
+
// FearWorks Media Ltd. : https://fearworksmedia.co.uk
|
11886
|
+
// submitted by Keith Fairley <domains@fearworksmedia.co.uk>
|
11887
|
+
couk.me
|
11888
|
+
ukco.me
|
11889
|
+
conn.uk
|
11890
|
+
copro.uk
|
11891
|
+
hosp.uk
|
11892
|
+
|
11664
11893
|
// Fermax : https://fermax.com/
|
11665
11894
|
// submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
|
11666
11895
|
mydobiss.com
|
11667
11896
|
|
11897
|
+
// FH Muenster : https://www.fh-muenster.de
|
11898
|
+
// Submitted by Robin Naundorf <r.naundorf@fh-muenster.de>
|
11899
|
+
fh-muenster.io
|
11900
|
+
|
11668
11901
|
// Filegear Inc. : https://www.filegear.com
|
11669
11902
|
// Submitted by Jason Zhu <jason@owtware.com>
|
11670
11903
|
filegear.me
|
@@ -11679,11 +11912,46 @@ filegear-sg.me
|
|
11679
11912
|
// Submitted by Chris Raynor <chris@firebase.com>
|
11680
11913
|
firebaseapp.com
|
11681
11914
|
|
11915
|
+
// Firewebkit : https://www.firewebkit.com
|
11916
|
+
// Submitted by Majid Qureshi <mqureshi@amrayn.com>
|
11917
|
+
fireweb.app
|
11918
|
+
|
11919
|
+
// FLAP : https://www.flap.cloud
|
11920
|
+
// Submitted by Louis Chemineau <louis@chmn.me>
|
11921
|
+
flap.id
|
11922
|
+
|
11923
|
+
// fly.io: https://fly.io
|
11924
|
+
// Submitted by Kurt Mackey <kurt@fly.io>
|
11925
|
+
fly.dev
|
11926
|
+
edgeapp.net
|
11927
|
+
shw.io
|
11928
|
+
|
11682
11929
|
// Flynn : https://flynn.io
|
11683
11930
|
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
11684
|
-
flynnhub.com
|
11685
11931
|
flynnhosting.net
|
11686
11932
|
|
11933
|
+
// Forgerock : https://www.forgerock.com
|
11934
|
+
// Submitted by Roderick Parr <roderick.parr@forgerock.com>
|
11935
|
+
forgeblocks.com
|
11936
|
+
id.forgerock.io
|
11937
|
+
|
11938
|
+
// Framer : https://www.framer.com
|
11939
|
+
// Submitted by Koen Rouwhorst <koenrh@framer.com>
|
11940
|
+
framer.app
|
11941
|
+
framercanvas.com
|
11942
|
+
|
11943
|
+
// Frusky MEDIA&PR : https://www.frusky.de
|
11944
|
+
// Submitted by Victor Pupynin <hallo@frusky.de>
|
11945
|
+
*.frusky.de
|
11946
|
+
|
11947
|
+
// RavPage : https://www.ravpage.co.il
|
11948
|
+
// Submitted by Roni Horowitz <roni@responder.co.il>
|
11949
|
+
ravpage.co.il
|
11950
|
+
|
11951
|
+
// Frederik Braun https://frederik-braun.com
|
11952
|
+
// Submitted by Frederik Braun <fb@frederik-braun.com>
|
11953
|
+
0e.vc
|
11954
|
+
|
11687
11955
|
// Freebox : http://www.freebox.fr
|
11688
11956
|
// Submitted by Romain Fliedel <rfliedel@freebox.fr>
|
11689
11957
|
freebox-os.com
|
@@ -11697,6 +11965,14 @@ freeboxos.fr
|
|
11697
11965
|
// Submitted by Daniel Stone <daniel@fooishbar.org>
|
11698
11966
|
freedesktop.org
|
11699
11967
|
|
11968
|
+
// freemyip.com : https://freemyip.com
|
11969
|
+
// Submitted by Cadence <contact@freemyip.com>
|
11970
|
+
freemyip.com
|
11971
|
+
|
11972
|
+
// FunkFeuer - Verein zur Förderung freier Netze : https://www.funkfeuer.at
|
11973
|
+
// Submitted by Daniel A. Maierhofer <vorstand@funkfeuer.at>
|
11974
|
+
wien.funkfeuer.at
|
11975
|
+
|
11700
11976
|
// Futureweb OG : http://www.futureweb.at
|
11701
11977
|
// Submitted by Andreas Schnederle-Wagner <schnederle@futureweb.at>
|
11702
11978
|
*.futurecms.at
|
@@ -11712,15 +11988,67 @@ futuremailing.at
|
|
11712
11988
|
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
|
11713
11989
|
service.gov.uk
|
11714
11990
|
|
11991
|
+
// Gehirn Inc. : https://www.gehirn.co.jp/
|
11992
|
+
// Submitted by Kohei YOSHIDA <tech@gehirn.co.jp>
|
11993
|
+
gehirn.ne.jp
|
11994
|
+
usercontent.jp
|
11995
|
+
|
11996
|
+
// Gentlent, Inc. : https://www.gentlent.com
|
11997
|
+
// Submitted by Tom Klein <tom@gentlent.com>
|
11998
|
+
gentapps.com
|
11999
|
+
gentlentapis.com
|
12000
|
+
lab.ms
|
12001
|
+
cdn-edges.net
|
12002
|
+
|
12003
|
+
// Ghost Foundation : https://ghost.org
|
12004
|
+
// Submitted by Matt Hanley <security@ghost.org>
|
12005
|
+
ghost.io
|
12006
|
+
|
12007
|
+
// GignoSystemJapan: http://gsj.bz
|
12008
|
+
// Submitted by GignoSystemJapan <kakutou-ec@gsj.bz>
|
12009
|
+
gsj.bz
|
12010
|
+
|
11715
12011
|
// GitHub, Inc.
|
11716
12012
|
// Submitted by Patrick Toomey <security@github.com>
|
11717
|
-
github.io
|
11718
12013
|
githubusercontent.com
|
12014
|
+
githubpreview.dev
|
12015
|
+
github.io
|
11719
12016
|
|
11720
12017
|
// GitLab, Inc.
|
11721
12018
|
// Submitted by Alex Hanselka <alex@gitlab.com>
|
11722
12019
|
gitlab.io
|
11723
12020
|
|
12021
|
+
// Gitplac.si - https://gitplac.si
|
12022
|
+
// Submitted by Aljaž Starc <me@aljaxus.eu>
|
12023
|
+
gitapp.si
|
12024
|
+
gitpage.si
|
12025
|
+
|
12026
|
+
// Glitch, Inc : https://glitch.com
|
12027
|
+
// Submitted by Mads Hartmann <mads@glitch.com>
|
12028
|
+
glitch.me
|
12029
|
+
|
12030
|
+
// Global NOG Alliance : https://nogalliance.org/
|
12031
|
+
// Submitted by Sander Steffann <sander@nogalliance.org>
|
12032
|
+
nog.community
|
12033
|
+
|
12034
|
+
// Globe Hosting SRL : https://www.globehosting.com/
|
12035
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
12036
|
+
co.ro
|
12037
|
+
shop.ro
|
12038
|
+
|
12039
|
+
// GMO Pepabo, Inc. : https://pepabo.com/
|
12040
|
+
// Submitted by dojineko <admin@pepabo.com>
|
12041
|
+
lolipop.io
|
12042
|
+
|
12043
|
+
// GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/
|
12044
|
+
// Submitted by Tom Whitwell <gov-uk-paas-support@digital.cabinet-office.gov.uk>
|
12045
|
+
cloudapps.digital
|
12046
|
+
london.cloudapps.digital
|
12047
|
+
|
12048
|
+
// GOV.UK Pay : https://www.payments.service.gov.uk/
|
12049
|
+
// Submitted by Richard Baker <richard.baker@digital.cabinet-office.gov.uk>
|
12050
|
+
pymnt.uk
|
12051
|
+
|
11724
12052
|
// UKHomeOffice : https://www.gov.uk/government/organisations/home-office
|
11725
12053
|
// Submitted by Jon Shanks <jon.shanks@digital.homeoffice.gov.uk>
|
11726
12054
|
homeoffice.gov.uk
|
@@ -11728,7 +12056,6 @@ homeoffice.gov.uk
|
|
11728
12056
|
// GlobeHosting, Inc.
|
11729
12057
|
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
11730
12058
|
ro.im
|
11731
|
-
shop.ro
|
11732
12059
|
|
11733
12060
|
// GoIP DNS Services : http://www.goip.de
|
11734
12061
|
// Submitted by Christian Poulter <milchstrasse@goip.de>
|
@@ -11738,8 +12065,21 @@ goip.de
|
|
11738
12065
|
// Submitted by Eduardo Vela <evn@google.com>
|
11739
12066
|
run.app
|
11740
12067
|
a.run.app
|
12068
|
+
web.app
|
11741
12069
|
*.0emm.com
|
11742
12070
|
appspot.com
|
12071
|
+
*.r.appspot.com
|
12072
|
+
codespot.com
|
12073
|
+
googleapis.com
|
12074
|
+
googlecode.com
|
12075
|
+
pagespeedmobilizer.com
|
12076
|
+
publishproxy.com
|
12077
|
+
withgoogle.com
|
12078
|
+
withyoutube.com
|
12079
|
+
*.gateway.dev
|
12080
|
+
cloud.goog
|
12081
|
+
translate.goog
|
12082
|
+
cloudfunctions.net
|
11743
12083
|
blogspot.ae
|
11744
12084
|
blogspot.al
|
11745
12085
|
blogspot.am
|
@@ -11814,15 +12154,32 @@ blogspot.td
|
|
11814
12154
|
blogspot.tw
|
11815
12155
|
blogspot.ug
|
11816
12156
|
blogspot.vn
|
11817
|
-
|
11818
|
-
|
11819
|
-
|
11820
|
-
|
11821
|
-
|
11822
|
-
|
11823
|
-
|
11824
|
-
|
11825
|
-
|
12157
|
+
|
12158
|
+
// Goupile : https://goupile.fr
|
12159
|
+
// Submitted by Niels Martignene <hello@goupile.fr>
|
12160
|
+
goupile.fr
|
12161
|
+
|
12162
|
+
// Group 53, LLC : https://www.group53.com
|
12163
|
+
// Submitted by Tyler Todd <noc@nova53.net>
|
12164
|
+
awsmppl.com
|
12165
|
+
|
12166
|
+
// GünstigBestellen : https://günstigbestellen.de
|
12167
|
+
// Submitted by Furkan Akkoc <info@hendelzon.de>
|
12168
|
+
günstigbestellen.de
|
12169
|
+
günstigliefern.de
|
12170
|
+
|
12171
|
+
// Hakaran group: http://hakaran.cz
|
12172
|
+
// Submited by Arseniy Sokolov <security@hakaran.cz>
|
12173
|
+
fin.ci
|
12174
|
+
free.hr
|
12175
|
+
caa.li
|
12176
|
+
ua.rs
|
12177
|
+
conf.se
|
12178
|
+
|
12179
|
+
// Handshake : https://handshake.org
|
12180
|
+
// Submitted by Mike Damm <md@md.vc>
|
12181
|
+
hs.zone
|
12182
|
+
hs.run
|
11826
12183
|
|
11827
12184
|
// Hashbang : https://hashbang.sh
|
11828
12185
|
hashbang.sh
|
@@ -11832,6 +12189,10 @@ hashbang.sh
|
|
11832
12189
|
hasura.app
|
11833
12190
|
hasura-app.io
|
11834
12191
|
|
12192
|
+
// Heilbronn University of Applied Sciences - Faculty Informatics (GitLab Pages): https://www.hs-heilbronn.de
|
12193
|
+
// Submitted by Richard Zowalla <mi-admin@hs-heilbronn.de>
|
12194
|
+
pages.it.hs-heilbronn.de
|
12195
|
+
|
11835
12196
|
// Hepforge : https://www.hepforge.org
|
11836
12197
|
// Submitted by David Grellscheid <admin@hepforge.org>
|
11837
12198
|
hepforge.org
|
@@ -11849,14 +12210,56 @@ ravendb.me
|
|
11849
12210
|
development.run
|
11850
12211
|
ravendb.run
|
11851
12212
|
|
12213
|
+
// home.pl S.A.: https://home.pl
|
12214
|
+
// Submited by Krzysztof Wolski <krzysztof.wolski@home.eu>
|
12215
|
+
homesklep.pl
|
12216
|
+
|
12217
|
+
// Hong Kong Productivity Council: https://www.hkpc.org/
|
12218
|
+
// Submitted by SECaaS Team <summchan@hkpc.org>
|
12219
|
+
secaas.hk
|
12220
|
+
|
12221
|
+
// HOSTBIP REGISTRY : https://www.hostbip.com/
|
12222
|
+
// Submitted by Atanunu Igbunuroghene <publicsuffixlist@hostbip.com>
|
12223
|
+
orx.biz
|
12224
|
+
biz.gl
|
12225
|
+
col.ng
|
12226
|
+
firm.ng
|
12227
|
+
gen.ng
|
12228
|
+
ltd.ng
|
12229
|
+
ngo.ng
|
12230
|
+
edu.scot
|
12231
|
+
sch.so
|
12232
|
+
org.yt
|
12233
|
+
|
12234
|
+
// HostyHosting (hostyhosting.com)
|
12235
|
+
hostyhosting.io
|
12236
|
+
|
12237
|
+
// Häkkinen.fi
|
12238
|
+
// Submitted by Eero Häkkinen <Eero+psl@Häkkinen.fi>
|
12239
|
+
häkkinen.fi
|
12240
|
+
|
11852
12241
|
// Ici la Lune : http://www.icilalune.com/
|
11853
12242
|
// Submitted by Simon Morvan <simon@icilalune.com>
|
12243
|
+
*.moonscale.io
|
11854
12244
|
moonscale.net
|
11855
12245
|
|
11856
12246
|
// iki.fi
|
11857
12247
|
// Submitted by Hannu Aronsson <haa@iki.fi>
|
11858
12248
|
iki.fi
|
11859
12249
|
|
12250
|
+
// Impertrix Solutions : <https://impertrixcdn.com>
|
12251
|
+
// Submitted by Zhixiang Zhao <csuite@impertrix.com>
|
12252
|
+
impertrixcdn.com
|
12253
|
+
impertrix.com
|
12254
|
+
|
12255
|
+
// Incsub, LLC: https://incsub.com/
|
12256
|
+
// Submitted by Aaron Edwards <sysadmins@incsub.com>
|
12257
|
+
smushcdn.com
|
12258
|
+
wphostedmail.com
|
12259
|
+
wpmucdn.com
|
12260
|
+
tempurl.host
|
12261
|
+
wpmudev.host
|
12262
|
+
|
11860
12263
|
// Individual Network Berlin e.V. : https://www.in-berlin.de/
|
11861
12264
|
// Submitted by Christian Seitz <chris@in-berlin.de>
|
11862
12265
|
dyn-berlin.de
|
@@ -11912,14 +12315,114 @@ to.leg.br
|
|
11912
12315
|
// Submitted by Wolfgang Schwarz <admin@intermetrics.de>
|
11913
12316
|
pixolino.com
|
11914
12317
|
|
12318
|
+
// Internet-Pro, LLP: https://netangels.ru/
|
12319
|
+
// Submited by Vasiliy Sheredeko <piphon@gmail.com>
|
12320
|
+
na4u.ru
|
12321
|
+
|
12322
|
+
// iopsys software solutions AB : https://iopsys.eu/
|
12323
|
+
// Submitted by Roman Azarenko <roman.azarenko@iopsys.eu>
|
12324
|
+
iopsys.se
|
12325
|
+
|
11915
12326
|
// IPiFony Systems, Inc. : https://www.ipifony.com/
|
11916
12327
|
// Submitted by Matthew Hardeman <mhardeman@ipifony.com>
|
11917
12328
|
ipifony.net
|
11918
12329
|
|
11919
12330
|
// IServ GmbH : https://iserv.eu
|
11920
|
-
// Submitted by Kim-Alexander Brodowski <
|
12331
|
+
// Submitted by Kim-Alexander Brodowski <info@iserv.eu>
|
11921
12332
|
mein-iserv.de
|
12333
|
+
schulserver.de
|
11922
12334
|
test-iserv.de
|
12335
|
+
iserv.dev
|
12336
|
+
|
12337
|
+
// I-O DATA DEVICE, INC. : http://www.iodata.com/
|
12338
|
+
// Submitted by Yuji Minagawa <domains-admin@iodata.jp>
|
12339
|
+
iobb.net
|
12340
|
+
|
12341
|
+
// Jelastic, Inc. : https://jelastic.com/
|
12342
|
+
// Submited by Ihor Kolodyuk <ik@jelastic.com>
|
12343
|
+
mel.cloudlets.com.au
|
12344
|
+
cloud.interhostsolutions.be
|
12345
|
+
users.scale.virtualcloud.com.br
|
12346
|
+
mycloud.by
|
12347
|
+
alp1.ae.flow.ch
|
12348
|
+
appengine.flow.ch
|
12349
|
+
es-1.axarnet.cloud
|
12350
|
+
diadem.cloud
|
12351
|
+
vip.jelastic.cloud
|
12352
|
+
jele.cloud
|
12353
|
+
it1.eur.aruba.jenv-aruba.cloud
|
12354
|
+
it1.jenv-aruba.cloud
|
12355
|
+
keliweb.cloud
|
12356
|
+
cs.keliweb.cloud
|
12357
|
+
oxa.cloud
|
12358
|
+
tn.oxa.cloud
|
12359
|
+
uk.oxa.cloud
|
12360
|
+
primetel.cloud
|
12361
|
+
uk.primetel.cloud
|
12362
|
+
ca.reclaim.cloud
|
12363
|
+
uk.reclaim.cloud
|
12364
|
+
us.reclaim.cloud
|
12365
|
+
ch.trendhosting.cloud
|
12366
|
+
de.trendhosting.cloud
|
12367
|
+
jele.club
|
12368
|
+
amscompute.com
|
12369
|
+
clicketcloud.com
|
12370
|
+
dopaas.com
|
12371
|
+
hidora.com
|
12372
|
+
paas.hosted-by-previder.com
|
12373
|
+
rag-cloud.hosteur.com
|
12374
|
+
rag-cloud-ch.hosteur.com
|
12375
|
+
jcloud.ik-server.com
|
12376
|
+
jcloud-ver-jpc.ik-server.com
|
12377
|
+
demo.jelastic.com
|
12378
|
+
kilatiron.com
|
12379
|
+
paas.massivegrid.com
|
12380
|
+
jed.wafaicloud.com
|
12381
|
+
lon.wafaicloud.com
|
12382
|
+
ryd.wafaicloud.com
|
12383
|
+
j.scaleforce.com.cy
|
12384
|
+
jelastic.dogado.eu
|
12385
|
+
fi.cloudplatform.fi
|
12386
|
+
demo.datacenter.fi
|
12387
|
+
paas.datacenter.fi
|
12388
|
+
jele.host
|
12389
|
+
mircloud.host
|
12390
|
+
paas.beebyte.io
|
12391
|
+
sekd1.beebyteapp.io
|
12392
|
+
jele.io
|
12393
|
+
cloud-fr1.unispace.io
|
12394
|
+
jc.neen.it
|
12395
|
+
cloud.jelastic.open.tim.it
|
12396
|
+
jcloud.kz
|
12397
|
+
upaas.kazteleport.kz
|
12398
|
+
cloudjiffy.net
|
12399
|
+
fra1-de.cloudjiffy.net
|
12400
|
+
west1-us.cloudjiffy.net
|
12401
|
+
jls-sto1.elastx.net
|
12402
|
+
jls-sto2.elastx.net
|
12403
|
+
jls-sto3.elastx.net
|
12404
|
+
faststacks.net
|
12405
|
+
fr-1.paas.massivegrid.net
|
12406
|
+
lon-1.paas.massivegrid.net
|
12407
|
+
lon-2.paas.massivegrid.net
|
12408
|
+
ny-1.paas.massivegrid.net
|
12409
|
+
ny-2.paas.massivegrid.net
|
12410
|
+
sg-1.paas.massivegrid.net
|
12411
|
+
jelastic.saveincloud.net
|
12412
|
+
nordeste-idc.saveincloud.net
|
12413
|
+
j.scaleforce.net
|
12414
|
+
jelastic.tsukaeru.net
|
12415
|
+
sdscloud.pl
|
12416
|
+
unicloud.pl
|
12417
|
+
mircloud.ru
|
12418
|
+
jelastic.regruhosting.ru
|
12419
|
+
enscaled.sg
|
12420
|
+
jele.site
|
12421
|
+
jelastic.team
|
12422
|
+
orangecloud.tn
|
12423
|
+
j.layershift.co.uk
|
12424
|
+
phx.enscaled.us
|
12425
|
+
mircloud.us
|
11923
12426
|
|
11924
12427
|
// Jino : https://www.jino.ru
|
11925
12428
|
// Submitted by Sergey Ulyashin <ulyashin@jino.ru>
|
@@ -11929,6 +12432,10 @@ myjino.ru
|
|
11929
12432
|
*.spectrum.myjino.ru
|
11930
12433
|
*.vps.myjino.ru
|
11931
12434
|
|
12435
|
+
// Jotelulu S.L. : https://jotelulu.com
|
12436
|
+
// Submitted by Daniel Fariña <ingenieria@jotelulu.com>
|
12437
|
+
jotelulu.cloud
|
12438
|
+
|
11932
12439
|
// Joyent : https://www.joyent.com/
|
11933
12440
|
// Submitted by Brian Bennett <brian.bennett@joyent.com>
|
11934
12441
|
*.triton.zone
|
@@ -11938,18 +12445,42 @@ myjino.ru
|
|
11938
12445
|
// Submitted by Stefan Keim <admin@js.org>
|
11939
12446
|
js.org
|
11940
12447
|
|
12448
|
+
// KaasHosting : http://www.kaashosting.nl/
|
12449
|
+
// Submitted by Wouter Bakker <hostmaster@kaashosting.nl>
|
12450
|
+
kaas.gg
|
12451
|
+
khplay.nl
|
12452
|
+
|
11941
12453
|
// Keyweb AG : https://www.keyweb.de
|
11942
12454
|
// Submitted by Martin Dannehl <postmaster@keymachine.de>
|
11943
12455
|
keymachine.de
|
11944
12456
|
|
12457
|
+
// KingHost : https://king.host
|
12458
|
+
// Submitted by Felipe Keller Braz <felipebraz@kinghost.com.br>
|
12459
|
+
kinghost.net
|
12460
|
+
uni5.net
|
12461
|
+
|
11945
12462
|
// KnightPoint Systems, LLC : http://www.knightpoint.com/
|
11946
12463
|
// Submitted by Roy Keene <rkeene@knightpoint.com>
|
11947
12464
|
knightpoint.systems
|
11948
12465
|
|
12466
|
+
// KUROKU LTD : https://kuroku.ltd/
|
12467
|
+
// Submitted by DisposaBoy <security@oya.to>
|
12468
|
+
oya.to
|
12469
|
+
|
12470
|
+
// Katholieke Universiteit Leuven: https://www.kuleuven.be
|
12471
|
+
// Submitted by Abuse KU Leuven <abuse@kuleuven.be>
|
12472
|
+
kuleuven.cloud
|
12473
|
+
ezproxy.kuleuven.be
|
12474
|
+
|
11949
12475
|
// .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf
|
11950
12476
|
co.krd
|
11951
12477
|
edu.krd
|
11952
12478
|
|
12479
|
+
// Krellian Ltd. : https://krellian.com
|
12480
|
+
// Submitted by Ben Francis <ben@krellian.com>
|
12481
|
+
krellian.net
|
12482
|
+
webthings.io
|
12483
|
+
|
11953
12484
|
// LCube - Professional hosting e.K. : https://www.lcube-webhosting.de
|
11954
12485
|
// Submitted by Lars Laehn <info@lcube.de>
|
11955
12486
|
git-repos.de
|
@@ -11962,6 +12493,10 @@ leadpages.co
|
|
11962
12493
|
lpages.co
|
11963
12494
|
lpusercontent.com
|
11964
12495
|
|
12496
|
+
// Lelux.fi : https://lelux.fi/
|
12497
|
+
// Submitted by Lelux Admin <publisuffix@lelux.site>
|
12498
|
+
lelux.site
|
12499
|
+
|
11965
12500
|
// Lifetime Hosting : https://Lifetime.Hosting/
|
11966
12501
|
// Submitted by Mike Fillator <support@lifetime.hosting>
|
11967
12502
|
co.business
|
@@ -11976,19 +12511,41 @@ co.technology
|
|
11976
12511
|
// Submitted by Greg Holland <greg.holland@lmpm.com>
|
11977
12512
|
app.lmpm.com
|
11978
12513
|
|
11979
|
-
// Linki Tools UG : https://linki.tools
|
11980
|
-
// Submitted by Paulo Matos <pmatos@linki.tools>
|
11981
|
-
linkitools.space
|
11982
|
-
|
11983
12514
|
// linkyard ldt: https://www.linkyard.ch/
|
11984
12515
|
// Submitted by Mario Siegenthaler <mario.siegenthaler@linkyard.ch>
|
11985
12516
|
linkyard.cloud
|
11986
12517
|
linkyard-cloud.ch
|
11987
12518
|
|
12519
|
+
// Linode : https://linode.com
|
12520
|
+
// Submitted by <security@linode.com>
|
12521
|
+
members.linode.com
|
12522
|
+
*.nodebalancer.linode.com
|
12523
|
+
*.linodeobjects.com
|
12524
|
+
|
11988
12525
|
// LiquidNet Ltd : http://www.liquidnetlimited.com/
|
11989
12526
|
// Submitted by Victor Velchev <admin@liquidnetlimited.com>
|
11990
12527
|
we.bs
|
11991
12528
|
|
12529
|
+
// localzone.xyz
|
12530
|
+
// Submitted by Kenny Niehage <hello@yahe.sh>
|
12531
|
+
localzone.xyz
|
12532
|
+
|
12533
|
+
// Log'in Line : https://www.loginline.com/
|
12534
|
+
// Submitted by Rémi Mach <remi.mach@loginline.com>
|
12535
|
+
loginline.app
|
12536
|
+
loginline.dev
|
12537
|
+
loginline.io
|
12538
|
+
loginline.services
|
12539
|
+
loginline.site
|
12540
|
+
|
12541
|
+
// Lokalized : https://lokalized.nl
|
12542
|
+
// Submitted by Noah Taheij <noah@lokalized.nl>
|
12543
|
+
servers.run
|
12544
|
+
|
12545
|
+
// Lõhmus Family, The
|
12546
|
+
// Submitted by Heiki Lõhmus <hostmaster at lohmus dot me>
|
12547
|
+
lohmus.me
|
12548
|
+
|
11992
12549
|
// LubMAN UMCS Sp. z o.o : https://lubman.pl/
|
11993
12550
|
// Submitted by Ireneusz Maliszewski <ireneusz.maliszewski@lubman.pl>
|
11994
12551
|
krasnik.pl
|
@@ -12000,7 +12557,6 @@ swidnik.pl
|
|
12000
12557
|
|
12001
12558
|
// Lug.org.uk : https://lug.org.uk
|
12002
12559
|
// Submitted by Jon Spriggs <admin@lug.org.uk>
|
12003
|
-
uklugs.org
|
12004
12560
|
glug.org.uk
|
12005
12561
|
lug.org.uk
|
12006
12562
|
lugs.org.uk
|
@@ -12026,6 +12582,7 @@ barsy.online
|
|
12026
12582
|
barsy.org
|
12027
12583
|
barsy.pro
|
12028
12584
|
barsy.pub
|
12585
|
+
barsy.ro
|
12029
12586
|
barsy.shop
|
12030
12587
|
barsy.site
|
12031
12588
|
barsy.support
|
@@ -12044,6 +12601,34 @@ mayfirst.org
|
|
12044
12601
|
// Submitted by Ilya Zaretskiy <zaretskiy@corp.mail.ru>
|
12045
12602
|
hb.cldmail.ru
|
12046
12603
|
|
12604
|
+
// Mail Transfer Platform : https://www.neupeer.com
|
12605
|
+
// Submitted by Li Hui <lihui@neupeer.com>
|
12606
|
+
cn.vu
|
12607
|
+
|
12608
|
+
// Maze Play: https://www.mazeplay.com
|
12609
|
+
// Submitted by Adam Humpherys <adam@mws.dev>
|
12610
|
+
mazeplay.com
|
12611
|
+
|
12612
|
+
// mcpe.me : https://mcpe.me
|
12613
|
+
// Submitted by Noa Heyl <hi@noa.dev>
|
12614
|
+
mcpe.me
|
12615
|
+
|
12616
|
+
// McHost : https://mchost.ru
|
12617
|
+
// Submitted by Evgeniy Subbotin <e.subbotin@mchost.ru>
|
12618
|
+
mcdir.me
|
12619
|
+
mcdir.ru
|
12620
|
+
mcpre.ru
|
12621
|
+
vps.mcdir.ru
|
12622
|
+
|
12623
|
+
// Mediatech : https://mediatech.by
|
12624
|
+
// Submitted by Evgeniy Kozhuhovskiy <ugenk@mediatech.by>
|
12625
|
+
mediatech.by
|
12626
|
+
mediatech.dev
|
12627
|
+
|
12628
|
+
// Medicom Health : https://medicomhealth.com
|
12629
|
+
// Submitted by Michael Olson <molson@medicomhealth.com>
|
12630
|
+
hra.health
|
12631
|
+
|
12047
12632
|
// Memset hosting : https://www.memset.com
|
12048
12633
|
// Submitted by Tom Whitwell <domains@memset.com>
|
12049
12634
|
miniserver.com
|
@@ -12051,7 +12636,7 @@ memset.net
|
|
12051
12636
|
|
12052
12637
|
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
12053
12638
|
// Submitted by Zdeněk Šustr <zdenek.sustr@cesnet.cz>
|
12054
|
-
cloud.metacentrum.cz
|
12639
|
+
*.cloud.metacentrum.cz
|
12055
12640
|
custom.metacentrum.cz
|
12056
12641
|
|
12057
12642
|
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
@@ -12068,11 +12653,29 @@ eu.meteorapp.com
|
|
12068
12653
|
co.pl
|
12069
12654
|
|
12070
12655
|
// Microsoft Corporation : http://microsoft.com
|
12071
|
-
// Submitted by
|
12072
|
-
azurecontainer.io
|
12656
|
+
// Submitted by Mitch Webster <miwebst@microsoft.com>
|
12657
|
+
*.azurecontainer.io
|
12073
12658
|
azurewebsites.net
|
12074
12659
|
azure-mobile.net
|
12075
12660
|
cloudapp.net
|
12661
|
+
azurestaticapps.net
|
12662
|
+
centralus.azurestaticapps.net
|
12663
|
+
eastasia.azurestaticapps.net
|
12664
|
+
eastus2.azurestaticapps.net
|
12665
|
+
westeurope.azurestaticapps.net
|
12666
|
+
westus2.azurestaticapps.net
|
12667
|
+
|
12668
|
+
// minion.systems : http://minion.systems
|
12669
|
+
// Submitted by Robert Böttinger <r@minion.systems>
|
12670
|
+
csx.cc
|
12671
|
+
|
12672
|
+
// Mintere : https://mintere.com/
|
12673
|
+
// Submitted by Ben Aubin <security@mintere.com>
|
12674
|
+
mintere.site
|
12675
|
+
|
12676
|
+
// MobileEducation, LLC : https://joinforte.com
|
12677
|
+
// Submitted by Grayson Martin <grayson.martin@mobileeducation.us>
|
12678
|
+
forte.id
|
12076
12679
|
|
12077
12680
|
// Mozilla Corporation : https://mozilla.com
|
12078
12681
|
// Submitted by Ben Francis <bfrancis@mozilla.com>
|
@@ -12088,10 +12691,48 @@ net.ru
|
|
12088
12691
|
org.ru
|
12089
12692
|
pp.ru
|
12090
12693
|
|
12694
|
+
// Mythic Beasts : https://www.mythic-beasts.com
|
12695
|
+
// Submitted by Paul Cammish <kelduum@mythic-beasts.com>
|
12696
|
+
hostedpi.com
|
12697
|
+
customer.mythic-beasts.com
|
12698
|
+
caracal.mythic-beasts.com
|
12699
|
+
fentiger.mythic-beasts.com
|
12700
|
+
lynx.mythic-beasts.com
|
12701
|
+
ocelot.mythic-beasts.com
|
12702
|
+
oncilla.mythic-beasts.com
|
12703
|
+
onza.mythic-beasts.com
|
12704
|
+
sphinx.mythic-beasts.com
|
12705
|
+
vs.mythic-beasts.com
|
12706
|
+
x.mythic-beasts.com
|
12707
|
+
yali.mythic-beasts.com
|
12708
|
+
cust.retrosnub.co.uk
|
12709
|
+
|
12710
|
+
// Nabu Casa : https://www.nabucasa.com
|
12711
|
+
// Submitted by Paulus Schoutsen <infra@nabucasa.com>
|
12712
|
+
ui.nabu.casa
|
12713
|
+
|
12714
|
+
// Names.of.London : https://names.of.london/
|
12715
|
+
// Submitted by James Stevens <registry[at]names.of.london> or <publiclist[at]jrcs.net>
|
12716
|
+
pony.club
|
12717
|
+
of.fashion
|
12718
|
+
in.london
|
12719
|
+
of.london
|
12720
|
+
from.marketing
|
12721
|
+
with.marketing
|
12722
|
+
for.men
|
12723
|
+
repair.men
|
12724
|
+
and.mom
|
12725
|
+
for.mom
|
12726
|
+
for.one
|
12727
|
+
under.one
|
12728
|
+
for.sale
|
12729
|
+
that.win
|
12730
|
+
from.work
|
12731
|
+
to.work
|
12732
|
+
|
12091
12733
|
// Netlify : https://www.netlify.com
|
12092
12734
|
// Submitted by Jessica Parsons <jessica@netlify.com>
|
12093
|
-
|
12094
|
-
netlify.com
|
12735
|
+
netlify.app
|
12095
12736
|
|
12096
12737
|
// Neustar Inc.
|
12097
12738
|
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
@@ -12109,6 +12750,20 @@ nh-serv.co.uk
|
|
12109
12750
|
// Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net>
|
12110
12751
|
nfshost.com
|
12111
12752
|
|
12753
|
+
// Noop : https://noop.app
|
12754
|
+
// Submitted by Nathaniel Schweinberg <noop@rearc.io>
|
12755
|
+
*.developer.app
|
12756
|
+
noop.app
|
12757
|
+
|
12758
|
+
// Northflank Ltd. : https://northflank.com/
|
12759
|
+
// Submitted by Marco Suter <marco@northflank.com>
|
12760
|
+
*.northflank.app
|
12761
|
+
*.code.run
|
12762
|
+
|
12763
|
+
// Noticeable : https://noticeable.io
|
12764
|
+
// Submitted by Laurent Pellegrino <security@noticeable.io>
|
12765
|
+
noticeable.news
|
12766
|
+
|
12112
12767
|
// Now-DNS : https://now-dns.com
|
12113
12768
|
// Submitted by Steve Russell <steve@now-dns.com>
|
12114
12769
|
dnsking.ch
|
@@ -12247,85 +12902,70 @@ pcloud.host
|
|
12247
12902
|
// Submitted by Matthew Brown <mattbrown@nyc.mn>
|
12248
12903
|
nyc.mn
|
12249
12904
|
|
12250
|
-
//
|
12251
|
-
// Submitted by
|
12252
|
-
|
12253
|
-
nom.af
|
12254
|
-
nom.ai
|
12255
|
-
nom.al
|
12256
|
-
nym.by
|
12257
|
-
nym.bz
|
12258
|
-
nom.cl
|
12259
|
-
nom.gd
|
12260
|
-
nom.ge
|
12261
|
-
nom.gl
|
12262
|
-
nym.gr
|
12263
|
-
nom.gt
|
12264
|
-
nym.gy
|
12265
|
-
nom.hn
|
12266
|
-
nym.ie
|
12267
|
-
nom.im
|
12268
|
-
nom.ke
|
12269
|
-
nym.kz
|
12270
|
-
nym.la
|
12271
|
-
nym.lc
|
12272
|
-
nom.li
|
12273
|
-
nym.li
|
12274
|
-
nym.lt
|
12275
|
-
nym.lu
|
12276
|
-
nym.me
|
12277
|
-
nom.mk
|
12278
|
-
nym.mn
|
12279
|
-
nym.mx
|
12280
|
-
nom.nu
|
12281
|
-
nym.nz
|
12282
|
-
nym.pe
|
12283
|
-
nym.pt
|
12284
|
-
nom.pw
|
12285
|
-
nom.qa
|
12286
|
-
nym.ro
|
12287
|
-
nom.rs
|
12288
|
-
nom.si
|
12289
|
-
nym.sk
|
12290
|
-
nom.st
|
12291
|
-
nym.su
|
12292
|
-
nym.sx
|
12293
|
-
nom.tj
|
12294
|
-
nym.tw
|
12295
|
-
nom.ug
|
12296
|
-
nom.uy
|
12297
|
-
nom.vc
|
12298
|
-
nom.vg
|
12905
|
+
// Observable, Inc. : https://observablehq.com
|
12906
|
+
// Submitted by Mike Bostock <dns@observablehq.com>
|
12907
|
+
static.observableusercontent.com
|
12299
12908
|
|
12300
12909
|
// Octopodal Solutions, LLC. : https://ulterius.io/
|
12301
12910
|
// Submitted by Andrew Sampson <andrew@ulterius.io>
|
12302
12911
|
cya.gg
|
12303
12912
|
|
12913
|
+
// OMG.LOL : <https://omg.lol>
|
12914
|
+
// Submitted by Adam Newbold <adam@omg.lol>
|
12915
|
+
omg.lol
|
12916
|
+
|
12304
12917
|
// Omnibond Systems, LLC. : https://www.omnibond.com
|
12305
12918
|
// Submitted by Cole Estep <cole@omnibond.com>
|
12306
12919
|
cloudycluster.net
|
12307
12920
|
|
12921
|
+
// OmniWe Limited: https://omniwe.com
|
12922
|
+
// Submitted by Vicary Archangel <vicary@omniwe.com>
|
12923
|
+
omniwe.site
|
12924
|
+
|
12308
12925
|
// One Fold Media : http://www.onefoldmedia.com/
|
12309
12926
|
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
12310
12927
|
nid.io
|
12311
12928
|
|
12929
|
+
// Open Social : https://www.getopensocial.com/
|
12930
|
+
// Submitted by Alexander Varwijk <security@getopensocial.com>
|
12931
|
+
opensocial.site
|
12932
|
+
|
12312
12933
|
// OpenCraft GmbH : http://opencraft.com/
|
12313
12934
|
// Submitted by Sven Marnach <sven@opencraft.com>
|
12314
12935
|
opencraft.hosting
|
12315
12936
|
|
12937
|
+
// OpenResearch GmbH: https://openresearch.com/
|
12938
|
+
// Submitted by Philipp Schmid <ops@openresearch.com>
|
12939
|
+
orsites.com
|
12940
|
+
|
12316
12941
|
// Opera Software, A.S.A.
|
12317
12942
|
// Submitted by Yngve Pettersen <yngve@opera.com>
|
12318
12943
|
operaunite.com
|
12319
12944
|
|
12945
|
+
// Oursky Limited : https://authgear.com/, https://skygear.io/
|
12946
|
+
// Submited by Authgear Team <hello@authgear.com>, Skygear Developer <hello@skygear.io>
|
12947
|
+
authgear-staging.com
|
12948
|
+
authgearapps.com
|
12949
|
+
skygearapp.com
|
12950
|
+
|
12320
12951
|
// OutSystems
|
12321
12952
|
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
|
12322
12953
|
outsystemscloud.com
|
12323
12954
|
|
12955
|
+
// OVHcloud: https://ovhcloud.com
|
12956
|
+
// Submitted by Vincent Cassé <vincent.casse@ovhcloud.com>
|
12957
|
+
*.webpaas.ovh.net
|
12958
|
+
*.hosting.ovh.net
|
12959
|
+
|
12324
12960
|
// OwnProvider GmbH: http://www.ownprovider.com
|
12325
12961
|
// Submitted by Jan Moennich <jan.moennich@ownprovider.com>
|
12326
12962
|
ownprovider.com
|
12327
12963
|
own.pm
|
12328
12964
|
|
12965
|
+
// OwO : https://whats-th.is/
|
12966
|
+
// Submitted by Dean Sheather <dean@deansheather.com>
|
12967
|
+
*.owo.codes
|
12968
|
+
|
12329
12969
|
// OX : http://www.ox.rs
|
12330
12970
|
// Submitted by Adam Grand <webmaster@mail.ox.rs>
|
12331
12971
|
ox.rs
|
@@ -12342,6 +12982,21 @@ pgfog.com
|
|
12342
12982
|
// Submitted by Jason Kriss <jason@pagefronthq.com>
|
12343
12983
|
pagefrontapp.com
|
12344
12984
|
|
12985
|
+
// PageXL : https://pagexl.com
|
12986
|
+
// Submitted by Yann Guichard <yann@pagexl.com>
|
12987
|
+
pagexl.com
|
12988
|
+
|
12989
|
+
// Paywhirl, Inc : https://paywhirl.com/
|
12990
|
+
// Submitted by Daniel Netzer <dan@paywhirl.com>
|
12991
|
+
*.paywhirl.com
|
12992
|
+
|
12993
|
+
// pcarrier.ca Software Inc: https://pcarrier.ca/
|
12994
|
+
// Submitted by Pierre Carrier <pc@rrier.ca>
|
12995
|
+
bar0.net
|
12996
|
+
bar1.net
|
12997
|
+
bar2.net
|
12998
|
+
rdv.to
|
12999
|
+
|
12345
13000
|
// .pl domains (grandfathered)
|
12346
13001
|
art.pl
|
12347
13002
|
gliwice.pl
|
@@ -12359,14 +13014,53 @@ gotpantheon.com
|
|
12359
13014
|
// Submitted by Steve Leung <steveleung@peplink.com>
|
12360
13015
|
mypep.link
|
12361
13016
|
|
13017
|
+
// Perspecta : https://perspecta.com/
|
13018
|
+
// Submitted by Kenneth Van Alstyne <kvanalstyne@perspecta.com>
|
13019
|
+
perspecta.cloud
|
13020
|
+
|
13021
|
+
// PE Ulyanov Kirill Sergeevich : https://airy.host
|
13022
|
+
// Submitted by Kirill Ulyanov <k.ulyanov@airy.host>
|
13023
|
+
lk3.ru
|
13024
|
+
|
12362
13025
|
// Planet-Work : https://www.planet-work.com/
|
12363
13026
|
// Submitted by Frédéric VANNIÈRE <f.vanniere@planet-work.com>
|
12364
13027
|
on-web.fr
|
12365
13028
|
|
12366
13029
|
// Platform.sh : https://platform.sh
|
12367
13030
|
// Submitted by Nikola Kotur <nikola@platform.sh>
|
12368
|
-
|
13031
|
+
bc.platform.sh
|
13032
|
+
ent.platform.sh
|
13033
|
+
eu.platform.sh
|
13034
|
+
us.platform.sh
|
12369
13035
|
*.platformsh.site
|
13036
|
+
*.tst.site
|
13037
|
+
|
13038
|
+
// Platter: https://platter.dev
|
13039
|
+
// Submitted by Patrick Flor <patrick@platter.dev>
|
13040
|
+
platter-app.com
|
13041
|
+
platter-app.dev
|
13042
|
+
platterp.us
|
13043
|
+
|
13044
|
+
// Plesk : https://www.plesk.com/
|
13045
|
+
// Submitted by Anton Akhtyamov <program-managers@plesk.com>
|
13046
|
+
pdns.page
|
13047
|
+
plesk.page
|
13048
|
+
pleskns.com
|
13049
|
+
|
13050
|
+
// Port53 : https://port53.io/
|
13051
|
+
// Submitted by Maximilian Schieder <maxi@zeug.co>
|
13052
|
+
dyn53.io
|
13053
|
+
|
13054
|
+
// Positive Codes Technology Company : http://co.bn/faq.html
|
13055
|
+
// Submitted by Zulfais <pc@co.bn>
|
13056
|
+
co.bn
|
13057
|
+
|
13058
|
+
// Postman, Inc : https://postman.com
|
13059
|
+
// Submitted by Rahul Dhawan <security@postman.com>
|
13060
|
+
postman-echo.com
|
13061
|
+
pstmn.io
|
13062
|
+
mock.pstmn.io
|
13063
|
+
httpbin.org
|
12370
13064
|
|
12371
13065
|
// prgmr.com : https://prgmr.com/
|
12372
13066
|
// Submitted by Sarah Newman <owner@prgmr.com>
|
@@ -12376,6 +13070,14 @@ xen.prgmr.com
|
|
12376
13070
|
// Submitted by registry <lendl@nic.at>
|
12377
13071
|
priv.at
|
12378
13072
|
|
13073
|
+
// privacytools.io : https://www.privacytools.io/
|
13074
|
+
// Submitted by Jonah Aragon <jonah@privacytools.io>
|
13075
|
+
prvcy.page
|
13076
|
+
|
13077
|
+
// Protocol Labs : https://protocol.ai/
|
13078
|
+
// Submitted by Michael Burns <noc@protocol.ai>
|
13079
|
+
*.dweb.link
|
13080
|
+
|
12379
13081
|
// Protonet GmbH : http://protonet.io
|
12380
13082
|
// Submitted by Martin Meier <admin@protonet.io>
|
12381
13083
|
protonet.io
|
@@ -12385,6 +13087,31 @@ protonet.io
|
|
12385
13087
|
chirurgiens-dentistes-en-france.fr
|
12386
13088
|
byen.site
|
12387
13089
|
|
13090
|
+
// pubtls.org: https://www.pubtls.org
|
13091
|
+
// Submitted by Kor Nielsen <kor@pubtls.org>
|
13092
|
+
pubtls.org
|
13093
|
+
|
13094
|
+
// PythonAnywhere LLP: https://www.pythonanywhere.com
|
13095
|
+
// Submitted by Giles Thomas <giles@pythonanywhere.com>
|
13096
|
+
pythonanywhere.com
|
13097
|
+
eu.pythonanywhere.com
|
13098
|
+
|
13099
|
+
// QOTO, Org.
|
13100
|
+
// Submitted by Jeffrey Phillips Freeman <jeffrey.freeman@qoto.org>
|
13101
|
+
qoto.io
|
13102
|
+
|
13103
|
+
// Qualifio : https://qualifio.com/
|
13104
|
+
// Submitted by Xavier De Cock <xdecock@gmail.com>
|
13105
|
+
qualifioapp.com
|
13106
|
+
|
13107
|
+
// QuickBackend: https://www.quickbackend.com
|
13108
|
+
// Submitted by Dani Biro <dani@pymet.com>
|
13109
|
+
qbuser.com
|
13110
|
+
|
13111
|
+
// Rad Web Hosting: https://radwebhosting.com
|
13112
|
+
// Submitted by Scott Claeys <s.claeys@radwebhosting.com>
|
13113
|
+
cloudsite.builders
|
13114
|
+
|
12388
13115
|
// Redstar Consultants : https://www.redstarconsultants.com/
|
12389
13116
|
// Submitted by Jons Slemmer <jons@redstarconsultants.com>
|
12390
13117
|
instantcloud.cn
|
@@ -12397,6 +13124,11 @@ ras.ru
|
|
12397
13124
|
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
12398
13125
|
qa2.com
|
12399
13126
|
|
13127
|
+
// QCX
|
13128
|
+
// Submitted by Cassandra Beelen <cassandra@beelen.one>
|
13129
|
+
qcx.io
|
13130
|
+
*.sys.qcx.io
|
13131
|
+
|
12400
13132
|
// QNAP System Inc : https://www.qnap.com
|
12401
13133
|
// Submitted by Nick Chang <nickchang@qnap.com>
|
12402
13134
|
dev-myqnapcloud.com
|
@@ -12417,8 +13149,13 @@ vaporcloud.io
|
|
12417
13149
|
rackmaze.com
|
12418
13150
|
rackmaze.net
|
12419
13151
|
|
13152
|
+
// Rakuten Games, Inc : https://dev.viberplay.io
|
13153
|
+
// Submitted by Joshua Zhang <public-suffix@rgames.jp>
|
13154
|
+
g.vbrplsbx.io
|
13155
|
+
|
12420
13156
|
// Rancher Labs, Inc : https://rancher.com
|
12421
13157
|
// Submitted by Vincent Fiduccia <domains@rancher.com>
|
13158
|
+
*.on-k3s.io
|
12422
13159
|
*.on-rancher.cloud
|
12423
13160
|
*.on-rio.io
|
12424
13161
|
|
@@ -12430,6 +13167,17 @@ readthedocs.io
|
|
12430
13167
|
// Submitted by Tim Kramer <tkramer@rhcloud.com>
|
12431
13168
|
rhcloud.com
|
12432
13169
|
|
13170
|
+
// Render : https://render.com
|
13171
|
+
// Submitted by Anurag Goel <dev@render.com>
|
13172
|
+
app.render.com
|
13173
|
+
onrender.com
|
13174
|
+
|
13175
|
+
// Repl.it : https://repl.it
|
13176
|
+
// Submitted by Mason Clayton <mason@repl.it>
|
13177
|
+
repl.co
|
13178
|
+
id.repl.co
|
13179
|
+
repl.run
|
13180
|
+
|
12433
13181
|
// Resin.io : https://resin.io
|
12434
13182
|
// Submitted by Tim Perry <tim@resin.io>
|
12435
13183
|
resindevice.io
|
@@ -12442,13 +13190,33 @@ hzc.io
|
|
12442
13190
|
// Revitalised Limited : http://www.revitalised.co.uk
|
12443
13191
|
// Submitted by Jack Price <jack@revitalised.co.uk>
|
12444
13192
|
wellbeingzone.eu
|
12445
|
-
ptplus.fit
|
12446
13193
|
wellbeingzone.co.uk
|
12447
13194
|
|
13195
|
+
// Rico Developments Limited : https://adimo.co
|
13196
|
+
// Submitted by Colin Brown <hello@adimo.co>
|
13197
|
+
adimo.co.uk
|
13198
|
+
|
13199
|
+
// Riseup Networks : https://riseup.net
|
13200
|
+
// Submitted by Micah Anderson <micah@riseup.net>
|
13201
|
+
itcouldbewor.se
|
13202
|
+
|
12448
13203
|
// Rochester Institute of Technology : http://www.rit.edu/
|
12449
13204
|
// Submitted by Jennifer Herting <jchits@rit.edu>
|
12450
13205
|
git-pages.rit.edu
|
12451
13206
|
|
13207
|
+
// Rusnames Limited: http://rusnames.ru/
|
13208
|
+
// Submitted by Sergey Zotov <admin@rusnames.ru>
|
13209
|
+
биз.рус
|
13210
|
+
ком.рус
|
13211
|
+
крым.рус
|
13212
|
+
мир.рус
|
13213
|
+
мск.рус
|
13214
|
+
орг.рус
|
13215
|
+
самара.рус
|
13216
|
+
сочи.рус
|
13217
|
+
спб.рус
|
13218
|
+
я.рус
|
13219
|
+
|
12452
13220
|
// Sandstorm Development Group, Inc. : https://sandcats.io/
|
12453
13221
|
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
12454
13222
|
sandcats.io
|
@@ -12462,6 +13230,11 @@ logoip.com
|
|
12462
13230
|
// Submitted by Hanno Böck <hanno@schokokeks.org>
|
12463
13231
|
schokokeks.net
|
12464
13232
|
|
13233
|
+
// Scottish Government: https://www.gov.scot
|
13234
|
+
// Submitted by Martin Ellis <martin.ellis@gov.scot>
|
13235
|
+
gov.scot
|
13236
|
+
service.gov.scot
|
13237
|
+
|
12465
13238
|
// Scry Security : http://www.scrysec.com
|
12466
13239
|
// Submitted by Shante Adam <shante@skyhat.io>
|
12467
13240
|
scrysec.com
|
@@ -12479,10 +13252,25 @@ my-firewall.org
|
|
12479
13252
|
myfirewall.org
|
12480
13253
|
spdns.org
|
12481
13254
|
|
12482
|
-
//
|
12483
|
-
// Submitted by
|
12484
|
-
|
12485
|
-
|
13255
|
+
// Seidat : https://www.seidat.com
|
13256
|
+
// Submitted by Artem Kondratev <accounts@seidat.com>
|
13257
|
+
seidat.net
|
13258
|
+
|
13259
|
+
// Sellfy : https://sellfy.com
|
13260
|
+
// Submitted by Yuriy Romadin <contact@sellfy.com>
|
13261
|
+
sellfy.store
|
13262
|
+
|
13263
|
+
// Senseering GmbH : https://www.senseering.de
|
13264
|
+
// Submitted by Felix Mönckemeyer <f.moenckemeyer@senseering.de>
|
13265
|
+
senseering.net
|
13266
|
+
|
13267
|
+
// Sendmsg: https://www.sendmsg.co.il
|
13268
|
+
// Submitted by Assaf Stern <domains@comstar.co.il>
|
13269
|
+
minisite.ms
|
13270
|
+
|
13271
|
+
// Service Magnet : https://myservicemagnet.com
|
13272
|
+
// Submitted by Dave Sanders <dave@myservicemagnet.com>
|
13273
|
+
magnet.page
|
12486
13274
|
|
12487
13275
|
// Service Online LLC : http://drs.ua/
|
12488
13276
|
// Submitted by Serhii Bulakh <support@drs.ua>
|
@@ -12490,6 +13278,11 @@ biz.ua
|
|
12490
13278
|
co.ua
|
12491
13279
|
pp.ua
|
12492
13280
|
|
13281
|
+
// Shift Crypto AG : https://shiftcrypto.ch
|
13282
|
+
// Submitted by alex <alex@shiftcrypto.ch>
|
13283
|
+
shiftcrypto.dev
|
13284
|
+
shiftcrypto.io
|
13285
|
+
|
12493
13286
|
// ShiftEdit : https://shiftedit.net/
|
12494
13287
|
// Submitted by Adam Jimenez <adam@shiftcreate.com>
|
12495
13288
|
shiftedit.io
|
@@ -12498,6 +13291,22 @@ shiftedit.io
|
|
12498
13291
|
// Submitted by Alex Bowers <alex@shopblocks.com>
|
12499
13292
|
myshopblocks.com
|
12500
13293
|
|
13294
|
+
// Shopify : https://www.shopify.com
|
13295
|
+
// Submitted by Alex Richter <alex.richter@shopify.com>
|
13296
|
+
myshopify.com
|
13297
|
+
|
13298
|
+
// Shopit : https://www.shopitcommerce.com/
|
13299
|
+
// Submitted by Craig McMahon <craig@shopitcommerce.com>
|
13300
|
+
shopitsite.com
|
13301
|
+
|
13302
|
+
// shopware AG : https://shopware.com
|
13303
|
+
// Submitted by Jens Küper <cloud@shopware.com>
|
13304
|
+
shopware.store
|
13305
|
+
|
13306
|
+
// Siemens Mobility GmbH
|
13307
|
+
// Submitted by Oliver Graebner <security@mo-siemens.io>
|
13308
|
+
mo-siemens.io
|
13309
|
+
|
12501
13310
|
// SinaAppEngine : http://sae.sina.com.cn/
|
12502
13311
|
// Submitted by SinaAppEngine <saesupport@sinacloud.com>
|
12503
13312
|
1kapp.com
|
@@ -12516,12 +13325,51 @@ bounty-full.com
|
|
12516
13325
|
alpha.bounty-full.com
|
12517
13326
|
beta.bounty-full.com
|
12518
13327
|
|
13328
|
+
// Small Technology Foundation : https://small-tech.org
|
13329
|
+
// Submitted by Aral Balkan <aral@small-tech.org>
|
13330
|
+
small-web.org
|
13331
|
+
|
13332
|
+
// Smoove.io : https://www.smoove.io/
|
13333
|
+
// Submitted by Dan Kozak <dan@smoove.io>
|
13334
|
+
vp4.me
|
13335
|
+
|
13336
|
+
// Snowplow Analytics : https://snowplowanalytics.com/
|
13337
|
+
// Submitted by Ian Streeter <ian@snowplowanalytics.com>
|
13338
|
+
try-snowplow.com
|
13339
|
+
|
13340
|
+
// SourceHut : https://sourcehut.org
|
13341
|
+
// Submitted by Drew DeVault <sir@cmpwn.com>
|
13342
|
+
srht.site
|
13343
|
+
|
13344
|
+
// Stackhero : https://www.stackhero.io
|
13345
|
+
// Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
|
13346
|
+
stackhero-network.com
|
13347
|
+
|
13348
|
+
// Staclar : https://staclar.com
|
13349
|
+
// Submitted by Matthias Merkel <matthias.merkel@staclar.com>
|
13350
|
+
novecore.site
|
13351
|
+
|
12519
13352
|
// staticland : https://static.land
|
12520
13353
|
// Submitted by Seth Vincent <sethvincent@gmail.com>
|
12521
13354
|
static.land
|
12522
13355
|
dev.static.land
|
12523
13356
|
sites.static.land
|
12524
13357
|
|
13358
|
+
// Storebase : https://www.storebase.io
|
13359
|
+
// Submitted by Tony Schirmer <tony@storebase.io>
|
13360
|
+
storebase.store
|
13361
|
+
|
13362
|
+
// Strategic System Consulting (eApps Hosting): https://www.eapps.com/
|
13363
|
+
// Submitted by Alex Oancea <aoancea@cloudscale365.com>
|
13364
|
+
vps-host.net
|
13365
|
+
atl.jelastic.vps-host.net
|
13366
|
+
njs.jelastic.vps-host.net
|
13367
|
+
ric.jelastic.vps-host.net
|
13368
|
+
|
13369
|
+
// Sony Interactive Entertainment LLC : https://sie.com/
|
13370
|
+
// Submitted by David Coles <david.coles@sony.com>
|
13371
|
+
playstation-cloud.com
|
13372
|
+
|
12525
13373
|
// SourceLair PC : https://www.sourcelair.com
|
12526
13374
|
// Submitted by Antonis Kalipetis <akalipetis@sourcelair.com>
|
12527
13375
|
apps.lair.io
|
@@ -12535,6 +13383,28 @@ spacekit.io
|
|
12535
13383
|
// Submitted by Stefan Neufeind <info@speedpartner.de>
|
12536
13384
|
customer.speedpartner.de
|
12537
13385
|
|
13386
|
+
// Spreadshop (sprd.net AG) : https://www.spreadshop.com/
|
13387
|
+
// Submitted by Martin Breest <security@spreadshop.com>
|
13388
|
+
myspreadshop.at
|
13389
|
+
myspreadshop.com.au
|
13390
|
+
myspreadshop.be
|
13391
|
+
myspreadshop.ca
|
13392
|
+
myspreadshop.ch
|
13393
|
+
myspreadshop.com
|
13394
|
+
myspreadshop.de
|
13395
|
+
myspreadshop.dk
|
13396
|
+
myspreadshop.es
|
13397
|
+
myspreadshop.fi
|
13398
|
+
myspreadshop.fr
|
13399
|
+
myspreadshop.ie
|
13400
|
+
myspreadshop.it
|
13401
|
+
myspreadshop.net
|
13402
|
+
myspreadshop.nl
|
13403
|
+
myspreadshop.no
|
13404
|
+
myspreadshop.pl
|
13405
|
+
myspreadshop.se
|
13406
|
+
myspreadshop.co.uk
|
13407
|
+
|
12538
13408
|
// Standard Library : https://stdlib.com
|
12539
13409
|
// Submitted by Jacob Lee <jacob@stdlib.com>
|
12540
13410
|
api.stdlib.com
|
@@ -12547,14 +13417,26 @@ storj.farm
|
|
12547
13417
|
// Submitted by Silke Hofstra <syscom@snt.utwente.nl>
|
12548
13418
|
utwente.io
|
12549
13419
|
|
13420
|
+
// Student-Run Computing Facility : https://www.srcf.net/
|
13421
|
+
// Submitted by Edwin Balani <sysadmins@srcf.net>
|
13422
|
+
soc.srcf.net
|
13423
|
+
user.srcf.net
|
13424
|
+
|
12550
13425
|
// Sub 6 Limited: http://www.sub6.com
|
12551
13426
|
// Submitted by Dan Miller <dm@sub6.com>
|
12552
13427
|
temp-dns.com
|
12553
13428
|
|
12554
|
-
//
|
12555
|
-
// Submitted by
|
12556
|
-
|
12557
|
-
|
13429
|
+
// Supabase : https://supabase.io
|
13430
|
+
// Submitted by Inian Parameshwaran <security@supabase.io>
|
13431
|
+
supabase.co
|
13432
|
+
supabase.in
|
13433
|
+
supabase.net
|
13434
|
+
su.paba.se
|
13435
|
+
|
13436
|
+
// Symfony, SAS : https://symfony.com/
|
13437
|
+
// Submitted by Fabien Potencier <fabien@symfony.com>
|
13438
|
+
*.s5y.io
|
13439
|
+
*.sensiosite.cloud
|
12558
13440
|
|
12559
13441
|
// Syncloud : https://syncloud.org
|
12560
13442
|
// Submitted by Boris Rybalkin <syncloud@syncloud.it>
|
@@ -12576,6 +13458,11 @@ i234.me
|
|
12576
13458
|
myds.me
|
12577
13459
|
synology.me
|
12578
13460
|
vpnplus.to
|
13461
|
+
direct.quickconnect.to
|
13462
|
+
|
13463
|
+
// Tabit Technologies Ltd. : https://tabit.cloud/
|
13464
|
+
// Submitted by Oren Agiv <oren@tabit.cloud>
|
13465
|
+
tabitorder.co.il
|
12579
13466
|
|
12580
13467
|
// TAIFUN Software AG : http://taifun-software.de
|
12581
13468
|
// Submitted by Bjoern Henke <dev-server@taifun-software.de>
|
@@ -12588,6 +13475,10 @@ gdynia.pl
|
|
12588
13475
|
med.pl
|
12589
13476
|
sopot.pl
|
12590
13477
|
|
13478
|
+
// Teckids e.V. : https://www.teckids.org
|
13479
|
+
// Submitted by Dominik George <dominik.george@teckids.org>
|
13480
|
+
edugit.org
|
13481
|
+
|
12591
13482
|
// Telebit : https://telebit.cloud
|
12592
13483
|
// Submitted by AJ ONeal <aj@telebit.cloud>
|
12593
13484
|
telebit.app
|
@@ -12600,16 +13491,38 @@ gwiddle.co.uk
|
|
12600
13491
|
|
12601
13492
|
// Thingdust AG : https://thingdust.com/
|
12602
13493
|
// Submitted by Adrian Imboden <adi@thingdust.com>
|
13494
|
+
*.firenet.ch
|
13495
|
+
*.svc.firenet.ch
|
13496
|
+
reservd.com
|
13497
|
+
thingdustdata.com
|
12603
13498
|
cust.dev.thingdust.io
|
12604
13499
|
cust.disrec.thingdust.io
|
12605
13500
|
cust.prod.thingdust.io
|
12606
13501
|
cust.testing.thingdust.io
|
13502
|
+
reservd.dev.thingdust.io
|
13503
|
+
reservd.disrec.thingdust.io
|
13504
|
+
reservd.testing.thingdust.io
|
13505
|
+
|
13506
|
+
// Tlon.io : https://tlon.io
|
13507
|
+
// Submitted by Mark Staarink <mark@tlon.io>
|
13508
|
+
arvo.network
|
13509
|
+
azimuth.network
|
13510
|
+
tlon.network
|
13511
|
+
|
13512
|
+
// Tor Project, Inc. : https://torproject.org
|
13513
|
+
// Submitted by Antoine Beaupré <anarcat@torproject.org
|
13514
|
+
torproject.net
|
13515
|
+
pages.torproject.net
|
12607
13516
|
|
12608
13517
|
// TownNews.com : http://www.townnews.com
|
12609
13518
|
// Submitted by Dustin Ward <dward@townnews.com>
|
12610
13519
|
bloxcms.com
|
12611
13520
|
townnews-staging.com
|
12612
13521
|
|
13522
|
+
// TradableBits: https://tradablebits.com
|
13523
|
+
// Submitted by Dmitry Khrisanov dmitry@tradablebits.com
|
13524
|
+
tbits.me
|
13525
|
+
|
12613
13526
|
// TrafficPlex GmbH : https://www.trafficplex.de/
|
12614
13527
|
// Submitted by Phillipp Röll <phillipp.roell@trafficplex.de>
|
12615
13528
|
12hp.at
|
@@ -12675,6 +13588,11 @@ inc.hk
|
|
12675
13588
|
virtualuser.de
|
12676
13589
|
virtual-user.de
|
12677
13590
|
|
13591
|
+
// urown.net : https://urown.net
|
13592
|
+
// Submitted by Hostmaster <hostmaster@urown.net>
|
13593
|
+
urown.cloud
|
13594
|
+
dnsupdate.info
|
13595
|
+
|
12678
13596
|
// .US
|
12679
13597
|
// Submitted by Ed Moore <Ed.Moore@lib.de.us>
|
12680
13598
|
lib.de.us
|
@@ -12683,6 +13601,12 @@ lib.de.us
|
|
12683
13601
|
// Submitted by Danko Aleksejevs <danko@very.lv>
|
12684
13602
|
2038.io
|
12685
13603
|
|
13604
|
+
// Vercel, Inc : https://vercel.com/
|
13605
|
+
// Submitted by Connor Davis <security@vercel.com>
|
13606
|
+
vercel.app
|
13607
|
+
vercel.dev
|
13608
|
+
now.sh
|
13609
|
+
|
12686
13610
|
// Viprinet Europe GmbH : http://www.viprinet.com
|
12687
13611
|
// Submitted by Simon Kissel <hostmaster@viprinet.com>
|
12688
13612
|
router.management
|
@@ -12691,6 +13615,80 @@ router.management
|
|
12691
13615
|
// Submitted by Adnan RIHAN <hostmaster@v-info.info>
|
12692
13616
|
v-info.info
|
12693
13617
|
|
13618
|
+
// Voorloper.com: https://voorloper.com
|
13619
|
+
// Submitted by Nathan van Bakel <info@voorloper.com>
|
13620
|
+
voorloper.cloud
|
13621
|
+
|
13622
|
+
// Voxel.sh DNS : https://voxel.sh/dns/
|
13623
|
+
// Submitted by Mia Rehlinger <dns@voxel.sh>
|
13624
|
+
neko.am
|
13625
|
+
nyaa.am
|
13626
|
+
be.ax
|
13627
|
+
cat.ax
|
13628
|
+
es.ax
|
13629
|
+
eu.ax
|
13630
|
+
gg.ax
|
13631
|
+
mc.ax
|
13632
|
+
us.ax
|
13633
|
+
xy.ax
|
13634
|
+
nl.ci
|
13635
|
+
xx.gl
|
13636
|
+
app.gp
|
13637
|
+
blog.gt
|
13638
|
+
de.gt
|
13639
|
+
to.gt
|
13640
|
+
be.gy
|
13641
|
+
cc.hn
|
13642
|
+
blog.kg
|
13643
|
+
io.kg
|
13644
|
+
jp.kg
|
13645
|
+
tv.kg
|
13646
|
+
uk.kg
|
13647
|
+
us.kg
|
13648
|
+
de.ls
|
13649
|
+
at.md
|
13650
|
+
de.md
|
13651
|
+
jp.md
|
13652
|
+
to.md
|
13653
|
+
indie.porn
|
13654
|
+
vxl.sh
|
13655
|
+
ch.tc
|
13656
|
+
me.tc
|
13657
|
+
we.tc
|
13658
|
+
nyan.to
|
13659
|
+
at.vg
|
13660
|
+
blog.vu
|
13661
|
+
dev.vu
|
13662
|
+
me.vu
|
13663
|
+
|
13664
|
+
// V.UA Domain Administrator : https://domain.v.ua/
|
13665
|
+
// Submitted by Serhii Rostilo <sergey@rostilo.kiev.ua>
|
13666
|
+
v.ua
|
13667
|
+
|
13668
|
+
// Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
|
13669
|
+
// Submitted by Masayuki Note <masa@blade.wafflecell.com>
|
13670
|
+
wafflecell.com
|
13671
|
+
|
13672
|
+
// WapBlog.ID : https://www.wapblog.id
|
13673
|
+
// Submitted by Fajar Sodik <official@wapblog.id>
|
13674
|
+
idnblogger.com
|
13675
|
+
indowapblog.com
|
13676
|
+
bloger.id
|
13677
|
+
wblog.id
|
13678
|
+
wbq.me
|
13679
|
+
fastblog.net
|
13680
|
+
|
13681
|
+
// WebHare bv: https://www.webhare.com/
|
13682
|
+
// Submitted by Arnold Hendriks <info@webhare.com>
|
13683
|
+
*.webhare.dev
|
13684
|
+
|
13685
|
+
// WebHotelier Technologies Ltd: https://www.webhotelier.net/
|
13686
|
+
// Submitted by Apostolos Tsakpinis <apostolos.tsakpinis@gmail.com>
|
13687
|
+
reserve-online.net
|
13688
|
+
reserve-online.com
|
13689
|
+
bookonline.app
|
13690
|
+
hotelwithflight.com
|
13691
|
+
|
12694
13692
|
// WeDeploy by Liferay, Inc. : https://www.wedeploy.com
|
12695
13693
|
// Submitted by Henrique Vicente <security@wedeploy.com>
|
12696
13694
|
wedeploy.io
|
@@ -12701,9 +13699,46 @@ wedeploy.sh
|
|
12701
13699
|
// Submitted by Jung Jin <jungseok.jin@wdc.com>
|
12702
13700
|
remotewd.com
|
12703
13701
|
|
13702
|
+
// WIARD Enterprises : https://wiardweb.com
|
13703
|
+
// Submitted by Kidd Hustle <kiddhustle@wiardweb.com>
|
13704
|
+
pages.wiardweb.com
|
13705
|
+
|
12704
13706
|
// Wikimedia Labs : https://wikitech.wikimedia.org
|
12705
|
-
// Submitted by
|
13707
|
+
// Submitted by Arturo Borrero Gonzalez <aborrero@wikimedia.org>
|
12706
13708
|
wmflabs.org
|
13709
|
+
toolforge.org
|
13710
|
+
wmcloud.org
|
13711
|
+
|
13712
|
+
// WISP : https://wisp.gg
|
13713
|
+
// Submitted by Stepan Fedotov <stepan@wisp.gg>
|
13714
|
+
panel.gg
|
13715
|
+
daemon.panel.gg
|
13716
|
+
|
13717
|
+
// WoltLab GmbH : https://www.woltlab.com
|
13718
|
+
// Submitted by Tim Düsterhus <security@woltlab.cloud>
|
13719
|
+
woltlab-demo.com
|
13720
|
+
myforum.community
|
13721
|
+
community-pro.de
|
13722
|
+
diskussionsbereich.de
|
13723
|
+
community-pro.net
|
13724
|
+
meinforum.net
|
13725
|
+
|
13726
|
+
// Woods Valldata : https://www.woodsvalldata.co.uk/
|
13727
|
+
// Submitted by Chris Whittle <chris.whittle@woodsvalldata.co.uk>
|
13728
|
+
affinitylottery.org.uk
|
13729
|
+
raffleentry.org.uk
|
13730
|
+
weeklylottery.org.uk
|
13731
|
+
|
13732
|
+
// WP Engine : https://wpengine.com/
|
13733
|
+
// Submitted by Michael Smith <michael.smith@wpengine.com>
|
13734
|
+
// Submitted by Brandon DuRette <brandon.durette@wpengine.com>
|
13735
|
+
wpenginepowered.com
|
13736
|
+
js.wpenginepowered.com
|
13737
|
+
|
13738
|
+
// Wix.com, Inc. : https://www.wix.com
|
13739
|
+
// Submitted by Shahar Talmi <shahart@wix.com>
|
13740
|
+
wixsite.com
|
13741
|
+
editorx.io
|
12707
13742
|
|
12708
13743
|
// XenonCloud GbR: https://xenoncloud.net
|
12709
13744
|
// Submitted by Julian Uphoff <publicsuffixlist@xenoncloud.net>
|
@@ -12721,6 +13756,12 @@ cistron.nl
|
|
12721
13756
|
demon.nl
|
12722
13757
|
xs4all.space
|
12723
13758
|
|
13759
|
+
// Yandex.Cloud LLC: https://cloud.yandex.com
|
13760
|
+
// Submitted by Alexander Lodin <security+psl@yandex-team.ru>
|
13761
|
+
yandexcloud.net
|
13762
|
+
storage.yandexcloud.net
|
13763
|
+
website.yandexcloud.net
|
13764
|
+
|
12724
13765
|
// YesCourse Pty Ltd : https://yescourse.com
|
12725
13766
|
// Submitted by Atul Bhouraskar <atul@yescourse.com>
|
12726
13767
|
official.academy
|
@@ -12741,6 +13782,7 @@ ybo.trade
|
|
12741
13782
|
|
12742
13783
|
// Yunohost : https://yunohost.org
|
12743
13784
|
// Submitted by Valentin Grimaud <security@yunohost.org>
|
13785
|
+
ynh.fr
|
12744
13786
|
nohost.me
|
12745
13787
|
noho.st
|
12746
13788
|
|
@@ -12749,20 +13791,14 @@ noho.st
|
|
12749
13791
|
za.net
|
12750
13792
|
za.org
|
12751
13793
|
|
12752
|
-
// Zeit, Inc. : https://zeit.domains/
|
12753
|
-
// Submitted by Olli Vanhoja <olli@zeit.co>
|
12754
|
-
now.sh
|
12755
|
-
|
12756
13794
|
// Zine EOOD : https://zine.bg/
|
12757
13795
|
// Submitted by Martin Angelov <martin@zine.bg>
|
12758
13796
|
bss.design
|
12759
13797
|
|
12760
13798
|
// Zitcom A/S : https://www.zitcom.dk
|
12761
13799
|
// Submitted by Emil Stahl <esp@zitcom.dk>
|
12762
|
-
|
12763
|
-
|
12764
|
-
|
12765
|
-
// Submitted by Su Hendro <admin@zone.id>
|
12766
|
-
zone.id
|
13800
|
+
basicserver.io
|
13801
|
+
virtualserver.io
|
13802
|
+
enterprisecloud.nu
|
12767
13803
|
|
12768
13804
|
// ===END PRIVATE DOMAINS===
|