-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmod_tld.php
1551 lines (1545 loc) · 86.1 KB
/
mod_tld.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// TODO: Figure out how these UTF right-to-left and left-to-right entries work
// (Too much work for too little gain right now..)
function tld($args) {
if(strpos($args,".")!==0) $args = ".".$args;
if(strpos($args,".xn--")===0) $args = idn_to_utf8($args);
$tlds = array(
".aaa" => "(generic) American Automobile Association, Inc.",
".aarp" => "(generic) AARP",
".abarth" => "(generic) Fiat Chrysler Automobiles N.V.",
".abb" => "(generic) ABB Ltd",
".abbott" => "(generic) Abbott Laboratories, Inc.",
".abbvie" => "(generic) AbbVie Inc.",
".abc" => "(generic) Disney Enterprises, Inc.",
".able" => "(generic) Able Inc.",
".abogado" => "(generic) Top Level Domain Holdings Limited",
".abudhabi" => "(generic) Abu Dhabi Systems and Information Centre",
".ac" => "(country) Network Information Center (AC Domain Registry) c/o Cable and Wireless (Ascension Island)",
".academy" => "(generic) Half Oaks, LLC",
".accenture" => "(generic) Accenture plc",
".accountant" => "(generic) dot Accountant Limited",
".accountants" => "(generic) Knob Town, LLC",
".aco" => "(generic) ACO Severin Ahlmann GmbH & Co. KG",
".active" => "(generic) The Active Network, Inc",
".actor" => "(generic) United TLD Holdco Ltd.",
".ad" => "(country) Andorra Telecom",
".adac" => "(generic) Allgemeiner Deutscher Automobil-Club e.V. (ADAC)",
".ads" => "(generic) Charleston Road Registry Inc.",
".adult" => "(generic) ICM Registry AD LLC",
".ae" => "(country) Telecommunication Regulatory Authority (TRA)",
".aeg" => "(generic) Aktiebolaget Electrolux",
".aero" => "(sponsored) Societe Internationale de Telecommunications Aeronautique (SITA INC USA)",
".aetna" => "(generic) Aetna Life Insurance Company",
".af" => "(country) Ministry of Communications and IT",
".afamilycompany" => "(generic) Johnson Shareholdings, Inc.",
".afl" => "(generic) Australian Football League",
".ag" => "(country) UHSA School of Medicine",
".agakhan" => "(generic) Fondation Aga Khan (Aga Khan Foundation)",
".agency" => "(generic) Steel Falls, LLC",
".ai" => "(country) Government of Anguilla",
".aig" => "(generic) American International Group, Inc.",
".aigo" => "(generic) aigo Digital Technology Co,Ltd.",
".airbus" => "(generic) Airbus S.A.S.",
".airforce" => "(generic) United TLD Holdco Ltd.",
".airtel" => "(generic) Bharti Airtel Limited",
".akdn" => "(generic) Fondation Aga Khan (Aga Khan Foundation)",
".al" => "(country) Electronic and Postal Communications Authority - AKEP",
".alfaromeo" => "(generic) Fiat Chrysler Automobiles N.V.",
".alibaba" => "(generic) Alibaba Group Holding Limited",
".alipay" => "(generic) Alibaba Group Holding Limited",
".allfinanz" => "(generic) Allfinanz Deutsche Vermögensberatung Aktiengesellschaft",
".allstate" => "(generic) Allstate Fire and Casualty Insurance Company",
".ally" => "(generic) Ally Financial Inc.",
".alsace" => "(generic) REGION D ALSACE",
".alstom" => "(generic) ALSTOM",
".am" => "(country) \"Internet Society\" Non-governmental Organization",
".americanexpress" => "(generic) American Express Travel Related Services Company, Inc.",
".americanfamily" => "(generic) AmFam, Inc.",
".amex" => "(generic) American Express Travel Related Services Company, Inc.",
".amfam" => "(generic) AmFam, Inc.",
".amica" => "(generic) Amica Mutual Insurance Company",
".amsterdam" => "(generic) Gemeente Amsterdam",
".an" => "(country) Retired",
".analytics" => "(generic) Campus IP LLC",
".android" => "(generic) Charleston Road Registry Inc.",
".anquan" => "(generic) QIHOO 360 TECHNOLOGY CO. LTD.",
".anz" => "(generic) Australia and New Zealand Banking Group Limited",
".ao" => "(country) Faculdade de Engenharia da Universidade Agostinho Neto",
".apartments" => "(generic) June Maple, LLC",
".app" => "(generic) Charleston Road Registry Inc.",
".apple" => "(generic) Apple Inc.",
".aq" => "(country) Antarctica Network Information Centre Limited",
".aquarelle" => "(generic) Aquarelle.com",
".ar" => "(country) Presidencia de la Nación – Secretaría Legal y Técnica",
".aramco" => "(generic) Aramco Services Company",
".archi" => "(generic) STARTING DOT LIMITED",
".army" => "(generic) United TLD Holdco Ltd.",
".arpa" => "(infrastructure) Internet Architecture Board (IAB)",
".art" => "(generic) UK Creative Ideas Limited",
".arte" => "(generic) Association Relative à la Télévision Européenne G.E.I.E.",
".as" => "(country) AS Domain Registry",
".asda" => "(generic) Wal-Mart Stores, Inc.",
".asia" => "(sponsored) DotAsia Organisation Ltd.",
".associates" => "(generic) Baxter Hill, LLC",
".at" => "(country) nic.at GmbH",
".athleta" => "(generic) The Gap, Inc.",
".attorney" => "(generic) United TLD Holdco, Ltd",
".au" => "(country) .au Domain Administration (auDA)",
".auction" => "(generic) United TLD HoldCo, Ltd.",
".audi" => "(generic) AUDI Aktiengesellschaft",
".audible" => "(generic) Amazon Registry Services, Inc.",
".audio" => "(generic) Uniregistry, Corp.",
".auspost" => "(generic) Australian Postal Corporation",
".author" => "(generic) Amazon Registry Services, Inc.",
".auto" => "(generic) Cars Registry Limited",
".autos" => "(generic) DERAutos, LLC",
".avianca" => "(generic) Aerovias del Continente Americano S.A. Avianca",
".aw" => "(country) SETAR",
".aws" => "(generic) Amazon Registry Services, Inc.",
".ax" => "(country) Ålands landskapsregering",
".axa" => "(generic) AXA SA",
".az" => "(country) IntraNS",
".azure" => "(generic) Microsoft Corporation",
".ba" => "(country) Universtiy Telinformatic Centre (UTIC)",
".baby" => "(generic) Johnson & Johnson Services, Inc.",
".baidu" => "(generic) Baidu, Inc.",
".banamex" => "(generic) Citigroup Inc.",
".bananarepublic" => "(generic) The Gap, Inc.",
".band" => "(generic) United TLD Holdco, Ltd",
".bank" => "(generic) fTLD Registry Services, LLC",
".bar" => "(generic) Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable",
".barcelona" => "(generic) Municipi de Barcelona",
".barclaycard" => "(generic) Barclays Bank PLC",
".barclays" => "(generic) Barclays Bank PLC",
".barefoot" => "(generic) Gallo Vineyards, Inc.",
".bargains" => "(generic) Half Hallow, LLC",
".bauhaus" => "(generic) Werkhaus GmbH",
".bayern" => "(generic) Bayern Connect GmbH",
".bb" => "(country) Government of Barbados Ministry of Economic Affairs and Development Telecommunications Unit",
".bbc" => "(generic) British Broadcasting Corporation",
".bbt" => "(generic) BB&T Corporation",
".bbva" => "(generic) BANCO BILBAO VIZCAYA ARGENTARIA, S.A.",
".bcg" => "(generic) The Boston Consulting Group, Inc.",
".bcn" => "(generic) Municipi de Barcelona",
".bd" => "(country) Ministry of Post & Telecommunications Bangladesh Secretariat",
".be" => "(country) DNS Belgium vzw/asbl",
".beats" => "(generic) Beats Electronics, LLC",
".beauty" => "(generic) L'Oréal",
".beer" => "(generic) Top Level Domain Holdings Limited",
".bentley" => "(generic) Bentley Motors Limited",
".berlin" => "(generic) dotBERLIN GmbH & Co. KG",
".best" => "(generic) BestTLD Pty Ltd",
".bestbuy" => "(generic) BBY Solutions, Inc.",
".bet" => "(generic) Afilias plc",
".bf" => "(country) ARCE-AutoritÈ de RÈgulation des Communications Electroniques",
".bg" => "(country) Register.BG",
".bh" => "(country) Telecommunications Regulatory Authority (TRA)",
".bharti" => "(generic) Bharti Enterprises (Holding) Private Limited",
".bi" => "(country) Centre National de l'Informatique",
".bible" => "(generic) American Bible Society",
".bid" => "(generic) dot Bid Limited",
".bike" => "(generic) Grand Hollow, LLC",
".bing" => "(generic) Microsoft Corporation",
".bingo" => "(generic) Sand Cedar, LLC",
".bio" => "(generic) STARTING DOT LIMITED",
".biz" => "(generic-restricted) Neustar, Inc.",
".bj" => "(country) Benin Telecoms S.A.",
".bl" => "(country) Not assigned",
".black" => "(generic) Afilias plc",
".blackfriday" => "(generic) Uniregistry, Corp.",
".blanco" => "(generic) BLANCO GmbH + Co KG",
".blockbuster" => "(generic) Dish DBS Corporation",
".blog" => "(generic) Knock Knock WHOIS There, LLC",
".bloomberg" => "(generic) Bloomberg IP Holdings LLC",
".blue" => "(generic) Afilias plc",
".bm" => "(country) Registry General Department, Ministry of Home Affairs",
".bms" => "(generic) Bristol-Myers Squibb Company",
".bmw" => "(generic) Bayerische Motoren Werke Aktiengesellschaft",
".bn" => "(country) Brunei Darussalam Network Information Centre Sdn Bhd (BNNIC)",
".bnl" => "(generic) Banca Nazionale del Lavoro",
".bnpparibas" => "(generic) BNP Paribas",
".bo" => "(country) Agencia para el Desarrollo de la Información de la Sociedad en Bolivia",
".boats" => "(generic) DERBoats, LLC",
".boehringer" => "(generic) Boehringer Ingelheim International GmbH",
".bofa" => "(generic) NMS Services, Inc.",
".bom" => "(generic) Núcleo de Informação e Coordenação do Ponto BR - NIC.br",
".bond" => "(generic) Bond University Limited",
".boo" => "(generic) Charleston Road Registry Inc.",
".book" => "(generic) Amazon Registry Services, Inc.",
".booking" => "(generic) Booking.com B.V.",
".boots" => "(generic) THE BOOTS COMPANY PLC",
".bosch" => "(generic) Robert Bosch GMBH",
".bostik" => "(generic) Bostik SA",
".bot" => "(generic) Amazon Registry Services, Inc.",
".boutique" => "(generic) Over Galley, LLC",
".bq" => "(country) Not assigned",
".br" => "(country) Comite Gestor da Internet no Brasil",
".bradesco" => "(generic) Banco Bradesco S.A.",
".bridgestone" => "(generic) Bridgestone Corporation",
".broadway" => "(generic) Celebrate Broadway, Inc.",
".broker" => "(generic) DOTBROKER REGISTRY LTD",
".brother" => "(generic) Brother Industries, Ltd.",
".brussels" => "(generic) DNS.be vzw",
".bs" => "(country) The College of the Bahamas",
".bt" => "(country) Ministry of Information and Communications",
".budapest" => "(generic) Top Level Domain Holdings Limited",
".bugatti" => "(generic) Bugatti International SA",
".build" => "(generic) Plan Bee LLC",
".builders" => "(generic) Atomic Madison, LLC",
".business" => "(generic) Spring Cross, LLC",
".buy" => "(generic) Amazon Registry Services, INC",
".buzz" => "(generic) DOTSTRATEGY CO.",
".bv" => "(country) UNINETT Norid A/S",
".bw" => "(country) Botswana Communications Regulatory Authority (BOCRA)",
".by" => "(country) Reliable Software, Ltd.",
".bz" => "(country) University of Belize",
".bzh" => "(generic) Association www.bzh",
".ca" => "(country) Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)",
".cab" => "(generic) Half Sunset, LLC",
".cafe" => "(generic) Pioneer Canyon, LLC",
".cal" => "(generic) Charleston Road Registry Inc.",
".call" => "(generic) Amazon Registry Services, Inc.",
".calvinklein" => "(generic) PVH gTLD Holdings LLC",
".cam" => "(generic) AC Webconnecting Holding B.V.",
".camera" => "(generic) Atomic Maple, LLC",
".camp" => "(generic) Delta Dynamite, LLC",
".cancerresearch" => "(generic) Australian Cancer Research Foundation",
".canon" => "(generic) Canon Inc.",
".capetown" => "(generic) ZA Central Registry NPC trading as ZA Central Registry",
".capital" => "(generic) Delta Mill, LLC",
".capitalone" => "(generic) Capital One Financial Corporation",
".car" => "(generic) Cars Registry Limited",
".caravan" => "(generic) Caravan International, Inc.",
".cards" => "(generic) Foggy Hollow, LLC",
".care" => "(generic) Goose Cross, LLC",
".career" => "(generic) dotCareer LLC",
".careers" => "(generic) Wild Corner, LLC",
".cars" => "(generic) Cars Registry Limited",
".cartier" => "(generic) Richemont DNS Inc.",
".casa" => "(generic) Top Level Domain Holdings Limited",
".cash" => "(generic) Delta Lake, LLC",
".casino" => "(generic) Binky Sky, LLC",
".cat" => "(sponsored) Fundacio puntCAT",
".catering" => "(generic) New Falls. LLC",
".cba" => "(generic) COMMONWEALTH BANK OF AUSTRALIA",
".cbn" => "(generic) The Christian Broadcasting Network, Inc.",
".cbre" => "(generic) CBRE, Inc.",
".cbs" => "(generic) CBS Domains Inc.",
".cc" => "(country) eNIC Cocos (Keeling) Islands Pty. Ltd. d/b/a Island Internet Services",
".cd" => "(country) Office Congolais des Postes et Télécommunications - OCPT",
".ceb" => "(generic) The Corporate Executive Board Company",
".center" => "(generic) Tin Mill, LLC",
".ceo" => "(generic) CEOTLD Pty Ltd",
".cern" => "(generic) European Organization for Nuclear Research (\"CERN\")",
".cf" => "(country) Societe Centrafricaine de Telecommunications (SOCATEL)",
".cfa" => "(generic) CFA Institute",
".cfd" => "(generic) DOTCFD REGISTRY LTD",
".cg" => "(country) ONPT Congo and Interpoint Switzerland",
".ch" => "(country) SWITCH The Swiss Education & Research Network",
".chanel" => "(generic) Chanel International B.V.",
".channel" => "(generic) Charleston Road Registry Inc.",
".chase" => "(generic) JPMorgan Chase Bank, National Association",
".chat" => "(generic) Sand Fields, LLC",
".cheap" => "(generic) Sand Cover, LLC",
".chintai" => "(generic) CHINTAI Corporation",
".chloe" => "(generic) Richemont DNS Inc.",
".christmas" => "(generic) Uniregistry, Corp.",
".chrome" => "(generic) Charleston Road Registry Inc.",
".chrysler" => "(generic) FCA US LLC.",
".church" => "(generic) Holly Fileds, LLC",
".ci" => "(country) INP-HB Institut National Polytechnique Felix Houphouet Boigny",
".cipriani" => "(generic) Hotel Cipriani Srl",
".circle" => "(generic) Amazon Registry Services, Inc.",
".cisco" => "(generic) Cisco Technology, Inc.",
".citadel" => "(generic) Citadel Domain LLC",
".citi" => "(generic) Citigroup Inc.",
".citic" => "(generic) CITIC Group Corporation",
".city" => "(generic) Snow Sky, LLC",
".cityeats" => "(generic) Lifestyle Domain Holdings, Inc.",
".ck" => "(country) Telecom Cook Islands Ltd.",
".cl" => "(country) NIC Chile (University of Chile)",
".claims" => "(generic) Black Corner, LLC",
".cleaning" => "(generic) Fox Shadow, LLC",
".click" => "(generic) Uniregistry, Corp.",
".clinic" => "(generic) Goose Park, LLC",
".clinique" => "(generic) The Estée Lauder Companies Inc.",
".clothing" => "(generic) Steel Lake, LLC",
".cloud" => "(generic) ARUBA PEC S.p.A.",
".club" => "(generic) .CLUB DOMAINS, LLC",
".clubmed" => "(generic) Club Méditerranée S.A.",
".cm" => "(country) Cameroon Telecommunications (CAMTEL)",
".cn" => "(country) China Internet Network Information Center (CNNIC)",
".co" => "(country) .CO Internet S.A.S.",
".coach" => "(generic) Koko Island, LLC",
".codes" => "(generic) Puff Willow, LLC",
".coffee" => "(generic) Trixy Cover, LLC",
".college" => "(generic) XYZ.COM LLC",
".cologne" => "(generic) NetCologne Gesellschaft für Telekommunikation mbH",
".com" => "(generic) VeriSign Global Registry Services",
".comcast" => "(generic) Comcast IP Holdings I, LLC",
".commbank" => "(generic) COMMONWEALTH BANK OF AUSTRALIA",
".community" => "(generic) Fox Orchard, LLC",
".company" => "(generic) Silver Avenue, LLC",
".compare" => "(generic) iSelect Ltd",
".computer" => "(generic) Pine Mill, LLC",
".comsec" => "(generic) VeriSign, Inc.",
".condos" => "(generic) Pine House, LLC",
".construction" => "(generic) Fox Dynamite, LLC",
".consulting" => "(generic) United TLD Holdco, LTD.",
".contact" => "(generic) Top Level Spectrum, Inc.",
".contractors" => "(generic) Magic Woods, LLC",
".cooking" => "(generic) Top Level Domain Holdings Limited",
".cookingchannel" => "(generic) Lifestyle Domain Holdings, Inc.",
".cool" => "(generic) Koko Lake, LLC",
".coop" => "(sponsored) DotCooperation LLC",
".corsica" => "(generic) Collectivité Territoriale de Corse",
".country" => "(generic) Top Level Domain Holdings Limited",
".coupon" => "(generic) Amazon Registry Services, Inc.",
".coupons" => "(generic) Black Island, LLC",
".courses" => "(generic) OPEN UNIVERSITIES AUSTRALIA PTY LTD",
".cr" => "(country) National Academy of Sciences Academia Nacional de Ciencias",
".credit" => "(generic) Snow Shadow, LLC",
".creditcard" => "(generic) Binky Frostbite, LLC",
".creditunion" => "(generic) CUNA Performance Resources, LLC",
".cricket" => "(generic) dot Cricket Limited",
".crown" => "(generic) Crown Equipment Corporation",
".crs" => "(generic) Federated Co-operatives Limited",
".cruises" => "(generic) Spring Way, LLC",
".csc" => "(generic) Alliance-One Services, Inc.",
".cu" => "(country) CENIAInternet Industria y San Jose Capitolio Nacional",
".cuisinella" => "(generic) SALM S.A.S.",
".cv" => "(country) Agência Nacional das Comunicações (ANAC)",
".cw" => "(country) University of Curacao",
".cx" => "(country) Christmas Island Domain Administration Limited",
".cy" => "(country) University of Cyprus",
".cymru" => "(generic) Nominet UK",
".cyou" => "(generic) Beijing Gamease Age Digital Technology Co., Ltd.",
".cz" => "(country) CZ.NIC, z.s.p.o",
".dabur" => "(generic) Dabur India Limited",
".dad" => "(generic) Charleston Road Registry Inc.",
".dance" => "(generic) United TLD Holdco Ltd.",
".date" => "(generic) dot Date Limited",
".dating" => "(generic) Pine Fest, LLC",
".datsun" => "(generic) NISSAN MOTOR CO., LTD.",
".day" => "(generic) Charleston Road Registry Inc.",
".dclk" => "(generic) Charleston Road Registry Inc.",
".dds" => "(generic) Minds + Machines Group Limited",
".de" => "(country) DENIC eG",
".deal" => "(generic) Amazon Registry Services, Inc.",
".dealer" => "(generic) Dealer Dot Com, Inc.",
".deals" => "(generic) Sand Sunset, LLC",
".degree" => "(generic) United TLD Holdco, Ltd",
".delivery" => "(generic) Steel Station, LLC",
".dell" => "(generic) Dell Inc.",
".deloitte" => "(generic) Deloitte Touche Tohmatsu",
".delta" => "(generic) Delta Air Lines, Inc.",
".democrat" => "(generic) United TLD Holdco Ltd.",
".dental" => "(generic) Tin Birch, LLC",
".dentist" => "(generic) United TLD Holdco, Ltd",
".desi" => "(generic) Desi Networks LLC",
".design" => "(generic) Top Level Design, LLC",
".dev" => "(generic) Charleston Road Registry Inc.",
".dhl" => "(generic) Deutsche Post AG",
".diamonds" => "(generic) John Edge, LLC",
".diet" => "(generic) Uniregistry, Corp.",
".digital" => "(generic) Dash Park, LLC",
".direct" => "(generic) Half Trail, LLC",
".directory" => "(generic) Extra Madison, LLC",
".discount" => "(generic) Holly Hill, LLC",
".discover" => "(generic) Discover Financial Services",
".dish" => "(generic) Dish DBS Corporation",
".diy" => "(generic) Lifestyle Domain Holdings, Inc.",
".dj" => "(country) Djibouti Telecom S.A",
".dk" => "(country) Dansk Internet Forum",
".dm" => "(country) DotDM Corporation",
".dnp" => "(generic) Dai Nippon Printing Co., Ltd.",
".do" => "(country) Pontificia Universidad Catolica Madre y Maestra Recinto Santo Tomas de Aquino",
".docs" => "(generic) Charleston Road Registry Inc.",
".doctor" => "(generic) Brice Trail, LLC",
".dodge" => "(generic) FCA US LLC.",
".dog" => "(generic) Koko Mill, LLC",
".doha" => "(generic) Communications Regulatory Authority (CRA)",
".domains" => "(generic) Sugar Cross, LLC",
".doosan" => "(generic) Retired",
".dot" => "(generic) Dish DBS Corporation",
".download" => "(generic) dot Support Limited",
".drive" => "(generic) Charleston Road Registry Inc.",
".dtv" => "(generic) Dish DBS Corporation",
".dubai" => "(generic) Dubai Smart Government Department",
".duck" => "(generic) Johnson Shareholdings, Inc.",
".dunlop" => "(generic) The Goodyear Tire & Rubber Company",
".duns" => "(generic) The Dun & Bradstreet Corporation",
".dupont" => "(generic) E. I. du Pont de Nemours and Company",
".durban" => "(generic) ZA Central Registry NPC trading as ZA Central Registry",
".dvag" => "(generic) Deutsche Vermögensberatung Aktiengesellschaft DVAG",
".dvr" => "(generic) Hughes Satellite Systems Corporation",
".dz" => "(country) CERIST",
".earth" => "(generic) Interlink Co., Ltd.",
".eat" => "(generic) Charleston Road Registry Inc.",
".ec" => "(country) NIC.EC (NICEC) S.A.",
".eco" => "(generic) Big Room Inc.",
".edeka" => "(generic) EDEKA Verband kaufmännischer Genossenschaften e.V.",
".edu" => "(sponsored) EDUCAUSE",
".education" => "(generic) Brice Way, LLC",
".ee" => "(country) Eesti Interneti Sihtasutus (EIS)",
".eg" => "(country) Egyptian Universities Network (EUN) Supreme Council of Universities",
".eh" => "(country) Not assigned",
".email" => "(generic) Spring Madison, LLC",
".emerck" => "(generic) Merck KGaA",
".energy" => "(generic) Binky Birch, LLC",
".engineer" => "(generic) United TLD Holdco Ltd.",
".engineering" => "(generic) Romeo Canyon",
".enterprises" => "(generic) Snow Oaks, LLC",
".epost" => "(generic) Deutsche Post AG",
".epson" => "(generic) Seiko Epson Corporation",
".equipment" => "(generic) Corn Station, LLC",
".er" => "(country) Eritrea Telecommunication Services Corporation (EriTel)",
".ericsson" => "(generic) Telefonaktiebolaget L M Ericsson",
".erni" => "(generic) ERNI Group Holding AG",
".es" => "(country) Red.es",
".esq" => "(generic) Charleston Road Registry Inc.",
".estate" => "(generic) Trixy Park, LLC",
".esurance" => "(generic) Esurance Insurance Company",
".et" => "(country) Ethio telecom",
".eu" => "(country) EURid vzw/asbl",
".eurovision" => "(generic) European Broadcasting Union (EBU)",
".eus" => "(generic) Puntueus Fundazioa",
".events" => "(generic) Pioneer Maple, LLC",
".everbank" => "(generic) EverBank",
".exchange" => "(generic) Spring Falls, LLC",
".expert" => "(generic) Magic Pass, LLC",
".exposed" => "(generic) Victor Beach, LLC",
".express" => "(generic) Sea Sunset, LLC",
".extraspace" => "(generic) Extra Space Storage LLC",
".fage" => "(generic) Fage International S.A.",
".fail" => "(generic) Atomic Pipe, LLC",
".fairwinds" => "(generic) FairWinds Partners, LLC",
".faith" => "(generic) dot Faith Limited",
".family" => "(generic) United TLD Holdco Ltd.",
".fan" => "(generic) Asiamix Digital Ltd",
".fans" => "(generic) Asiamix Digital Limited",
".farm" => "(generic) Just Maple, LLC",
".farmers" => "(generic) Farmers Insurance Exchange",
".fashion" => "(generic) Top Level Domain Holdings Limited",
".fast" => "(generic) Amazon Registry Services, Inc.",
".fedex" => "(generic) Federal Express Corporation",
".feedback" => "(generic) Top Level Spectrum, Inc.",
".ferrari" => "(generic) Fiat Chrysler Automobiles N.V.",
".ferrero" => "(generic) Ferrero Trading Lux S.A.",
".fi" => "(country) Finnish Communications Regulatory Authority",
".fiat" => "(generic) Fiat Chrysler Automobiles N.V.",
".fidelity" => "(generic) Fidelity Brokerage Services LLC",
".fido" => "(generic) Rogers Communications Canada Inc.",
".film" => "(generic) Motion Picture Domain Registry Pty Ltd",
".final" => "(generic) Núcleo de Informação e Coordenação do Ponto BR - NIC.br",
".finance" => "(generic) Cotton Cypress, LLC",
".financial" => "(generic) Just Cover, LLC",
".fire" => "(generic) Amazon Registry Services, Inc.",
".firestone" => "(generic) Bridgestone Licensing Services, Inc.",
".firmdale" => "(generic) Firmdale Holdings Limited",
".fish" => "(generic) Fox Woods, LLC",
".fishing" => "(generic) Top Level Domain Holdings Limited",
".fit" => "(generic) Minds + Machines Group Limited",
".fitness" => "(generic) Brice Orchard, LLC",
".fj" => "(country) The University of the South Pacific IT Services",
".fk" => "(country) Falkland Islands Government",
".flickr" => "(generic) Yahoo! Domain Services Inc.",
".flights" => "(generic) Fox Station, LLC",
".flir" => "(generic) FLIR Systems, Inc.",
".florist" => "(generic) Half Cypress, LLC",
".flowers" => "(generic) Uniregistry, Corp.",
".flsmidth" => "(generic) Retired",
".fly" => "(generic) Charleston Road Registry Inc.",
".fm" => "(country) FSM Telecommunications Corporation",
".fo" => "(country) FO Council",
".foo" => "(generic) Charleston Road Registry Inc.",
".foodnetwork" => "(generic) Lifestyle Domain Holdings, Inc.",
".football" => "(generic) Foggy Farms, LLC",
".ford" => "(generic) Ford Motor Company",
".forex" => "(generic) DOTFOREX REGISTRY LTD",
".forsale" => "(generic) United TLD Holdco, LLC",
".forum" => "(generic) Fegistry, LLC",
".foundation" => "(generic) John Dale, LLC",
".fox" => "(generic) FOX Registry, LLC",
".fr" => "(country) Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)",
".fresenius" => "(generic) Fresenius Immobilien-Verwaltungs-GmbH",
".frl" => "(generic) FRLregistry B.V.",
".frogans" => "(generic) OP3FT",
".frontdoor" => "(generic) Lifestyle Domain Holdings, Inc.",
".frontier" => "(generic) Frontier Communications Corporation",
".ftr" => "(generic) Frontier Communications Corporation",
".fujitsu" => "(generic) Fujitsu Limited",
".fujixerox" => "(generic) Xerox DNHC LLC",
".fund" => "(generic) John Castle, LLC",
".furniture" => "(generic) Lone Fields, LLC",
".futbol" => "(generic) United TLD Holdco, Ltd.",
".fyi" => "(generic) Silver Tigers, LLC",
".ga" => "(country) Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)",
".gal" => "(generic) Asociación puntoGAL",
".gallery" => "(generic) Sugar House, LLC",
".gallo" => "(generic) Gallo Vineyards, Inc.",
".gallup" => "(generic) Gallup, Inc.",
".game" => "(generic) Uniregistry, Corp.",
".games" => "(generic) United TLD Holdco Ltd.",
".gap" => "(generic) The Gap, Inc.",
".garden" => "(generic) Top Level Domain Holdings Limited",
".gb" => "(country) Reserved Domain - IANA",
".gbiz" => "(generic) Charleston Road Registry Inc.",
".gd" => "(country) The National Telecommunications Regulatory Commission (NTRC)",
".gdn" => "(generic) Joint Stock Company \"Navigation-information systems\"",
".ge" => "(country) Caucasus Online",
".gea" => "(generic) GEA Group Aktiengesellschaft",
".gent" => "(generic) Combell nv",
".genting" => "(generic) Resorts World Inc. Pte. Ltd.",
".george" => "(generic) Wal-Mart Stores, Inc.",
".gf" => "(country) Net Plus",
".gg" => "(country) Island Networks Ltd.",
".ggee" => "(generic) GMO Internet, Inc.",
".gh" => "(country) Network Computer Systems Limited",
".gi" => "(country) Sapphire Networks",
".gift" => "(generic) Uniregistry, Corp.",
".gifts" => "(generic) Goose Sky, LLC",
".gives" => "(generic) United TLD Holdco Ltd.",
".giving" => "(generic) Giving Limited",
".gl" => "(country) TELE Greenland A/S",
".glade" => "(generic) Johnson Shareholdings, Inc.",
".glass" => "(generic) Black Cover, LLC",
".gle" => "(generic) Charleston Road Registry Inc.",
".global" => "(generic) Dot Global Domain Registry Limited",
".globo" => "(generic) Globo Comunicação e Participações S.A",
".gm" => "(country) GM-NIC",
".gmail" => "(generic) Charleston Road Registry Inc.",
".gmbh" => "(generic) Extra Dynamite, LLC",
".gmo" => "(generic) GMO Internet, Inc.",
".gmx" => "(generic) 1&1 Mail & Media GmbH",
".gn" => "(country) Centre National des Sciences Halieutiques de Boussoura",
".godaddy" => "(generic) Go Daddy East, LLC",
".gold" => "(generic) June Edge, LLC",
".goldpoint" => "(generic) YODOBASHI CAMERA CO.,LTD.",
".golf" => "(generic) Lone Falls, LLC",
".goo" => "(generic) NTT Resonant Inc.",
".goodhands" => "(generic) Allstate Fire and Casualty Insurance Company",
".goodyear" => "(generic) The Goodyear Tire & Rubber Company",
".goog" => "(generic) Charleston Road Registry Inc.",
".google" => "(generic) Charleston Road Registry Inc.",
".gop" => "(generic) Republican State Leadership Committee, Inc.",
".got" => "(generic) Amazon Registry Services, Inc.",
".gov" => "(sponsored) General Services Administration Attn: QTDC, 2E08 (.gov Domain Registration)",
".gp" => "(country) Networking Technologies Group",
".gq" => "(country) GETESA",
".gr" => "(country) ICS-FORTH GR",
".grainger" => "(generic) Grainger Registry Services, LLC",
".graphics" => "(generic) Over Madison, LLC",
".gratis" => "(generic) Pioneer Tigers, LLC",
".green" => "(generic) DotGreen Registry Limited",
".gripe" => "(generic) Corn Sunset, LLC",
".group" => "(generic) Romeo Town, LLC",
".gs" => "(country) Government of South Georgia and South Sandwich Islands (GSGSSI)",
".gt" => "(country) Universidad del Valle de Guatemala",
".gu" => "(country) University of Guam Computer Center",
".guardian" => "(generic) The Guardian Life Insurance Company of America",
".gucci" => "(generic) Guccio Gucci S.p.a.",
".guge" => "(generic) Charleston Road Registry Inc.",
".guide" => "(generic) Snow Moon, LLC",
".guitars" => "(generic) Uniregistry, Corp.",
".guru" => "(generic) Pioneer Cypress, LLC",
".gw" => "(country) Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau",
".gy" => "(country) University of Guyana",
".hamburg" => "(generic) Hamburg Top-Level-Domain GmbH",
".hangout" => "(generic) Charleston Road Registry Inc.",
".haus" => "(generic) United TLD Holdco, LTD.",
".hbo" => "(generic) HBO Registry Services, Inc.",
".hdfc" => "(generic) HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED",
".hdfcbank" => "(generic) HDFC Bank Limited",
".health" => "(generic) DotHealth, LLC",
".healthcare" => "(generic) Silver Glen, LLC",
".help" => "(generic) Uniregistry, Corp.",
".helsinki" => "(generic) City of Helsinki",
".here" => "(generic) Charleston Road Registry Inc.",
".hermes" => "(generic) Hermes International",
".hgtv" => "(generic) Lifestyle Domain Holdings, Inc.",
".hiphop" => "(generic) Uniregistry, Corp.",
".hisamitsu" => "(generic) Hisamitsu Pharmaceutical Co.,Inc.",
".hitachi" => "(generic) Hitachi, Ltd.",
".hiv" => "(generic) Uniregistry, Corp.",
".hk" => "(country) Hong Kong Internet Registration Corporation Ltd.",
".hkt" => "(generic) PCCW-HKT DataCom Services Limited",
".hm" => "(country) HM Domain Registry",
".hn" => "(country) Red de Desarrollo Sostenible Honduras",
".hockey" => "(generic) Half Willow, LLC",
".holdings" => "(generic) John Madison, LLC",
".holiday" => "(generic) Goose Woods, LLC",
".homedepot" => "(generic) Homer TLC, Inc.",
".homegoods" => "(generic) The TJX Companies, Inc.",
".homes" => "(generic) DERHomes, LLC",
".homesense" => "(generic) The TJX Companies, Inc.",
".honda" => "(generic) Honda Motor Co., Ltd.",
".honeywell" => "(generic) Honeywell GTLD LLC",
".horse" => "(generic) Top Level Domain Holdings Limited",
".host" => "(generic) DotHost Inc.",
".hosting" => "(generic) Uniregistry, Corp.",
".hot" => "(generic) Amazon Registry Services, Inc.",
".hoteles" => "(generic) Travel Reservations SRL",
".hotmail" => "(generic) Microsoft Corporation",
".house" => "(generic) Sugar Park, LLC",
".how" => "(generic) Charleston Road Registry Inc.",
".hr" => "(country) CARNet - Croatian Academic and Research Network",
".hsbc" => "(generic) HSBC Holdings PLC",
".ht" => "(country) Consortium FDS/RDDH",
".htc" => "(generic) HTC corporation",
".hu" => "(country) Council of Hungarian Internet Providers (CHIP)",
".hughes" => "(generic) Hughes Satellite Systems Corporation",
".hyatt" => "(generic) Hyatt GTLD, L.L.C.",
".hyundai" => "(generic) Hyundai Motor Company",
".ibm" => "(generic) International Business Machines Corporation",
".icbc" => "(generic) Industrial and Commercial Bank of China Limited",
".ice" => "(generic) IntercontinentalExchange, Inc.",
".icu" => "(generic) One.com A/S",
".id" => "(country) Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)",
".ie" => "(country) University College Dublin Computing Services Computer Centre",
".ieee" => "(generic) IEEE Global LLC",
".ifm" => "(generic) ifm electronic gmbh",
".iinet" => "(generic) Connect West Pty. Ltd.",
".ikano" => "(generic) Ikano S.A.",
".il" => "(country) Internet Society of Israel",
".im" => "(country) Isle of Man Government",
".imamat" => "(generic) Fondation Aga Khan (Aga Khan Foundation)",
".imdb" => "(generic) Amazon Registry Services, Inc.",
".immo" => "(generic) Auburn Bloom, LLC",
".immobilien" => "(generic) United TLD Holdco Ltd.",
".in" => "(country) National Internet Exchange of India",
".industries" => "(generic) Outer House, LLC",
".infiniti" => "(generic) NISSAN MOTOR CO., LTD.",
".info" => "(generic) Afilias Limited",
".ing" => "(generic) Charleston Road Registry Inc.",
".ink" => "(generic) Top Level Design, LLC",
".institute" => "(generic) Outer Maple, LLC",
".insurance" => "(generic) fTLD Registry Services LLC",
".insure" => "(generic) Pioneer Willow, LLC",
".int" => "(sponsored) Internet Assigned Numbers Authority",
".intel" => "(generic) Intel Corporation",
".international" => "(generic) Wild Way, LLC",
".intuit" => "(generic) Intuit Administrative Services, Inc.",
".investments" => "(generic) Holly Glen, LLC",
".io" => "(country) IO Top Level Domain Registry Cable and Wireless",
".ipiranga" => "(generic) Ipiranga Produtos de Petroleo S.A.",
".iq" => "(country) Communications and Media Commission (CMC)",
".ir" => "(country) Institute for Research in Fundamental Sciences",
".irish" => "(generic) Dot-Irish LLC",
".is" => "(country) ISNIC - Internet Iceland ltd.",
".iselect" => "(generic) iSelect Ltd",
".ismaili" => "(generic) Fondation Aga Khan (Aga Khan Foundation)",
".ist" => "(generic) Istanbul Metropolitan Municipality",
".istanbul" => "(generic) Istanbul Metropolitan Municipality",
".it" => "(country) IIT - CNR",
".itau" => "(generic) Itau Unibanco Holding S.A.",
".itv" => "(generic) ITV Services Limited",
".iwc" => "(generic) Richemont DNS Inc.",
".jaguar" => "(generic) Jaguar Land Rover Ltd",
".java" => "(generic) Oracle Corporation",
".jcb" => "(generic) JCB Co., Ltd.",
".jcp" => "(generic) JCP Media, Inc.",
".je" => "(country) Island Networks (Jersey) Ltd.",
".jeep" => "(generic) FCA US LLC.",
".jetzt" => "(generic) Wild Frostbite, LLC",
".jewelry" => "(generic) Wild Bloom, LLC",
".jlc" => "(generic) Richemont DNS Inc.",
".jll" => "(generic) Jones Lang LaSalle Incorporated",
".jm" => "(country) University of West Indies",
".jmp" => "(generic) Matrix IP LLC",
".jnj" => "(generic) Johnson & Johnson Services, Inc.",
".jo" => "(country) National Information Technology Center (NITC)",
".jobs" => "(sponsored) Employ Media LLC",
".joburg" => "(generic) ZA Central Registry NPC trading as ZA Central Registry",
".jot" => "(generic) Amazon Registry Services, Inc.",
".joy" => "(generic) Amazon Registry Services, Inc.",
".jp" => "(country) Japan Registry Services Co., Ltd.",
".jpmorgan" => "(generic) JPMorgan Chase Bank, National Association",
".jprs" => "(generic) Japan Registry Services Co., Ltd.",
".juegos" => "(generic) Uniregistry, Corp.",
".juniper" => "(generic) JUNIPER NETWORKS, INC.",
".kaufen" => "(generic) United TLD Holdco Ltd.",
".kddi" => "(generic) KDDI CORPORATION",
".ke" => "(country) Kenya Network Information Center (KeNIC)",
".kerryhotels" => "(generic) Kerry Trading Co. Limited",
".kerrylogistics" => "(generic) Kerry Trading Co. Limited",
".kerryproperties" => "(generic) Kerry Trading Co. Limited",
".kfh" => "(generic) Kuwait Finance House",
".kg" => "(country) AsiaInfo Telecommunication Enterprise",
".kh" => "(country) Telecommunication Regulator of Cambodia (TRC)",
".ki" => "(country) Ministry of Communications, Transport, and Tourism Development",
".kia" => "(generic) KIA MOTORS CORPORATION",
".kim" => "(generic) Afilias plc",
".kinder" => "(generic) Ferrero Trading Lux S.A.",
".kindle" => "(generic) Amazon Registry Services, Inc.",
".kitchen" => "(generic) Just Goodbye, LLC",
".kiwi" => "(generic) DOT KIWI LIMITED",
".km" => "(country) Comores Telecom",
".kn" => "(country) Ministry of Finance, Sustainable Development Information & Technology",
".koeln" => "(generic) NetCologne Gesellschaft für Telekommunikation mbH",
".komatsu" => "(generic) Komatsu Ltd.",
".kosher" => "(generic) Kosher Marketing Assets LLC",
".kp" => "(country) Star Joint Venture Company",
".kpmg" => "(generic) KPMG International Cooperative (KPMG International Genossenschaft)",
".kpn" => "(generic) Koninklijke KPN N.V.",
".kr" => "(country) Korea Internet & Security Agency (KISA)",
".krd" => "(generic) KRG Department of Information Technology",
".kred" => "(generic) KredTLD Pty Ltd",
".kuokgroup" => "(generic) Kerry Trading Co. Limited",
".kw" => "(country) Ministry of Communications",
".ky" => "(country) The Information and Communications Technology Authority",
".kyoto" => "(generic) Academic Institution: Kyoto Jyoho Gakuen",
".kz" => "(country) Association of IT Companies of Kazakhstan",
".la" => "(country) Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications",
".lacaixa" => "(generic) CAIXA D'ESTALVIS I PENSIONS DE BARCELONA",
".ladbrokes" => "(generic) LADBROKES INTERNATIONAL PLC",
".lamborghini" => "(generic) Automobili Lamborghini S.p.A.",
".lamer" => "(generic) The Estée Lauder Companies Inc.",
".lancaster" => "(generic) LANCASTER",
".lancia" => "(generic) Fiat Chrysler Automobiles N.V.",
".lancome" => "(generic) L'Oréal",
".land" => "(generic) Pine Moon, LLC",
".landrover" => "(generic) Jaguar Land Rover Ltd",
".lanxess" => "(generic) LANXESS Corporation",
".lasalle" => "(generic) Jones Lang LaSalle Incorporated",
".lat" => "(generic) ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico",
".latino" => "(generic) Dish DBS Corporation",
".latrobe" => "(generic) La Trobe University",
".law" => "(generic) Minds + Machines Group Limited",
".lawyer" => "(generic) United TLD Holdco, Ltd",
".lb" => "(country) American University of Beirut Computing and Networking Services",
".lc" => "(country) University of Puerto Rico",
".lds" => "(generic) IRI Domain Management, LLC",
".lease" => "(generic) Victor Trail, LLC",
".leclerc" => "(generic) A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc",
".lefrak" => "(generic) LeFrak Organization, Inc.",
".legal" => "(generic) Blue Falls, LLC",
".lego" => "(generic) LEGO Juris A/S",
".lexus" => "(generic) TOYOTA MOTOR CORPORATION",
".lgbt" => "(generic) Afilias plc",
".li" => "(country) Universitaet Liechtenstein",
".liaison" => "(generic) Liaison Technologies, Incorporated",
".lidl" => "(generic) Schwarz Domains und Services GmbH & Co. KG",
".life" => "(generic) Trixy Oaks, LLC",
".lifeinsurance" => "(generic) American Council of Life Insurers",
".lifestyle" => "(generic) Lifestyle Domain Holdings, Inc.",
".lighting" => "(generic) John McCook, LLC",
".like" => "(generic) Amazon Registry Services, Inc.",
".lilly" => "(generic) Eli Lilly and Company",
".limited" => "(generic) Big Fest, LLC",
".limo" => "(generic) Hidden Frostbite, LLC",
".lincoln" => "(generic) Ford Motor Company",
".linde" => "(generic) Linde Aktiengesellschaft",
".link" => "(generic) Uniregistry, Corp.",
".lipsy" => "(generic) Lipsy Ltd",
".live" => "(generic) United TLD Holdco Ltd.",
".living" => "(generic) Lifestyle Domain Holdings, Inc.",
".lixil" => "(generic) LIXIL Group Corporation",
".lk" => "(country) Council for Information Technology LK Domain Registrar",
".loan" => "(generic) dot Loan Limited",
".loans" => "(generic) June Woods, LLC",
".locker" => "(generic) Dish DBS Corporation",
".locus" => "(generic) Locus Analytics LLC",
".loft" => "(generic) Annco, Inc.",
".lol" => "(generic) Uniregistry, Corp.",
".london" => "(generic) Dot London Domains Limited",
".lotte" => "(generic) Lotte Holdings Co., Ltd.",
".lotto" => "(generic) Afilias plc",
".love" => "(generic) Merchant Law Group LLP",
".lpl" => "(generic) LPL Holdings, Inc.",
".lplfinancial" => "(generic) LPL Holdings, Inc.",
".lr" => "(country) Data Technology Solutions, Inc.",
".ls" => "(country) National University of Lesotho",
".lt" => "(country) Kaunas University of Technology",
".ltd" => "(generic) Over Corner, LLC",
".ltda" => "(generic) InterNetX Corp.",
".lu" => "(country) RESTENA",
".lundbeck" => "(generic) H. Lundbeck A/S",
".lupin" => "(generic) LUPIN LIMITED",
".luxe" => "(generic) Top Level Domain Holdings Limited",
".luxury" => "(generic) Luxury Partners LLC",
".lv" => "(country) University of Latvia Institute of Mathematics and Computer Science Department of Network Solutions (DNS)",
".ly" => "(country) General Post and Telecommunication Company",
".ma" => "(country) Agence Nationale de Réglementation des Télécommunications (ANRT)",
".macys" => "(generic) Macys, Inc.",
".madrid" => "(generic) Comunidad de Madrid",
".maif" => "(generic) Mutuelle Assurance Instituteur France (MAIF)",
".maison" => "(generic) Victor Frostbite, LLC",
".makeup" => "(generic) L'Oréal",
".man" => "(generic) MAN SE",
".management" => "(generic) John Goodbye, LLC",
".mango" => "(generic) PUNTO FA S.L.",
".market" => "(generic) United TLD Holdco, Ltd",
".marketing" => "(generic) Fern Pass, LLC",
".markets" => "(generic) DOTMARKETS REGISTRY LTD",
".marriott" => "(generic) Marriott Worldwide Corporation",
".marshalls" => "(generic) The TJX Companies, Inc.",
".maserati" => "(generic) Fiat Chrysler Automobiles N.V.",
".mattel" => "(generic) Mattel Sites, Inc.",
".mba" => "(generic) Lone Hollow, LLC",
".mc" => "(country) Gouvernement de Monaco Direction des Communications Electroniques",
".mcd" => "(generic) McDonald’s Corporation",
".mcdonalds" => "(generic) McDonald’s Corporation",
".mckinsey" => "(generic) McKinsey Holdings, Inc.",
".md" => "(country) MoldData S.E.",
".me" => "(country) Government of Montenegro",
".med" => "(generic) Medistry LLC",
".media" => "(generic) Grand Glen, LLC",
".meet" => "(generic) Charleston Road Registry Inc.",
".melbourne" => "(generic) The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation",
".meme" => "(generic) Charleston Road Registry Inc.",
".memorial" => "(generic) Dog Beach, LLC",
".men" => "(generic) Exclusive Registry Limited",
".menu" => "(generic) Wedding TLD2, LLC",
".meo" => "(generic) PT Comunicacoes S.A.",
".metlife" => "(generic) MetLife Services and Solutions, LLC",
".mf" => "(country) Not assigned",
".mg" => "(country) NIC-MG (Network Information Center Madagascar)",
".mh" => "(country) Office of the Cabinet",
".miami" => "(generic) Top Level Domain Holdings Limited",
".microsoft" => "(generic) Microsoft Corporation",
".mil" => "(sponsored) DoD Network Information Center",
".mini" => "(generic) Bayerische Motoren Werke Aktiengesellschaft",
".mint" => "(generic) Intuit Administrative Services, Inc.",
".mit" => "(generic) Massachusetts Institute of Technology",
".mitsubishi" => "(generic) Mitsubishi Corporation",
".mk" => "(country) Macedonian Academic Research Network Skopje",
".ml" => "(country) Agence des Technologies de l’Information et de la Communication",
".mlb" => "(generic) MLB Advanced Media DH, LLC",
".mls" => "(generic) The Canadian Real Estate Association",
".mm" => "(country) Ministry of Communications, Posts & Telegraphs",
".mma" => "(generic) MMA IARD",
".mn" => "(country) Datacom Co., Ltd.",
".mo" => "(country) Bureau of Telecommunications Regulation (DSRT)",
".mobi" => "(sponsored) Afilias Technologies Limited dba dotMobi",
".mobily" => "(generic) GreenTech Consultancy Company W.L.L.",
".moda" => "(generic) United TLD Holdco Ltd.",
".moe" => "(generic) Interlink Co., Ltd.",
".moi" => "(generic) Amazon Registry Services, Inc.",
".mom" => "(generic) Uniregistry, Corp.",
".monash" => "(generic) Monash University",
".money" => "(generic) Outer McCook, LLC",
".monster" => "(generic) Monster Worldwide, Inc.",
".montblanc" => "(generic) Richemont DNS Inc.",
".mopar" => "(generic) FCA US LLC.",
".mormon" => "(generic) IRI Domain Management, LLC (\"Applicant\")",
".mortgage" => "(generic) United TLD Holdco, Ltd",
".moscow" => "(generic) Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)",
".motorcycles" => "(generic) DERMotorcycles, LLC",
".mov" => "(generic) Charleston Road Registry Inc.",
".movie" => "(generic) New Frostbite, LLC",
".movistar" => "(generic) Telefónica S.A.",
".mp" => "(country) Saipan Datacom, Inc.",
".mq" => "(country) MEDIASERV",
".mr" => "(country) Université des Sciences, de Technologie et de Médecine",
".ms" => "(country) MNI Networks Ltd.",
".msd" => "(generic) MSD Registry Holdings, Inc.",
".mt" => "(country) NIC (Malta)",
".mtn" => "(generic) MTN Dubai Limited",
".mtpc" => "(generic) Mitsubishi Tanabe Pharma Corporation",
".mtr" => "(generic) MTR Corporation Limited",
".mu" => "(country) Internet Direct Ltd",
".museum" => "(sponsored) Museum Domain Management Association",
".mutual" => "(generic) Northwestern Mutual MU TLD Registry, LLC",
".mutuelle" => "(generic) Fédération Nationale de la Mutualité Française",
".mv" => "(country) Dhiraagu Pvt. Ltd. (DHIVEHINET)",
".mw" => "(country) Malawi Sustainable Development Network Programme (Malawi SDNP)",
".mx" => "(country) NIC-Mexico ITESM - Campus Monterrey",
".my" => "(country) MYNIC Berhad",
".mz" => "(country) Centro de Informatica de Universidade Eduardo Mondlane",
".na" => "(country) Namibian Network Information Center",
".nab" => "(generic) National Australia Bank Limited",
".nadex" => "(generic) Nadex Domains, Inc",
".nagoya" => "(generic) GMO Registry, Inc.",
".name" => "(generic-restricted) VeriSign Information Services, Inc.",
".nationwide" => "(generic) Nationwide Mutual Insurance Company",
".natura" => "(generic) NATURA COSMÉTICOS S.A.",
".navy" => "(generic) United TLD Holdco Ltd.",
".nba" => "(generic) NBA REGISTRY, LLC",
".nc" => "(country) Office des Postes et Telecommunications",
".ne" => "(country) SONITEL",
".nec" => "(generic) NEC Corporation",
".net" => "(generic) VeriSign Global Registry Services",
".netbank" => "(generic) COMMONWEALTH BANK OF AUSTRALIA",
".netflix" => "(generic) Netflix, Inc.",
".network" => "(generic) Trixy Manor, LLC",
".neustar" => "(generic) NeuStar, Inc.",
".new" => "(generic) Charleston Road Registry Inc.",
".news" => "(generic) United TLD Holdco Ltd.",
".next" => "(generic) Next plc",
".nextdirect" => "(generic) Next plc",
".nexus" => "(generic) Charleston Road Registry Inc.",
".nf" => "(country) Norfolk Island Data Services",
".nfl" => "(generic) NFL Reg Ops LLC",
".ng" => "(country) Nigeria Internet Registration Association",
".ngo" => "(generic) Public Interest Registry",
".nhk" => "(generic) Japan Broadcasting Corporation (NHK)",
".ni" => "(country) Universidad Nacional del Ingernieria Centro de Computo",
".nico" => "(generic) DWANGO Co., Ltd.",
".nike" => "(generic) NIKE, Inc.",
".nikon" => "(generic) NIKON CORPORATION",
".ninja" => "(generic) United TLD Holdco Ltd.",
".nissan" => "(generic) NISSAN MOTOR CO., LTD.",
".nissay" => "(generic) Nippon Life Insurance Company",
".nl" => "(country) SIDN (Stichting Internet Domeinregistratie Nederland)",
".no" => "(country) UNINETT Norid A/S",
".nokia" => "(generic) Nokia Corporation",
".northwesternmutual" => "(generic) Northwestern Mutual Registry, LLC",
".norton" => "(generic) Symantec Corporation",
".now" => "(generic) Amazon Registry Services, Inc.",
".nowruz" => "(generic) Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
".nowtv" => "(generic) Starbucks (HK) Limited",
".np" => "(country) Mercantile Communications Pvt. Ltd.",
".nr" => "(country) CENPAC NET",
".nra" => "(generic) NRA Holdings Company, INC.",
".nrw" => "(generic) Minds + Machines GmbH",
".ntt" => "(generic) NIPPON TELEGRAPH AND TELEPHONE CORPORATION",
".nu" => "(country) The IUSN Foundation",
".nyc" => "(generic) The City of New York by and through the New York City Department of Information Technology & Telecommunications",
".nz" => "(country) InternetNZ",
".obi" => "(generic) OBI Group Holding SE & Co. KGaA",
".observer" => "(generic) Top Level Spectrum, Inc.",
".off" => "(generic) Johnson Shareholdings, Inc.",
".office" => "(generic) Microsoft Corporation",
".okinawa" => "(generic) BRregistry, Inc.",
".olayan" => "(generic) Crescent Holding GmbH",
".olayangroup" => "(generic) Crescent Holding GmbH",
".oldnavy" => "(generic) The Gap, Inc.",
".ollo" => "(generic) Dish DBS Corporation",
".om" => "(country) Telecommunications Regulatory Authority (TRA)",
".omega" => "(generic) The Swatch Group Ltd",
".one" => "(generic) One.com A/S",
".ong" => "(generic) Public Interest Registry",
".onl" => "(generic) I-REGISTRY Ltd., Niederlassung Deutschland",
".online" => "(generic) DotOnline Inc.",
".onyourside" => "(generic) Nationwide Mutual Insurance Company",
".ooo" => "(generic) INFIBEAM INCORPORATION LIMITED",
".open" => "(generic) American Express Travel Related Services Company, Inc.",
".oracle" => "(generic) Oracle Corporation",
".orange" => "(generic) Orange Brand Services Limited",
".org" => "(generic) Public Interest Registry (PIR)",
".organic" => "(generic) Afilias plc",
".orientexpress" => "(generic) Orient Express",
".origins" => "(generic) The Estée Lauder Companies Inc.",
".osaka" => "(generic) Interlink Co., Ltd.",
".otsuka" => "(generic) Otsuka Holdings Co., Ltd.",
".ott" => "(generic) Dish DBS Corporation",
".ovh" => "(generic) OVH SAS",
".pa" => "(country) Universidad Tecnologica de Panama",
".page" => "(generic) Charleston Road Registry Inc.",
".pamperedchef" => "(generic) The Pampered Chef, Ltd.",
".panasonic" => "(generic) Panasonic Corporation",
".panerai" => "(generic) Richemont DNS Inc.",
".paris" => "(generic) City of Paris",
".pars" => "(generic) Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
".partners" => "(generic) Magic Glen, LLC",
".parts" => "(generic) Sea Goodbye, LLC",
".party" => "(generic) Blue Sky Registry Limited",
".passagens" => "(generic) Travel Reservations SRL",
".pay" => "(generic) Amazon Registry Services, Inc.",
".pccw" => "(generic) PCCW Enterprises Limited",
".pe" => "(country) Red Cientifica Peruana",
".pet" => "(generic) Afilias plc",
".pf" => "(country) Gouvernement de la Polynésie française",
".pfizer" => "(generic) Pfizer Inc.",
".pg" => "(country) PNG DNS Administration Vice Chancellors Office The Papua New Guinea University of Technology",
".ph" => "(country) PH Domain Foundation",
".pharmacy" => "(generic) National Association of Boards of Pharmacy",
".philips" => "(generic) Koninklijke Philips N.V.",
".photo" => "(generic) Uniregistry, Corp.",
".photography" => "(generic) Sugar Glen, LLC",
".photos" => "(generic) Sea Corner, LLC",
".physio" => "(generic) PhysBiz Pty Ltd",
".piaget" => "(generic) Richemont DNS Inc.",
".pics" => "(generic) Uniregistry, Corp.",
".pictet" => "(generic) Pictet Europe S.A.",
".pictures" => "(generic) Foggy Sky, LLC",
".pid" => "(generic) Top Level Spectrum, Inc.",
".pin" => "(generic) Amazon Registry Services, Inc.",
".ping" => "(generic) Ping Registry Provider, Inc.",
".pink" => "(generic) Afilias Limited",
".pioneer" => "(generic) Pioneer Corporation",
".pizza" => "(generic) Foggy Moon, LLC",
".pk" => "(country) PKNIC",
".pl" => "(country) Research and Academic Computer Network",
".place" => "(generic) Snow Galley, LLC",
".play" => "(generic) Charleston Road Registry Inc.",
".playstation" => "(generic) Sony Computer Entertainment Inc.",
".plumbing" => "(generic) Spring Tigers, LLC",
".plus" => "(generic) Sugar Mill, LLC",
".pm" => "(country) Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)",
".pn" => "(country) Pitcairn Island Administration",
".pnc" => "(generic) PNC Domain Co., LLC",
".pohl" => "(generic) Deutsche Vermögensberatung Aktiengesellschaft DVAG",
".poker" => "(generic) Afilias plc",
".politie" => "(generic) Politie Nederland",
".porn" => "(generic) ICM Registry PN LLC",
".post" => "(sponsored) Universal Postal Union",
".pr" => "(country) Gauss Research Laboratory Inc.",
".pramerica" => "(generic) Prudential Financial, Inc.",
".praxi" => "(generic) Praxi S.p.A.",
".press" => "(generic) DotPress Inc.",
".prime" => "(generic) Amazon Registry Services, Inc.",
".pro" => "(generic-restricted) Registry Services Corporation dba RegistryPro",
".prod" => "(generic) Charleston Road Registry Inc.",
".productions" => "(generic) Magic Birch, LLC",
".prof" => "(generic) Charleston Road Registry Inc.",
".progressive" => "(generic) Progressive Casualty Insurance Company",
".promo" => "(generic) Afilias plc",
".properties" => "(generic) Big Pass, LLC",
".property" => "(generic) Uniregistry, Corp.",
".protection" => "(generic) XYZ.COM LLC",
".pru" => "(generic) Prudential Financial, Inc.",
".prudential" => "(generic) Prudential Financial, Inc.",
".ps" => "(country) Ministry Of Telecommunications & Information Technology, Government Computer Center.",
".pt" => "(country) Associação DNS.PT",