domain_name 0.5.20180417 → 0.5.20190701
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/CHANGELOG.md +10 -0
 - data/Rakefile +25 -2
 - data/data/public_suffix_list.dat +740 -195
 - data/lib/domain_name/etld_data.rb +361 -48
 - data/lib/domain_name/version.rb +1 -1
 - metadata +9 -10
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 2 
     | 
    
         
            +
            SHA256:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: c050ab7db72d4d9314191c02c3c694112457c66072fc292e95e4d3bd504168db
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 9ce566d11d55e580b5371106aead6468286a341047cb40f3a526f234a2da2090
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 96e5254ecb3cb17f2a46d1826613657edc8e3639adade7f3f2a46721209392b2539bb303f79c41563b17745b05141ebd1ed9c73c6bcc49f26f55c95d57cde2a9
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 36f6334762aee96a7f7204550f683795cf40757dc5ae1b0eda0699eb484e94c3d56381cb05e3aefcf82b13ec3ab8ce7e62bb7eb15412d170668f4b6855a7e5e3
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,5 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Change Log
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ## [v0.5.20190701](https://github.com/knu/ruby-domain_name/tree/v0.5.20190701) (2019-07-05)
         
     | 
| 
      
 4 
     | 
    
         
            +
            [Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20180417...v0.5.20190701)
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            - Update the eTLD database to 2019-07-01 18:45:50 UTC
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            ## [v0.5.20180417](https://github.com/knu/ruby-domain_name/tree/v0.5.20180417) (2018-04-17)
         
     | 
| 
      
 9 
     | 
    
         
            +
            [Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20170404...v0.5.20180417)
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            - Update the eTLD database to 2018-04-17T23:50:25Z
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
       3 
13 
     | 
    
         
             
            ## [v0.5.20170404](https://github.com/knu/ruby-domain_name/tree/v0.5.20170404) (2017-04-04)
         
     | 
| 
       4 
14 
     | 
    
         
             
            [Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20170223...v0.5.20170404)
         
     | 
| 
       5 
15 
     | 
    
         | 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -52,13 +52,36 @@ end 
     | 
|
| 
       52 
52 
     | 
    
         | 
| 
       53 
53 
     | 
    
         
             
            namespace :etld_data do
         
     | 
| 
       54 
54 
     | 
    
         
             
              task :commit do
         
     | 
| 
       55 
     | 
    
         
            -
                 
     | 
| 
      
 55 
     | 
    
         
            +
                if system(*%W[git diff --exit-code --quiet], ETLD_DATA_FILE)
         
     | 
| 
      
 56 
     | 
    
         
            +
                  warn "Nothing to commit."
         
     | 
| 
      
 57 
     | 
    
         
            +
                  exit
         
     | 
| 
      
 58 
     | 
    
         
            +
                end
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                prev = `ruby -e "$(git cat-file -p @:lib/domain_name/version.rb); puts DomainName::VERSION"`.chomp
         
     | 
| 
      
 61 
     | 
    
         
            +
                curr = `ruby -e "load 'lib/domain_name/version.rb'; puts DomainName::VERSION"`.chomp
         
     | 
| 
      
 62 
     | 
    
         
            +
                timestamp = File.mtime(ETLD_DATA_FILE).utc
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                File.open('CHANGELOG.md', 'r+') do |f|
         
     | 
| 
      
 65 
     | 
    
         
            +
                  lines = f.readlines
         
     | 
| 
      
 66 
     | 
    
         
            +
                  lines.insert(2, <<~EOF)
         
     | 
| 
      
 67 
     | 
    
         
            +
            ## [v#{curr}](https://github.com/knu/ruby-domain_name/tree/v#{curr}) (#{Time.now.strftime('%F')})
         
     | 
| 
      
 68 
     | 
    
         
            +
            [Full Changelog](https://github.com/knu/ruby-domain_name/compare/v#{prev}...v#{curr})
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            - Update the eTLD database to #{timestamp}
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                  EOF
         
     | 
| 
      
 73 
     | 
    
         
            +
                  f.rewind
         
     | 
| 
      
 74 
     | 
    
         
            +
                  f.puts lines
         
     | 
| 
      
 75 
     | 
    
         
            +
                end
         
     | 
| 
       56 
76 
     | 
    
         | 
| 
       57 
77 
     | 
    
         
             
                sh 'git', 'commit',
         
     | 
| 
      
 78 
     | 
    
         
            +
                  'CHANGELOG.md',
         
     | 
| 
       58 
79 
     | 
    
         
             
                  ETLD_DATA_FILE,
         
     | 
| 
       59 
80 
     | 
    
         
             
                  ETLD_DATA_RB,
         
     | 
| 
       60 
81 
     | 
    
         
             
                  VERSION_RB,
         
     | 
| 
       61 
     | 
    
         
            -
                  '-m', 'Update the eTLD database to %s.' %  
     | 
| 
      
 82 
     | 
    
         
            +
                  '-m', 'Update the eTLD database to %s.' % timestamp
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
                sh 'git', 'tag', "v#{curr}"
         
     | 
| 
       62 
85 
     | 
    
         
             
              end
         
     | 
| 
       63 
86 
     | 
    
         
             
            end
         
     | 
| 
       64 
87 
     | 
    
         | 
    
        data/data/public_suffix_list.dat
    CHANGED
    
    | 
         @@ -155,8 +155,13 @@ mil.al 
     | 
|
| 
       155 
155 
     | 
    
         
             
            net.al
         
     | 
| 
       156 
156 
     | 
    
         
             
            org.al
         
     | 
| 
       157 
157 
     | 
    
         | 
| 
       158 
     | 
    
         
            -
            // am : https:// 
     | 
| 
      
 158 
     | 
    
         
            +
            // am : https://www.amnic.net/policy/en/Policy_EN.pdf
         
     | 
| 
       159 
159 
     | 
    
         
             
            am
         
     | 
| 
      
 160 
     | 
    
         
            +
            co.am
         
     | 
| 
      
 161 
     | 
    
         
            +
            com.am
         
     | 
| 
      
 162 
     | 
    
         
            +
            commune.am
         
     | 
| 
      
 163 
     | 
    
         
            +
            net.am
         
     | 
| 
      
 164 
     | 
    
         
            +
            org.am
         
     | 
| 
       160 
165 
     | 
    
         | 
| 
       161 
166 
     | 
    
         
             
            // ao : https://en.wikipedia.org/wiki/.ao
         
     | 
| 
       162 
167 
     | 
    
         
             
            // http://www.dns.ao/REGISTR.DOC
         
     | 
| 
         @@ -381,8 +386,13 @@ gov.bm 
     | 
|
| 
       381 
386 
     | 
    
         
             
            net.bm
         
     | 
| 
       382 
387 
     | 
    
         
             
            org.bm
         
     | 
| 
       383 
388 
     | 
    
         | 
| 
       384 
     | 
    
         
            -
            // bn :  
     | 
| 
       385 
     | 
    
         
            -
             
     | 
| 
      
 389 
     | 
    
         
            +
            // bn : http://www.bnnic.bn/faqs
         
     | 
| 
      
 390 
     | 
    
         
            +
            bn
         
     | 
| 
      
 391 
     | 
    
         
            +
            com.bn
         
     | 
| 
      
 392 
     | 
    
         
            +
            edu.bn
         
     | 
| 
      
 393 
     | 
    
         
            +
            gov.bn
         
     | 
| 
      
 394 
     | 
    
         
            +
            net.bn
         
     | 
| 
      
 395 
     | 
    
         
            +
            org.bn
         
     | 
| 
       386 
396 
     | 
    
         | 
| 
       387 
397 
     | 
    
         
             
            // bo : https://nic.bo/delegacion2015.php#h-1.10
         
     | 
| 
       388 
398 
     | 
    
         
             
            bo
         
     | 
| 
         @@ -546,6 +556,7 @@ niteroi.br 
     | 
|
| 
       546 
556 
     | 
    
         
             
            not.br
         
     | 
| 
       547 
557 
     | 
    
         
             
            ntr.br
         
     | 
| 
       548 
558 
     | 
    
         
             
            odo.br
         
     | 
| 
      
 559 
     | 
    
         
            +
            ong.br
         
     | 
| 
       549 
560 
     | 
    
         
             
            org.br
         
     | 
| 
       550 
561 
     | 
    
         
             
            osasco.br
         
     | 
| 
       551 
562 
     | 
    
         
             
            palmas.br
         
     | 
| 
         @@ -575,6 +586,7 @@ slz.br 
     | 
|
| 
       575 
586 
     | 
    
         
             
            sorocaba.br
         
     | 
| 
       576 
587 
     | 
    
         
             
            srv.br
         
     | 
| 
       577 
588 
     | 
    
         
             
            taxi.br
         
     | 
| 
      
 589 
     | 
    
         
            +
            tc.br
         
     | 
| 
       578 
590 
     | 
    
         
             
            teo.br
         
     | 
| 
       579 
591 
     | 
    
         
             
            the.br
         
     | 
| 
       580 
592 
     | 
    
         
             
            tmp.br
         
     | 
| 
         @@ -978,17 +990,16 @@ fm 
     | 
|
| 
       978 
990 
     | 
    
         
             
            fo
         
     | 
| 
       979 
991 
     | 
    
         | 
| 
       980 
992 
     | 
    
         
             
            // fr : http://www.afnic.fr/
         
     | 
| 
       981 
     | 
    
         
            -
            // domaines descriptifs :  
     | 
| 
      
 993 
     | 
    
         
            +
            // domaines descriptifs : https://www.afnic.fr/medias/documents/Cadre_legal/Afnic_Naming_Policy_12122016_VEN.pdf
         
     | 
| 
       982 
994 
     | 
    
         
             
            fr
         
     | 
| 
       983 
     | 
    
         
            -
            com.fr
         
     | 
| 
       984 
995 
     | 
    
         
             
            asso.fr
         
     | 
| 
      
 996 
     | 
    
         
            +
            com.fr
         
     | 
| 
      
 997 
     | 
    
         
            +
            gouv.fr
         
     | 
| 
       985 
998 
     | 
    
         
             
            nom.fr
         
     | 
| 
       986 
999 
     | 
    
         
             
            prd.fr
         
     | 
| 
       987 
     | 
    
         
            -
            presse.fr
         
     | 
| 
       988 
1000 
     | 
    
         
             
            tm.fr
         
     | 
| 
       989 
     | 
    
         
            -
            // domaines sectoriels :  
     | 
| 
      
 1001 
     | 
    
         
            +
            // domaines sectoriels : https://www.afnic.fr/en/products-and-services/the-fr-tld/sector-based-fr-domains-4.html
         
     | 
| 
       990 
1002 
     | 
    
         
             
            aeroport.fr
         
     | 
| 
       991 
     | 
    
         
            -
            assedic.fr
         
     | 
| 
       992 
1003 
     | 
    
         
             
            avocat.fr
         
     | 
| 
       993 
1004 
     | 
    
         
             
            avoues.fr
         
     | 
| 
       994 
1005 
     | 
    
         
             
            cci.fr
         
     | 
| 
         @@ -996,7 +1007,6 @@ chambagri.fr 
     | 
|
| 
       996 
1007 
     | 
    
         
             
            chirurgiens-dentistes.fr
         
     | 
| 
       997 
1008 
     | 
    
         
             
            experts-comptables.fr
         
     | 
| 
       998 
1009 
     | 
    
         
             
            geometre-expert.fr
         
     | 
| 
       999 
     | 
    
         
            -
            gouv.fr
         
     | 
| 
       1000 
1010 
     | 
    
         
             
            greta.fr
         
     | 
| 
       1001 
1011 
     | 
    
         
             
            huissier-justice.fr
         
     | 
| 
       1002 
1012 
     | 
    
         
             
            medecin.fr
         
     | 
| 
         @@ -1114,8 +1124,18 @@ mil.gt 
     | 
|
| 
       1114 
1124 
     | 
    
         
             
            net.gt
         
     | 
| 
       1115 
1125 
     | 
    
         
             
            org.gt
         
     | 
| 
       1116 
1126 
     | 
    
         | 
| 
       1117 
     | 
    
         
            -
            // gu : http://gadao.gov.gu/ 
     | 
| 
       1118 
     | 
    
         
            -
             
     | 
| 
      
 1127 
     | 
    
         
            +
            // gu : http://gadao.gov.gu/register.html
         
     | 
| 
      
 1128 
     | 
    
         
            +
            // University of Guam : https://www.uog.edu
         
     | 
| 
      
 1129 
     | 
    
         
            +
            // Submitted by uognoc@triton.uog.edu
         
     | 
| 
      
 1130 
     | 
    
         
            +
            gu
         
     | 
| 
      
 1131 
     | 
    
         
            +
            com.gu
         
     | 
| 
      
 1132 
     | 
    
         
            +
            edu.gu
         
     | 
| 
      
 1133 
     | 
    
         
            +
            gov.gu
         
     | 
| 
      
 1134 
     | 
    
         
            +
            guam.gu
         
     | 
| 
      
 1135 
     | 
    
         
            +
            info.gu
         
     | 
| 
      
 1136 
     | 
    
         
            +
            net.gu
         
     | 
| 
      
 1137 
     | 
    
         
            +
            org.gu
         
     | 
| 
      
 1138 
     | 
    
         
            +
            web.gu
         
     | 
| 
       1119 
1139 
     | 
    
         | 
| 
       1120 
1140 
     | 
    
         
             
            // gw : https://en.wikipedia.org/wiki/.gw
         
     | 
| 
       1121 
1141 
     | 
    
         
             
            gw
         
     | 
| 
         @@ -1130,7 +1150,7 @@ gov.gy 
     | 
|
| 
       1130 
1150 
     | 
    
         
             
            net.gy
         
     | 
| 
       1131 
1151 
     | 
    
         
             
            org.gy
         
     | 
| 
       1132 
1152 
     | 
    
         | 
| 
       1133 
     | 
    
         
            -
            // hk : https://www. 
     | 
| 
      
 1153 
     | 
    
         
            +
            // hk : https://www.hkirc.hk
         
     | 
| 
       1134 
1154 
     | 
    
         
             
            // Submitted by registry <hk.tech@hkirc.hk>
         
     | 
| 
       1135 
1155 
     | 
    
         
             
            hk
         
     | 
| 
       1136 
1156 
     | 
    
         
             
            com.hk
         
     | 
| 
         @@ -1229,7 +1249,7 @@ tozsde.hu 
     | 
|
| 
       1229 
1249 
     | 
    
         
             
            utazas.hu
         
     | 
| 
       1230 
1250 
     | 
    
         
             
            video.hu
         
     | 
| 
       1231 
1251 
     | 
    
         | 
| 
       1232 
     | 
    
         
            -
            // id : https:// 
     | 
| 
      
 1252 
     | 
    
         
            +
            // id : https://pandi.id/en/domain/registration-requirements/
         
     | 
| 
       1233 
1253 
     | 
    
         
             
            id
         
     | 
| 
       1234 
1254 
     | 
    
         
             
            ac.id
         
     | 
| 
       1235 
1255 
     | 
    
         
             
            biz.id
         
     | 
| 
         @@ -1240,6 +1260,7 @@ mil.id 
     | 
|
| 
       1240 
1260 
     | 
    
         
             
            my.id
         
     | 
| 
       1241 
1261 
     | 
    
         
             
            net.id
         
     | 
| 
       1242 
1262 
     | 
    
         
             
            or.id
         
     | 
| 
      
 1263 
     | 
    
         
            +
            ponpes.id
         
     | 
| 
       1243 
1264 
     | 
    
         
             
            sch.id
         
     | 
| 
       1244 
1265 
     | 
    
         
             
            web.id
         
     | 
| 
       1245 
1266 
     | 
    
         | 
| 
         @@ -1341,10 +1362,8 @@ int.is 
     | 
|
| 
       1341 
1362 
     | 
    
         
             
            it
         
     | 
| 
       1342 
1363 
     | 
    
         
             
            gov.it
         
     | 
| 
       1343 
1364 
     | 
    
         
             
            edu.it
         
     | 
| 
       1344 
     | 
    
         
            -
            // Reserved geo-names:
         
     | 
| 
       1345 
     | 
    
         
            -
            // http://www.nic.it/ 
     | 
| 
       1346 
     | 
    
         
            -
            // There is also a list of reserved geo-names corresponding to Italian municipalities
         
     | 
| 
       1347 
     | 
    
         
            -
            // http://www.nic.it/documenti/appendice-c.pdf, but it is not included here.
         
     | 
| 
      
 1365 
     | 
    
         
            +
            // Reserved geo-names (regions and provinces):
         
     | 
| 
      
 1366 
     | 
    
         
            +
            // http://www.nic.it/sites/default/files/docs/Regulation_assignation_v7.1.pdf
         
     | 
| 
       1348 
1367 
     | 
    
         
             
            // Regions
         
     | 
| 
       1349 
1368 
     | 
    
         
             
            abr.it
         
     | 
| 
       1350 
1369 
     | 
    
         
             
            abruzzo.it
         
     | 
| 
         @@ -1398,6 +1417,12 @@ sicily.it 
     | 
|
| 
       1398 
1417 
     | 
    
         
             
            taa.it
         
     | 
| 
       1399 
1418 
     | 
    
         
             
            tos.it
         
     | 
| 
       1400 
1419 
     | 
    
         
             
            toscana.it
         
     | 
| 
      
 1420 
     | 
    
         
            +
            trentin-sud-tirol.it
         
     | 
| 
      
 1421 
     | 
    
         
            +
            trentin-süd-tirol.it
         
     | 
| 
      
 1422 
     | 
    
         
            +
            trentin-sudtirol.it
         
     | 
| 
      
 1423 
     | 
    
         
            +
            trentin-südtirol.it
         
     | 
| 
      
 1424 
     | 
    
         
            +
            trentin-sued-tirol.it
         
     | 
| 
      
 1425 
     | 
    
         
            +
            trentin-suedtirol.it
         
     | 
| 
       1401 
1426 
     | 
    
         
             
            trentino-a-adige.it
         
     | 
| 
       1402 
1427 
     | 
    
         
             
            trentino-aadige.it
         
     | 
| 
       1403 
1428 
     | 
    
         
             
            trentino-alto-adige.it
         
     | 
| 
         @@ -1405,9 +1430,12 @@ trentino-altoadige.it 
     | 
|
| 
       1405 
1430 
     | 
    
         
             
            trentino-s-tirol.it
         
     | 
| 
       1406 
1431 
     | 
    
         
             
            trentino-stirol.it
         
     | 
| 
       1407 
1432 
     | 
    
         
             
            trentino-sud-tirol.it
         
     | 
| 
      
 1433 
     | 
    
         
            +
            trentino-süd-tirol.it
         
     | 
| 
       1408 
1434 
     | 
    
         
             
            trentino-sudtirol.it
         
     | 
| 
      
 1435 
     | 
    
         
            +
            trentino-südtirol.it
         
     | 
| 
       1409 
1436 
     | 
    
         
             
            trentino-sued-tirol.it
         
     | 
| 
       1410 
1437 
     | 
    
         
             
            trentino-suedtirol.it
         
     | 
| 
      
 1438 
     | 
    
         
            +
            trentino.it
         
     | 
| 
       1411 
1439 
     | 
    
         
             
            trentinoa-adige.it
         
     | 
| 
       1412 
1440 
     | 
    
         
             
            trentinoaadige.it
         
     | 
| 
       1413 
1441 
     | 
    
         
             
            trentinoalto-adige.it
         
     | 
| 
         @@ -1415,9 +1443,17 @@ trentinoaltoadige.it 
     | 
|
| 
       1415 
1443 
     | 
    
         
             
            trentinos-tirol.it
         
     | 
| 
       1416 
1444 
     | 
    
         
             
            trentinostirol.it
         
     | 
| 
       1417 
1445 
     | 
    
         
             
            trentinosud-tirol.it
         
     | 
| 
      
 1446 
     | 
    
         
            +
            trentinosüd-tirol.it
         
     | 
| 
       1418 
1447 
     | 
    
         
             
            trentinosudtirol.it
         
     | 
| 
      
 1448 
     | 
    
         
            +
            trentinosüdtirol.it
         
     | 
| 
       1419 
1449 
     | 
    
         
             
            trentinosued-tirol.it
         
     | 
| 
       1420 
1450 
     | 
    
         
             
            trentinosuedtirol.it
         
     | 
| 
      
 1451 
     | 
    
         
            +
            trentinsud-tirol.it
         
     | 
| 
      
 1452 
     | 
    
         
            +
            trentinsüd-tirol.it
         
     | 
| 
      
 1453 
     | 
    
         
            +
            trentinsudtirol.it
         
     | 
| 
      
 1454 
     | 
    
         
            +
            trentinsüdtirol.it
         
     | 
| 
      
 1455 
     | 
    
         
            +
            trentinsued-tirol.it
         
     | 
| 
      
 1456 
     | 
    
         
            +
            trentinsuedtirol.it
         
     | 
| 
       1421 
1457 
     | 
    
         
             
            tuscany.it
         
     | 
| 
       1422 
1458 
     | 
    
         
             
            umb.it
         
     | 
| 
       1423 
1459 
     | 
    
         
             
            umbria.it
         
     | 
| 
         @@ -1432,7 +1468,13 @@ valleaosta.it 
     | 
|
| 
       1432 
1468 
     | 
    
         
             
            valled-aosta.it
         
     | 
| 
       1433 
1469 
     | 
    
         
             
            valledaosta.it
         
     | 
| 
       1434 
1470 
     | 
    
         
             
            vallee-aoste.it
         
     | 
| 
      
 1471 
     | 
    
         
            +
            vallée-aoste.it
         
     | 
| 
      
 1472 
     | 
    
         
            +
            vallee-d-aoste.it
         
     | 
| 
      
 1473 
     | 
    
         
            +
            vallée-d-aoste.it
         
     | 
| 
       1435 
1474 
     | 
    
         
             
            valleeaoste.it
         
     | 
| 
      
 1475 
     | 
    
         
            +
            valléeaoste.it
         
     | 
| 
      
 1476 
     | 
    
         
            +
            valleedaoste.it
         
     | 
| 
      
 1477 
     | 
    
         
            +
            valléedaoste.it
         
     | 
| 
       1436 
1478 
     | 
    
         
             
            vao.it
         
     | 
| 
       1437 
1479 
     | 
    
         
             
            vda.it
         
     | 
| 
       1438 
1480 
     | 
    
         
             
            ven.it
         
     | 
| 
         @@ -1465,6 +1507,9 @@ at.it 
     | 
|
| 
       1465 
1507 
     | 
    
         
             
            av.it
         
     | 
| 
       1466 
1508 
     | 
    
         
             
            avellino.it
         
     | 
| 
       1467 
1509 
     | 
    
         
             
            ba.it
         
     | 
| 
      
 1510 
     | 
    
         
            +
            balsan-sudtirol.it
         
     | 
| 
      
 1511 
     | 
    
         
            +
            balsan-südtirol.it
         
     | 
| 
      
 1512 
     | 
    
         
            +
            balsan-suedtirol.it
         
     | 
| 
       1468 
1513 
     | 
    
         
             
            balsan.it
         
     | 
| 
       1469 
1514 
     | 
    
         
             
            bari.it
         
     | 
| 
       1470 
1515 
     | 
    
         
             
            barletta-trani-andria.it
         
     | 
| 
         @@ -1479,13 +1524,21 @@ bl.it 
     | 
|
| 
       1479 
1524 
     | 
    
         
             
            bn.it
         
     | 
| 
       1480 
1525 
     | 
    
         
             
            bo.it
         
     | 
| 
       1481 
1526 
     | 
    
         
             
            bologna.it
         
     | 
| 
      
 1527 
     | 
    
         
            +
            bolzano-altoadige.it
         
     | 
| 
       1482 
1528 
     | 
    
         
             
            bolzano.it
         
     | 
| 
      
 1529 
     | 
    
         
            +
            bozen-sudtirol.it
         
     | 
| 
      
 1530 
     | 
    
         
            +
            bozen-südtirol.it
         
     | 
| 
      
 1531 
     | 
    
         
            +
            bozen-suedtirol.it
         
     | 
| 
       1483 
1532 
     | 
    
         
             
            bozen.it
         
     | 
| 
       1484 
1533 
     | 
    
         
             
            br.it
         
     | 
| 
       1485 
1534 
     | 
    
         
             
            brescia.it
         
     | 
| 
       1486 
1535 
     | 
    
         
             
            brindisi.it
         
     | 
| 
       1487 
1536 
     | 
    
         
             
            bs.it
         
     | 
| 
       1488 
1537 
     | 
    
         
             
            bt.it
         
     | 
| 
      
 1538 
     | 
    
         
            +
            bulsan-sudtirol.it
         
     | 
| 
      
 1539 
     | 
    
         
            +
            bulsan-südtirol.it
         
     | 
| 
      
 1540 
     | 
    
         
            +
            bulsan-suedtirol.it
         
     | 
| 
      
 1541 
     | 
    
         
            +
            bulsan.it
         
     | 
| 
       1489 
1542 
     | 
    
         
             
            bz.it
         
     | 
| 
       1490 
1543 
     | 
    
         
             
            ca.it
         
     | 
| 
       1491 
1544 
     | 
    
         
             
            cagliari.it
         
     | 
| 
         @@ -1503,7 +1556,9 @@ catanzaro.it 
     | 
|
| 
       1503 
1556 
     | 
    
         
             
            cb.it
         
     | 
| 
       1504 
1557 
     | 
    
         
             
            ce.it
         
     | 
| 
       1505 
1558 
     | 
    
         
             
            cesena-forli.it
         
     | 
| 
      
 1559 
     | 
    
         
            +
            cesena-forlì.it
         
     | 
| 
       1506 
1560 
     | 
    
         
             
            cesenaforli.it
         
     | 
| 
      
 1561 
     | 
    
         
            +
            cesenaforlì.it
         
     | 
| 
       1507 
1562 
     | 
    
         
             
            ch.it
         
     | 
| 
       1508 
1563 
     | 
    
         
             
            chieti.it
         
     | 
| 
       1509 
1564 
     | 
    
         
             
            ci.it
         
     | 
| 
         @@ -1534,7 +1589,9 @@ florence.it 
     | 
|
| 
       1534 
1589 
     | 
    
         
             
            fm.it
         
     | 
| 
       1535 
1590 
     | 
    
         
             
            foggia.it
         
     | 
| 
       1536 
1591 
     | 
    
         
             
            forli-cesena.it
         
     | 
| 
      
 1592 
     | 
    
         
            +
            forlì-cesena.it
         
     | 
| 
       1537 
1593 
     | 
    
         
             
            forlicesena.it
         
     | 
| 
      
 1594 
     | 
    
         
            +
            forlìcesena.it
         
     | 
| 
       1538 
1595 
     | 
    
         
             
            fr.it
         
     | 
| 
       1539 
1596 
     | 
    
         
             
            frosinone.it
         
     | 
| 
       1540 
1597 
     | 
    
         
             
            ge.it
         
     | 
| 
         @@ -1665,6 +1722,7 @@ sp.it 
     | 
|
| 
       1665 
1722 
     | 
    
         
             
            sr.it
         
     | 
| 
       1666 
1723 
     | 
    
         
             
            ss.it
         
     | 
| 
       1667 
1724 
     | 
    
         
             
            suedtirol.it
         
     | 
| 
      
 1725 
     | 
    
         
            +
            südtirol.it
         
     | 
| 
       1668 
1726 
     | 
    
         
             
            sv.it
         
     | 
| 
       1669 
1727 
     | 
    
         
             
            ta.it
         
     | 
| 
       1670 
1728 
     | 
    
         
             
            taranto.it
         
     | 
| 
         @@ -1683,7 +1741,6 @@ trani-barletta-andria.it 
     | 
|
| 
       1683 
1741 
     | 
    
         
             
            traniandriabarletta.it
         
     | 
| 
       1684 
1742 
     | 
    
         
             
            tranibarlettaandria.it
         
     | 
| 
       1685 
1743 
     | 
    
         
             
            trapani.it
         
     | 
| 
       1686 
     | 
    
         
            -
            trentino.it
         
     | 
| 
       1687 
1744 
     | 
    
         
             
            trento.it
         
     | 
| 
       1688 
1745 
     | 
    
         
             
            treviso.it
         
     | 
| 
       1689 
1746 
     | 
    
         
             
            trieste.it
         
     | 
| 
         @@ -3646,8 +3703,16 @@ jeonnam.kr 
     | 
|
| 
       3646 
3703 
     | 
    
         
             
            seoul.kr
         
     | 
| 
       3647 
3704 
     | 
    
         
             
            ulsan.kr
         
     | 
| 
       3648 
3705 
     | 
    
         | 
| 
       3649 
     | 
    
         
            -
            // kw : https:// 
     | 
| 
       3650 
     | 
    
         
            -
             
     | 
| 
      
 3706 
     | 
    
         
            +
            // kw : https://www.nic.kw/policies/
         
     | 
| 
      
 3707 
     | 
    
         
            +
            // Confirmed by registry <nic.tech@citra.gov.kw>
         
     | 
| 
      
 3708 
     | 
    
         
            +
            kw
         
     | 
| 
      
 3709 
     | 
    
         
            +
            com.kw
         
     | 
| 
      
 3710 
     | 
    
         
            +
            edu.kw
         
     | 
| 
      
 3711 
     | 
    
         
            +
            emb.kw
         
     | 
| 
      
 3712 
     | 
    
         
            +
            gov.kw
         
     | 
| 
      
 3713 
     | 
    
         
            +
            ind.kw
         
     | 
| 
      
 3714 
     | 
    
         
            +
            net.kw
         
     | 
| 
      
 3715 
     | 
    
         
            +
            org.kw
         
     | 
| 
       3651 
3716 
     | 
    
         | 
| 
       3652 
3717 
     | 
    
         
             
            // ky : http://www.icta.ky/da_ky_reg_dom.php
         
     | 
| 
       3653 
3718 
     | 
    
         
             
            // Confirmed by registry <kysupport@perimeterusa.com> 2008-06-17
         
     | 
| 
         @@ -3729,10 +3794,18 @@ gov.lr 
     | 
|
| 
       3729 
3794 
     | 
    
         
             
            org.lr
         
     | 
| 
       3730 
3795 
     | 
    
         
             
            net.lr
         
     | 
| 
       3731 
3796 
     | 
    
         | 
| 
       3732 
     | 
    
         
            -
            // ls :  
     | 
| 
      
 3797 
     | 
    
         
            +
            // ls : http://www.nic.ls/
         
     | 
| 
      
 3798 
     | 
    
         
            +
            // Confirmed by registry <lsadmin@nic.ls>
         
     | 
| 
       3733 
3799 
     | 
    
         
             
            ls
         
     | 
| 
      
 3800 
     | 
    
         
            +
            ac.ls
         
     | 
| 
      
 3801 
     | 
    
         
            +
            biz.ls
         
     | 
| 
       3734 
3802 
     | 
    
         
             
            co.ls
         
     | 
| 
      
 3803 
     | 
    
         
            +
            edu.ls
         
     | 
| 
      
 3804 
     | 
    
         
            +
            gov.ls
         
     | 
| 
      
 3805 
     | 
    
         
            +
            info.ls
         
     | 
| 
      
 3806 
     | 
    
         
            +
            net.ls
         
     | 
| 
       3735 
3807 
     | 
    
         
             
            org.ls
         
     | 
| 
      
 3808 
     | 
    
         
            +
            sc.ls
         
     | 
| 
       3736 
3809 
     | 
    
         | 
| 
       3737 
3810 
     | 
    
         
             
            // lt : https://en.wikipedia.org/wiki/.lt
         
     | 
| 
       3738 
3811 
     | 
    
         
             
            lt
         
     | 
| 
         @@ -4590,9 +4663,6 @@ web.ni 
     | 
|
| 
       4590 
4663 
     | 
    
         
             
            //      ccTLD for the Netherlands
         
     | 
| 
       4591 
4664 
     | 
    
         
             
            nl
         
     | 
| 
       4592 
4665 
     | 
    
         | 
| 
       4593 
     | 
    
         
            -
            // BV.nl will be a registry for dutch BV's (besloten vennootschap)
         
     | 
| 
       4594 
     | 
    
         
            -
            bv.nl
         
     | 
| 
       4595 
     | 
    
         
            -
             
     | 
| 
       4596 
4666 
     | 
    
         
             
            // no : http://www.norid.no/regelverk/index.en.html
         
     | 
| 
       4597 
4667 
     | 
    
         
             
            // The Norwegian registry has declined to notify us of updates. The web pages
         
     | 
| 
       4598 
4668 
     | 
    
         
             
            // referenced below are the official source of the data. There is also an
         
     | 
| 
         @@ -5822,17 +5892,15 @@ int.ru 
     | 
|
| 
       5822 
5892 
     | 
    
         
             
            mil.ru
         
     | 
| 
       5823 
5893 
     | 
    
         
             
            test.ru
         
     | 
| 
       5824 
5894 
     | 
    
         | 
| 
       5825 
     | 
    
         
            -
            // rw :  
     | 
| 
      
 5895 
     | 
    
         
            +
            // rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
         
     | 
| 
       5826 
5896 
     | 
    
         
             
            rw
         
     | 
| 
       5827 
     | 
    
         
            -
            gov.rw
         
     | 
| 
       5828 
     | 
    
         
            -
            net.rw
         
     | 
| 
       5829 
     | 
    
         
            -
            edu.rw
         
     | 
| 
       5830 
5897 
     | 
    
         
             
            ac.rw
         
     | 
| 
       5831 
     | 
    
         
            -
            com.rw
         
     | 
| 
       5832 
5898 
     | 
    
         
             
            co.rw
         
     | 
| 
       5833 
     | 
    
         
            -
             
     | 
| 
      
 5899 
     | 
    
         
            +
            coop.rw
         
     | 
| 
      
 5900 
     | 
    
         
            +
            gov.rw
         
     | 
| 
       5834 
5901 
     | 
    
         
             
            mil.rw
         
     | 
| 
       5835 
     | 
    
         
            -
             
     | 
| 
      
 5902 
     | 
    
         
            +
            net.rw
         
     | 
| 
      
 5903 
     | 
    
         
            +
            org.rw
         
     | 
| 
       5836 
5904 
     | 
    
         | 
| 
       5837 
5905 
     | 
    
         
             
            // sa : http://www.nic.net.sa/
         
     | 
| 
       5838 
5906 
     | 
    
         
             
            sa
         
     | 
| 
         @@ -6122,40 +6190,36 @@ org.to 
     | 
|
| 
       6122 
6190 
     | 
    
         
             
            edu.to
         
     | 
| 
       6123 
6191 
     | 
    
         
             
            mil.to
         
     | 
| 
       6124 
6192 
     | 
    
         | 
| 
       6125 
     | 
    
         
            -
            //  
     | 
| 
       6126 
     | 
    
         
            -
            // 
     | 
| 
       6127 
     | 
    
         
            -
            //  
     | 
| 
      
 6193 
     | 
    
         
            +
            // tr : https://nic.tr/
         
     | 
| 
      
 6194 
     | 
    
         
            +
            // https://nic.tr/forms/eng/policies.pdf
         
     | 
| 
      
 6195 
     | 
    
         
            +
            // https://nic.tr/index.php?USRACTN=PRICELST
         
     | 
| 
       6128 
6196 
     | 
    
         
             
            tr
         
     | 
| 
       6129 
     | 
    
         
            -
            com.tr
         
     | 
| 
       6130 
     | 
    
         
            -
            info.tr
         
     | 
| 
       6131 
     | 
    
         
            -
            biz.tr
         
     | 
| 
       6132 
     | 
    
         
            -
            net.tr
         
     | 
| 
       6133 
     | 
    
         
            -
            org.tr
         
     | 
| 
       6134 
     | 
    
         
            -
            web.tr
         
     | 
| 
       6135 
     | 
    
         
            -
            gen.tr
         
     | 
| 
       6136 
     | 
    
         
            -
            tv.tr
         
     | 
| 
       6137 
6197 
     | 
    
         
             
            av.tr
         
     | 
| 
       6138 
     | 
    
         
            -
            dr.tr
         
     | 
| 
       6139 
6198 
     | 
    
         
             
            bbs.tr
         
     | 
| 
       6140 
     | 
    
         
            -
            name.tr
         
     | 
| 
       6141 
     | 
    
         
            -
            tel.tr
         
     | 
| 
       6142 
     | 
    
         
            -
            gov.tr
         
     | 
| 
       6143 
6199 
     | 
    
         
             
            bel.tr
         
     | 
| 
       6144 
     | 
    
         
            -
             
     | 
| 
      
 6200 
     | 
    
         
            +
            biz.tr
         
     | 
| 
      
 6201 
     | 
    
         
            +
            com.tr
         
     | 
| 
      
 6202 
     | 
    
         
            +
            dr.tr
         
     | 
| 
      
 6203 
     | 
    
         
            +
            edu.tr
         
     | 
| 
      
 6204 
     | 
    
         
            +
            gen.tr
         
     | 
| 
      
 6205 
     | 
    
         
            +
            gov.tr
         
     | 
| 
      
 6206 
     | 
    
         
            +
            info.tr
         
     | 
| 
       6145 
6207 
     | 
    
         
             
            mil.tr
         
     | 
| 
       6146 
6208 
     | 
    
         
             
            k12.tr
         
     | 
| 
       6147 
     | 
    
         
            -
            edu.tr
         
     | 
| 
       6148 
6209 
     | 
    
         
             
            kep.tr
         
     | 
| 
       6149 
     | 
    
         
            -
             
     | 
| 
      
 6210 
     | 
    
         
            +
            name.tr
         
     | 
| 
      
 6211 
     | 
    
         
            +
            net.tr
         
     | 
| 
      
 6212 
     | 
    
         
            +
            org.tr
         
     | 
| 
      
 6213 
     | 
    
         
            +
            pol.tr
         
     | 
| 
      
 6214 
     | 
    
         
            +
            tel.tr
         
     | 
| 
      
 6215 
     | 
    
         
            +
            tsk.tr
         
     | 
| 
      
 6216 
     | 
    
         
            +
            tv.tr
         
     | 
| 
      
 6217 
     | 
    
         
            +
            web.tr
         
     | 
| 
       6150 
6218 
     | 
    
         
             
            // Used by Northern Cyprus
         
     | 
| 
       6151 
6219 
     | 
    
         
             
            nc.tr
         
     | 
| 
       6152 
     | 
    
         
            -
             
     | 
| 
       6153 
6220 
     | 
    
         
             
            // Used by government agencies of Northern Cyprus
         
     | 
| 
       6154 
6221 
     | 
    
         
             
            gov.nc.tr
         
     | 
| 
       6155 
6222 
     | 
    
         | 
| 
       6156 
     | 
    
         
            -
            // travel : https://en.wikipedia.org/wiki/.travel
         
     | 
| 
       6157 
     | 
    
         
            -
            travel
         
     | 
| 
       6158 
     | 
    
         
            -
             
     | 
| 
       6159 
6223 
     | 
    
         
             
            // tt : http://www.nic.tt/
         
     | 
| 
       6160 
6224 
     | 
    
         
             
            tt
         
     | 
| 
       6161 
6225 
     | 
    
         
             
            co.tt
         
     | 
| 
         @@ -6730,8 +6794,16 @@ yt 
     | 
|
| 
       6730 
6794 
     | 
    
         
             
            ελ
         
     | 
| 
       6731 
6795 
     | 
    
         | 
| 
       6732 
6796 
     | 
    
         
             
            // xn--j6w193g ("Hong Kong", Chinese) : HK
         
     | 
| 
       6733 
     | 
    
         
            -
            // https:// 
     | 
| 
      
 6797 
     | 
    
         
            +
            // https://www.hkirc.hk
         
     | 
| 
      
 6798 
     | 
    
         
            +
            // Submitted by registry <hk.tech@hkirc.hk>
         
     | 
| 
      
 6799 
     | 
    
         
            +
            // https://www.hkirc.hk/content.jsp?id=30#!/34
         
     | 
| 
       6734 
6800 
     | 
    
         
             
            香港
         
     | 
| 
      
 6801 
     | 
    
         
            +
            公司.香港
         
     | 
| 
      
 6802 
     | 
    
         
            +
            教育.香港
         
     | 
| 
      
 6803 
     | 
    
         
            +
            政府.香港
         
     | 
| 
      
 6804 
     | 
    
         
            +
            個人.香港
         
     | 
| 
      
 6805 
     | 
    
         
            +
            網絡.香港
         
     | 
| 
      
 6806 
     | 
    
         
            +
            組織.香港
         
     | 
| 
       6735 
6807 
     | 
    
         | 
| 
       6736 
6808 
     | 
    
         
             
            // xn--2scrj9c ("Bharat", Kannada) : IN
         
     | 
| 
       6737 
6809 
     | 
    
         
             
            // India
         
     | 
| 
         @@ -6984,8 +7056,10 @@ mil.zw 
     | 
|
| 
       6984 
7056 
     | 
    
         
             
            org.zw
         
     | 
| 
       6985 
7057 
     | 
    
         | 
| 
       6986 
7058 
     | 
    
         | 
| 
       6987 
     | 
    
         
            -
            //  
     | 
| 
      
 7059 
     | 
    
         
            +
            // newGTLDs
         
     | 
| 
       6988 
7060 
     | 
    
         | 
| 
      
 7061 
     | 
    
         
            +
            // List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2019-06-14T10:00:50-04:00
         
     | 
| 
      
 7062 
     | 
    
         
            +
            // This list is auto-generated, don't edit it manually.
         
     | 
| 
       6989 
7063 
     | 
    
         
             
            // aaa : 2015-02-26 American Automobile Association, Inc.
         
     | 
| 
       6990 
7064 
     | 
    
         
             
            aaa
         
     | 
| 
       6991 
7065 
     | 
    
         | 
| 
         @@ -7031,10 +7105,7 @@ accountants 
     | 
|
| 
       7031 
7105 
     | 
    
         
             
            // aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
         
     | 
| 
       7032 
7106 
     | 
    
         
             
            aco
         
     | 
| 
       7033 
7107 
     | 
    
         | 
| 
       7034 
     | 
    
         
            -
            //  
     | 
| 
       7035 
     | 
    
         
            -
            active
         
     | 
| 
       7036 
     | 
    
         
            -
             
     | 
| 
       7037 
     | 
    
         
            -
            // actor : 2013-12-12 United TLD Holdco Ltd.
         
     | 
| 
      
 7108 
     | 
    
         
            +
            // actor : 2013-12-12 Dog Beach, LLC
         
     | 
| 
       7038 
7109 
     | 
    
         
             
            actor
         
     | 
| 
       7039 
7110 
     | 
    
         | 
| 
       7040 
7111 
     | 
    
         
             
            // adac : 2015-07-16 Allgemeiner Deutscher Automobil-Club e.V. (ADAC)
         
     | 
| 
         @@ -7076,7 +7147,7 @@ aigo 
     | 
|
| 
       7076 
7147 
     | 
    
         
             
            // airbus : 2015-07-30 Airbus S.A.S.
         
     | 
| 
       7077 
7148 
     | 
    
         
             
            airbus
         
     | 
| 
       7078 
7149 
     | 
    
         | 
| 
       7079 
     | 
    
         
            -
            // airforce : 2014-03-06  
     | 
| 
      
 7150 
     | 
    
         
            +
            // airforce : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       7080 
7151 
     | 
    
         
             
            airforce
         
     | 
| 
       7081 
7152 
     | 
    
         | 
| 
       7082 
7153 
     | 
    
         
             
            // airtel : 2014-10-24 Bharti Airtel Limited
         
     | 
| 
         @@ -7160,10 +7231,10 @@ arab 
     | 
|
| 
       7160 
7231 
     | 
    
         
             
            // aramco : 2014-11-20 Aramco Services Company
         
     | 
| 
       7161 
7232 
     | 
    
         
             
            aramco
         
     | 
| 
       7162 
7233 
     | 
    
         | 
| 
       7163 
     | 
    
         
            -
            // archi : 2014-02-06 Afilias  
     | 
| 
      
 7234 
     | 
    
         
            +
            // archi : 2014-02-06 Afilias Limited
         
     | 
| 
       7164 
7235 
     | 
    
         
             
            archi
         
     | 
| 
       7165 
7236 
     | 
    
         | 
| 
       7166 
     | 
    
         
            -
            // army : 2014-03-06  
     | 
| 
      
 7237 
     | 
    
         
            +
            // army : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       7167 
7238 
     | 
    
         
             
            army
         
     | 
| 
       7168 
7239 
     | 
    
         | 
| 
       7169 
7240 
     | 
    
         
             
            // art : 2016-03-24 UK Creative Ideas Limited
         
     | 
| 
         @@ -7181,10 +7252,10 @@ associates 
     | 
|
| 
       7181 
7252 
     | 
    
         
             
            // athleta : 2015-07-30 The Gap, Inc.
         
     | 
| 
       7182 
7253 
     | 
    
         
             
            athleta
         
     | 
| 
       7183 
7254 
     | 
    
         | 
| 
       7184 
     | 
    
         
            -
            // attorney : 2014-03-20  
     | 
| 
      
 7255 
     | 
    
         
            +
            // attorney : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       7185 
7256 
     | 
    
         
             
            attorney
         
     | 
| 
       7186 
7257 
     | 
    
         | 
| 
       7187 
     | 
    
         
            -
            // auction : 2014-03-20  
     | 
| 
      
 7258 
     | 
    
         
            +
            // auction : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       7188 
7259 
     | 
    
         
             
            auction
         
     | 
| 
       7189 
7260 
     | 
    
         | 
| 
       7190 
7261 
     | 
    
         
             
            // audi : 2015-05-21 AUDI Aktiengesellschaft
         
     | 
| 
         @@ -7202,7 +7273,7 @@ auspost 
     | 
|
| 
       7202 
7273 
     | 
    
         
             
            // author : 2014-12-18 Amazon Registry Services, Inc.
         
     | 
| 
       7203 
7274 
     | 
    
         
             
            author
         
     | 
| 
       7204 
7275 
     | 
    
         | 
| 
       7205 
     | 
    
         
            -
            // auto : 2014-11-13 Cars Registry Limited 
     | 
| 
      
 7276 
     | 
    
         
            +
            // auto : 2014-11-13 Cars Registry Limited
         
     | 
| 
       7206 
7277 
     | 
    
         
             
            auto
         
     | 
| 
       7207 
7278 
     | 
    
         | 
| 
       7208 
7279 
     | 
    
         
             
            // autos : 2014-01-09 DERAutos, LLC
         
     | 
| 
         @@ -7220,7 +7291,7 @@ axa 
     | 
|
| 
       7220 
7291 
     | 
    
         
             
            // azure : 2014-12-18 Microsoft Corporation
         
     | 
| 
       7221 
7292 
     | 
    
         
             
            azure
         
     | 
| 
       7222 
7293 
     | 
    
         | 
| 
       7223 
     | 
    
         
            -
            // baby : 2015-04-09  
     | 
| 
      
 7294 
     | 
    
         
            +
            // baby : 2015-04-09 XYZ.COM LLC
         
     | 
| 
       7224 
7295 
     | 
    
         
             
            baby
         
     | 
| 
       7225 
7296 
     | 
    
         | 
| 
       7226 
7297 
     | 
    
         
             
            // baidu : 2015-01-08 Baidu, Inc.
         
     | 
| 
         @@ -7232,7 +7303,7 @@ banamex 
     | 
|
| 
       7232 
7303 
     | 
    
         
             
            // bananarepublic : 2015-07-31 The Gap, Inc.
         
     | 
| 
       7233 
7304 
     | 
    
         
             
            bananarepublic
         
     | 
| 
       7234 
7305 
     | 
    
         | 
| 
       7235 
     | 
    
         
            -
            // band : 2014-06-12  
     | 
| 
      
 7306 
     | 
    
         
            +
            // band : 2014-06-12 Dog Beach, LLC
         
     | 
| 
       7236 
7307 
     | 
    
         
             
            band
         
     | 
| 
       7237 
7308 
     | 
    
         | 
| 
       7238 
7309 
     | 
    
         
             
            // bank : 2014-09-25 fTLD Registry Services LLC
         
     | 
| 
         @@ -7304,7 +7375,7 @@ best 
     | 
|
| 
       7304 
7375 
     | 
    
         
             
            // bestbuy : 2015-07-31 BBY Solutions, Inc.
         
     | 
| 
       7305 
7376 
     | 
    
         
             
            bestbuy
         
     | 
| 
       7306 
7377 
     | 
    
         | 
| 
       7307 
     | 
    
         
            -
            // bet : 2015-05-07 Afilias  
     | 
| 
      
 7378 
     | 
    
         
            +
            // bet : 2015-05-07 Afilias Limited
         
     | 
| 
       7308 
7379 
     | 
    
         
             
            bet
         
     | 
| 
       7309 
7380 
     | 
    
         | 
| 
       7310 
7381 
     | 
    
         
             
            // bharti : 2014-01-09 Bharti Enterprises (Holding) Private Limited
         
     | 
| 
         @@ -7325,18 +7396,15 @@ bing 
     | 
|
| 
       7325 
7396 
     | 
    
         
             
            // bingo : 2014-12-04 Binky Moon, LLC
         
     | 
| 
       7326 
7397 
     | 
    
         
             
            bingo
         
     | 
| 
       7327 
7398 
     | 
    
         | 
| 
       7328 
     | 
    
         
            -
            // bio : 2014-03-06 Afilias  
     | 
| 
      
 7399 
     | 
    
         
            +
            // bio : 2014-03-06 Afilias Limited
         
     | 
| 
       7329 
7400 
     | 
    
         
             
            bio
         
     | 
| 
       7330 
7401 
     | 
    
         | 
| 
       7331 
     | 
    
         
            -
            // black : 2014-01-16 Afilias  
     | 
| 
      
 7402 
     | 
    
         
            +
            // black : 2014-01-16 Afilias Limited
         
     | 
| 
       7332 
7403 
     | 
    
         
             
            black
         
     | 
| 
       7333 
7404 
     | 
    
         | 
| 
       7334 
7405 
     | 
    
         
             
            // blackfriday : 2014-01-16 Uniregistry, Corp.
         
     | 
| 
       7335 
7406 
     | 
    
         
             
            blackfriday
         
     | 
| 
       7336 
7407 
     | 
    
         | 
| 
       7337 
     | 
    
         
            -
            // blanco : 2015-07-16 BLANCO GmbH + Co KG
         
     | 
| 
       7338 
     | 
    
         
            -
            blanco
         
     | 
| 
       7339 
     | 
    
         
            -
             
     | 
| 
       7340 
7408 
     | 
    
         
             
            // blockbuster : 2015-07-30 Dish DBS Corporation
         
     | 
| 
       7341 
7409 
     | 
    
         
             
            blockbuster
         
     | 
| 
       7342 
7410 
     | 
    
         | 
| 
         @@ -7346,7 +7414,7 @@ blog 
     | 
|
| 
       7346 
7414 
     | 
    
         
             
            // bloomberg : 2014-07-17 Bloomberg IP Holdings LLC
         
     | 
| 
       7347 
7415 
     | 
    
         
             
            bloomberg
         
     | 
| 
       7348 
7416 
     | 
    
         | 
| 
       7349 
     | 
    
         
            -
            // blue : 2013-11-07 Afilias  
     | 
| 
      
 7417 
     | 
    
         
            +
            // blue : 2013-11-07 Afilias Limited
         
     | 
| 
       7350 
7418 
     | 
    
         
             
            blue
         
     | 
| 
       7351 
7419 
     | 
    
         | 
| 
       7352 
7420 
     | 
    
         
             
            // bms : 2014-10-30 Bristol-Myers Squibb Company
         
     | 
| 
         @@ -7373,7 +7441,7 @@ bofa 
     | 
|
| 
       7373 
7441 
     | 
    
         
             
            // bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
         
     | 
| 
       7374 
7442 
     | 
    
         
             
            bom
         
     | 
| 
       7375 
7443 
     | 
    
         | 
| 
       7376 
     | 
    
         
            -
            // bond : 2014-06-05  
     | 
| 
      
 7444 
     | 
    
         
            +
            // bond : 2014-06-05 ShortDot SA
         
     | 
| 
       7377 
7445 
     | 
    
         
             
            bond
         
     | 
| 
       7378 
7446 
     | 
    
         | 
| 
       7379 
7447 
     | 
    
         
             
            // boo : 2014-01-30 Charleston Road Registry Inc.
         
     | 
| 
         @@ -7400,7 +7468,7 @@ bot 
     | 
|
| 
       7400 
7468 
     | 
    
         
             
            // boutique : 2013-11-14 Binky Moon, LLC
         
     | 
| 
       7401 
7469 
     | 
    
         
             
            boutique
         
     | 
| 
       7402 
7470 
     | 
    
         | 
| 
       7403 
     | 
    
         
            -
            // box : 2015-11-12  
     | 
| 
      
 7471 
     | 
    
         
            +
            // box : 2015-11-12 .BOX INC.
         
     | 
| 
       7404 
7472 
     | 
    
         
             
            box
         
     | 
| 
       7405 
7473 
     | 
    
         | 
| 
       7406 
7474 
     | 
    
         
             
            // bradesco : 2014-12-18 Banco Bradesco S.A.
         
     | 
| 
         @@ -7484,7 +7552,7 @@ capital 
     | 
|
| 
       7484 
7552 
     | 
    
         
             
            // capitalone : 2015-08-06 Capital One Financial Corporation
         
     | 
| 
       7485 
7553 
     | 
    
         
             
            capitalone
         
     | 
| 
       7486 
7554 
     | 
    
         | 
| 
       7487 
     | 
    
         
            -
            // car : 2015-01-22 Cars Registry Limited 
     | 
| 
      
 7555 
     | 
    
         
            +
            // car : 2015-01-22 Cars Registry Limited
         
     | 
| 
       7488 
7556 
     | 
    
         
             
            car
         
     | 
| 
       7489 
7557 
     | 
    
         | 
| 
       7490 
7558 
     | 
    
         
             
            // caravan : 2013-12-12 Caravan International, Inc.
         
     | 
| 
         @@ -7502,7 +7570,7 @@ career 
     | 
|
| 
       7502 
7570 
     | 
    
         
             
            // careers : 2013-10-02 Binky Moon, LLC
         
     | 
| 
       7503 
7571 
     | 
    
         
             
            careers
         
     | 
| 
       7504 
7572 
     | 
    
         | 
| 
       7505 
     | 
    
         
            -
            // cars : 2014-11-13 Cars Registry Limited 
     | 
| 
      
 7573 
     | 
    
         
            +
            // cars : 2014-11-13 Cars Registry Limited
         
     | 
| 
       7506 
7574 
     | 
    
         
             
            cars
         
     | 
| 
       7507 
7575 
     | 
    
         | 
| 
       7508 
7576 
     | 
    
         
             
            // cartier : 2014-06-23 Richemont DNS Inc.
         
     | 
| 
         @@ -7565,7 +7633,7 @@ chanel 
     | 
|
| 
       7565 
7633 
     | 
    
         
             
            // channel : 2014-05-08 Charleston Road Registry Inc.
         
     | 
| 
       7566 
7634 
     | 
    
         
             
            channel
         
     | 
| 
       7567 
7635 
     | 
    
         | 
| 
       7568 
     | 
    
         
            -
            // charity : 2018-04-11  
     | 
| 
      
 7636 
     | 
    
         
            +
            // charity : 2018-04-11 Binky Moon, LLC
         
     | 
| 
       7569 
7637 
     | 
    
         
             
            charity
         
     | 
| 
       7570 
7638 
     | 
    
         | 
| 
       7571 
7639 
     | 
    
         
             
            // chase : 2015-04-30 JPMorgan Chase Bank, National Association
         
     | 
| 
         @@ -7655,7 +7723,7 @@ coffee 
     | 
|
| 
       7655 
7723 
     | 
    
         
             
            // college : 2014-01-16 XYZ.COM LLC
         
     | 
| 
       7656 
7724 
     | 
    
         
             
            college
         
     | 
| 
       7657 
7725 
     | 
    
         | 
| 
       7658 
     | 
    
         
            -
            // cologne : 2014-02-05  
     | 
| 
      
 7726 
     | 
    
         
            +
            // cologne : 2014-02-05 dotKoeln GmbH
         
     | 
| 
       7659 
7727 
     | 
    
         
             
            cologne
         
     | 
| 
       7660 
7728 
     | 
    
         | 
| 
       7661 
7729 
     | 
    
         
             
            // comcast : 2015-07-23 Comcast IP Holdings I, LLC
         
     | 
| 
         @@ -7685,10 +7753,10 @@ condos 
     | 
|
| 
       7685 
7753 
     | 
    
         
             
            // construction : 2013-09-16 Binky Moon, LLC
         
     | 
| 
       7686 
7754 
     | 
    
         
             
            construction
         
     | 
| 
       7687 
7755 
     | 
    
         | 
| 
       7688 
     | 
    
         
            -
            // consulting : 2013-12-05  
     | 
| 
      
 7756 
     | 
    
         
            +
            // consulting : 2013-12-05 Dog Beach, LLC
         
     | 
| 
       7689 
7757 
     | 
    
         
             
            consulting
         
     | 
| 
       7690 
7758 
     | 
    
         | 
| 
       7691 
     | 
    
         
            -
            // contact : 2015-01-08  
     | 
| 
      
 7759 
     | 
    
         
            +
            // contact : 2015-01-08 Dog Beach, LLC
         
     | 
| 
       7692 
7760 
     | 
    
         
             
            contact
         
     | 
| 
       7693 
7761 
     | 
    
         | 
| 
       7694 
7762 
     | 
    
         
             
            // contractors : 2013-09-10 Binky Moon, LLC
         
     | 
| 
         @@ -7703,7 +7771,7 @@ cookingchannel 
     | 
|
| 
       7703 
7771 
     | 
    
         
             
            // cool : 2013-11-14 Binky Moon, LLC
         
     | 
| 
       7704 
7772 
     | 
    
         
             
            cool
         
     | 
| 
       7705 
7773 
     | 
    
         | 
| 
       7706 
     | 
    
         
            -
            // corsica : 2014-09-25 Collectivité  
     | 
| 
      
 7774 
     | 
    
         
            +
            // corsica : 2014-09-25 Collectivité de Corse
         
     | 
| 
       7707 
7775 
     | 
    
         
             
            corsica
         
     | 
| 
       7708 
7776 
     | 
    
         | 
| 
       7709 
7777 
     | 
    
         
             
            // country : 2013-12-19 DotCountry LLC
         
     | 
| 
         @@ -7718,6 +7786,9 @@ coupons 
     | 
|
| 
       7718 
7786 
     | 
    
         
             
            // courses : 2014-12-04 OPEN UNIVERSITIES AUSTRALIA PTY LTD
         
     | 
| 
       7719 
7787 
     | 
    
         
             
            courses
         
     | 
| 
       7720 
7788 
     | 
    
         | 
| 
      
 7789 
     | 
    
         
            +
            // cpa : 2019-06-10 American Institute of Certified Public Accountants
         
     | 
| 
      
 7790 
     | 
    
         
            +
            cpa
         
     | 
| 
      
 7791 
     | 
    
         
            +
             
     | 
| 
       7721 
7792 
     | 
    
         
             
            // credit : 2014-03-20 Binky Moon, LLC
         
     | 
| 
       7722 
7793 
     | 
    
         
             
            credit
         
     | 
| 
       7723 
7794 
     | 
    
         | 
| 
         @@ -7745,7 +7816,7 @@ cruises 
     | 
|
| 
       7745 
7816 
     | 
    
         
             
            // csc : 2014-09-25 Alliance-One Services, Inc.
         
     | 
| 
       7746 
7817 
     | 
    
         
             
            csc
         
     | 
| 
       7747 
7818 
     | 
    
         | 
| 
       7748 
     | 
    
         
            -
            // cuisinella : 2014-04-03  
     | 
| 
      
 7819 
     | 
    
         
            +
            // cuisinella : 2014-04-03 SCHMIDT GROUPE S.A.S.
         
     | 
| 
       7749 
7820 
     | 
    
         
             
            cuisinella
         
     | 
| 
       7750 
7821 
     | 
    
         | 
| 
       7751 
7822 
     | 
    
         
             
            // cymru : 2014-05-08 Nominet UK
         
     | 
| 
         @@ -7760,7 +7831,7 @@ dabur 
     | 
|
| 
       7760 
7831 
     | 
    
         
             
            // dad : 2014-01-23 Charleston Road Registry Inc.
         
     | 
| 
       7761 
7832 
     | 
    
         
             
            dad
         
     | 
| 
       7762 
7833 
     | 
    
         | 
| 
       7763 
     | 
    
         
            -
            // dance : 2013-10-24  
     | 
| 
      
 7834 
     | 
    
         
            +
            // dance : 2013-10-24 Dog Beach, LLC
         
     | 
| 
       7764 
7835 
     | 
    
         
             
            dance
         
     | 
| 
       7765 
7836 
     | 
    
         | 
| 
       7766 
7837 
     | 
    
         
             
            // data : 2016-06-02 Dish DBS Corporation
         
     | 
| 
         @@ -7787,13 +7858,13 @@ dds 
     | 
|
| 
       7787 
7858 
     | 
    
         
             
            // deal : 2015-06-25 Amazon Registry Services, Inc.
         
     | 
| 
       7788 
7859 
     | 
    
         
             
            deal
         
     | 
| 
       7789 
7860 
     | 
    
         | 
| 
       7790 
     | 
    
         
            -
            // dealer : 2014-12-22  
     | 
| 
      
 7861 
     | 
    
         
            +
            // dealer : 2014-12-22 Intercap Registry Inc.
         
     | 
| 
       7791 
7862 
     | 
    
         
             
            dealer
         
     | 
| 
       7792 
7863 
     | 
    
         | 
| 
       7793 
7864 
     | 
    
         
             
            // deals : 2014-05-22 Binky Moon, LLC
         
     | 
| 
       7794 
7865 
     | 
    
         
             
            deals
         
     | 
| 
       7795 
7866 
     | 
    
         | 
| 
       7796 
     | 
    
         
            -
            // degree : 2014-03-06  
     | 
| 
      
 7867 
     | 
    
         
            +
            // degree : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       7797 
7868 
     | 
    
         
             
            degree
         
     | 
| 
       7798 
7869 
     | 
    
         | 
| 
       7799 
7870 
     | 
    
         
             
            // delivery : 2014-09-11 Binky Moon, LLC
         
     | 
| 
         @@ -7808,13 +7879,13 @@ deloitte 
     | 
|
| 
       7808 
7879 
     | 
    
         
             
            // delta : 2015-02-19 Delta Air Lines, Inc.
         
     | 
| 
       7809 
7880 
     | 
    
         
             
            delta
         
     | 
| 
       7810 
7881 
     | 
    
         | 
| 
       7811 
     | 
    
         
            -
            // democrat : 2013-10-24  
     | 
| 
      
 7882 
     | 
    
         
            +
            // democrat : 2013-10-24 Dog Beach, LLC
         
     | 
| 
       7812 
7883 
     | 
    
         
             
            democrat
         
     | 
| 
       7813 
7884 
     | 
    
         | 
| 
       7814 
7885 
     | 
    
         
             
            // dental : 2014-03-20 Binky Moon, LLC
         
     | 
| 
       7815 
7886 
     | 
    
         
             
            dental
         
     | 
| 
       7816 
7887 
     | 
    
         | 
| 
       7817 
     | 
    
         
            -
            // dentist : 2014-03-20  
     | 
| 
      
 7888 
     | 
    
         
            +
            // dentist : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       7818 
7889 
     | 
    
         
             
            dentist
         
     | 
| 
       7819 
7890 
     | 
    
         | 
| 
       7820 
7891 
     | 
    
         
             
            // desi : 2013-11-14 Desi Networks LLC
         
     | 
| 
         @@ -7871,9 +7942,6 @@ dodge 
     | 
|
| 
       7871 
7942 
     | 
    
         
             
            // dog : 2014-12-04 Binky Moon, LLC
         
     | 
| 
       7872 
7943 
     | 
    
         
             
            dog
         
     | 
| 
       7873 
7944 
     | 
    
         | 
| 
       7874 
     | 
    
         
            -
            // doha : 2014-09-18 Communications Regulatory Authority (CRA)
         
     | 
| 
       7875 
     | 
    
         
            -
            doha
         
     | 
| 
       7876 
     | 
    
         
            -
             
     | 
| 
       7877 
7945 
     | 
    
         
             
            // domains : 2013-10-17 Binky Moon, LLC
         
     | 
| 
       7878 
7946 
     | 
    
         
             
            domains
         
     | 
| 
       7879 
7947 
     | 
    
         | 
| 
         @@ -7910,7 +7978,7 @@ durban 
     | 
|
| 
       7910 
7978 
     | 
    
         
             
            // dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
         
     | 
| 
       7911 
7979 
     | 
    
         
             
            dvag
         
     | 
| 
       7912 
7980 
     | 
    
         | 
| 
       7913 
     | 
    
         
            -
            // dvr : 2016-05-26  
     | 
| 
      
 7981 
     | 
    
         
            +
            // dvr : 2016-05-26 DISH Technologies L.L.C.
         
     | 
| 
       7914 
7982 
     | 
    
         
             
            dvr
         
     | 
| 
       7915 
7983 
     | 
    
         | 
| 
       7916 
7984 
     | 
    
         
             
            // earth : 2014-12-04 Interlink Co., Ltd.
         
     | 
| 
         @@ -7937,7 +8005,7 @@ emerck 
     | 
|
| 
       7937 
8005 
     | 
    
         
             
            // energy : 2014-09-11 Binky Moon, LLC
         
     | 
| 
       7938 
8006 
     | 
    
         
             
            energy
         
     | 
| 
       7939 
8007 
     | 
    
         | 
| 
       7940 
     | 
    
         
            -
            // engineer : 2014-03-06  
     | 
| 
      
 8008 
     | 
    
         
            +
            // engineer : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       7941 
8009 
     | 
    
         
             
            engineer
         
     | 
| 
       7942 
8010 
     | 
    
         | 
| 
       7943 
8011 
     | 
    
         
             
            // engineering : 2014-03-06 Binky Moon, LLC
         
     | 
| 
         @@ -7946,9 +8014,6 @@ engineering 
     | 
|
| 
       7946 
8014 
     | 
    
         
             
            // enterprises : 2013-09-20 Binky Moon, LLC
         
     | 
| 
       7947 
8015 
     | 
    
         
             
            enterprises
         
     | 
| 
       7948 
8016 
     | 
    
         | 
| 
       7949 
     | 
    
         
            -
            // epost : 2015-07-23 Deutsche Post AG
         
     | 
| 
       7950 
     | 
    
         
            -
            epost
         
     | 
| 
       7951 
     | 
    
         
            -
             
     | 
| 
       7952 
8017 
     | 
    
         
             
            // epson : 2014-12-04 Seiko Epson Corporation
         
     | 
| 
       7953 
8018 
     | 
    
         
             
            epson
         
     | 
| 
       7954 
8019 
     | 
    
         | 
| 
         @@ -8012,13 +8077,13 @@ fairwinds 
     | 
|
| 
       8012 
8077 
     | 
    
         
             
            // faith : 2014-11-20 dot Faith Limited
         
     | 
| 
       8013 
8078 
     | 
    
         
             
            faith
         
     | 
| 
       8014 
8079 
     | 
    
         | 
| 
       8015 
     | 
    
         
            -
            // family : 2015-04-02  
     | 
| 
      
 8080 
     | 
    
         
            +
            // family : 2015-04-02 Dog Beach, LLC
         
     | 
| 
       8016 
8081 
     | 
    
         
             
            family
         
     | 
| 
       8017 
8082 
     | 
    
         | 
| 
       8018 
     | 
    
         
            -
            // fan : 2014-03-06  
     | 
| 
      
 8083 
     | 
    
         
            +
            // fan : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       8019 
8084 
     | 
    
         
             
            fan
         
     | 
| 
       8020 
8085 
     | 
    
         | 
| 
       8021 
     | 
    
         
            -
            // fans : 2014-11-07  
     | 
| 
      
 8086 
     | 
    
         
            +
            // fans : 2014-11-07 Fans TLD Limited
         
     | 
| 
       8022 
8087 
     | 
    
         
             
            fans
         
     | 
| 
       8023 
8088 
     | 
    
         | 
| 
       8024 
8089 
     | 
    
         
             
            // farm : 2013-11-07 Binky Moon, LLC
         
     | 
| 
         @@ -8123,7 +8188,7 @@ ford 
     | 
|
| 
       8123 
8188 
     | 
    
         
             
            // forex : 2014-12-11 Dotforex Registry Limited
         
     | 
| 
       8124 
8189 
     | 
    
         
             
            forex
         
     | 
| 
       8125 
8190 
     | 
    
         | 
| 
       8126 
     | 
    
         
            -
            // forsale : 2014-05-22  
     | 
| 
      
 8191 
     | 
    
         
            +
            // forsale : 2014-05-22 Dog Beach, LLC
         
     | 
| 
       8127 
8192 
     | 
    
         
             
            forsale
         
     | 
| 
       8128 
8193 
     | 
    
         | 
| 
       8129 
8194 
     | 
    
         
             
            // forum : 2015-04-02 Fegistry, LLC
         
     | 
| 
         @@ -8171,7 +8236,7 @@ fund 
     | 
|
| 
       8171 
8236 
     | 
    
         
             
            // furniture : 2014-03-20 Binky Moon, LLC
         
     | 
| 
       8172 
8237 
     | 
    
         
             
            furniture
         
     | 
| 
       8173 
8238 
     | 
    
         | 
| 
       8174 
     | 
    
         
            -
            // futbol : 2013-09-20  
     | 
| 
      
 8239 
     | 
    
         
            +
            // futbol : 2013-09-20 Dog Beach, LLC
         
     | 
| 
       8175 
8240 
     | 
    
         
             
            futbol
         
     | 
| 
       8176 
8241 
     | 
    
         | 
| 
       8177 
8242 
     | 
    
         
             
            // fyi : 2015-04-02 Binky Moon, LLC
         
     | 
| 
         @@ -8192,7 +8257,7 @@ gallup 
     | 
|
| 
       8192 
8257 
     | 
    
         
             
            // game : 2015-05-28 Uniregistry, Corp.
         
     | 
| 
       8193 
8258 
     | 
    
         
             
            game
         
     | 
| 
       8194 
8259 
     | 
    
         | 
| 
       8195 
     | 
    
         
            -
            // games : 2015-05-28  
     | 
| 
      
 8260 
     | 
    
         
            +
            // games : 2015-05-28 Dog Beach, LLC
         
     | 
| 
       8196 
8261 
     | 
    
         
             
            games
         
     | 
| 
       8197 
8262 
     | 
    
         | 
| 
       8198 
8263 
     | 
    
         
             
            // gap : 2015-07-31 The Gap, Inc.
         
     | 
| 
         @@ -8201,6 +8266,9 @@ gap 
     | 
|
| 
       8201 
8266 
     | 
    
         
             
            // garden : 2014-06-26 Minds + Machines Group Limited
         
     | 
| 
       8202 
8267 
     | 
    
         
             
            garden
         
     | 
| 
       8203 
8268 
     | 
    
         | 
| 
      
 8269 
     | 
    
         
            +
            // gay : 2019-05-23 Top Level Design, LLC
         
     | 
| 
      
 8270 
     | 
    
         
            +
            gay
         
     | 
| 
      
 8271 
     | 
    
         
            +
             
     | 
| 
       8204 
8272 
     | 
    
         
             
            // gbiz : 2014-07-17 Charleston Road Registry Inc.
         
     | 
| 
       8205 
8273 
     | 
    
         
             
            gbiz
         
     | 
| 
       8206 
8274 
     | 
    
         | 
| 
         @@ -8228,7 +8296,7 @@ gift 
     | 
|
| 
       8228 
8296 
     | 
    
         
             
            // gifts : 2014-07-03 Binky Moon, LLC
         
     | 
| 
       8229 
8297 
     | 
    
         
             
            gifts
         
     | 
| 
       8230 
8298 
     | 
    
         | 
| 
       8231 
     | 
    
         
            -
            // gives : 2014-03-06  
     | 
| 
      
 8299 
     | 
    
         
            +
            // gives : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       8232 
8300 
     | 
    
         
             
            gives
         
     | 
| 
       8233 
8301 
     | 
    
         | 
| 
       8234 
8302 
     | 
    
         
             
            // giving : 2014-11-13 Giving Limited
         
     | 
| 
         @@ -8276,9 +8344,6 @@ golf 
     | 
|
| 
       8276 
8344 
     | 
    
         
             
            // goo : 2014-12-18 NTT Resonant Inc.
         
     | 
| 
       8277 
8345 
     | 
    
         
             
            goo
         
     | 
| 
       8278 
8346 
     | 
    
         | 
| 
       8279 
     | 
    
         
            -
            // goodhands : 2015-07-31 Allstate Fire and Casualty Insurance Company
         
     | 
| 
       8280 
     | 
    
         
            -
            goodhands
         
     | 
| 
       8281 
     | 
    
         
            -
             
     | 
| 
       8282 
8347 
     | 
    
         
             
            // goodyear : 2015-07-02 The Goodyear Tire & Rubber Company
         
     | 
| 
       8283 
8348 
     | 
    
         
             
            goodyear
         
     | 
| 
       8284 
8349 
     | 
    
         | 
| 
         @@ -8303,7 +8368,7 @@ graphics 
     | 
|
| 
       8303 
8368 
     | 
    
         
             
            // gratis : 2014-03-20 Binky Moon, LLC
         
     | 
| 
       8304 
8369 
     | 
    
         
             
            gratis
         
     | 
| 
       8305 
8370 
     | 
    
         | 
| 
       8306 
     | 
    
         
            -
            // green : 2014-05-08 Afilias  
     | 
| 
      
 8371 
     | 
    
         
            +
            // green : 2014-05-08 Afilias Limited
         
     | 
| 
       8307 
8372 
     | 
    
         
             
            green
         
     | 
| 
       8308 
8373 
     | 
    
         | 
| 
       8309 
8374 
     | 
    
         
             
            // gripe : 2014-03-06 Binky Moon, LLC
         
     | 
| 
         @@ -8342,7 +8407,7 @@ hamburg 
     | 
|
| 
       8342 
8407 
     | 
    
         
             
            // hangout : 2014-11-13 Charleston Road Registry Inc.
         
     | 
| 
       8343 
8408 
     | 
    
         
             
            hangout
         
     | 
| 
       8344 
8409 
     | 
    
         | 
| 
       8345 
     | 
    
         
            -
            // haus : 2013-12-05  
     | 
| 
      
 8410 
     | 
    
         
            +
            // haus : 2013-12-05 Dog Beach, LLC
         
     | 
| 
       8346 
8411 
     | 
    
         
             
            haus
         
     | 
| 
       8347 
8412 
     | 
    
         | 
| 
       8348 
8413 
     | 
    
         
             
            // hbo : 2015-07-30 HBO Registry Services, Inc.
         
     | 
| 
         @@ -8489,10 +8554,10 @@ imdb 
     | 
|
| 
       8489 
8554 
     | 
    
         
             
            // immo : 2014-07-10 Binky Moon, LLC
         
     | 
| 
       8490 
8555 
     | 
    
         
             
            immo
         
     | 
| 
       8491 
8556 
     | 
    
         | 
| 
       8492 
     | 
    
         
            -
            // immobilien : 2013-11-07  
     | 
| 
      
 8557 
     | 
    
         
            +
            // immobilien : 2013-11-07 Dog Beach, LLC
         
     | 
| 
       8493 
8558 
     | 
    
         
             
            immobilien
         
     | 
| 
       8494 
8559 
     | 
    
         | 
| 
       8495 
     | 
    
         
            -
            // inc : 2018-03-10  
     | 
| 
      
 8560 
     | 
    
         
            +
            // inc : 2018-03-10 Intercap Registry Inc.
         
     | 
| 
       8496 
8561 
     | 
    
         
             
            inc
         
     | 
| 
       8497 
8562 
     | 
    
         | 
| 
       8498 
8563 
     | 
    
         
             
            // industries : 2013-12-05 Binky Moon, LLC
         
     | 
| 
         @@ -8555,9 +8620,6 @@ itv 
     | 
|
| 
       8555 
8620 
     | 
    
         
             
            // iveco : 2015-09-03 CNH Industrial N.V.
         
     | 
| 
       8556 
8621 
     | 
    
         
             
            iveco
         
     | 
| 
       8557 
8622 
     | 
    
         | 
| 
       8558 
     | 
    
         
            -
            // iwc : 2014-06-23 Richemont DNS Inc.
         
     | 
| 
       8559 
     | 
    
         
            -
            iwc
         
     | 
| 
       8560 
     | 
    
         
            -
             
     | 
| 
       8561 
8623 
     | 
    
         
             
            // jaguar : 2014-11-13 Jaguar Land Rover Ltd
         
     | 
| 
       8562 
8624 
     | 
    
         
             
            jaguar
         
     | 
| 
       8563 
8625 
     | 
    
         | 
| 
         @@ -8582,9 +8644,6 @@ jewelry 
     | 
|
| 
       8582 
8644 
     | 
    
         
             
            // jio : 2015-04-02 Reliance Industries Limited
         
     | 
| 
       8583 
8645 
     | 
    
         
             
            jio
         
     | 
| 
       8584 
8646 
     | 
    
         | 
| 
       8585 
     | 
    
         
            -
            // jlc : 2014-12-04 Richemont DNS Inc.
         
     | 
| 
       8586 
     | 
    
         
            -
            jlc
         
     | 
| 
       8587 
     | 
    
         
            -
             
     | 
| 
       8588 
8647 
     | 
    
         
             
            // jll : 2015-04-02 Jones Lang LaSalle Incorporated
         
     | 
| 
       8589 
8648 
     | 
    
         
             
            jll
         
     | 
| 
       8590 
8649 
     | 
    
         | 
| 
         @@ -8615,7 +8674,7 @@ juegos 
     | 
|
| 
       8615 
8674 
     | 
    
         
             
            // juniper : 2015-07-30 JUNIPER NETWORKS, INC.
         
     | 
| 
       8616 
8675 
     | 
    
         
             
            juniper
         
     | 
| 
       8617 
8676 
     | 
    
         | 
| 
       8618 
     | 
    
         
            -
            // kaufen : 2013-11-07  
     | 
| 
      
 8677 
     | 
    
         
            +
            // kaufen : 2013-11-07 Dog Beach, LLC
         
     | 
| 
       8619 
8678 
     | 
    
         
             
            kaufen
         
     | 
| 
       8620 
8679 
     | 
    
         | 
| 
       8621 
8680 
     | 
    
         
             
            // kddi : 2014-09-12 KDDI CORPORATION
         
     | 
| 
         @@ -8636,7 +8695,7 @@ kfh 
     | 
|
| 
       8636 
8695 
     | 
    
         
             
            // kia : 2015-07-09 KIA MOTORS CORPORATION
         
     | 
| 
       8637 
8696 
     | 
    
         
             
            kia
         
     | 
| 
       8638 
8697 
     | 
    
         | 
| 
       8639 
     | 
    
         
            -
            // kim : 2013-09-23 Afilias  
     | 
| 
      
 8698 
     | 
    
         
            +
            // kim : 2013-09-23 Afilias Limited
         
     | 
| 
       8640 
8699 
     | 
    
         
             
            kim
         
     | 
| 
       8641 
8700 
     | 
    
         | 
| 
       8642 
8701 
     | 
    
         
             
            // kinder : 2014-11-07 Ferrero Trading Lux S.A.
         
     | 
| 
         @@ -8651,7 +8710,7 @@ kitchen 
     | 
|
| 
       8651 
8710 
     | 
    
         
             
            // kiwi : 2013-09-20 DOT KIWI LIMITED
         
     | 
| 
       8652 
8711 
     | 
    
         
             
            kiwi
         
     | 
| 
       8653 
8712 
     | 
    
         | 
| 
       8654 
     | 
    
         
            -
            // koeln : 2014-01-09  
     | 
| 
      
 8713 
     | 
    
         
            +
            // koeln : 2014-01-09 dotKoeln GmbH
         
     | 
| 
       8655 
8714 
     | 
    
         
             
            koeln
         
     | 
| 
       8656 
8715 
     | 
    
         | 
| 
       8657 
8716 
     | 
    
         
             
            // komatsu : 2015-01-08 Komatsu Ltd.
         
     | 
| 
         @@ -8720,10 +8779,10 @@ latino 
     | 
|
| 
       8720 
8779 
     | 
    
         
             
            // latrobe : 2014-06-16 La Trobe University
         
     | 
| 
       8721 
8780 
     | 
    
         
             
            latrobe
         
     | 
| 
       8722 
8781 
     | 
    
         | 
| 
       8723 
     | 
    
         
            -
            // law : 2015-01-22  
     | 
| 
      
 8782 
     | 
    
         
            +
            // law : 2015-01-22 LW TLD Limited
         
     | 
| 
       8724 
8783 
     | 
    
         
             
            law
         
     | 
| 
       8725 
8784 
     | 
    
         | 
| 
       8726 
     | 
    
         
            -
            // lawyer : 2014-03-20  
     | 
| 
      
 8785 
     | 
    
         
            +
            // lawyer : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       8727 
8786 
     | 
    
         
             
            lawyer
         
     | 
| 
       8728 
8787 
     | 
    
         | 
| 
       8729 
8788 
     | 
    
         
             
            // lds : 2014-03-20 IRI Domain Management, LLC ("Applicant")
         
     | 
| 
         @@ -8747,7 +8806,7 @@ lego 
     | 
|
| 
       8747 
8806 
     | 
    
         
             
            // lexus : 2015-04-23 TOYOTA MOTOR CORPORATION
         
     | 
| 
       8748 
8807 
     | 
    
         
             
            lexus
         
     | 
| 
       8749 
8808 
     | 
    
         | 
| 
       8750 
     | 
    
         
            -
            // lgbt : 2014-05-08 Afilias  
     | 
| 
      
 8809 
     | 
    
         
            +
            // lgbt : 2014-05-08 Afilias Limited
         
     | 
| 
       8751 
8810 
     | 
    
         
             
            lgbt
         
     | 
| 
       8752 
8811 
     | 
    
         | 
| 
       8753 
8812 
     | 
    
         
             
            // liaison : 2014-10-02 Liaison Technologies, Incorporated
         
     | 
| 
         @@ -8792,7 +8851,7 @@ link 
     | 
|
| 
       8792 
8851 
     | 
    
         
             
            // lipsy : 2015-06-25 Lipsy Ltd
         
     | 
| 
       8793 
8852 
     | 
    
         
             
            lipsy
         
     | 
| 
       8794 
8853 
     | 
    
         | 
| 
       8795 
     | 
    
         
            -
            // live : 2014-12-04  
     | 
| 
      
 8854 
     | 
    
         
            +
            // live : 2014-12-04 Dog Beach, LLC
         
     | 
| 
       8796 
8855 
     | 
    
         
             
            live
         
     | 
| 
       8797 
8856 
     | 
    
         | 
| 
       8798 
8857 
     | 
    
         
             
            // living : 2015-07-30 Lifestyle Domain Holdings, Inc.
         
     | 
| 
         @@ -8801,7 +8860,7 @@ living 
     | 
|
| 
       8801 
8860 
     | 
    
         
             
            // lixil : 2015-03-19 LIXIL Group Corporation
         
     | 
| 
       8802 
8861 
     | 
    
         
             
            lixil
         
     | 
| 
       8803 
8862 
     | 
    
         | 
| 
       8804 
     | 
    
         
            -
            // llc : 2017-12-14 Afilias  
     | 
| 
      
 8863 
     | 
    
         
            +
            // llc : 2017-12-14 Afilias Limited
         
     | 
| 
       8805 
8864 
     | 
    
         
             
            llc
         
     | 
| 
       8806 
8865 
     | 
    
         | 
| 
       8807 
8866 
     | 
    
         
             
            // loan : 2014-11-20 dot Loan Limited
         
     | 
| 
         @@ -8828,7 +8887,7 @@ london 
     | 
|
| 
       8828 
8887 
     | 
    
         
             
            // lotte : 2014-11-07 Lotte Holdings Co., Ltd.
         
     | 
| 
       8829 
8888 
     | 
    
         
             
            lotte
         
     | 
| 
       8830 
8889 
     | 
    
         | 
| 
       8831 
     | 
    
         
            -
            // lotto : 2014-04-10 Afilias  
     | 
| 
      
 8890 
     | 
    
         
            +
            // lotto : 2014-04-10 Afilias Limited
         
     | 
| 
       8832 
8891 
     | 
    
         
             
            lotto
         
     | 
| 
       8833 
8892 
     | 
    
         | 
| 
       8834 
8893 
     | 
    
         
             
            // love : 2014-12-22 Merchant Law Group LLP
         
     | 
| 
         @@ -8885,7 +8944,7 @@ mango 
     | 
|
| 
       8885 
8944 
     | 
    
         
             
            // map : 2016-06-09 Charleston Road Registry Inc.
         
     | 
| 
       8886 
8945 
     | 
    
         
             
            map
         
     | 
| 
       8887 
8946 
     | 
    
         | 
| 
       8888 
     | 
    
         
            -
            // market : 2014-03-06  
     | 
| 
      
 8947 
     | 
    
         
            +
            // market : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       8889 
8948 
     | 
    
         
             
            market
         
     | 
| 
       8890 
8949 
     | 
    
         | 
| 
       8891 
8950 
     | 
    
         
             
            // marketing : 2013-11-07 Binky Moon, LLC
         
     | 
| 
         @@ -8933,12 +8992,9 @@ memorial 
     | 
|
| 
       8933 
8992 
     | 
    
         
             
            // men : 2015-02-26 Exclusive Registry Limited
         
     | 
| 
       8934 
8993 
     | 
    
         
             
            men
         
     | 
| 
       8935 
8994 
     | 
    
         | 
| 
       8936 
     | 
    
         
            -
            // menu : 2013-09-11  
     | 
| 
      
 8995 
     | 
    
         
            +
            // menu : 2013-09-11 Dot Menu Registry, LLC
         
     | 
| 
       8937 
8996 
     | 
    
         
             
            menu
         
     | 
| 
       8938 
8997 
     | 
    
         | 
| 
       8939 
     | 
    
         
            -
            // meo : 2014-11-07 MEO Servicos de Comunicacoes e Multimedia, S.A.
         
     | 
| 
       8940 
     | 
    
         
            -
            meo
         
     | 
| 
       8941 
     | 
    
         
            -
             
     | 
| 
       8942 
8998 
     | 
    
         
             
            // merckmsd : 2016-07-14 MSD Registry Holdings, Inc.
         
     | 
| 
       8943 
8999 
     | 
    
         
             
            merckmsd
         
     | 
| 
       8944 
9000 
     | 
    
         | 
| 
         @@ -8978,7 +9034,7 @@ mobile 
     | 
|
| 
       8978 
9034 
     | 
    
         
             
            // mobily : 2014-12-18 GreenTech Consultancy Company W.L.L.
         
     | 
| 
       8979 
9035 
     | 
    
         
             
            mobily
         
     | 
| 
       8980 
9036 
     | 
    
         | 
| 
       8981 
     | 
    
         
            -
            // moda : 2013-11-07  
     | 
| 
      
 9037 
     | 
    
         
            +
            // moda : 2013-11-07 Dog Beach, LLC
         
     | 
| 
       8982 
9038 
     | 
    
         
             
            moda
         
     | 
| 
       8983 
9039 
     | 
    
         | 
| 
       8984 
9040 
     | 
    
         
             
            // moe : 2013-11-13 Interlink Co., Ltd.
         
     | 
| 
         @@ -8996,7 +9052,7 @@ monash 
     | 
|
| 
       8996 
9052 
     | 
    
         
             
            // money : 2014-10-16 Binky Moon, LLC
         
     | 
| 
       8997 
9053 
     | 
    
         
             
            money
         
     | 
| 
       8998 
9054 
     | 
    
         | 
| 
       8999 
     | 
    
         
            -
            // monster : 2015-09-11  
     | 
| 
      
 9055 
     | 
    
         
            +
            // monster : 2015-09-11 XYZ.COM LLC
         
     | 
| 
       9000 
9056 
     | 
    
         
             
            monster
         
     | 
| 
       9001 
9057 
     | 
    
         | 
| 
       9002 
9058 
     | 
    
         
             
            // mopar : 2015-07-30 FCA US LLC.
         
     | 
| 
         @@ -9005,7 +9061,7 @@ mopar 
     | 
|
| 
       9005 
9061 
     | 
    
         
             
            // mormon : 2013-12-05 IRI Domain Management, LLC ("Applicant")
         
     | 
| 
       9006 
9062 
     | 
    
         
             
            mormon
         
     | 
| 
       9007 
9063 
     | 
    
         | 
| 
       9008 
     | 
    
         
            -
            // mortgage : 2014-03-20  
     | 
| 
      
 9064 
     | 
    
         
            +
            // mortgage : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       9009 
9065 
     | 
    
         
             
            mortgage
         
     | 
| 
       9010 
9066 
     | 
    
         | 
| 
       9011 
9067 
     | 
    
         
             
            // moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
         
     | 
| 
         @@ -9053,7 +9109,7 @@ nationwide 
     | 
|
| 
       9053 
9109 
     | 
    
         
             
            // natura : 2015-03-12 NATURA COSMÉTICOS S.A.
         
     | 
| 
       9054 
9110 
     | 
    
         
             
            natura
         
     | 
| 
       9055 
9111 
     | 
    
         | 
| 
       9056 
     | 
    
         
            -
            // navy : 2014-03-06  
     | 
| 
      
 9112 
     | 
    
         
            +
            // navy : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       9057 
9113 
     | 
    
         
             
            navy
         
     | 
| 
       9058 
9114 
     | 
    
         | 
| 
       9059 
9115 
     | 
    
         
             
            // nba : 2015-07-31 NBA REGISTRY, LLC
         
     | 
| 
         @@ -9071,7 +9127,7 @@ netflix 
     | 
|
| 
       9071 
9127 
     | 
    
         
             
            // network : 2013-11-14 Binky Moon, LLC
         
     | 
| 
       9072 
9128 
     | 
    
         
             
            network
         
     | 
| 
       9073 
9129 
     | 
    
         | 
| 
       9074 
     | 
    
         
            -
            // neustar : 2013-12-05  
     | 
| 
      
 9130 
     | 
    
         
            +
            // neustar : 2013-12-05 Registry Services, LLC
         
     | 
| 
       9075 
9131 
     | 
    
         
             
            neustar
         
     | 
| 
       9076 
9132 
     | 
    
         | 
| 
       9077 
9133 
     | 
    
         
             
            // new : 2014-01-30 Charleston Road Registry Inc.
         
     | 
| 
         @@ -9080,7 +9136,7 @@ new 
     | 
|
| 
       9080 
9136 
     | 
    
         
             
            // newholland : 2015-09-03 CNH Industrial N.V.
         
     | 
| 
       9081 
9137 
     | 
    
         
             
            newholland
         
     | 
| 
       9082 
9138 
     | 
    
         | 
| 
       9083 
     | 
    
         
            -
            // news : 2014-12-18  
     | 
| 
      
 9139 
     | 
    
         
            +
            // news : 2014-12-18 Dog Beach, LLC
         
     | 
| 
       9084 
9140 
     | 
    
         
             
            news
         
     | 
| 
       9085 
9141 
     | 
    
         | 
| 
       9086 
9142 
     | 
    
         
             
            // next : 2015-06-18 Next plc
         
     | 
| 
         @@ -9110,7 +9166,7 @@ nike 
     | 
|
| 
       9110 
9166 
     | 
    
         
             
            // nikon : 2015-05-21 NIKON CORPORATION
         
     | 
| 
       9111 
9167 
     | 
    
         
             
            nikon
         
     | 
| 
       9112 
9168 
     | 
    
         | 
| 
       9113 
     | 
    
         
            -
            // ninja : 2013-11-07  
     | 
| 
      
 9169 
     | 
    
         
            +
            // ninja : 2013-11-07 Dog Beach, LLC
         
     | 
| 
       9114 
9170 
     | 
    
         
             
            ninja
         
     | 
| 
       9115 
9171 
     | 
    
         | 
| 
       9116 
9172 
     | 
    
         
             
            // nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
         
     | 
| 
         @@ -9194,7 +9250,7 @@ online 
     | 
|
| 
       9194 
9250 
     | 
    
         
             
            // onyourside : 2015-07-23 Nationwide Mutual Insurance Company
         
     | 
| 
       9195 
9251 
     | 
    
         
             
            onyourside
         
     | 
| 
       9196 
9252 
     | 
    
         | 
| 
       9197 
     | 
    
         
            -
            // ooo : 2014-01-09 INFIBEAM  
     | 
| 
      
 9253 
     | 
    
         
            +
            // ooo : 2014-01-09 INFIBEAM AVENUES LIMITED
         
     | 
| 
       9198 
9254 
     | 
    
         
             
            ooo
         
     | 
| 
       9199 
9255 
     | 
    
         | 
| 
       9200 
9256 
     | 
    
         
             
            // open : 2015-07-31 American Express Travel Related Services Company, Inc.
         
     | 
| 
         @@ -9206,7 +9262,7 @@ oracle 
     | 
|
| 
       9206 
9262 
     | 
    
         
             
            // orange : 2015-03-12 Orange Brand Services Limited
         
     | 
| 
       9207 
9263 
     | 
    
         
             
            orange
         
     | 
| 
       9208 
9264 
     | 
    
         | 
| 
       9209 
     | 
    
         
            -
            // organic : 2014-03-27 Afilias  
     | 
| 
      
 9265 
     | 
    
         
            +
            // organic : 2014-03-27 Afilias Limited
         
     | 
| 
       9210 
9266 
     | 
    
         
             
            organic
         
     | 
| 
       9211 
9267 
     | 
    
         | 
| 
       9212 
9268 
     | 
    
         
             
            // origins : 2015-10-01 The Estée Lauder Companies Inc.
         
     | 
| 
         @@ -9221,7 +9277,7 @@ otsuka 
     | 
|
| 
       9221 
9277 
     | 
    
         
             
            // ott : 2015-06-04 Dish DBS Corporation
         
     | 
| 
       9222 
9278 
     | 
    
         
             
            ott
         
     | 
| 
       9223 
9279 
     | 
    
         | 
| 
       9224 
     | 
    
         
            -
            // ovh : 2014-01-16  
     | 
| 
      
 9280 
     | 
    
         
            +
            // ovh : 2014-01-16 MédiaBC
         
     | 
| 
       9225 
9281 
     | 
    
         
             
            ovh
         
     | 
| 
       9226 
9282 
     | 
    
         | 
| 
       9227 
9283 
     | 
    
         
             
            // page : 2014-12-04 Charleston Road Registry Inc.
         
     | 
| 
         @@ -9230,9 +9286,6 @@ page 
     | 
|
| 
       9230 
9286 
     | 
    
         
             
            // panasonic : 2015-07-30 Panasonic Corporation
         
     | 
| 
       9231 
9287 
     | 
    
         
             
            panasonic
         
     | 
| 
       9232 
9288 
     | 
    
         | 
| 
       9233 
     | 
    
         
            -
            // panerai : 2014-11-07 Richemont DNS Inc.
         
     | 
| 
       9234 
     | 
    
         
            -
            panerai
         
     | 
| 
       9235 
     | 
    
         
            -
             
     | 
| 
       9236 
9289 
     | 
    
         
             
            // paris : 2014-01-30 City of Paris
         
     | 
| 
       9237 
9290 
     | 
    
         
             
            paris
         
     | 
| 
       9238 
9291 
     | 
    
         | 
| 
         @@ -9257,7 +9310,7 @@ pay 
     | 
|
| 
       9257 
9310 
     | 
    
         
             
            // pccw : 2015-05-14 PCCW Enterprises Limited
         
     | 
| 
       9258 
9311 
     | 
    
         
             
            pccw
         
     | 
| 
       9259 
9312 
     | 
    
         | 
| 
       9260 
     | 
    
         
            -
            // pet : 2015-05-07 Afilias  
     | 
| 
      
 9313 
     | 
    
         
            +
            // pet : 2015-05-07 Afilias Limited
         
     | 
| 
       9261 
9314 
     | 
    
         
             
            pet
         
     | 
| 
       9262 
9315 
     | 
    
         | 
| 
       9263 
9316 
     | 
    
         
             
            // pfizer : 2015-09-11 Pfizer Inc.
         
     | 
| 
         @@ -9308,7 +9361,7 @@ pin 
     | 
|
| 
       9308 
9361 
     | 
    
         
             
            // ping : 2015-06-11 Ping Registry Provider, Inc.
         
     | 
| 
       9309 
9362 
     | 
    
         
             
            ping
         
     | 
| 
       9310 
9363 
     | 
    
         | 
| 
       9311 
     | 
    
         
            -
            // pink : 2013-10-01 Afilias  
     | 
| 
      
 9364 
     | 
    
         
            +
            // pink : 2013-10-01 Afilias Limited
         
     | 
| 
       9312 
9365 
     | 
    
         
             
            pink
         
     | 
| 
       9313 
9366 
     | 
    
         | 
| 
       9314 
9367 
     | 
    
         
             
            // pioneer : 2015-07-16 Pioneer Corporation
         
     | 
| 
         @@ -9323,7 +9376,7 @@ place 
     | 
|
| 
       9323 
9376 
     | 
    
         
             
            // play : 2015-03-05 Charleston Road Registry Inc.
         
     | 
| 
       9324 
9377 
     | 
    
         
             
            play
         
     | 
| 
       9325 
9378 
     | 
    
         | 
| 
       9326 
     | 
    
         
            -
            // playstation : 2015-07-02 Sony  
     | 
| 
      
 9379 
     | 
    
         
            +
            // playstation : 2015-07-02 Sony Interactive Entertainment Inc.
         
     | 
| 
       9327 
9380 
     | 
    
         
             
            playstation
         
     | 
| 
       9328 
9381 
     | 
    
         | 
| 
       9329 
9382 
     | 
    
         
             
            // plumbing : 2013-09-10 Binky Moon, LLC
         
     | 
| 
         @@ -9338,7 +9391,7 @@ pnc 
     | 
|
| 
       9338 
9391 
     | 
    
         
             
            // pohl : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
         
     | 
| 
       9339 
9392 
     | 
    
         
             
            pohl
         
     | 
| 
       9340 
9393 
     | 
    
         | 
| 
       9341 
     | 
    
         
            -
            // poker : 2014-07-03 Afilias  
     | 
| 
      
 9394 
     | 
    
         
            +
            // poker : 2014-07-03 Afilias Limited
         
     | 
| 
       9342 
9395 
     | 
    
         
             
            poker
         
     | 
| 
       9343 
9396 
     | 
    
         | 
| 
       9344 
9397 
     | 
    
         
             
            // politie : 2015-08-20 Politie Nederland
         
     | 
| 
         @@ -9371,7 +9424,7 @@ prof 
     | 
|
| 
       9371 
9424 
     | 
    
         
             
            // progressive : 2015-07-23 Progressive Casualty Insurance Company
         
     | 
| 
       9372 
9425 
     | 
    
         
             
            progressive
         
     | 
| 
       9373 
9426 
     | 
    
         | 
| 
       9374 
     | 
    
         
            -
            // promo : 2014-12-18 Afilias  
     | 
| 
      
 9427 
     | 
    
         
            +
            // promo : 2014-12-18 Afilias Limited
         
     | 
| 
       9375 
9428 
     | 
    
         
             
            promo
         
     | 
| 
       9376 
9429 
     | 
    
         | 
| 
       9377 
9430 
     | 
    
         
             
            // properties : 2013-12-05 Binky Moon, LLC
         
     | 
| 
         @@ -9389,7 +9442,7 @@ pru 
     | 
|
| 
       9389 
9442 
     | 
    
         
             
            // prudential : 2015-07-30 Prudential Financial, Inc.
         
     | 
| 
       9390 
9443 
     | 
    
         
             
            prudential
         
     | 
| 
       9391 
9444 
     | 
    
         | 
| 
       9392 
     | 
    
         
            -
            // pub : 2013-12-12  
     | 
| 
      
 9445 
     | 
    
         
            +
            // pub : 2013-12-12 Dog Beach, LLC
         
     | 
| 
       9393 
9446 
     | 
    
         
             
            pub
         
     | 
| 
       9394 
9447 
     | 
    
         | 
| 
       9395 
9448 
     | 
    
         
             
            // pwc : 2015-10-29 PricewaterhouseCoopers LLP
         
     | 
| 
         @@ -9431,7 +9484,7 @@ realty 
     | 
|
| 
       9431 
9484 
     | 
    
         
             
            // recipes : 2013-10-17 Binky Moon, LLC
         
     | 
| 
       9432 
9485 
     | 
    
         
             
            recipes
         
     | 
| 
       9433 
9486 
     | 
    
         | 
| 
       9434 
     | 
    
         
            -
            // red : 2013-11-07 Afilias  
     | 
| 
      
 9487 
     | 
    
         
            +
            // red : 2013-11-07 Afilias Limited
         
     | 
| 
       9435 
9488 
     | 
    
         
             
            red
         
     | 
| 
       9436 
9489 
     | 
    
         | 
| 
       9437 
9490 
     | 
    
         
             
            // redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
         
     | 
| 
         @@ -9440,7 +9493,7 @@ redstone 
     | 
|
| 
       9440 
9493 
     | 
    
         
             
            // redumbrella : 2015-03-26 Travelers TLD, LLC
         
     | 
| 
       9441 
9494 
     | 
    
         
             
            redumbrella
         
     | 
| 
       9442 
9495 
     | 
    
         | 
| 
       9443 
     | 
    
         
            -
            // rehab : 2014-03-06  
     | 
| 
      
 9496 
     | 
    
         
            +
            // rehab : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       9444 
9497 
     | 
    
         
             
            rehab
         
     | 
| 
       9445 
9498 
     | 
    
         | 
| 
       9446 
9499 
     | 
    
         
             
            // reise : 2014-03-13 Binky Moon, LLC
         
     | 
| 
         @@ -9470,7 +9523,7 @@ repair 
     | 
|
| 
       9470 
9523 
     | 
    
         
             
            // report : 2013-12-05 Binky Moon, LLC
         
     | 
| 
       9471 
9524 
     | 
    
         
             
            report
         
     | 
| 
       9472 
9525 
     | 
    
         | 
| 
       9473 
     | 
    
         
            -
            // republican : 2014-03-20  
     | 
| 
      
 9526 
     | 
    
         
            +
            // republican : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       9474 
9527 
     | 
    
         
             
            republican
         
     | 
| 
       9475 
9528 
     | 
    
         | 
| 
       9476 
9529 
     | 
    
         
             
            // rest : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
         
     | 
| 
         @@ -9482,7 +9535,7 @@ restaurant 
     | 
|
| 
       9482 
9535 
     | 
    
         
             
            // review : 2014-11-20 dot Review Limited
         
     | 
| 
       9483 
9536 
     | 
    
         
             
            review
         
     | 
| 
       9484 
9537 
     | 
    
         | 
| 
       9485 
     | 
    
         
            -
            // reviews : 2013-09-13  
     | 
| 
      
 9538 
     | 
    
         
            +
            // reviews : 2013-09-13 Dog Beach, LLC
         
     | 
| 
       9486 
9539 
     | 
    
         
             
            reviews
         
     | 
| 
       9487 
9540 
     | 
    
         | 
| 
       9488 
9541 
     | 
    
         
             
            // rexroth : 2015-06-18 Robert Bosch GMBH
         
     | 
| 
         @@ -9506,7 +9559,7 @@ ril 
     | 
|
| 
       9506 
9559 
     | 
    
         
             
            // rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
         
     | 
| 
       9507 
9560 
     | 
    
         
             
            rio
         
     | 
| 
       9508 
9561 
     | 
    
         | 
| 
       9509 
     | 
    
         
            -
            // rip : 2014-07-10  
     | 
| 
      
 9562 
     | 
    
         
            +
            // rip : 2014-07-10 Dog Beach, LLC
         
     | 
| 
       9510 
9563 
     | 
    
         
             
            rip
         
     | 
| 
       9511 
9564 
     | 
    
         | 
| 
       9512 
9565 
     | 
    
         
             
            // rmit : 2015-11-19 Royal Melbourne Institute of Technology
         
     | 
| 
         @@ -9515,7 +9568,7 @@ rmit 
     | 
|
| 
       9515 
9568 
     | 
    
         
             
            // rocher : 2014-12-18 Ferrero Trading Lux S.A.
         
     | 
| 
       9516 
9569 
     | 
    
         
             
            rocher
         
     | 
| 
       9517 
9570 
     | 
    
         | 
| 
       9518 
     | 
    
         
            -
            // rocks : 2013-11-14  
     | 
| 
      
 9571 
     | 
    
         
            +
            // rocks : 2013-11-14 Dog Beach, LLC
         
     | 
| 
       9519 
9572 
     | 
    
         
             
            rocks
         
     | 
| 
       9520 
9573 
     | 
    
         | 
| 
       9521 
9574 
     | 
    
         
             
            // rodeo : 2013-12-19 Minds + Machines Group Limited
         
     | 
| 
         @@ -9557,7 +9610,7 @@ safety 
     | 
|
| 
       9557 
9610 
     | 
    
         
             
            // sakura : 2014-12-18 SAKURA Internet Inc.
         
     | 
| 
       9558 
9611 
     | 
    
         
             
            sakura
         
     | 
| 
       9559 
9612 
     | 
    
         | 
| 
       9560 
     | 
    
         
            -
            // sale : 2014-10-16  
     | 
| 
      
 9613 
     | 
    
         
            +
            // sale : 2014-10-16 Dog Beach, LLC
         
     | 
| 
       9561 
9614 
     | 
    
         
             
            sale
         
     | 
| 
       9562 
9615 
     | 
    
         | 
| 
       9563 
9616 
     | 
    
         
             
            // salon : 2014-12-11 Binky Moon, LLC
         
     | 
| 
         @@ -9581,9 +9634,6 @@ sanofi 
     | 
|
| 
       9581 
9634 
     | 
    
         
             
            // sap : 2014-03-27 SAP AG
         
     | 
| 
       9582 
9635 
     | 
    
         
             
            sap
         
     | 
| 
       9583 
9636 
     | 
    
         | 
| 
       9584 
     | 
    
         
            -
            // sapo : 2014-11-07 MEO Servicos de Comunicacoes e Multimedia, S.A.
         
     | 
| 
       9585 
     | 
    
         
            -
            sapo
         
     | 
| 
       9586 
     | 
    
         
            -
             
     | 
| 
       9587 
9637 
     | 
    
         
             
            // sarl : 2014-07-03 Binky Moon, LLC
         
     | 
| 
       9588 
9638 
     | 
    
         
             
            sarl
         
     | 
| 
       9589 
9639 
     | 
    
         | 
| 
         @@ -9611,7 +9661,7 @@ scb 
     | 
|
| 
       9611 
9661 
     | 
    
         
             
            // schaeffler : 2015-08-06 Schaeffler Technologies AG & Co. KG
         
     | 
| 
       9612 
9662 
     | 
    
         
             
            schaeffler
         
     | 
| 
       9613 
9663 
     | 
    
         | 
| 
       9614 
     | 
    
         
            -
            // schmidt : 2014-04-03  
     | 
| 
      
 9664 
     | 
    
         
            +
            // schmidt : 2014-04-03 SCHMIDT GROUPE S.A.S.
         
     | 
| 
       9615 
9665 
     | 
    
         
             
            schmidt
         
     | 
| 
       9616 
9666 
     | 
    
         | 
| 
       9617 
9667 
     | 
    
         
             
            // scholarships : 2014-04-24 Scholarships.com, LLC
         
     | 
| 
         @@ -9695,7 +9745,7 @@ shell 
     | 
|
| 
       9695 
9745 
     | 
    
         
             
            // shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
         
     | 
| 
       9696 
9746 
     | 
    
         
             
            shia
         
     | 
| 
       9697 
9747 
     | 
    
         | 
| 
       9698 
     | 
    
         
            -
            // shiksha : 2013-11-14 Afilias  
     | 
| 
      
 9748 
     | 
    
         
            +
            // shiksha : 2013-11-14 Afilias Limited
         
     | 
| 
       9699 
9749 
     | 
    
         
             
            shiksha
         
     | 
| 
       9700 
9750 
     | 
    
         | 
| 
       9701 
9751 
     | 
    
         
             
            // shoes : 2013-10-02 Binky Moon, LLC
         
     | 
| 
         @@ -9731,7 +9781,7 @@ singles 
     | 
|
| 
       9731 
9781 
     | 
    
         
             
            // site : 2015-01-15 DotSite Inc.
         
     | 
| 
       9732 
9782 
     | 
    
         
             
            site
         
     | 
| 
       9733 
9783 
     | 
    
         | 
| 
       9734 
     | 
    
         
            -
            // ski : 2015-04-09 Afilias  
     | 
| 
      
 9784 
     | 
    
         
            +
            // ski : 2015-04-09 Afilias Limited
         
     | 
| 
       9735 
9785 
     | 
    
         
             
            ski
         
     | 
| 
       9736 
9786 
     | 
    
         | 
| 
       9737 
9787 
     | 
    
         
             
            // skin : 2015-01-15 L'Oréal
         
     | 
| 
         @@ -9743,7 +9793,7 @@ sky 
     | 
|
| 
       9743 
9793 
     | 
    
         
             
            // skype : 2014-12-18 Microsoft Corporation
         
     | 
| 
       9744 
9794 
     | 
    
         
             
            skype
         
     | 
| 
       9745 
9795 
     | 
    
         | 
| 
       9746 
     | 
    
         
            -
            // sling : 2015-07-30  
     | 
| 
      
 9796 
     | 
    
         
            +
            // sling : 2015-07-30 DISH Technologies L.L.C.
         
     | 
| 
       9747 
9797 
     | 
    
         
             
            sling
         
     | 
| 
       9748 
9798 
     | 
    
         | 
| 
       9749 
9799 
     | 
    
         
             
            // smart : 2015-07-09 Smart Communications, Inc. (SMART)
         
     | 
| 
         @@ -9758,13 +9808,13 @@ sncf 
     | 
|
| 
       9758 
9808 
     | 
    
         
             
            // soccer : 2015-03-26 Binky Moon, LLC
         
     | 
| 
       9759 
9809 
     | 
    
         
             
            soccer
         
     | 
| 
       9760 
9810 
     | 
    
         | 
| 
       9761 
     | 
    
         
            -
            // social : 2013-11-07  
     | 
| 
      
 9811 
     | 
    
         
            +
            // social : 2013-11-07 Dog Beach, LLC
         
     | 
| 
       9762 
9812 
     | 
    
         
             
            social
         
     | 
| 
       9763 
9813 
     | 
    
         | 
| 
       9764 
     | 
    
         
            -
            // softbank : 2015-07-02 SoftBank Corp.
         
     | 
| 
      
 9814 
     | 
    
         
            +
            // softbank : 2015-07-02 SoftBank Group Corp.
         
     | 
| 
       9765 
9815 
     | 
    
         
             
            softbank
         
     | 
| 
       9766 
9816 
     | 
    
         | 
| 
       9767 
     | 
    
         
            -
            // software : 2014-03-20  
     | 
| 
      
 9817 
     | 
    
         
            +
            // software : 2014-03-20 Dog Beach, LLC
         
     | 
| 
       9768 
9818 
     | 
    
         
             
            software
         
     | 
| 
       9769 
9819 
     | 
    
         | 
| 
       9770 
9820 
     | 
    
         
             
            // sohu : 2013-12-19 Sohu.com Limited
         
     | 
| 
         @@ -9788,9 +9838,6 @@ soy 
     | 
|
| 
       9788 
9838 
     | 
    
         
             
            // space : 2014-04-03 DotSpace Inc.
         
     | 
| 
       9789 
9839 
     | 
    
         
             
            space
         
     | 
| 
       9790 
9840 
     | 
    
         | 
| 
       9791 
     | 
    
         
            -
            // spiegel : 2014-02-05 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
         
     | 
| 
       9792 
     | 
    
         
            -
            spiegel
         
     | 
| 
       9793 
     | 
    
         
            -
             
     | 
| 
       9794 
9841 
     | 
    
         
             
            // sport : 2017-11-16 Global Association of International Sports Federations (GAISF)
         
     | 
| 
       9795 
9842 
     | 
    
         
             
            sport
         
     | 
| 
       9796 
9843 
     | 
    
         | 
| 
         @@ -9824,9 +9871,6 @@ statebank 
     | 
|
| 
       9824 
9871 
     | 
    
         
             
            // statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
         
     | 
| 
       9825 
9872 
     | 
    
         
             
            statefarm
         
     | 
| 
       9826 
9873 
     | 
    
         | 
| 
       9827 
     | 
    
         
            -
            // statoil : 2014-12-04 Statoil ASA
         
     | 
| 
       9828 
     | 
    
         
            -
            statoil
         
     | 
| 
       9829 
     | 
    
         
            -
             
     | 
| 
       9830 
9874 
     | 
    
         
             
            // stc : 2014-10-09 Saudi Telecom Company
         
     | 
| 
       9831 
9875 
     | 
    
         
             
            stc
         
     | 
| 
       9832 
9876 
     | 
    
         | 
| 
         @@ -9845,7 +9889,7 @@ store 
     | 
|
| 
       9845 
9889 
     | 
    
         
             
            // stream : 2016-01-08 dot Stream Limited
         
     | 
| 
       9846 
9890 
     | 
    
         
             
            stream
         
     | 
| 
       9847 
9891 
     | 
    
         | 
| 
       9848 
     | 
    
         
            -
            // studio : 2015-02-11  
     | 
| 
      
 9892 
     | 
    
         
            +
            // studio : 2015-02-11 Dog Beach, LLC
         
     | 
| 
       9849 
9893 
     | 
    
         
             
            studio
         
     | 
| 
       9850 
9894 
     | 
    
         | 
| 
       9851 
9895 
     | 
    
         
             
            // study : 2014-12-11 OPEN UNIVERSITIES AUSTRALIA PTY LTD
         
     | 
| 
         @@ -9938,9 +9982,6 @@ tech 
     | 
|
| 
       9938 
9982 
     | 
    
         
             
            // technology : 2013-09-13 Binky Moon, LLC
         
     | 
| 
       9939 
9983 
     | 
    
         
             
            technology
         
     | 
| 
       9940 
9984 
     | 
    
         | 
| 
       9941 
     | 
    
         
            -
            // telecity : 2015-02-19 TelecityGroup International Limited
         
     | 
| 
       9942 
     | 
    
         
            -
            telecity
         
     | 
| 
       9943 
     | 
    
         
            -
             
     | 
| 
       9944 
9985 
     | 
    
         
             
            // telefonica : 2014-10-16 Telefónica S.A.
         
     | 
| 
       9945 
9986 
     | 
    
         
             
            telefonica
         
     | 
| 
       9946 
9987 
     | 
    
         | 
| 
         @@ -10037,6 +10078,9 @@ trading 
     | 
|
| 
       10037 
10078 
     | 
    
         
             
            // training : 2013-11-07 Binky Moon, LLC
         
     | 
| 
       10038 
10079 
     | 
    
         
             
            training
         
     | 
| 
       10039 
10080 
     | 
    
         | 
| 
      
 10081 
     | 
    
         
            +
            // travel :  Dog Beach, LLC
         
     | 
| 
      
 10082 
     | 
    
         
            +
            travel
         
     | 
| 
      
 10083 
     | 
    
         
            +
             
     | 
| 
       10040 
10084 
     | 
    
         
             
            // travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
         
     | 
| 
       10041 
10085 
     | 
    
         
             
            travelchannel
         
     | 
| 
       10042 
10086 
     | 
    
         | 
| 
         @@ -10109,16 +10153,16 @@ ventures 
     | 
|
| 
       10109 
10153 
     | 
    
         
             
            // verisign : 2015-08-13 VeriSign, Inc.
         
     | 
| 
       10110 
10154 
     | 
    
         
             
            verisign
         
     | 
| 
       10111 
10155 
     | 
    
         | 
| 
       10112 
     | 
    
         
            -
            // versicherung : 2014-03-20  
     | 
| 
      
 10156 
     | 
    
         
            +
            // versicherung : 2014-03-20 tldbox GmbH
         
     | 
| 
       10113 
10157 
     | 
    
         
             
            versicherung
         
     | 
| 
       10114 
10158 
     | 
    
         | 
| 
       10115 
     | 
    
         
            -
            // vet : 2014-03-06  
     | 
| 
      
 10159 
     | 
    
         
            +
            // vet : 2014-03-06 Dog Beach, LLC
         
     | 
| 
       10116 
10160 
     | 
    
         
             
            vet
         
     | 
| 
       10117 
10161 
     | 
    
         | 
| 
       10118 
10162 
     | 
    
         
             
            // viajes : 2013-10-17 Binky Moon, LLC
         
     | 
| 
       10119 
10163 
     | 
    
         
             
            viajes
         
     | 
| 
       10120 
10164 
     | 
    
         | 
| 
       10121 
     | 
    
         
            -
            // video : 2014-10-16  
     | 
| 
      
 10165 
     | 
    
         
            +
            // video : 2014-10-16 Dog Beach, LLC
         
     | 
| 
       10122 
10166 
     | 
    
         
             
            video
         
     | 
| 
       10123 
10167 
     | 
    
         | 
| 
       10124 
10168 
     | 
    
         
             
            // vig : 2015-05-14 VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe
         
     | 
| 
         @@ -10145,9 +10189,6 @@ visa 
     | 
|
| 
       10145 
10189 
     | 
    
         
             
            // vision : 2013-12-05 Binky Moon, LLC
         
     | 
| 
       10146 
10190 
     | 
    
         
             
            vision
         
     | 
| 
       10147 
10191 
     | 
    
         | 
| 
       10148 
     | 
    
         
            -
            // vista : 2014-09-18 Vistaprint Limited
         
     | 
| 
       10149 
     | 
    
         
            -
            vista
         
     | 
| 
       10150 
     | 
    
         
            -
             
     | 
| 
       10151 
10192 
     | 
    
         
             
            // vistaprint : 2014-09-18 Vistaprint Limited
         
     | 
| 
       10152 
10193 
     | 
    
         
             
            vistaprint
         
     | 
| 
       10153 
10194 
     | 
    
         | 
| 
         @@ -10346,7 +10387,7 @@ xin 
     | 
|
| 
       10346 
10387 
     | 
    
         
             
            // xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited
         
     | 
| 
       10347 
10388 
     | 
    
         
             
            网站
         
     | 
| 
       10348 
10389 
     | 
    
         | 
| 
       10349 
     | 
    
         
            -
            // xn--6frz82g : 2013-09-23 Afilias  
     | 
| 
      
 10390 
     | 
    
         
            +
            // xn--6frz82g : 2013-09-23 Afilias Limited
         
     | 
| 
       10350 
10391 
     | 
    
         
             
            移动
         
     | 
| 
       10351 
10392 
     | 
    
         | 
| 
       10352 
10393 
     | 
    
         
             
            // xn--6qq986b3xl : 2013-09-13 Tycoon Treasure Limited
         
     | 
| 
         @@ -10586,9 +10627,6 @@ vermögensberatung 
     | 
|
| 
       10586 
10627 
     | 
    
         
             
            // xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
         
     | 
| 
       10587 
10628 
     | 
    
         
             
            政务
         
     | 
| 
       10588 
10629 
     | 
    
         | 
| 
       10589 
     | 
    
         
            -
            // xperia : 2015-05-14 Sony Mobile Communications AB
         
     | 
| 
       10590 
     | 
    
         
            -
            xperia
         
     | 
| 
       10591 
     | 
    
         
            -
             
     | 
| 
       10592 
10630 
     | 
    
         
             
            // xyz : 2013-12-05 XYZ.COM LLC
         
     | 
| 
       10593 
10631 
     | 
    
         
             
            xyz
         
     | 
| 
       10594 
10632 
     | 
    
         | 
| 
         @@ -10634,9 +10672,6 @@ zero 
     | 
|
| 
       10634 
10672 
     | 
    
         
             
            // zip : 2014-05-08 Charleston Road Registry Inc.
         
     | 
| 
       10635 
10673 
     | 
    
         
             
            zip
         
     | 
| 
       10636 
10674 
     | 
    
         | 
| 
       10637 
     | 
    
         
            -
            // zippo : 2015-07-02 Zadco Company
         
     | 
| 
       10638 
     | 
    
         
            -
            zippo
         
     | 
| 
       10639 
     | 
    
         
            -
             
     | 
| 
       10640 
10675 
     | 
    
         
             
            // zone : 2013-11-14 Binky Moon, LLC
         
     | 
| 
       10641 
10676 
     | 
    
         
             
            zone
         
     | 
| 
       10642 
10677 
     | 
    
         | 
| 
         @@ -10658,6 +10693,10 @@ ltd.ua 
     | 
|
| 
       10658 
10693 
     | 
    
         
             
            // Submitted by Przemyslaw Plewa <it-admin@domena.pl>
         
     | 
| 
       10659 
10694 
     | 
    
         
             
            beep.pl
         
     | 
| 
       10660 
10695 
     | 
    
         | 
| 
      
 10696 
     | 
    
         
            +
            // alboto.ca : http://alboto.ca
         
     | 
| 
      
 10697 
     | 
    
         
            +
            // Submitted by Anton Avramov <avramov@alboto.ca>
         
     | 
| 
      
 10698 
     | 
    
         
            +
            barsy.ca
         
     | 
| 
      
 10699 
     | 
    
         
            +
             
     | 
| 
       10661 
10700 
     | 
    
         
             
            // Alces Software Ltd : http://alces-software.com
         
     | 
| 
       10662 
10701 
     | 
    
         
             
            // Submitted by Mark J. Titorenko <mark.titorenko@alces-software.com>
         
     | 
| 
       10663 
10702 
     | 
    
         
             
            *.compute.estate
         
     | 
| 
         @@ -10681,6 +10720,7 @@ us-east-1.amazonaws.com 
     | 
|
| 
       10681 
10720 
     | 
    
         
             
            // Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
         
     | 
| 
       10682 
10721 
     | 
    
         
             
            // Submitted by Luke Wells <psl-maintainers@amazon.com>
         
     | 
| 
       10683 
10722 
     | 
    
         
             
            cn-north-1.eb.amazonaws.com.cn
         
     | 
| 
      
 10723 
     | 
    
         
            +
            cn-northwest-1.eb.amazonaws.com.cn
         
     | 
| 
       10684 
10724 
     | 
    
         
             
            elasticbeanstalk.com
         
     | 
| 
       10685 
10725 
     | 
    
         
             
            ap-northeast-1.elasticbeanstalk.com
         
     | 
| 
       10686 
10726 
     | 
    
         
             
            ap-northeast-2.elasticbeanstalk.com
         
     | 
| 
         @@ -10767,6 +10807,10 @@ s3-website.us-east-2.amazonaws.com 
     | 
|
| 
       10767 
10807 
     | 
    
         
             
            t3l3p0rt.net
         
     | 
| 
       10768 
10808 
     | 
    
         
             
            tele.amune.org
         
     | 
| 
       10769 
10809 
     | 
    
         | 
| 
      
 10810 
     | 
    
         
            +
            // Apigee : https://apigee.com/
         
     | 
| 
      
 10811 
     | 
    
         
            +
            // Submitted by Apigee Security Team <security@apigee.com>
         
     | 
| 
      
 10812 
     | 
    
         
            +
            apigee.io
         
     | 
| 
      
 10813 
     | 
    
         
            +
             
     | 
| 
       10770 
10814 
     | 
    
         
             
            // Aptible : https://www.aptible.com/
         
     | 
| 
       10771 
10815 
     | 
    
         
             
            // Submitted by Thomas Orozco <thomas@aptible.com>
         
     | 
| 
       10772 
10816 
     | 
    
         
             
            on-aptible.com
         
     | 
| 
         @@ -10786,6 +10830,12 @@ sweetpepper.org 
     | 
|
| 
       10786 
10830 
     | 
    
         
             
            // Submitted by Vincent Tseng <vincenttseng@asustor.com>
         
     | 
| 
       10787 
10831 
     | 
    
         
             
            myasustor.com
         
     | 
| 
       10788 
10832 
     | 
    
         | 
| 
      
 10833 
     | 
    
         
            +
            // Automattic Inc. : https://automattic.com/
         
     | 
| 
      
 10834 
     | 
    
         
            +
            // Submitted by Alex Concha <alex.concha@automattic.com>
         
     | 
| 
      
 10835 
     | 
    
         
            +
            go-vip.co
         
     | 
| 
      
 10836 
     | 
    
         
            +
            go-vip.net
         
     | 
| 
      
 10837 
     | 
    
         
            +
            wpcomstaging.com
         
     | 
| 
      
 10838 
     | 
    
         
            +
             
     | 
| 
       10789 
10839 
     | 
    
         
             
            // AVM : https://avm.de
         
     | 
| 
       10790 
10840 
     | 
    
         
             
            // Submitted by Andreas Weise <a.weise@avm.de>
         
     | 
| 
       10791 
10841 
     | 
    
         
             
            myfritz.net
         
     | 
| 
         @@ -10795,10 +10845,22 @@ myfritz.net 
     | 
|
| 
       10795 
10845 
     | 
    
         
             
            *.awdev.ca
         
     | 
| 
       10796 
10846 
     | 
    
         
             
            *.advisor.ws
         
     | 
| 
       10797 
10847 
     | 
    
         | 
| 
      
 10848 
     | 
    
         
            +
            // b-data GmbH : https://www.b-data.io
         
     | 
| 
      
 10849 
     | 
    
         
            +
            // Submitted by Olivier Benz <olivier.benz@b-data.ch>
         
     | 
| 
      
 10850 
     | 
    
         
            +
            b-data.io
         
     | 
| 
      
 10851 
     | 
    
         
            +
             
     | 
| 
       10798 
10852 
     | 
    
         
             
            // backplane : https://www.backplane.io
         
     | 
| 
       10799 
10853 
     | 
    
         
             
            // Submitted by Anthony Voutas <anthony@backplane.io>
         
     | 
| 
       10800 
10854 
     | 
    
         
             
            backplaneapp.io
         
     | 
| 
       10801 
10855 
     | 
    
         | 
| 
      
 10856 
     | 
    
         
            +
            // Balena : https://www.balena.io
         
     | 
| 
      
 10857 
     | 
    
         
            +
            // Submitted by Petros Angelatos <petrosagg@balena.io>
         
     | 
| 
      
 10858 
     | 
    
         
            +
            balena-devices.com
         
     | 
| 
      
 10859 
     | 
    
         
            +
             
     | 
| 
      
 10860 
     | 
    
         
            +
            // Banzai Cloud
         
     | 
| 
      
 10861 
     | 
    
         
            +
            // Submitted by Gabor Kozma <info@banzaicloud.com>
         
     | 
| 
      
 10862 
     | 
    
         
            +
            app.banzaicloud.io
         
     | 
| 
      
 10863 
     | 
    
         
            +
             
     | 
| 
       10802 
10864 
     | 
    
         
             
            // BetaInABox
         
     | 
| 
       10803 
10865 
     | 
    
         
             
            // Submitted by Adrian <adrian@betainabox.com>
         
     | 
| 
       10804 
10866 
     | 
    
         
             
            betainabox.com
         
     | 
| 
         @@ -10807,6 +10869,10 @@ betainabox.com 
     | 
|
| 
       10807 
10869 
     | 
    
         
             
            // Submitted by Nathan O'Sullivan <nathan@mammoth.com.au>
         
     | 
| 
       10808 
10870 
     | 
    
         
             
            bnr.la
         
     | 
| 
       10809 
10871 
     | 
    
         | 
| 
      
 10872 
     | 
    
         
            +
            // Blackbaud, Inc. : https://www.blackbaud.com
         
     | 
| 
      
 10873 
     | 
    
         
            +
            // Submitted by Paul Crowder <paul.crowder@blackbaud.com>
         
     | 
| 
      
 10874 
     | 
    
         
            +
            blackbaudcdn.net
         
     | 
| 
      
 10875 
     | 
    
         
            +
             
     | 
| 
       10810 
10876 
     | 
    
         
             
            // Boomla : https://boomla.com
         
     | 
| 
       10811 
10877 
     | 
    
         
             
            // Submitted by Tibor Halter <thalter@boomla.com>
         
     | 
| 
       10812 
10878 
     | 
    
         
             
            boomla.net
         
     | 
| 
         @@ -10828,10 +10894,22 @@ square7.net 
     | 
|
| 
       10828 
10894 
     | 
    
         
             
            // Submitted by Dave Tharp <browsersafetymark.io@quicinc.com>
         
     | 
| 
       10829 
10895 
     | 
    
         
             
            browsersafetymark.io
         
     | 
| 
       10830 
10896 
     | 
    
         | 
| 
      
 10897 
     | 
    
         
            +
            // Bytemark Hosting : https://www.bytemark.co.uk
         
     | 
| 
      
 10898 
     | 
    
         
            +
            // Submitted by Paul Cammish <paul.cammish@bytemark.co.uk>
         
     | 
| 
      
 10899 
     | 
    
         
            +
            uk0.bigv.io
         
     | 
| 
      
 10900 
     | 
    
         
            +
            dh.bytemark.co.uk
         
     | 
| 
      
 10901 
     | 
    
         
            +
            vm.bytemark.co.uk
         
     | 
| 
      
 10902 
     | 
    
         
            +
             
     | 
| 
       10831 
10903 
     | 
    
         
             
            // callidomus : https://www.callidomus.com/
         
     | 
| 
       10832 
10904 
     | 
    
         
             
            // Submitted by Marcus Popp <admin@callidomus.com>
         
     | 
| 
       10833 
10905 
     | 
    
         
             
            mycd.eu
         
     | 
| 
       10834 
10906 
     | 
    
         | 
| 
      
 10907 
     | 
    
         
            +
            // Carrd : https://carrd.co
         
     | 
| 
      
 10908 
     | 
    
         
            +
            // Submitted by AJ <aj@carrd.co>
         
     | 
| 
      
 10909 
     | 
    
         
            +
            carrd.co
         
     | 
| 
      
 10910 
     | 
    
         
            +
            crd.co
         
     | 
| 
      
 10911 
     | 
    
         
            +
            uwu.ai
         
     | 
| 
      
 10912 
     | 
    
         
            +
             
     | 
| 
       10835 
10913 
     | 
    
         
             
            // CentralNic : http://www.centralnic.com/names/domains
         
     | 
| 
       10836 
10914 
     | 
    
         
             
            // Submitted by registry <gavin.brown@centralnic.com>
         
     | 
| 
       10837 
10915 
     | 
    
         
             
            ae.org
         
     | 
| 
         @@ -10893,6 +10971,10 @@ certmgr.org 
     | 
|
| 
       10893 
10971 
     | 
    
         
             
            // Submitted by Alex Stoddard <alex.stoddard@citrix.com>
         
     | 
| 
       10894 
10972 
     | 
    
         
             
            xenapponazure.com
         
     | 
| 
       10895 
10973 
     | 
    
         | 
| 
      
 10974 
     | 
    
         
            +
            // Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/
         
     | 
| 
      
 10975 
     | 
    
         
            +
            // Submitted by Rishabh Nambiar <rishabh.nambiar@discourse.org>
         
     | 
| 
      
 10976 
     | 
    
         
            +
            discourse.group
         
     | 
| 
      
 10977 
     | 
    
         
            +
             
     | 
| 
       10896 
10978 
     | 
    
         
             
            // ClearVox : http://www.clearvox.nl/
         
     | 
| 
       10897 
10979 
     | 
    
         
             
            // Submitted by Leon Rowland <leon@clearvox.nl>
         
     | 
| 
       10898 
10980 
     | 
    
         
             
            virtueeldomein.nl
         
     | 
| 
         @@ -10901,10 +10983,16 @@ virtueeldomein.nl 
     | 
|
| 
       10901 
10983 
     | 
    
         
             
            // Submitted by Quentin Adam <noc@clever-cloud.com>
         
     | 
| 
       10902 
10984 
     | 
    
         
             
            cleverapps.io
         
     | 
| 
       10903 
10985 
     | 
    
         | 
| 
      
 10986 
     | 
    
         
            +
            // Clerk : https://www.clerk.dev
         
     | 
| 
      
 10987 
     | 
    
         
            +
            // Submitted by Colin Sidoti <colin@clerk.dev>
         
     | 
| 
      
 10988 
     | 
    
         
            +
            *.lcl.dev
         
     | 
| 
      
 10989 
     | 
    
         
            +
            *.stg.dev
         
     | 
| 
      
 10990 
     | 
    
         
            +
             
     | 
| 
       10904 
10991 
     | 
    
         
             
            // Cloud66 : https://www.cloud66.com/
         
     | 
| 
       10905 
10992 
     | 
    
         
             
            // Submitted by Khash Sajadi <khash@cloud66.com>
         
     | 
| 
       10906 
10993 
     | 
    
         
             
            c66.me
         
     | 
| 
       10907 
10994 
     | 
    
         
             
            cloud66.ws
         
     | 
| 
      
 10995 
     | 
    
         
            +
            cloud66.zone
         
     | 
| 
       10908 
10996 
     | 
    
         | 
| 
       10909 
10997 
     | 
    
         
             
            // CloudAccess.net : https://www.cloudaccess.net/
         
     | 
| 
       10910 
10998 
     | 
    
         
             
            // Submitted by Pawel Panek <noc@cloudaccess.net>
         
     | 
| 
         @@ -10919,9 +11007,26 @@ cloudaccess.net 
     | 
|
| 
       10919 
11007 
     | 
    
         
             
            cloudcontrolled.com
         
     | 
| 
       10920 
11008 
     | 
    
         
             
            cloudcontrolapp.com
         
     | 
| 
       10921 
11009 
     | 
    
         | 
| 
      
 11010 
     | 
    
         
            +
            // Cloudera, Inc. : https://www.cloudera.com/
         
     | 
| 
      
 11011 
     | 
    
         
            +
            // Submitted by Philip Langdale <security@cloudera.com>
         
     | 
| 
      
 11012 
     | 
    
         
            +
            cloudera.site
         
     | 
| 
      
 11013 
     | 
    
         
            +
             
     | 
| 
      
 11014 
     | 
    
         
            +
            // Cloudflare, Inc. : https://www.cloudflare.com/
         
     | 
| 
      
 11015 
     | 
    
         
            +
            // Submitted by Jake Riesterer <publicsuffixlist@cloudflare.com>
         
     | 
| 
      
 11016 
     | 
    
         
            +
            trycloudflare.com
         
     | 
| 
      
 11017 
     | 
    
         
            +
            workers.dev
         
     | 
| 
      
 11018 
     | 
    
         
            +
             
     | 
| 
      
 11019 
     | 
    
         
            +
            // Clovyr : https://clovyr.io
         
     | 
| 
      
 11020 
     | 
    
         
            +
            // Submitted by Patrick Nielsen <patrick@clovyr.io>
         
     | 
| 
      
 11021 
     | 
    
         
            +
            wnext.app
         
     | 
| 
      
 11022 
     | 
    
         
            +
             
     | 
| 
       10922 
11023 
     | 
    
         
             
            // co.ca : http://registry.co.ca/
         
     | 
| 
       10923 
11024 
     | 
    
         
             
            co.ca
         
     | 
| 
       10924 
11025 
     | 
    
         | 
| 
      
 11026 
     | 
    
         
            +
            // Co & Co : https://co-co.nl/
         
     | 
| 
      
 11027 
     | 
    
         
            +
            // Submitted by Govert Versluis <govert@co-co.nl>
         
     | 
| 
      
 11028 
     | 
    
         
            +
            *.otap.co
         
     | 
| 
      
 11029 
     | 
    
         
            +
             
     | 
| 
       10925 
11030 
     | 
    
         
             
            // i-registry s.r.o. : http://www.i-registry.cz/
         
     | 
| 
       10926 
11031 
     | 
    
         
             
            // Submitted by Martin Semrad <semrad@i-registry.cz>
         
     | 
| 
       10927 
11032 
     | 
    
         
             
            co.cz
         
     | 
| 
         @@ -10952,6 +11057,10 @@ cloudns.us 
     | 
|
| 
       10952 
11057 
     | 
    
         
             
            // Submitted by Stefan Dimitrov <contact@cloudeity.com>
         
     | 
| 
       10953 
11058 
     | 
    
         
             
            cloudeity.net
         
     | 
| 
       10954 
11059 
     | 
    
         | 
| 
      
 11060 
     | 
    
         
            +
            // CNPY : https://cnpy.gdn
         
     | 
| 
      
 11061 
     | 
    
         
            +
            // Submitted by Angelo Gladding <angelo@lahacker.net>
         
     | 
| 
      
 11062 
     | 
    
         
            +
            cnpy.gdn
         
     | 
| 
      
 11063 
     | 
    
         
            +
             
     | 
| 
       10955 
11064 
     | 
    
         
             
            // CoDNS B.V.
         
     | 
| 
       10956 
11065 
     | 
    
         
             
            co.nl
         
     | 
| 
       10957 
11066 
     | 
    
         
             
            co.no
         
     | 
| 
         @@ -10995,6 +11104,15 @@ cyon.site 
     | 
|
| 
       10995 
11104 
     | 
    
         
             
            daplie.me
         
     | 
| 
       10996 
11105 
     | 
    
         
             
            localhost.daplie.me
         
     | 
| 
       10997 
11106 
     | 
    
         | 
| 
      
 11107 
     | 
    
         
            +
            // Datto, Inc. : https://www.datto.com/
         
     | 
| 
      
 11108 
     | 
    
         
            +
            // Submitted by Philipp Heckel <ph@datto.com>
         
     | 
| 
      
 11109 
     | 
    
         
            +
            dattolocal.com
         
     | 
| 
      
 11110 
     | 
    
         
            +
            dattorelay.com
         
     | 
| 
      
 11111 
     | 
    
         
            +
            dattoweb.com
         
     | 
| 
      
 11112 
     | 
    
         
            +
            mydatto.com
         
     | 
| 
      
 11113 
     | 
    
         
            +
            dattolocal.net
         
     | 
| 
      
 11114 
     | 
    
         
            +
            mydatto.net
         
     | 
| 
      
 11115 
     | 
    
         
            +
             
     | 
| 
       10998 
11116 
     | 
    
         
             
            // Dansk.net : http://www.dansk.net/
         
     | 
| 
       10999 
11117 
     | 
    
         
             
            // Submitted by Anani Voule <digital@digital.co.dk>
         
     | 
| 
       11000 
11118 
     | 
    
         
             
            biz.dk
         
     | 
| 
         @@ -11003,6 +11121,11 @@ firm.dk 
     | 
|
| 
       11003 
11121 
     | 
    
         
             
            reg.dk
         
     | 
| 
       11004 
11122 
     | 
    
         
             
            store.dk
         
     | 
| 
       11005 
11123 
     | 
    
         | 
| 
      
 11124 
     | 
    
         
            +
            // dapps.earth : https://dapps.earth/
         
     | 
| 
      
 11125 
     | 
    
         
            +
            // Submitted by Daniil Burdakov <icqkill@gmail.com>
         
     | 
| 
      
 11126 
     | 
    
         
            +
            *.dapps.earth
         
     | 
| 
      
 11127 
     | 
    
         
            +
            *.bzz.dapps.earth
         
     | 
| 
      
 11128 
     | 
    
         
            +
             
     | 
| 
       11006 
11129 
     | 
    
         
             
            // Debian : https://www.debian.org/
         
     | 
| 
       11007 
11130 
     | 
    
         
             
            // Submitted by Peter Palfrader / Debian Sysadmin Team <dsa-publicsuffixlist@debian.org>
         
     | 
| 
       11008 
11131 
     | 
    
         
             
            debian.net
         
     | 
| 
         @@ -11015,6 +11138,11 @@ dedyn.io 
     | 
|
| 
       11015 
11138 
     | 
    
         
             
            // Submitted by Norbert Auler <mail@dnshome.de>
         
     | 
| 
       11016 
11139 
     | 
    
         
             
            dnshome.de
         
     | 
| 
       11017 
11140 
     | 
    
         | 
| 
      
 11141 
     | 
    
         
            +
            // DotArai : https://www.dotarai.com/
         
     | 
| 
      
 11142 
     | 
    
         
            +
            // Submitted by Atsadawat Netcharadsang <atsadawat@dotarai.co.th>
         
     | 
| 
      
 11143 
     | 
    
         
            +
            online.th
         
     | 
| 
      
 11144 
     | 
    
         
            +
            shop.th
         
     | 
| 
      
 11145 
     | 
    
         
            +
             
     | 
| 
       11018 
11146 
     | 
    
         
             
            // DrayTek Corp. : https://www.draytek.com/
         
     | 
| 
       11019 
11147 
     | 
    
         
             
            // Submitted by Paul Fang <mis@draytek.com>
         
     | 
| 
       11020 
11148 
     | 
    
         
             
            drayddns.com
         
     | 
| 
         @@ -11339,6 +11467,10 @@ ddnss.org 
     | 
|
| 
       11339 
11467 
     | 
    
         
             
            definima.net
         
     | 
| 
       11340 
11468 
     | 
    
         
             
            definima.io
         
     | 
| 
       11341 
11469 
     | 
    
         | 
| 
      
 11470 
     | 
    
         
            +
            // dnstrace.pro : https://dnstrace.pro/
         
     | 
| 
      
 11471 
     | 
    
         
            +
            // Submitted by Chris Partridge <chris@partridge.tech>
         
     | 
| 
      
 11472 
     | 
    
         
            +
            bci.dnstrace.pro
         
     | 
| 
      
 11473 
     | 
    
         
            +
             
     | 
| 
       11342 
11474 
     | 
    
         
             
            // Dynu.com : https://www.dynu.com/
         
     | 
| 
       11343 
11475 
     | 
    
         
             
            // Submitted by Sue Ye <sue@dynu.com>
         
     | 
| 
       11344 
11476 
     | 
    
         
             
            ddnsfree.com
         
     | 
| 
         @@ -11371,6 +11503,11 @@ e4.cz 
     | 
|
| 
       11371 
11503 
     | 
    
         
             
            // Submitted by Thomas Cottier <thomas.cottier@enalean.com>
         
     | 
| 
       11372 
11504 
     | 
    
         
             
            mytuleap.com
         
     | 
| 
       11373 
11505 
     | 
    
         | 
| 
      
 11506 
     | 
    
         
            +
            // ECG Robotics, Inc: https://ecgrobotics.org
         
     | 
| 
      
 11507 
     | 
    
         
            +
            // Submitted by <frc1533@ecgrobotics.org>
         
     | 
| 
      
 11508 
     | 
    
         
            +
            onred.one
         
     | 
| 
      
 11509 
     | 
    
         
            +
            staging.onred.one
         
     | 
| 
      
 11510 
     | 
    
         
            +
             
     | 
| 
       11374 
11511 
     | 
    
         
             
            // Enonic : http://enonic.com/
         
     | 
| 
       11375 
11512 
     | 
    
         
             
            // Submitted by Erik Kaareng-Sunde <esu@enonic.com>
         
     | 
| 
       11376 
11513 
     | 
    
         
             
            enonic.io
         
     | 
| 
         @@ -11540,6 +11677,7 @@ channelsdvr.net 
     | 
|
| 
       11540 
11677 
     | 
    
         | 
| 
       11541 
11678 
     | 
    
         
             
            // Fastly Inc. : http://www.fastly.com/
         
     | 
| 
       11542 
11679 
     | 
    
         
             
            // Submitted by Fastly Security <security@fastly.com>
         
     | 
| 
      
 11680 
     | 
    
         
            +
            fastly-terrarium.com
         
     | 
| 
       11543 
11681 
     | 
    
         
             
            fastlylb.net
         
     | 
| 
       11544 
11682 
     | 
    
         
             
            map.fastlylb.net
         
     | 
| 
       11545 
11683 
     | 
    
         
             
            freetls.fastly.net
         
     | 
| 
         @@ -11550,6 +11688,11 @@ a.ssl.fastly.net 
     | 
|
| 
       11550 
11688 
     | 
    
         
             
            b.ssl.fastly.net
         
     | 
| 
       11551 
11689 
     | 
    
         
             
            global.ssl.fastly.net
         
     | 
| 
       11552 
11690 
     | 
    
         | 
| 
      
 11691 
     | 
    
         
            +
            // FASTVPS EESTI OU : https://fastvps.ru/
         
     | 
| 
      
 11692 
     | 
    
         
            +
            // Submitted by Likhachev Vasiliy <lihachev@fastvps.ru>
         
     | 
| 
      
 11693 
     | 
    
         
            +
            fastpanel.direct
         
     | 
| 
      
 11694 
     | 
    
         
            +
            fastvps-server.com
         
     | 
| 
      
 11695 
     | 
    
         
            +
             
     | 
| 
       11553 
11696 
     | 
    
         
             
            // Featherhead : https://featherhead.xyz/
         
     | 
| 
       11554 
11697 
     | 
    
         
             
            // Submitted by Simon Menke <simon@featherhead.xyz>
         
     | 
| 
       11555 
11698 
     | 
    
         
             
            fhapp.xyz
         
     | 
| 
         @@ -11562,9 +11705,19 @@ cloud.fedoraproject.org 
     | 
|
| 
       11562 
11705 
     | 
    
         
             
            app.os.fedoraproject.org
         
     | 
| 
       11563 
11706 
     | 
    
         
             
            app.os.stg.fedoraproject.org
         
     | 
| 
       11564 
11707 
     | 
    
         | 
| 
      
 11708 
     | 
    
         
            +
            // Fermax : https://fermax.com/
         
     | 
| 
      
 11709 
     | 
    
         
            +
            // submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
         
     | 
| 
      
 11710 
     | 
    
         
            +
            mydobiss.com
         
     | 
| 
      
 11711 
     | 
    
         
            +
             
     | 
| 
       11565 
11712 
     | 
    
         
             
            // Filegear Inc. : https://www.filegear.com
         
     | 
| 
       11566 
11713 
     | 
    
         
             
            // Submitted by Jason Zhu <jason@owtware.com>
         
     | 
| 
       11567 
11714 
     | 
    
         
             
            filegear.me
         
     | 
| 
      
 11715 
     | 
    
         
            +
            filegear-au.me
         
     | 
| 
      
 11716 
     | 
    
         
            +
            filegear-de.me
         
     | 
| 
      
 11717 
     | 
    
         
            +
            filegear-gb.me
         
     | 
| 
      
 11718 
     | 
    
         
            +
            filegear-ie.me
         
     | 
| 
      
 11719 
     | 
    
         
            +
            filegear-jp.me
         
     | 
| 
      
 11720 
     | 
    
         
            +
            filegear-sg.me
         
     | 
| 
       11568 
11721 
     | 
    
         | 
| 
       11569 
11722 
     | 
    
         
             
            // Firebase, Inc.
         
     | 
| 
       11570 
11723 
     | 
    
         
             
            // Submitted by Chris Raynor <chris@firebase.com>
         
     | 
| 
         @@ -11584,9 +11737,15 @@ fbxos.fr 
     | 
|
| 
       11584 
11737 
     | 
    
         
             
            freebox-os.fr
         
     | 
| 
       11585 
11738 
     | 
    
         
             
            freeboxos.fr
         
     | 
| 
       11586 
11739 
     | 
    
         | 
| 
      
 11740 
     | 
    
         
            +
            // freedesktop.org : https://www.freedesktop.org
         
     | 
| 
      
 11741 
     | 
    
         
            +
            // Submitted by Daniel Stone <daniel@fooishbar.org>
         
     | 
| 
      
 11742 
     | 
    
         
            +
            freedesktop.org
         
     | 
| 
      
 11743 
     | 
    
         
            +
             
     | 
| 
       11587 
11744 
     | 
    
         
             
            // Futureweb OG : http://www.futureweb.at
         
     | 
| 
       11588 
11745 
     | 
    
         
             
            // Submitted by Andreas Schnederle-Wagner <schnederle@futureweb.at>
         
     | 
| 
       11589 
11746 
     | 
    
         
             
            *.futurecms.at
         
     | 
| 
      
 11747 
     | 
    
         
            +
            *.ex.futurecms.at
         
     | 
| 
      
 11748 
     | 
    
         
            +
            *.in.futurecms.at
         
     | 
| 
       11590 
11749 
     | 
    
         
             
            futurehosting.at
         
     | 
| 
       11591 
11750 
     | 
    
         
             
            futuremailing.at
         
     | 
| 
       11592 
11751 
     | 
    
         
             
            *.ex.ortsinfo.at
         
     | 
| 
         @@ -11597,6 +11756,15 @@ futuremailing.at 
     | 
|
| 
       11597 
11756 
     | 
    
         
             
            // Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
         
     | 
| 
       11598 
11757 
     | 
    
         
             
            service.gov.uk
         
     | 
| 
       11599 
11758 
     | 
    
         | 
| 
      
 11759 
     | 
    
         
            +
            // Gehirn Inc. : https://www.gehirn.co.jp/
         
     | 
| 
      
 11760 
     | 
    
         
            +
            // Submitted by Kohei YOSHIDA <tech@gehirn.co.jp>
         
     | 
| 
      
 11761 
     | 
    
         
            +
            gehirn.ne.jp
         
     | 
| 
      
 11762 
     | 
    
         
            +
            usercontent.jp
         
     | 
| 
      
 11763 
     | 
    
         
            +
             
     | 
| 
      
 11764 
     | 
    
         
            +
            // Gentlent, Limited : https://www.gentlent.com
         
     | 
| 
      
 11765 
     | 
    
         
            +
            // Submitted by Tom Klein <tklein@gentlent.com>
         
     | 
| 
      
 11766 
     | 
    
         
            +
            lab.ms
         
     | 
| 
      
 11767 
     | 
    
         
            +
             
     | 
| 
       11600 
11768 
     | 
    
         
             
            // GitHub, Inc.
         
     | 
| 
       11601 
11769 
     | 
    
         
             
            // Submitted by Patrick Toomey <security@github.com>
         
     | 
| 
       11602 
11770 
     | 
    
         
             
            github.io
         
     | 
| 
         @@ -11606,6 +11774,15 @@ githubusercontent.com 
     | 
|
| 
       11606 
11774 
     | 
    
         
             
            // Submitted by Alex Hanselka <alex@gitlab.com>
         
     | 
| 
       11607 
11775 
     | 
    
         
             
            gitlab.io
         
     | 
| 
       11608 
11776 
     | 
    
         | 
| 
      
 11777 
     | 
    
         
            +
            // Glitch, Inc : https://glitch.com
         
     | 
| 
      
 11778 
     | 
    
         
            +
            // Submitted by Mads Hartmann <mads@glitch.com>
         
     | 
| 
      
 11779 
     | 
    
         
            +
            glitch.me
         
     | 
| 
      
 11780 
     | 
    
         
            +
             
     | 
| 
      
 11781 
     | 
    
         
            +
            // GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/
         
     | 
| 
      
 11782 
     | 
    
         
            +
            // Submitted by Tom Whitwell <tom.whitwell@digital.cabinet-office.gov.uk>
         
     | 
| 
      
 11783 
     | 
    
         
            +
            cloudapps.digital
         
     | 
| 
      
 11784 
     | 
    
         
            +
            london.cloudapps.digital
         
     | 
| 
      
 11785 
     | 
    
         
            +
             
     | 
| 
       11609 
11786 
     | 
    
         
             
            // UKHomeOffice : https://www.gov.uk/government/organisations/home-office
         
     | 
| 
       11610 
11787 
     | 
    
         
             
            // Submitted by Jon Shanks <jon.shanks@digital.homeoffice.gov.uk>
         
     | 
| 
       11611 
11788 
     | 
    
         
             
            homeoffice.gov.uk
         
     | 
| 
         @@ -11621,6 +11798,9 @@ goip.de 
     | 
|
| 
       11621 
11798 
     | 
    
         | 
| 
       11622 
11799 
     | 
    
         
             
            // Google, Inc.
         
     | 
| 
       11623 
11800 
     | 
    
         
             
            // Submitted by Eduardo Vela <evn@google.com>
         
     | 
| 
      
 11801 
     | 
    
         
            +
            run.app
         
     | 
| 
      
 11802 
     | 
    
         
            +
            a.run.app
         
     | 
| 
      
 11803 
     | 
    
         
            +
            web.app
         
     | 
| 
       11624 
11804 
     | 
    
         
             
            *.0emm.com
         
     | 
| 
       11625 
11805 
     | 
    
         
             
            appspot.com
         
     | 
| 
       11626 
11806 
     | 
    
         
             
            blogspot.ae
         
     | 
| 
         @@ -11707,11 +11887,25 @@ publishproxy.com 
     | 
|
| 
       11707 
11887 
     | 
    
         
             
            withgoogle.com
         
     | 
| 
       11708 
11888 
     | 
    
         
             
            withyoutube.com
         
     | 
| 
       11709 
11889 
     | 
    
         | 
| 
      
 11890 
     | 
    
         
            +
            // Hakaran group: http://hakaran.cz
         
     | 
| 
      
 11891 
     | 
    
         
            +
            // Submited by Arseniy Sokolov <security@hakaran.cz>
         
     | 
| 
      
 11892 
     | 
    
         
            +
            fin.ci
         
     | 
| 
      
 11893 
     | 
    
         
            +
            free.hr
         
     | 
| 
      
 11894 
     | 
    
         
            +
            caa.li
         
     | 
| 
      
 11895 
     | 
    
         
            +
            ua.rs
         
     | 
| 
      
 11896 
     | 
    
         
            +
            conf.se
         
     | 
| 
      
 11897 
     | 
    
         
            +
             
     | 
| 
      
 11898 
     | 
    
         
            +
            // Handshake : https://handshake.org
         
     | 
| 
      
 11899 
     | 
    
         
            +
            // Submitted by Mike Damm <md@md.vc>
         
     | 
| 
      
 11900 
     | 
    
         
            +
            hs.zone
         
     | 
| 
      
 11901 
     | 
    
         
            +
            hs.run
         
     | 
| 
      
 11902 
     | 
    
         
            +
             
     | 
| 
       11710 
11903 
     | 
    
         
             
            // Hashbang : https://hashbang.sh
         
     | 
| 
       11711 
11904 
     | 
    
         
             
            hashbang.sh
         
     | 
| 
       11712 
11905 
     | 
    
         | 
| 
       11713 
11906 
     | 
    
         
             
            // Hasura : https://hasura.io
         
     | 
| 
       11714 
11907 
     | 
    
         
             
            // Submitted by Shahidh K Muhammed <shahidh@hasura.io>
         
     | 
| 
      
 11908 
     | 
    
         
            +
            hasura.app
         
     | 
| 
       11715 
11909 
     | 
    
         
             
            hasura-app.io
         
     | 
| 
       11716 
11910 
     | 
    
         | 
| 
       11717 
11911 
     | 
    
         
             
            // Hepforge : https://www.hepforge.org
         
     | 
| 
         @@ -11723,14 +11917,52 @@ hepforge.org 
     | 
|
| 
       11723 
11917 
     | 
    
         
             
            herokuapp.com
         
     | 
| 
       11724 
11918 
     | 
    
         
             
            herokussl.com
         
     | 
| 
       11725 
11919 
     | 
    
         | 
| 
      
 11920 
     | 
    
         
            +
            // Hibernating Rhinos
         
     | 
| 
      
 11921 
     | 
    
         
            +
            // Submitted by Oren Eini <oren@ravendb.net>
         
     | 
| 
      
 11922 
     | 
    
         
            +
            myravendb.com
         
     | 
| 
      
 11923 
     | 
    
         
            +
            ravendb.community
         
     | 
| 
      
 11924 
     | 
    
         
            +
            ravendb.me
         
     | 
| 
      
 11925 
     | 
    
         
            +
            development.run
         
     | 
| 
      
 11926 
     | 
    
         
            +
            ravendb.run
         
     | 
| 
      
 11927 
     | 
    
         
            +
             
     | 
| 
      
 11928 
     | 
    
         
            +
            // HOSTBIP REGISTRY : https://www.hostbip.com/
         
     | 
| 
      
 11929 
     | 
    
         
            +
            // Submitted by Atanunu Igbunuroghene <publicsuffixlist@hostbip.com>
         
     | 
| 
      
 11930 
     | 
    
         
            +
            bpl.biz
         
     | 
| 
      
 11931 
     | 
    
         
            +
            orx.biz
         
     | 
| 
      
 11932 
     | 
    
         
            +
            ng.city
         
     | 
| 
      
 11933 
     | 
    
         
            +
            ng.ink
         
     | 
| 
      
 11934 
     | 
    
         
            +
            biz.gl
         
     | 
| 
      
 11935 
     | 
    
         
            +
            col.ng
         
     | 
| 
      
 11936 
     | 
    
         
            +
            gen.ng
         
     | 
| 
      
 11937 
     | 
    
         
            +
            ltd.ng
         
     | 
| 
      
 11938 
     | 
    
         
            +
            sch.so
         
     | 
| 
      
 11939 
     | 
    
         
            +
             
     | 
| 
      
 11940 
     | 
    
         
            +
            // Häkkinen.fi
         
     | 
| 
      
 11941 
     | 
    
         
            +
            // Submitted by Eero Häkkinen <Eero+psl@Häkkinen.fi>
         
     | 
| 
      
 11942 
     | 
    
         
            +
            häkkinen.fi
         
     | 
| 
      
 11943 
     | 
    
         
            +
             
     | 
| 
       11726 
11944 
     | 
    
         
             
            // Ici la Lune : http://www.icilalune.com/
         
     | 
| 
       11727 
11945 
     | 
    
         
             
            // Submitted by Simon Morvan <simon@icilalune.com>
         
     | 
| 
      
 11946 
     | 
    
         
            +
            *.moonscale.io
         
     | 
| 
       11728 
11947 
     | 
    
         
             
            moonscale.net
         
     | 
| 
       11729 
11948 
     | 
    
         | 
| 
       11730 
11949 
     | 
    
         
             
            // iki.fi
         
     | 
| 
       11731 
11950 
     | 
    
         
             
            // Submitted by Hannu Aronsson <haa@iki.fi>
         
     | 
| 
       11732 
11951 
     | 
    
         
             
            iki.fi
         
     | 
| 
       11733 
11952 
     | 
    
         | 
| 
      
 11953 
     | 
    
         
            +
            // Individual Network Berlin e.V. : https://www.in-berlin.de/
         
     | 
| 
      
 11954 
     | 
    
         
            +
            // Submitted by Christian Seitz <chris@in-berlin.de>
         
     | 
| 
      
 11955 
     | 
    
         
            +
            dyn-berlin.de
         
     | 
| 
      
 11956 
     | 
    
         
            +
            in-berlin.de
         
     | 
| 
      
 11957 
     | 
    
         
            +
            in-brb.de
         
     | 
| 
      
 11958 
     | 
    
         
            +
            in-butter.de
         
     | 
| 
      
 11959 
     | 
    
         
            +
            in-dsl.de
         
     | 
| 
      
 11960 
     | 
    
         
            +
            in-dsl.net
         
     | 
| 
      
 11961 
     | 
    
         
            +
            in-dsl.org
         
     | 
| 
      
 11962 
     | 
    
         
            +
            in-vpn.de
         
     | 
| 
      
 11963 
     | 
    
         
            +
            in-vpn.net
         
     | 
| 
      
 11964 
     | 
    
         
            +
            in-vpn.org
         
     | 
| 
      
 11965 
     | 
    
         
            +
             
     | 
| 
       11734 
11966 
     | 
    
         
             
            // info.at : http://www.info.at/
         
     | 
| 
       11735 
11967 
     | 
    
         
             
            biz.at
         
     | 
| 
       11736 
11968 
     | 
    
         
             
            info.at
         
     | 
| 
         @@ -11777,6 +12009,16 @@ pixolino.com 
     | 
|
| 
       11777 
12009 
     | 
    
         
             
            // Submitted by Matthew Hardeman <mhardeman@ipifony.com>
         
     | 
| 
       11778 
12010 
     | 
    
         
             
            ipifony.net
         
     | 
| 
       11779 
12011 
     | 
    
         | 
| 
      
 12012 
     | 
    
         
            +
            // IServ GmbH : https://iserv.eu
         
     | 
| 
      
 12013 
     | 
    
         
            +
            // Submitted by Kim-Alexander Brodowski <kim.brodowski@iserv.eu>
         
     | 
| 
      
 12014 
     | 
    
         
            +
            mein-iserv.de
         
     | 
| 
      
 12015 
     | 
    
         
            +
            test-iserv.de
         
     | 
| 
      
 12016 
     | 
    
         
            +
            iserv.dev
         
     | 
| 
      
 12017 
     | 
    
         
            +
             
     | 
| 
      
 12018 
     | 
    
         
            +
            // I-O DATA DEVICE, INC. : http://www.iodata.com/
         
     | 
| 
      
 12019 
     | 
    
         
            +
            // Submitted by Yuji Minagawa <domains-admin@iodata.jp>
         
     | 
| 
      
 12020 
     | 
    
         
            +
            iobb.net
         
     | 
| 
      
 12021 
     | 
    
         
            +
             
     | 
| 
       11780 
12022 
     | 
    
         
             
            // Jino : https://www.jino.ru
         
     | 
| 
       11781 
12023 
     | 
    
         
             
            // Submitted by Sergey Ulyashin <ulyashin@jino.ru>
         
     | 
| 
       11782 
12024 
     | 
    
         
             
            myjino.ru
         
     | 
| 
         @@ -11794,10 +12036,20 @@ myjino.ru 
     | 
|
| 
       11794 
12036 
     | 
    
         
             
            // Submitted by Stefan Keim <admin@js.org>
         
     | 
| 
       11795 
12037 
     | 
    
         
             
            js.org
         
     | 
| 
       11796 
12038 
     | 
    
         | 
| 
      
 12039 
     | 
    
         
            +
            // KaasHosting : http://www.kaashosting.nl/
         
     | 
| 
      
 12040 
     | 
    
         
            +
            // Submitted by Wouter Bakker <hostmaster@kaashosting.nl>
         
     | 
| 
      
 12041 
     | 
    
         
            +
            kaas.gg
         
     | 
| 
      
 12042 
     | 
    
         
            +
            khplay.nl
         
     | 
| 
      
 12043 
     | 
    
         
            +
             
     | 
| 
       11797 
12044 
     | 
    
         
             
            // Keyweb AG : https://www.keyweb.de
         
     | 
| 
       11798 
12045 
     | 
    
         
             
            // Submitted by Martin Dannehl <postmaster@keymachine.de>
         
     | 
| 
       11799 
12046 
     | 
    
         
             
            keymachine.de
         
     | 
| 
       11800 
12047 
     | 
    
         | 
| 
      
 12048 
     | 
    
         
            +
            // KingHost : https://king.host
         
     | 
| 
      
 12049 
     | 
    
         
            +
            // Submitted by Felipe Keller Braz <felipebraz@kinghost.com.br>
         
     | 
| 
      
 12050 
     | 
    
         
            +
            kinghost.net
         
     | 
| 
      
 12051 
     | 
    
         
            +
            uni5.net
         
     | 
| 
      
 12052 
     | 
    
         
            +
             
     | 
| 
       11801 
12053 
     | 
    
         
             
            // KnightPoint Systems, LLC : http://www.knightpoint.com/
         
     | 
| 
       11802 
12054 
     | 
    
         
             
            // Submitted by Roy Keene <rkeene@knightpoint.com>
         
     | 
| 
       11803 
12055 
     | 
    
         
             
            knightpoint.systems
         
     | 
| 
         @@ -11812,34 +12064,112 @@ git-repos.de 
     | 
|
| 
       11812 
12064 
     | 
    
         
             
            lcube-server.de
         
     | 
| 
       11813 
12065 
     | 
    
         
             
            svn-repos.de
         
     | 
| 
       11814 
12066 
     | 
    
         | 
| 
      
 12067 
     | 
    
         
            +
            // Leadpages : https://www.leadpages.net
         
     | 
| 
      
 12068 
     | 
    
         
            +
            // Submitted by Greg Dallavalle <domains@leadpages.net>
         
     | 
| 
      
 12069 
     | 
    
         
            +
            leadpages.co
         
     | 
| 
      
 12070 
     | 
    
         
            +
            lpages.co
         
     | 
| 
      
 12071 
     | 
    
         
            +
            lpusercontent.com
         
     | 
| 
      
 12072 
     | 
    
         
            +
             
     | 
| 
      
 12073 
     | 
    
         
            +
            // Lifetime Hosting : https://Lifetime.Hosting/
         
     | 
| 
      
 12074 
     | 
    
         
            +
            // Submitted by Mike Fillator <support@lifetime.hosting>
         
     | 
| 
      
 12075 
     | 
    
         
            +
            co.business
         
     | 
| 
      
 12076 
     | 
    
         
            +
            co.education
         
     | 
| 
      
 12077 
     | 
    
         
            +
            co.events
         
     | 
| 
      
 12078 
     | 
    
         
            +
            co.financial
         
     | 
| 
      
 12079 
     | 
    
         
            +
            co.network
         
     | 
| 
      
 12080 
     | 
    
         
            +
            co.place
         
     | 
| 
      
 12081 
     | 
    
         
            +
            co.technology
         
     | 
| 
      
 12082 
     | 
    
         
            +
             
     | 
| 
      
 12083 
     | 
    
         
            +
            // Lightmaker Property Manager, Inc. : https://app.lmpm.com/
         
     | 
| 
      
 12084 
     | 
    
         
            +
            // Submitted by Greg Holland <greg.holland@lmpm.com>
         
     | 
| 
      
 12085 
     | 
    
         
            +
            app.lmpm.com
         
     | 
| 
      
 12086 
     | 
    
         
            +
             
     | 
| 
      
 12087 
     | 
    
         
            +
            // Linki Tools UG : https://linki.tools
         
     | 
| 
      
 12088 
     | 
    
         
            +
            // Submitted by Paulo Matos <pmatos@linki.tools>
         
     | 
| 
      
 12089 
     | 
    
         
            +
            linkitools.space
         
     | 
| 
      
 12090 
     | 
    
         
            +
             
     | 
| 
       11815 
12091 
     | 
    
         
             
            // linkyard ldt: https://www.linkyard.ch/
         
     | 
| 
       11816 
12092 
     | 
    
         
             
            // Submitted by Mario Siegenthaler <mario.siegenthaler@linkyard.ch>
         
     | 
| 
       11817 
12093 
     | 
    
         
             
            linkyard.cloud
         
     | 
| 
       11818 
12094 
     | 
    
         
             
            linkyard-cloud.ch
         
     | 
| 
       11819 
12095 
     | 
    
         | 
| 
      
 12096 
     | 
    
         
            +
            // Linode : https://linode.com
         
     | 
| 
      
 12097 
     | 
    
         
            +
            // Submitted by <security@linode.com>
         
     | 
| 
      
 12098 
     | 
    
         
            +
            members.linode.com
         
     | 
| 
      
 12099 
     | 
    
         
            +
            nodebalancer.linode.com
         
     | 
| 
      
 12100 
     | 
    
         
            +
             
     | 
| 
       11820 
12101 
     | 
    
         
             
            // LiquidNet Ltd : http://www.liquidnetlimited.com/
         
     | 
| 
       11821 
12102 
     | 
    
         
             
            // Submitted by Victor Velchev <admin@liquidnetlimited.com>
         
     | 
| 
       11822 
12103 
     | 
    
         
             
            we.bs
         
     | 
| 
       11823 
12104 
     | 
    
         | 
| 
      
 12105 
     | 
    
         
            +
            // Log'in Line : https://www.loginline.com/
         
     | 
| 
      
 12106 
     | 
    
         
            +
            // Submitted by Rémi Mach <remi.mach@loginline.com>
         
     | 
| 
      
 12107 
     | 
    
         
            +
            loginline.app
         
     | 
| 
      
 12108 
     | 
    
         
            +
            loginline.dev
         
     | 
| 
      
 12109 
     | 
    
         
            +
            loginline.io
         
     | 
| 
      
 12110 
     | 
    
         
            +
            loginline.services
         
     | 
| 
      
 12111 
     | 
    
         
            +
            loginline.site
         
     | 
| 
      
 12112 
     | 
    
         
            +
             
     | 
| 
      
 12113 
     | 
    
         
            +
            // LubMAN UMCS Sp. z o.o : https://lubman.pl/
         
     | 
| 
      
 12114 
     | 
    
         
            +
            // Submitted by Ireneusz Maliszewski <ireneusz.maliszewski@lubman.pl>
         
     | 
| 
      
 12115 
     | 
    
         
            +
            krasnik.pl
         
     | 
| 
      
 12116 
     | 
    
         
            +
            leczna.pl
         
     | 
| 
      
 12117 
     | 
    
         
            +
            lubartow.pl
         
     | 
| 
      
 12118 
     | 
    
         
            +
            lublin.pl
         
     | 
| 
      
 12119 
     | 
    
         
            +
            poniatowa.pl
         
     | 
| 
      
 12120 
     | 
    
         
            +
            swidnik.pl
         
     | 
| 
      
 12121 
     | 
    
         
            +
             
     | 
| 
      
 12122 
     | 
    
         
            +
            // Lug.org.uk : https://lug.org.uk
         
     | 
| 
      
 12123 
     | 
    
         
            +
            // Submitted by Jon Spriggs <admin@lug.org.uk>
         
     | 
| 
      
 12124 
     | 
    
         
            +
            uklugs.org
         
     | 
| 
      
 12125 
     | 
    
         
            +
            glug.org.uk
         
     | 
| 
      
 12126 
     | 
    
         
            +
            lug.org.uk
         
     | 
| 
      
 12127 
     | 
    
         
            +
            lugs.org.uk
         
     | 
| 
      
 12128 
     | 
    
         
            +
             
     | 
| 
       11824 
12129 
     | 
    
         
             
            // Lukanet Ltd : https://lukanet.com
         
     | 
| 
       11825 
12130 
     | 
    
         
             
            // Submitted by Anton Avramov <register@lukanet.com>
         
     | 
| 
       11826 
12131 
     | 
    
         
             
            barsy.bg
         
     | 
| 
      
 12132 
     | 
    
         
            +
            barsy.co.uk
         
     | 
| 
      
 12133 
     | 
    
         
            +
            barsyonline.co.uk
         
     | 
| 
      
 12134 
     | 
    
         
            +
            barsycenter.com
         
     | 
| 
       11827 
12135 
     | 
    
         
             
            barsyonline.com
         
     | 
| 
      
 12136 
     | 
    
         
            +
            barsy.club
         
     | 
| 
       11828 
12137 
     | 
    
         
             
            barsy.de
         
     | 
| 
       11829 
12138 
     | 
    
         
             
            barsy.eu
         
     | 
| 
       11830 
12139 
     | 
    
         
             
            barsy.in
         
     | 
| 
      
 12140 
     | 
    
         
            +
            barsy.info
         
     | 
| 
      
 12141 
     | 
    
         
            +
            barsy.io
         
     | 
| 
      
 12142 
     | 
    
         
            +
            barsy.me
         
     | 
| 
      
 12143 
     | 
    
         
            +
            barsy.menu
         
     | 
| 
      
 12144 
     | 
    
         
            +
            barsy.mobi
         
     | 
| 
       11831 
12145 
     | 
    
         
             
            barsy.net
         
     | 
| 
       11832 
12146 
     | 
    
         
             
            barsy.online
         
     | 
| 
      
 12147 
     | 
    
         
            +
            barsy.org
         
     | 
| 
      
 12148 
     | 
    
         
            +
            barsy.pro
         
     | 
| 
      
 12149 
     | 
    
         
            +
            barsy.pub
         
     | 
| 
      
 12150 
     | 
    
         
            +
            barsy.shop
         
     | 
| 
      
 12151 
     | 
    
         
            +
            barsy.site
         
     | 
| 
       11833 
12152 
     | 
    
         
             
            barsy.support
         
     | 
| 
      
 12153 
     | 
    
         
            +
            barsy.uk
         
     | 
| 
       11834 
12154 
     | 
    
         | 
| 
       11835 
12155 
     | 
    
         
             
            // Magento Commerce
         
     | 
| 
       11836 
12156 
     | 
    
         
             
            // Submitted by Damien Tournoud <dtournoud@magento.cloud>
         
     | 
| 
       11837 
12157 
     | 
    
         
             
            *.magentosite.cloud
         
     | 
| 
       11838 
12158 
     | 
    
         | 
| 
      
 12159 
     | 
    
         
            +
            // May First - People Link : https://mayfirst.org/
         
     | 
| 
      
 12160 
     | 
    
         
            +
            // Submitted by Jamie McClelland <info@mayfirst.org>
         
     | 
| 
      
 12161 
     | 
    
         
            +
            mayfirst.info
         
     | 
| 
      
 12162 
     | 
    
         
            +
            mayfirst.org
         
     | 
| 
      
 12163 
     | 
    
         
            +
             
     | 
| 
       11839 
12164 
     | 
    
         
             
            // Mail.Ru Group : https://hb.cldmail.ru
         
     | 
| 
       11840 
12165 
     | 
    
         
             
            // Submitted by Ilya Zaretskiy <zaretskiy@corp.mail.ru>
         
     | 
| 
       11841 
12166 
     | 
    
         
             
            hb.cldmail.ru
         
     | 
| 
       11842 
12167 
     | 
    
         | 
| 
      
 12168 
     | 
    
         
            +
            // Memset hosting : https://www.memset.com
         
     | 
| 
      
 12169 
     | 
    
         
            +
            // Submitted by Tom Whitwell <domains@memset.com>
         
     | 
| 
      
 12170 
     | 
    
         
            +
            miniserver.com
         
     | 
| 
      
 12171 
     | 
    
         
            +
            memset.net
         
     | 
| 
      
 12172 
     | 
    
         
            +
             
     | 
| 
       11843 
12173 
     | 
    
         
             
            // MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
         
     | 
| 
       11844 
12174 
     | 
    
         
             
            // Submitted by Zdeněk Šustr <zdenek.sustr@cesnet.cz>
         
     | 
| 
       11845 
12175 
     | 
    
         
             
            cloud.metacentrum.cz
         
     | 
| 
         @@ -11879,6 +12209,30 @@ net.ru 
     | 
|
| 
       11879 
12209 
     | 
    
         
             
            org.ru
         
     | 
| 
       11880 
12210 
     | 
    
         
             
            pp.ru
         
     | 
| 
       11881 
12211 
     | 
    
         | 
| 
      
 12212 
     | 
    
         
            +
            // Nabu Casa : https://www.nabucasa.com
         
     | 
| 
      
 12213 
     | 
    
         
            +
            // Submitted by Paulus Schoutsen <infra@nabucasa.com>
         
     | 
| 
      
 12214 
     | 
    
         
            +
            ui.nabu.casa
         
     | 
| 
      
 12215 
     | 
    
         
            +
             
     | 
| 
      
 12216 
     | 
    
         
            +
            // Names.of.London : https://names.of.london/
         
     | 
| 
      
 12217 
     | 
    
         
            +
            // Submitted by James Stevens <registry@names.of.london> or <james@jrcs.net>
         
     | 
| 
      
 12218 
     | 
    
         
            +
            pony.club
         
     | 
| 
      
 12219 
     | 
    
         
            +
            of.fashion
         
     | 
| 
      
 12220 
     | 
    
         
            +
            on.fashion
         
     | 
| 
      
 12221 
     | 
    
         
            +
            of.football
         
     | 
| 
      
 12222 
     | 
    
         
            +
            in.london
         
     | 
| 
      
 12223 
     | 
    
         
            +
            of.london
         
     | 
| 
      
 12224 
     | 
    
         
            +
            for.men
         
     | 
| 
      
 12225 
     | 
    
         
            +
            and.mom
         
     | 
| 
      
 12226 
     | 
    
         
            +
            for.mom
         
     | 
| 
      
 12227 
     | 
    
         
            +
            for.one
         
     | 
| 
      
 12228 
     | 
    
         
            +
            for.sale
         
     | 
| 
      
 12229 
     | 
    
         
            +
            of.work
         
     | 
| 
      
 12230 
     | 
    
         
            +
            to.work
         
     | 
| 
      
 12231 
     | 
    
         
            +
             
     | 
| 
      
 12232 
     | 
    
         
            +
            // NCTU.ME : https://nctu.me/
         
     | 
| 
      
 12233 
     | 
    
         
            +
            // Submitted by Tocknicsu <admin@nctu.me>
         
     | 
| 
      
 12234 
     | 
    
         
            +
            nctu.me
         
     | 
| 
      
 12235 
     | 
    
         
            +
             
     | 
| 
       11882 
12236 
     | 
    
         
             
            // Netlify : https://www.netlify.com
         
     | 
| 
       11883 
12237 
     | 
    
         
             
            // Submitted by Jessica Parsons <jessica@netlify.com>
         
     | 
| 
       11884 
12238 
     | 
    
         
             
            bitballoon.com
         
     | 
| 
         @@ -11900,6 +12254,34 @@ nh-serv.co.uk 
     | 
|
| 
       11900 
12254 
     | 
    
         
             
            // Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net>
         
     | 
| 
       11901 
12255 
     | 
    
         
             
            nfshost.com
         
     | 
| 
       11902 
12256 
     | 
    
         | 
| 
      
 12257 
     | 
    
         
            +
            // Now-DNS : https://now-dns.com
         
     | 
| 
      
 12258 
     | 
    
         
            +
            // Submitted by Steve Russell <steve@now-dns.com>
         
     | 
| 
      
 12259 
     | 
    
         
            +
            dnsking.ch
         
     | 
| 
      
 12260 
     | 
    
         
            +
            mypi.co
         
     | 
| 
      
 12261 
     | 
    
         
            +
            n4t.co
         
     | 
| 
      
 12262 
     | 
    
         
            +
            001www.com
         
     | 
| 
      
 12263 
     | 
    
         
            +
            ddnslive.com
         
     | 
| 
      
 12264 
     | 
    
         
            +
            myiphost.com
         
     | 
| 
      
 12265 
     | 
    
         
            +
            forumz.info
         
     | 
| 
      
 12266 
     | 
    
         
            +
            16-b.it
         
     | 
| 
      
 12267 
     | 
    
         
            +
            32-b.it
         
     | 
| 
      
 12268 
     | 
    
         
            +
            64-b.it
         
     | 
| 
      
 12269 
     | 
    
         
            +
            soundcast.me
         
     | 
| 
      
 12270 
     | 
    
         
            +
            tcp4.me
         
     | 
| 
      
 12271 
     | 
    
         
            +
            dnsup.net
         
     | 
| 
      
 12272 
     | 
    
         
            +
            hicam.net
         
     | 
| 
      
 12273 
     | 
    
         
            +
            now-dns.net
         
     | 
| 
      
 12274 
     | 
    
         
            +
            ownip.net
         
     | 
| 
      
 12275 
     | 
    
         
            +
            vpndns.net
         
     | 
| 
      
 12276 
     | 
    
         
            +
            dynserv.org
         
     | 
| 
      
 12277 
     | 
    
         
            +
            now-dns.org
         
     | 
| 
      
 12278 
     | 
    
         
            +
            x443.pw
         
     | 
| 
      
 12279 
     | 
    
         
            +
            now-dns.top
         
     | 
| 
      
 12280 
     | 
    
         
            +
            ntdll.top
         
     | 
| 
      
 12281 
     | 
    
         
            +
            freeddns.us
         
     | 
| 
      
 12282 
     | 
    
         
            +
            crafting.xyz
         
     | 
| 
      
 12283 
     | 
    
         
            +
            zapto.xyz
         
     | 
| 
      
 12284 
     | 
    
         
            +
             
     | 
| 
       11903 
12285 
     | 
    
         
             
            // nsupdate.info : https://www.nsupdate.info/
         
     | 
| 
       11904 
12286 
     | 
    
         
             
            // Submitted by Thomas Waldmann <info@nsupdate.info>
         
     | 
| 
       11905 
12287 
     | 
    
         
             
            nsupdate.info
         
     | 
| 
         @@ -12002,6 +12384,10 @@ stage.nodeart.io 
     | 
|
| 
       12002 
12384 
     | 
    
         
             
            nodum.co
         
     | 
| 
       12003 
12385 
     | 
    
         
             
            nodum.io
         
     | 
| 
       12004 
12386 
     | 
    
         | 
| 
      
 12387 
     | 
    
         
            +
            // Nucleos Inc. : https://nucleos.com
         
     | 
| 
      
 12388 
     | 
    
         
            +
            // Submitted by Piotr Zduniak <piotr@nucleos.com>
         
     | 
| 
      
 12389 
     | 
    
         
            +
            pcloud.host
         
     | 
| 
      
 12390 
     | 
    
         
            +
             
     | 
| 
       12005 
12391 
     | 
    
         
             
            // NYC.mn : http://www.information.nyc.mn
         
     | 
| 
       12006 
12392 
     | 
    
         
             
            // Submitted by Matthew Brown <mattbrown@nyc.mn>
         
     | 
| 
       12007 
12393 
     | 
    
         
             
            nyc.mn
         
     | 
| 
         @@ -12009,25 +12395,32 @@ nyc.mn 
     | 
|
| 
       12009 
12395 
     | 
    
         
             
            // NymNom : https://nymnom.com/
         
     | 
| 
       12010 
12396 
     | 
    
         
             
            // Submitted by Dave McCormack <dave.mccormack@nymnom.com>
         
     | 
| 
       12011 
12397 
     | 
    
         
             
            nom.ae
         
     | 
| 
      
 12398 
     | 
    
         
            +
            nom.af
         
     | 
| 
       12012 
12399 
     | 
    
         
             
            nom.ai
         
     | 
| 
       12013 
12400 
     | 
    
         
             
            nom.al
         
     | 
| 
       12014 
12401 
     | 
    
         
             
            nym.by
         
     | 
| 
       12015 
12402 
     | 
    
         
             
            nym.bz
         
     | 
| 
       12016 
12403 
     | 
    
         
             
            nom.cl
         
     | 
| 
       12017 
12404 
     | 
    
         
             
            nom.gd
         
     | 
| 
      
 12405 
     | 
    
         
            +
            nom.ge
         
     | 
| 
       12018 
12406 
     | 
    
         
             
            nom.gl
         
     | 
| 
       12019 
12407 
     | 
    
         
             
            nym.gr
         
     | 
| 
       12020 
12408 
     | 
    
         
             
            nom.gt
         
     | 
| 
      
 12409 
     | 
    
         
            +
            nym.gy
         
     | 
| 
       12021 
12410 
     | 
    
         
             
            nom.hn
         
     | 
| 
      
 12411 
     | 
    
         
            +
            nym.ie
         
     | 
| 
       12022 
12412 
     | 
    
         
             
            nom.im
         
     | 
| 
      
 12413 
     | 
    
         
            +
            nom.ke
         
     | 
| 
       12023 
12414 
     | 
    
         
             
            nym.kz
         
     | 
| 
       12024 
12415 
     | 
    
         
             
            nym.la
         
     | 
| 
      
 12416 
     | 
    
         
            +
            nym.lc
         
     | 
| 
       12025 
12417 
     | 
    
         
             
            nom.li
         
     | 
| 
       12026 
12418 
     | 
    
         
             
            nym.li
         
     | 
| 
       12027 
12419 
     | 
    
         
             
            nym.lt
         
     | 
| 
       12028 
12420 
     | 
    
         
             
            nym.lu
         
     | 
| 
       12029 
12421 
     | 
    
         
             
            nym.me
         
     | 
| 
       12030 
12422 
     | 
    
         
             
            nom.mk
         
     | 
| 
      
 12423 
     | 
    
         
            +
            nym.mn
         
     | 
| 
       12031 
12424 
     | 
    
         
             
            nym.mx
         
     | 
| 
       12032 
12425 
     | 
    
         
             
            nom.nu
         
     | 
| 
       12033 
12426 
     | 
    
         
             
            nym.nz
         
     | 
| 
         @@ -12035,11 +12428,14 @@ nym.pe 
     | 
|
| 
       12035 
12428 
     | 
    
         
             
            nym.pt
         
     | 
| 
       12036 
12429 
     | 
    
         
             
            nom.pw
         
     | 
| 
       12037 
12430 
     | 
    
         
             
            nom.qa
         
     | 
| 
      
 12431 
     | 
    
         
            +
            nym.ro
         
     | 
| 
       12038 
12432 
     | 
    
         
             
            nom.rs
         
     | 
| 
       12039 
12433 
     | 
    
         
             
            nom.si
         
     | 
| 
       12040 
12434 
     | 
    
         
             
            nym.sk
         
     | 
| 
      
 12435 
     | 
    
         
            +
            nom.st
         
     | 
| 
       12041 
12436 
     | 
    
         
             
            nym.su
         
     | 
| 
       12042 
12437 
     | 
    
         
             
            nym.sx
         
     | 
| 
      
 12438 
     | 
    
         
            +
            nom.tj
         
     | 
| 
       12043 
12439 
     | 
    
         
             
            nym.tw
         
     | 
| 
       12044 
12440 
     | 
    
         
             
            nom.ug
         
     | 
| 
       12045 
12441 
     | 
    
         
             
            nom.uy
         
     | 
| 
         @@ -12050,6 +12446,10 @@ nom.vg 
     | 
|
| 
       12050 
12446 
     | 
    
         
             
            // Submitted by Andrew Sampson <andrew@ulterius.io>
         
     | 
| 
       12051 
12447 
     | 
    
         
             
            cya.gg
         
     | 
| 
       12052 
12448 
     | 
    
         | 
| 
      
 12449 
     | 
    
         
            +
            // Omnibond Systems, LLC. : https://www.omnibond.com
         
     | 
| 
      
 12450 
     | 
    
         
            +
            // Submitted by Cole Estep <cole@omnibond.com>
         
     | 
| 
      
 12451 
     | 
    
         
            +
            cloudycluster.net
         
     | 
| 
      
 12452 
     | 
    
         
            +
             
     | 
| 
       12053 
12453 
     | 
    
         
             
            // One Fold Media : http://www.onefoldmedia.com/
         
     | 
| 
       12054 
12454 
     | 
    
         
             
            // Submitted by Eddie Jones <eddie@onefoldmedia.com>
         
     | 
| 
       12055 
12455 
     | 
    
         
             
            nid.io
         
     | 
| 
         @@ -12066,9 +12466,10 @@ operaunite.com 
     | 
|
| 
       12066 
12466 
     | 
    
         
             
            // Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
         
     | 
| 
       12067 
12467 
     | 
    
         
             
            outsystemscloud.com
         
     | 
| 
       12068 
12468 
     | 
    
         | 
| 
       12069 
     | 
    
         
            -
            // OwnProvider : http://www.ownprovider.com
         
     | 
| 
      
 12469 
     | 
    
         
            +
            // OwnProvider GmbH: http://www.ownprovider.com
         
     | 
| 
       12070 
12470 
     | 
    
         
             
            // Submitted by Jan Moennich <jan.moennich@ownprovider.com>
         
     | 
| 
       12071 
12471 
     | 
    
         
             
            ownprovider.com
         
     | 
| 
      
 12472 
     | 
    
         
            +
            own.pm
         
     | 
| 
       12072 
12473 
     | 
    
         | 
| 
       12073 
12474 
     | 
    
         
             
            // OX : http://www.ox.rs
         
     | 
| 
       12074 
12475 
     | 
    
         
             
            // Submitted by Adam Grand <webmaster@mail.ox.rs>
         
     | 
| 
         @@ -12112,6 +12513,14 @@ on-web.fr 
     | 
|
| 
       12112 
12513 
     | 
    
         
             
            *.platform.sh
         
     | 
| 
       12113 
12514 
     | 
    
         
             
            *.platformsh.site
         
     | 
| 
       12114 
12515 
     | 
    
         | 
| 
      
 12516 
     | 
    
         
            +
            // Port53 : https://port53.io/
         
     | 
| 
      
 12517 
     | 
    
         
            +
            // Submitted by Maximilian Schieder <maxi@zeug.co>
         
     | 
| 
      
 12518 
     | 
    
         
            +
            dyn53.io
         
     | 
| 
      
 12519 
     | 
    
         
            +
             
     | 
| 
      
 12520 
     | 
    
         
            +
            // Positive Codes Technology Company : http://co.bn/faq.html
         
     | 
| 
      
 12521 
     | 
    
         
            +
            // Submitted by Zulfais <pc@co.bn>
         
     | 
| 
      
 12522 
     | 
    
         
            +
            co.bn
         
     | 
| 
      
 12523 
     | 
    
         
            +
             
     | 
| 
       12115 
12524 
     | 
    
         
             
            // prgmr.com : https://prgmr.com/
         
     | 
| 
       12116 
12525 
     | 
    
         
             
            // Submitted by Sarah Newman <owner@prgmr.com>
         
     | 
| 
       12117 
12526 
     | 
    
         
             
            xen.prgmr.com
         
     | 
| 
         @@ -12120,6 +12529,14 @@ xen.prgmr.com 
     | 
|
| 
       12120 
12529 
     | 
    
         
             
            // Submitted by registry <lendl@nic.at>
         
     | 
| 
       12121 
12530 
     | 
    
         
             
            priv.at
         
     | 
| 
       12122 
12531 
     | 
    
         | 
| 
      
 12532 
     | 
    
         
            +
            // privacytools.io : https://www.privacytools.io/
         
     | 
| 
      
 12533 
     | 
    
         
            +
            // Submitted by Jonah Aragon <jonah@privacytools.io>
         
     | 
| 
      
 12534 
     | 
    
         
            +
            prvcy.page
         
     | 
| 
      
 12535 
     | 
    
         
            +
             
     | 
| 
      
 12536 
     | 
    
         
            +
            // Protocol Labs : https://protocol.ai/
         
     | 
| 
      
 12537 
     | 
    
         
            +
            // Submitted by Michael Burns <noc@protocol.ai>
         
     | 
| 
      
 12538 
     | 
    
         
            +
            *.dweb.link
         
     | 
| 
      
 12539 
     | 
    
         
            +
             
     | 
| 
       12123 
12540 
     | 
    
         
             
            // Protonet GmbH : http://protonet.io
         
     | 
| 
       12124 
12541 
     | 
    
         
             
            // Submitted by Martin Meier <admin@protonet.io>
         
     | 
| 
       12125 
12542 
     | 
    
         
             
            protonet.io
         
     | 
| 
         @@ -12129,6 +12546,18 @@ protonet.io 
     | 
|
| 
       12129 
12546 
     | 
    
         
             
            chirurgiens-dentistes-en-france.fr
         
     | 
| 
       12130 
12547 
     | 
    
         
             
            byen.site
         
     | 
| 
       12131 
12548 
     | 
    
         | 
| 
      
 12549 
     | 
    
         
            +
            // pubtls.org: https://www.pubtls.org
         
     | 
| 
      
 12550 
     | 
    
         
            +
            // Submitted by Kor Nielsen <kor@pubtls.org>
         
     | 
| 
      
 12551 
     | 
    
         
            +
            pubtls.org
         
     | 
| 
      
 12552 
     | 
    
         
            +
             
     | 
| 
      
 12553 
     | 
    
         
            +
            // Qualifio : https://qualifio.com/
         
     | 
| 
      
 12554 
     | 
    
         
            +
            // Submitted by Xavier De Cock <xdecock@gmail.com>
         
     | 
| 
      
 12555 
     | 
    
         
            +
            qualifioapp.com
         
     | 
| 
      
 12556 
     | 
    
         
            +
             
     | 
| 
      
 12557 
     | 
    
         
            +
            // Redstar Consultants : https://www.redstarconsultants.com/
         
     | 
| 
      
 12558 
     | 
    
         
            +
            // Submitted by Jons Slemmer <jons@redstarconsultants.com>
         
     | 
| 
      
 12559 
     | 
    
         
            +
            instantcloud.cn
         
     | 
| 
      
 12560 
     | 
    
         
            +
             
     | 
| 
       12132 
12561 
     | 
    
         
             
            // Russian Academy of Sciences
         
     | 
| 
       12133 
12562 
     | 
    
         
             
            // Submitted by Tech Support <support@rasnet.ru>
         
     | 
| 
       12134 
12563 
     | 
    
         
             
            ras.ru
         
     | 
| 
         @@ -12157,10 +12586,29 @@ vaporcloud.io 
     | 
|
| 
       12157 
12586 
     | 
    
         
             
            rackmaze.com
         
     | 
| 
       12158 
12587 
     | 
    
         
             
            rackmaze.net
         
     | 
| 
       12159 
12588 
     | 
    
         | 
| 
      
 12589 
     | 
    
         
            +
            // Rancher Labs, Inc : https://rancher.com
         
     | 
| 
      
 12590 
     | 
    
         
            +
            // Submitted by Vincent Fiduccia <domains@rancher.com>
         
     | 
| 
      
 12591 
     | 
    
         
            +
            *.on-rancher.cloud
         
     | 
| 
      
 12592 
     | 
    
         
            +
            *.on-rio.io
         
     | 
| 
      
 12593 
     | 
    
         
            +
             
     | 
| 
      
 12594 
     | 
    
         
            +
            // Read The Docs, Inc : https://www.readthedocs.org
         
     | 
| 
      
 12595 
     | 
    
         
            +
            // Submitted by David Fischer <team@readthedocs.org>
         
     | 
| 
      
 12596 
     | 
    
         
            +
            readthedocs.io
         
     | 
| 
      
 12597 
     | 
    
         
            +
             
     | 
| 
       12160 
12598 
     | 
    
         
             
            // Red Hat, Inc. OpenShift : https://openshift.redhat.com/
         
     | 
| 
       12161 
12599 
     | 
    
         
             
            // Submitted by Tim Kramer <tkramer@rhcloud.com>
         
     | 
| 
       12162 
12600 
     | 
    
         
             
            rhcloud.com
         
     | 
| 
       12163 
12601 
     | 
    
         | 
| 
      
 12602 
     | 
    
         
            +
            // Render : https://render.com
         
     | 
| 
      
 12603 
     | 
    
         
            +
            // Submitted by Anurag Goel <dev@render.com>
         
     | 
| 
      
 12604 
     | 
    
         
            +
            app.render.com
         
     | 
| 
      
 12605 
     | 
    
         
            +
            onrender.com
         
     | 
| 
      
 12606 
     | 
    
         
            +
             
     | 
| 
      
 12607 
     | 
    
         
            +
            // Repl.it : https://repl.it
         
     | 
| 
      
 12608 
     | 
    
         
            +
            // Submitted by Mason Clayton <mason@repl.it>
         
     | 
| 
      
 12609 
     | 
    
         
            +
            repl.co
         
     | 
| 
      
 12610 
     | 
    
         
            +
            repl.run
         
     | 
| 
      
 12611 
     | 
    
         
            +
             
     | 
| 
       12164 
12612 
     | 
    
         
             
            // Resin.io : https://resin.io
         
     | 
| 
       12165 
12613 
     | 
    
         
             
            // Submitted by Tim Perry <tim@resin.io>
         
     | 
| 
       12166 
12614 
     | 
    
         
             
            resindevice.io
         
     | 
| 
         @@ -12176,6 +12624,10 @@ wellbeingzone.eu 
     | 
|
| 
       12176 
12624 
     | 
    
         
             
            ptplus.fit
         
     | 
| 
       12177 
12625 
     | 
    
         
             
            wellbeingzone.co.uk
         
     | 
| 
       12178 
12626 
     | 
    
         | 
| 
      
 12627 
     | 
    
         
            +
            // Rochester Institute of Technology : http://www.rit.edu/
         
     | 
| 
      
 12628 
     | 
    
         
            +
            // Submitted by Jennifer Herting <jchits@rit.edu>
         
     | 
| 
      
 12629 
     | 
    
         
            +
            git-pages.rit.edu
         
     | 
| 
      
 12630 
     | 
    
         
            +
             
     | 
| 
       12179 
12631 
     | 
    
         
             
            // Sandstorm Development Group, Inc. : https://sandcats.io/
         
     | 
| 
       12180 
12632 
     | 
    
         
             
            // Submitted by Asheesh Laroia <asheesh@sandstorm.io>
         
     | 
| 
       12181 
12633 
     | 
    
         
             
            sandcats.io
         
     | 
| 
         @@ -12225,6 +12677,14 @@ shiftedit.io 
     | 
|
| 
       12225 
12677 
     | 
    
         
             
            // Submitted by Alex Bowers <alex@shopblocks.com>
         
     | 
| 
       12226 
12678 
     | 
    
         
             
            myshopblocks.com
         
     | 
| 
       12227 
12679 
     | 
    
         | 
| 
      
 12680 
     | 
    
         
            +
            // Shopit : https://www.shopitcommerce.com/
         
     | 
| 
      
 12681 
     | 
    
         
            +
            // Submitted by Craig McMahon <craig@shopitcommerce.com>
         
     | 
| 
      
 12682 
     | 
    
         
            +
            shopitsite.com
         
     | 
| 
      
 12683 
     | 
    
         
            +
             
     | 
| 
      
 12684 
     | 
    
         
            +
            // Siemens Mobility GmbH
         
     | 
| 
      
 12685 
     | 
    
         
            +
            // Submitted by Oliver Graebner <security@mo-siemens.io>
         
     | 
| 
      
 12686 
     | 
    
         
            +
            mo-siemens.io
         
     | 
| 
      
 12687 
     | 
    
         
            +
             
     | 
| 
       12228 
12688 
     | 
    
         
             
            // SinaAppEngine : http://sae.sina.com.cn/
         
     | 
| 
       12229 
12689 
     | 
    
         
             
            // Submitted by SinaAppEngine <saesupport@sinacloud.com>
         
     | 
| 
       12230 
12690 
     | 
    
         
             
            1kapp.com
         
     | 
| 
         @@ -12233,12 +12693,20 @@ applinzi.com 
     | 
|
| 
       12233 
12693 
     | 
    
         
             
            sinaapp.com
         
     | 
| 
       12234 
12694 
     | 
    
         
             
            vipsinaapp.com
         
     | 
| 
       12235 
12695 
     | 
    
         | 
| 
      
 12696 
     | 
    
         
            +
            // Siteleaf : https://www.siteleaf.com/
         
     | 
| 
      
 12697 
     | 
    
         
            +
            // Submitted by Skylar Challand <support@siteleaf.com>
         
     | 
| 
      
 12698 
     | 
    
         
            +
            siteleaf.net
         
     | 
| 
      
 12699 
     | 
    
         
            +
             
     | 
| 
       12236 
12700 
     | 
    
         
             
            // Skyhat : http://www.skyhat.io
         
     | 
| 
       12237 
12701 
     | 
    
         
             
            // Submitted by Shante Adam <shante@skyhat.io>
         
     | 
| 
       12238 
12702 
     | 
    
         
             
            bounty-full.com
         
     | 
| 
       12239 
12703 
     | 
    
         
             
            alpha.bounty-full.com
         
     | 
| 
       12240 
12704 
     | 
    
         
             
            beta.bounty-full.com
         
     | 
| 
       12241 
12705 
     | 
    
         | 
| 
      
 12706 
     | 
    
         
            +
            // Stackhero : https://www.stackhero.io
         
     | 
| 
      
 12707 
     | 
    
         
            +
            // Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
         
     | 
| 
      
 12708 
     | 
    
         
            +
            stackhero-network.com
         
     | 
| 
      
 12709 
     | 
    
         
            +
             
     | 
| 
       12242 
12710 
     | 
    
         
             
            // staticland : https://static.land
         
     | 
| 
       12243 
12711 
     | 
    
         
             
            // Submitted by Seth Vincent <sethvincent@gmail.com>
         
     | 
| 
       12244 
12712 
     | 
    
         
             
            static.land
         
     | 
| 
         @@ -12254,18 +12722,40 @@ apps.lair.io 
     | 
|
| 
       12254 
12722 
     | 
    
         
             
            // Submitted by Reza Akhavan <spacekit.io@gmail.com>
         
     | 
| 
       12255 
12723 
     | 
    
         
             
            spacekit.io
         
     | 
| 
       12256 
12724 
     | 
    
         | 
| 
       12257 
     | 
    
         
            -
            //  
     | 
| 
       12258 
     | 
    
         
            -
            // Submitted by  
     | 
| 
       12259 
     | 
    
         
            -
             
     | 
| 
      
 12725 
     | 
    
         
            +
            // SpeedPartner GmbH: https://www.speedpartner.de/
         
     | 
| 
      
 12726 
     | 
    
         
            +
            // Submitted by Stefan Neufeind <info@speedpartner.de>
         
     | 
| 
      
 12727 
     | 
    
         
            +
            customer.speedpartner.de
         
     | 
| 
      
 12728 
     | 
    
         
            +
             
     | 
| 
      
 12729 
     | 
    
         
            +
            // Standard Library : https://stdlib.com
         
     | 
| 
      
 12730 
     | 
    
         
            +
            // Submitted by Jacob Lee <jacob@stdlib.com>
         
     | 
| 
      
 12731 
     | 
    
         
            +
            api.stdlib.com
         
     | 
| 
       12260 
12732 
     | 
    
         | 
| 
       12261 
12733 
     | 
    
         
             
            // Storj Labs Inc. : https://storj.io/
         
     | 
| 
       12262 
12734 
     | 
    
         
             
            // Submitted by Philip Hutchins <hostmaster@storj.io>
         
     | 
| 
       12263 
12735 
     | 
    
         
             
            storj.farm
         
     | 
| 
       12264 
12736 
     | 
    
         | 
| 
      
 12737 
     | 
    
         
            +
            // Studenten Net Twente : http://www.snt.utwente.nl/
         
     | 
| 
      
 12738 
     | 
    
         
            +
            // Submitted by Silke Hofstra <syscom@snt.utwente.nl>
         
     | 
| 
      
 12739 
     | 
    
         
            +
            utwente.io
         
     | 
| 
      
 12740 
     | 
    
         
            +
             
     | 
| 
      
 12741 
     | 
    
         
            +
            // Student-Run Computing Facility : https://www.srcf.net/
         
     | 
| 
      
 12742 
     | 
    
         
            +
            // Submitted by Edwin Balani <sysadmins@srcf.net>
         
     | 
| 
      
 12743 
     | 
    
         
            +
            soc.srcf.net
         
     | 
| 
      
 12744 
     | 
    
         
            +
            user.srcf.net
         
     | 
| 
      
 12745 
     | 
    
         
            +
             
     | 
| 
       12265 
12746 
     | 
    
         
             
            // Sub 6 Limited: http://www.sub6.com
         
     | 
| 
       12266 
12747 
     | 
    
         
             
            // Submitted by Dan Miller <dm@sub6.com>
         
     | 
| 
       12267 
12748 
     | 
    
         
             
            temp-dns.com
         
     | 
| 
       12268 
12749 
     | 
    
         | 
| 
      
 12750 
     | 
    
         
            +
            // Swisscom Application Cloud: https://developer.swisscom.com
         
     | 
| 
      
 12751 
     | 
    
         
            +
            // Submitted by Matthias.Winzeler <matthias.winzeler@swisscom.com>
         
     | 
| 
      
 12752 
     | 
    
         
            +
            applicationcloud.io
         
     | 
| 
      
 12753 
     | 
    
         
            +
            scapp.io
         
     | 
| 
      
 12754 
     | 
    
         
            +
             
     | 
| 
      
 12755 
     | 
    
         
            +
            // Syncloud : https://syncloud.org
         
     | 
| 
      
 12756 
     | 
    
         
            +
            // Submitted by Boris Rybalkin <syncloud@syncloud.it>
         
     | 
| 
      
 12757 
     | 
    
         
            +
            syncloud.it
         
     | 
| 
      
 12758 
     | 
    
         
            +
             
     | 
| 
       12269 
12759 
     | 
    
         
             
            // Synology, Inc. : https://www.synology.com/
         
     | 
| 
       12270 
12760 
     | 
    
         
             
            // Submitted by Rony Weng <ronyweng@synology.com>
         
     | 
| 
       12271 
12761 
     | 
    
         
             
            diskstation.me
         
     | 
| 
         @@ -12294,17 +12784,33 @@ gdynia.pl 
     | 
|
| 
       12294 
12784 
     | 
    
         
             
            med.pl
         
     | 
| 
       12295 
12785 
     | 
    
         
             
            sopot.pl
         
     | 
| 
       12296 
12786 
     | 
    
         | 
| 
      
 12787 
     | 
    
         
            +
            // Teckids e.V. : https://www.teckids.org
         
     | 
| 
      
 12788 
     | 
    
         
            +
            // Submitted by Dominik George <dominik.george@teckids.org>
         
     | 
| 
      
 12789 
     | 
    
         
            +
            edugit.org
         
     | 
| 
      
 12790 
     | 
    
         
            +
             
     | 
| 
      
 12791 
     | 
    
         
            +
            // Telebit : https://telebit.cloud
         
     | 
| 
      
 12792 
     | 
    
         
            +
            // Submitted by AJ ONeal <aj@telebit.cloud>
         
     | 
| 
      
 12793 
     | 
    
         
            +
            telebit.app
         
     | 
| 
      
 12794 
     | 
    
         
            +
            telebit.io
         
     | 
| 
      
 12795 
     | 
    
         
            +
            *.telebit.xyz
         
     | 
| 
      
 12796 
     | 
    
         
            +
             
     | 
| 
       12297 
12797 
     | 
    
         
             
            // The Gwiddle Foundation : https://gwiddlefoundation.org.uk
         
     | 
| 
       12298 
12798 
     | 
    
         
             
            // Submitted by Joshua Bayfield <joshua.bayfield@gwiddlefoundation.org.uk>
         
     | 
| 
       12299 
12799 
     | 
    
         
             
            gwiddle.co.uk
         
     | 
| 
       12300 
12800 
     | 
    
         | 
| 
       12301 
12801 
     | 
    
         
             
            // Thingdust AG : https://thingdust.com/
         
     | 
| 
       12302 
12802 
     | 
    
         
             
            // Submitted by Adrian Imboden <adi@thingdust.com>
         
     | 
| 
      
 12803 
     | 
    
         
            +
            thingdustdata.com
         
     | 
| 
       12303 
12804 
     | 
    
         
             
            cust.dev.thingdust.io
         
     | 
| 
       12304 
12805 
     | 
    
         
             
            cust.disrec.thingdust.io
         
     | 
| 
       12305 
12806 
     | 
    
         
             
            cust.prod.thingdust.io
         
     | 
| 
       12306 
12807 
     | 
    
         
             
            cust.testing.thingdust.io
         
     | 
| 
       12307 
12808 
     | 
    
         | 
| 
      
 12809 
     | 
    
         
            +
            // Tlon.io : https://tlon.io
         
     | 
| 
      
 12810 
     | 
    
         
            +
            // Submitted by Mark Staarink <mark@tlon.io>
         
     | 
| 
      
 12811 
     | 
    
         
            +
            arvo.network
         
     | 
| 
      
 12812 
     | 
    
         
            +
            azimuth.network
         
     | 
| 
      
 12813 
     | 
    
         
            +
             
     | 
| 
       12308 
12814 
     | 
    
         
             
            // TownNews.com : http://www.townnews.com
         
     | 
| 
       12309 
12815 
     | 
    
         
             
            // Submitted by Dustin Ward <dward@townnews.com>
         
     | 
| 
       12310 
12816 
     | 
    
         
             
            bloxcms.com
         
     | 
| 
         @@ -12332,7 +12838,7 @@ lima-city.rocks 
     | 
|
| 
       12332 
12838 
     | 
    
         
             
            webspace.rocks
         
     | 
| 
       12333 
12839 
     | 
    
         
             
            lima.zone
         
     | 
| 
       12334 
12840 
     | 
    
         | 
| 
       12335 
     | 
    
         
            -
            // TransIP :  
     | 
| 
      
 12841 
     | 
    
         
            +
            // TransIP : https://www.transip.nl
         
     | 
| 
       12336 
12842 
     | 
    
         
             
            // Submitted by Rory Breuk <rbreuk@transip.nl>
         
     | 
| 
       12337 
12843 
     | 
    
         
             
            *.transurl.be
         
     | 
| 
       12338 
12844 
     | 
    
         
             
            *.transurl.eu
         
     | 
| 
         @@ -12361,6 +12867,7 @@ synology-ds.de 
     | 
|
| 
       12361 
12867 
     | 
    
         
             
            // Uberspace : https://uberspace.de
         
     | 
| 
       12362 
12868 
     | 
    
         
             
            // Submitted by Moritz Werner <mwerner@jonaspasche.com>
         
     | 
| 
       12363 
12869 
     | 
    
         
             
            uber.space
         
     | 
| 
      
 12870 
     | 
    
         
            +
            *.uberspace.de
         
     | 
| 
       12364 
12871 
     | 
    
         | 
| 
       12365 
12872 
     | 
    
         
             
            // UDR Limited : http://www.udr.hk.com
         
     | 
| 
       12366 
12873 
     | 
    
         
             
            // Submitted by registry <hostmaster@udr.hk.com>
         
     | 
| 
         @@ -12369,6 +12876,11 @@ hk.org 
     | 
|
| 
       12369 
12876 
     | 
    
         
             
            ltd.hk
         
     | 
| 
       12370 
12877 
     | 
    
         
             
            inc.hk
         
     | 
| 
       12371 
12878 
     | 
    
         | 
| 
      
 12879 
     | 
    
         
            +
            // United Gameserver GmbH : https://united-gameserver.de
         
     | 
| 
      
 12880 
     | 
    
         
            +
            // Submitted by Stefan Schwarz <sysadm@united-gameserver.de>
         
     | 
| 
      
 12881 
     | 
    
         
            +
            virtualuser.de
         
     | 
| 
      
 12882 
     | 
    
         
            +
            virtual-user.de
         
     | 
| 
      
 12883 
     | 
    
         
            +
             
     | 
| 
       12372 
12884 
     | 
    
         
             
            // .US
         
     | 
| 
       12373 
12885 
     | 
    
         
             
            // Submitted by Ed Moore <Ed.Moore@lib.de.us>
         
     | 
| 
       12374 
12886 
     | 
    
         
             
            lib.de.us
         
     | 
| 
         @@ -12385,6 +12897,14 @@ router.management 
     | 
|
| 
       12385 
12897 
     | 
    
         
             
            // Submitted by Adnan RIHAN <hostmaster@v-info.info>
         
     | 
| 
       12386 
12898 
     | 
    
         
             
            v-info.info
         
     | 
| 
       12387 
12899 
     | 
    
         | 
| 
      
 12900 
     | 
    
         
            +
            // Voorloper.com: https://voorloper.com
         
     | 
| 
      
 12901 
     | 
    
         
            +
            // Submitted by Nathan van Bakel <info@voorloper.com>
         
     | 
| 
      
 12902 
     | 
    
         
            +
            voorloper.cloud
         
     | 
| 
      
 12903 
     | 
    
         
            +
             
     | 
| 
      
 12904 
     | 
    
         
            +
            // Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
         
     | 
| 
      
 12905 
     | 
    
         
            +
            // Submitted by Masayuki Note <masa@blade.wafflecell.com>
         
     | 
| 
      
 12906 
     | 
    
         
            +
            wafflecell.com
         
     | 
| 
      
 12907 
     | 
    
         
            +
             
     | 
| 
       12388 
12908 
     | 
    
         
             
            // WeDeploy by Liferay, Inc. : https://www.wedeploy.com
         
     | 
| 
       12389 
12909 
     | 
    
         
             
            // Submitted by Henrique Vicente <security@wedeploy.com>
         
     | 
| 
       12390 
12910 
     | 
    
         
             
            wedeploy.io
         
     | 
| 
         @@ -12399,6 +12919,16 @@ remotewd.com 
     | 
|
| 
       12399 
12919 
     | 
    
         
             
            // Submitted by Yuvi Panda <yuvipanda@wikimedia.org>
         
     | 
| 
       12400 
12920 
     | 
    
         
             
            wmflabs.org
         
     | 
| 
       12401 
12921 
     | 
    
         | 
| 
      
 12922 
     | 
    
         
            +
            // XenonCloud GbR: https://xenoncloud.net
         
     | 
| 
      
 12923 
     | 
    
         
            +
            // Submitted by Julian Uphoff <publicsuffixlist@xenoncloud.net>
         
     | 
| 
      
 12924 
     | 
    
         
            +
            half.host
         
     | 
| 
      
 12925 
     | 
    
         
            +
             
     | 
| 
      
 12926 
     | 
    
         
            +
            // XnBay Technology : http://www.xnbay.com/
         
     | 
| 
      
 12927 
     | 
    
         
            +
            // Submitted by XnBay Developer <developer.xncloud@gmail.com>
         
     | 
| 
      
 12928 
     | 
    
         
            +
            xnbay.com
         
     | 
| 
      
 12929 
     | 
    
         
            +
            u2.xnbay.com
         
     | 
| 
      
 12930 
     | 
    
         
            +
            u2-local.xnbay.com
         
     | 
| 
      
 12931 
     | 
    
         
            +
             
     | 
| 
       12402 
12932 
     | 
    
         
             
            // XS4ALL Internet bv : https://www.xs4all.nl/
         
     | 
| 
       12403 
12933 
     | 
    
         
             
            // Submitted by Daniel Mostertman <unixbeheer+publicsuffix@xs4all.net>
         
     | 
| 
       12404 
12934 
     | 
    
         
             
            cistron.nl
         
     | 
| 
         @@ -12437,4 +12967,19 @@ za.org 
     | 
|
| 
       12437 
12967 
     | 
    
         
             
            // Submitted by Olli Vanhoja <olli@zeit.co>
         
     | 
| 
       12438 
12968 
     | 
    
         
             
            now.sh
         
     | 
| 
       12439 
12969 
     | 
    
         | 
| 
      
 12970 
     | 
    
         
            +
            // Zine EOOD : https://zine.bg/
         
     | 
| 
      
 12971 
     | 
    
         
            +
            // Submitted by Martin Angelov <martin@zine.bg>
         
     | 
| 
      
 12972 
     | 
    
         
            +
            bss.design
         
     | 
| 
      
 12973 
     | 
    
         
            +
             
     | 
| 
      
 12974 
     | 
    
         
            +
            // Zitcom A/S : https://www.zitcom.dk
         
     | 
| 
      
 12975 
     | 
    
         
            +
            // Submitted by Emil Stahl <esp@zitcom.dk>
         
     | 
| 
      
 12976 
     | 
    
         
            +
            basicserver.io
         
     | 
| 
      
 12977 
     | 
    
         
            +
            virtualserver.io
         
     | 
| 
      
 12978 
     | 
    
         
            +
            site.builder.nu
         
     | 
| 
      
 12979 
     | 
    
         
            +
            enterprisecloud.nu
         
     | 
| 
      
 12980 
     | 
    
         
            +
             
     | 
| 
      
 12981 
     | 
    
         
            +
            // Zone.id : https://zone.id/
         
     | 
| 
      
 12982 
     | 
    
         
            +
            // Submitted by Su Hendro <admin@zone.id>
         
     | 
| 
      
 12983 
     | 
    
         
            +
            zone.id
         
     | 
| 
      
 12984 
     | 
    
         
            +
             
     | 
| 
       12440 
12985 
     | 
    
         
             
            // ===END PRIVATE DOMAINS===
         
     |