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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>EXHIBIT A</title>
{ include('elements/header.html'); }
<div align="center">
<h3>Exhibit A
<BR>
Registration Agreement</h3>
</div>
<BR>
<BR>
1. <b>IN THIS REGISTRATION AGREEMENT</b> ("Agreement"), “Registrant”, "you" and "your" refers to the Registrant of each domain name registration, "we", “us" and "our" refers to Tucows.com Co., and “Services” refers to the domain name registration services provided by us as offered through <b>Freeside Internet Services, Inc.</b>, the Registration Service Provider (“Reseller”). Any reference to a “registry,” “Registry” or “Registry Operator” shall refer to the registry administrator of the applicable TLD or ccTLD. This Agreement explains our obligations to you, and explains your obligations to us for the Services. By agreeing to the terms and conditions set forth in this Agreement, you are also agreeing to be bound by the rules and regulations set forth by a registry for that particular registry only. <BR>
<BR>
2. <b>SELECTION OF A DOMAIN NAME.</b> You acknowledge and agree that we cannot guarantee that you will obtain a desired domain name registration, even if an inquiry indicates that a domain name is available at the time of your application for same. You represent that, to the best of the your knowledge and belief, neither the registration of the domain name nor the manner in which it is directly or indirectly to be used, infringes upon the legal rights of a third party and further, that the domain name is not being registered for nor shall it at any time whatsoever be used for any unlawful purpose. During the period following registration of a domain name and the appointment of active name servers, we may post a stagnant web page and any revenues generated from same shall be for our own account.
<BR>
<BR>
3. <b>FEES.</b> As consideration for the Services, you agree to pay Reseller the applicable service(s) fees prior to the effectiveness of a desired domain name registration or any renewal thereof. All fees payable hereunder are non-refundable even if your domain name registration is suspended, cancelled or transferred prior to the end of your current registration term. As further consideration for the Services, you agree to: (1) provide certain current, complete and accurate information about you as required by the registration process, and (2) maintain and update this information as needed to keep it current, complete and accurate. All such information shall be referred to as account information ("Account Information"). You represent that the Account Information and all other statements put forth in your application are true, complete and accurate. Both Tucows and each registry reserves the right to terminate your domain name registration if: (i) information provided by you or your agent is false, inaccurate, incomplete, unreliable, misleading or otherwise secretive; or (ii) you have failed to maintain, update and keep your Account Information true, current, complete, accurate and reliable. You acknowledge that a breach of this Section 3 will constitute a material breach of our Agreement, which will entitle either us or a registry to terminate this Agreement immediately upon such breach without any refund and without notice to you. <BR>
<BR>
4. <b>TERM.</b> This Agreement will remain in effect during the term of your domain name registration as selected, recorded and paid for at the time of registration or any renewal thereof. Should the domain name be transferred to another registrar, the terms and conditions of this Agreement shall cease.
<BR>
<BR>
5. <b>MODIFICATIONS TO AGREEMENT.</b> You acknowledge that the practice of registering and administering domain names is constantly evolving; therefore, you agree that Tucows may modify this Agreement, or any other related and/or applicable agreement, as is necessary to comply with its agreements with ICANN, a registry or any other entity or individual, as well as to adjust to changing circumstances. All amendments to this Agreement will be posted on our website. Your continued use of the domain name registered to you will constitute your acceptance of this Agreement with any revisions. If you do not agree to any change, you may request that your domain name registration be cancelled or transferred to a different accredited registrar. You agree that such cancellation or request for transfer will be your exclusive remedy if you do not wish to abide by any change to this Agreement, or any other related and/or applicable agreement.
<BR>
<BR>
6. <b>MODIFICATIONS TO YOUR ACCOUNT.</b> In order to change any of your account information with us, you must use the Account Identifier and Password that you selected when you opened your account with us. You agree to safeguard your Account Identifier and Password from any unauthorized use. In no event shall we be liable for the unauthorized use or misuse of your Account Identifier or Password.
<BR>
<BR>
7. <b>NO GUARANTY.</b> You acknowledge that registration or reservation of your chosen domain name does not confer immunity from objection to the registration, reservation or use of the domain name.
<BR>
<BR>
8. <b>DOMAIN NAME DISPUTES.</b> You agree that, if the registration or reservation of your domain name is challenged by a third party, you will be subject to the provisions specified in the dispute policy adopted by the applicable registry. You agree that in the event a domain name dispute arises with any third party, you will indemnify and hold us harmless pursuant to the terms and conditions contained in the applicable policy. If Tucows is notified that a complaint has been filed with a judicial or administrative body regarding your domain name, Tucows may, at its sole discretion, suspend your ability to use your domain name or to make modifications to your registration records until (i) Tucows is directed to do so by the judicial or administrative body, or (ii) Tucows receives notification by you and the other party contesting your domain that the dispute has been settled. Furthermore, you agree that if you are subject to litigation regarding your registration or use of your domain name, Tucows may deposit control of your registration record into the registry of the judicial body by supplying a party with a registrar certificate from us.
<BR>
<BR>
9. <b>POLICY.</b> You agree that your registration of the domain name shall be subject to suspension, cancellation, or transfer pursuant to a Tucows, registry, ICANN or government-adopted policy, or pursuant to any registrar or registry procedure not inconsistent with a Tucows, registry, ICANN or government-adopted policy, (1) to correct mistakes by us or a registry in registering the name or (2) for the resolution of disputes concerning the domain name.
<BR>
<BR>
10. <b>AGENCY.</b> Should you intend to license use of a domain name to a third party you shall nonetheless be the domain name holder of record and are therefore responsible for providing your own full contact information and for providing and updating accurate technical and administrative contact information adequate to facilitate timely resolution of any problems that arise in connection with the domain name. You shall accept liability for harm caused by wrongful use of the domain name. You represent that you will secure the agreement of any third party to the terms and conditions in this Agreement
<BR>
<BR>
11. <b>ANNOUNCEMENTS.</b> We reserve the right to distribute information to you that is pertinent to the quality or operation of our services and those of our service partners. These announcements will be predominately informative in nature and may include notices describing changes, upgrades, new products or other information to add security or to enhance your identity on the Internet.
<BR>
<BR>
12. <b>LIMITATION OF LIABILITY.</b> You agree that our entire liability, and your exclusive remedy, with respect to any Services(s) provided under this Agreement and any breach of this Agreement is solely limited to the amount you paid for the initial registration of your domain name. Tucows and its directors, employees, affiliates, subsidiaries, agents and third party providers, ICANN and the applicable registries shall not be liable for any direct, indirect, incidental, special or consequential damages resulting from the use or inability to use any of the Services or for the cost of procurement of substitute services. Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, in such states, our liability is limited to the extent permitted by law. We disclaim any and all loss or liability resulting from, but not limited to: (1) loss or liability resulting from access delays or access interruptions; (2) loss or liability resulting from data non-delivery or data mis-delivery; (3) loss or liability resulting from acts of God; (4) loss or liability resulting from the unauthorized use or misuse of your account identifier or password; (5) loss or liability resulting from errors, omissions, or misstatements in any and all information or services(s) provided under this Agreement; (6) loss or liability resulting from the interruption of your Service. You agree that we will not be liable for any loss of registration and use of your domain name, or for interruption of business, or any indirect, special, incidental, or consequential damages of any kind (including lost profits) regardless of the form of action whether in contract, tort (including negligence), or otherwise, even if we have been advised of the possibility of such damages.
<BR>
<BR>
13. <b>INDEMNITY.</b> You agree to release, indemnify, and hold Tucows, its contractors, agents, employees, officers, directors and affiliates, ICANN, the applicable registries and their respective directors, officers, employees, agents and affiliates harmless from all liabilities, claims and expenses, including attorney's fees, of third parties arising out of or relating to the registration or use of the domain name registered in your name, whether used by yourself, licensed to a third party or pursuant to the Whois Privacy Service, including without limitation infringement by you or a third party with access to your Account Identifier and Password. You also agree to release, indemnify and hold us harmless pursuant to the terms and conditions contained in the applicable Dispute Policy. When we are threatened with suit by a third party, we may seek written assurances from you concerning your promise to indemnify us; your failure to provide those assurances may be considered by us to be a breach of your Agreement and may result in the suspension or cancellation of your domain name. This indemnification obligation will survive the termination or expiration of this Agreement.
<BR>
<BR>
14. <b>TRANSFER OF OWNERSHIP.</b> The person named as Registrant on the Whois shall be the registered name holder. The person named as administrative contact at the time the controlling account identifier and password are secured shall be deemed the designate of the Registrant with the authority to manage the domain name. You agree that prior to transferring ownership of your domain name to another person (the “Transferee") you shall require the Transferee to agree, in writing to be bound by all the terms and conditions of this Agreement. If the Transferee fails to be bound in a reasonable fashion (as determine by us in our sole discretion) to the terms and conditions in this Agreement, any such transfer will be null and void. <BR>
<BR>
15. <b>RENEWALS AND FORFEITURE.</b> Domain names are registered for a finite period of time. You will receive reminders immediately prior to the expiration of your registration inviting you to renew your domain name. In the event that you fail to renew your domain name in a timely fashion, your registration will expire and we may, at our discretion, elect to assume the registration and may hold it for our own account, delete it or we may sell it to a third party. You acknowledge and agree that your right and interest in a domain name ceases upon its expiration and that any expired domain name may be made available for registration by a third party.
<BR>
<BR>
If you fail to renew your registration, your domain name may cease to resolve and visitors to your site may be redirected to a default page informing them that the site is no longer in service. This parked or default page may feature advertisements posted by us for our own account.
<BR>
<BR>
If we have elected to renew the registration, you will be entitled to a grace period during which you may re-register the domain name from us. Additional costs may apply. During this grace period, we may post a parked page and/or may revise the “Whois” registration records to include either our information or that of your Reseller. The domain name may also be listed for auction. If the name is sold during any such auction, it will be acquired by a third party on a provisional basis and will remain available for re-registration by you during our stated grace period. If you do not re-register the domain name during the grace period, the auction sale will be concluded. <BR>
<BR>
If you fail to renew your domain name registration during the grace period, you acknowledge that you have abandoned the domain name and that it is available for sale and registration by any third party.
<BR>
<BR>
16. <b>BREACH.</b> You agree that failure to abide by any provision of this Agreement, any operating rule or policy or the Dispute Policy provided by us, may be considered by us to be a material breach and that we may provide a written notice, describing the breach, to you. If within thirty (30) calendar days of the date of such notice, you fail to provide evidence, which is reasonably satisfactory to us, that you have not breached your obligations under the Agreement, then we may delete the registration or reservation of your domain name. Any such breach by you shall not be deemed to be excused simply because we did not act earlier in response to that, or any other breach by you.
<BR>
<BR>
17. <b>DISCLAIMER OF WARRANTIES.</b> You agree that your use of our Services is solely at your own risk. You agree that such Service(s) is provided on an "as is," "as available" basis. We expressly disclaim all warranties of any kind, whether express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose and non-infringement. We make no warranty that the Services will meet your requirements, or that the Service(s) will be uninterrupted, timely, secure, or error free; nor do we make any warranty as to the results that may be obtained from the use of the Service(s) or as to the accuracy or reliability of any information obtained through the Service or that defects in the Service will be corrected. You understand and agree that any material and/or data downloaded or otherwise obtained through the use of Service is done at your own discretion and risk and that you will be solely responsible for any damage to your computer system or loss of data that results from the download of such material and/or data. We make no warranty regarding any goods or services purchased or obtained through the Service or any transactions entered into through the Service. No advice or information, whether oral or written, obtained by you from us or through the Service shall create any warranty not expressly made herein. <BR>
<BR>
18. <b>INFORMATION.</b> As part of the registration process, you are required to provide us certain information and to update us promptly as such information changes such that our records are current, complete and accurate. You are obliged to provide us the following information:
<BR>
</div>
<table width="100%" border="0" cellpadding="5">
<tr>
<td width="28" valign="top" class="style1">(a)</td>
<td width="693" class="style1">your name and postal address (or, if different, that of the domain name holder);</td>
</tr>
<tr>
<td valign="top" class="style1">(b)</td>
<td class="style1">the domain name being registered; </td>
</tr>
<tr>
<td valign="top" class="style1">(c)</td>
<td class="style1">the name, postal address, e-mail address, and voice and fax (if available) telephone numbers of the administrative contact for the domain name; </td>
</tr>
<tr>
<td valign="top" class="style1">(d)</td>
<td class="style1">the name, postal address, e-mail address, and voice and fax (if available) telephone numbers of the billing contact for the domain name; and </td>
</tr>
<tr>
<td valign="top" class="style1">(e)</td>
<td class="style1">the name, postal address, e-mail address, and voice and fax (if available) telephone numbers of the technical contact for the domain name.</td>
</tr>
</table>
Any voluntary information we request is collected in order that we can continue to improve the products and services offered to you through your Reseller.
<BR>
<BR>
19. <b>DISCLOSURE AND USE OF REGISTRATION INFORMATION.</b> You agree and acknowledge that we will make domain name registration information you provide available to ICANN, to the registry administrators, law enforcement agencies and to other third parties as applicable. You further agree and acknowledge that we may make publicly available, or directly available to third party vendors, some or all, of the domain name registration information you provide, for purposes of inspection (such as through our Whois service) or other purposes as required or permitted by ICANN and applicable laws.
<BR>
<table border="0" cellpadding="5">
<tr>
<td width="28" valign="top" class="style1">(a)</td>
<td width="693" class="style1">You hereby consent to any and all such disclosures and use of, and guidelines, limits and restrictions on disclosure or use of, information provided by you in connection with the registration of a domain name (including any updates to such information), whether during or after the term of your registration of the domain name. You hereby irrevocably waive any and all claims and causes of action you may have arising from such disclosure or use of your domain name registration information by us. </td>
</tr>
<tr>
<td valign="top" class="style1">(b)</td>
<td class="style1">You may access your domain name registration information in our possession to review, modify or update such information, by accessing our domain manager service, or similar service, made available by us through your Reseller.</td>
</tr>
<tr>
<td valign="top" class="style1">(c)</td>
<td class="style1">We will not process or maintain data about any identified or identifiable natural person that we obtain from you in a way incompatible with the purposes and other limitations which we describe in this Agreement.</td>
</tr>
<tr>
<td valign="top" class="style1">(d)</td>
<td class="style1">We will take reasonable precautions to protect the information we obtain from you from our loss, misuse, unauthorized disclosure, alteration or destruction of that information.</td>
</tr>
</table>
<BR>
<BR>
20. <b>OBLIGATION TO MAINTAIN WHOIS.</b> Your wilful provision of inaccurate or unreliable information, your wilful failure promptly to update information provided to us, or any failure to respond to inquiries by us addressed to the email address of the registrant, the administrative, billing or technical contact appearing in the Whois directory with respect to a domain name concerning the accuracy of contact details associated with the registration shall constitute a material breach of this Agreement and be a basis for cancellation of the domain name registration. Any information collected by us concerning an identified or identifiable natural person (“Personal Data”) will be used in connection with the registration of your domain name(s) and for the purposes of this Agreement and as required or permitted by ICANN or an applicable registry policy. <BR>
<BR>
21. <b>REVOCATION.</b> We, in our sole discretion, reserve the right to deny, cancel, suspend, transfer or modify any domain name registration to correct a mistake, protect the integrity and stability of the company and any applicable registry, to comply with any applicable laws, government rules, or requirements, requests of law enforcement, in compliance with any dispute resolution process, or to avoid any liability, civil or criminal. You agree that we shall not be liable to you for loss or damages that may result from our refusal to register or cancel, suspend, transfer or modify your domain name registration.
<BR>
<BR>
22. <b>INCONSISTENCIES WITH REGISTRY POLICIES.</b> In the event that this Agreement may be inconsistent with any term, condition, policy or procedure of an applicable registry, the term, condition, policy or procedure of the applicable registry shall prevail.
<BR>
<BR>
23. <b>NON-WAIVER.</b> Our failure to require performance by you of any provision hereof shall not affect the full right to require such performance at any time thereafter; nor shall the waiver by us of a breach of any provision hereof be taken or held to be a waiver of the provision itself.
<BR>
<BR>
24. <b>NOTICES.</b> Any notice, direction or other communication given under this Agreement shall be in writing and given by sending it via e-mail or via regular mail. In the case of e-mail, valid notice shall only have been deemed to be given when an electronic confirmation of delivery has been obtained by the sender. E-mail notification to Tucows must be sent to lhutz@tucows.com. Any notice to you will be sent to the e-mail address provided by you in your Whois record. Any e-mail communication shall be deemed to have been validly and effectively given on the date of such communication, if such date is a business day and such delivery was made prior to 4:00 p.m. EST, otherwise it will be deemed to have been delivered on the next business day. In the case of regular mail notice, valid notice shall be deemed to have been validly and effectively given five (5) business days after the date of mailing Postal notices to Tucows shall be sent to:
<BR>
<BR>
Tucows.com Co.
<BR>
Registrant Affairs Office
<BR>
96 Mowat Avenue
<BR>
Toronto, Ontario M6K 3M1
<BR>
CANADA
<BR>
Attention: Legal Affairs
<BR>
<BR>
and in the case of notification to you shall be sent to the address specified in the “Administrative Contact” in your Whois record. <BR>
<BR>
25. <b>ENTIRETY.</b> You agree that this Agreement, the applicable dispute policy and the rules and policies published by Tucows and any applicable registry or other governing authority, are the complete and exclusive agreement between you and us regarding our Services.
<BR>
<BR>
26. <b>GOVERNING LAW.</b> THIS AGREEMENT SHALL BE GOVERNED BY AND INTERPRETED AND ENFORCED IN ACCORDANCE WITH THE LAWS OF PROVINCE OF ONTARIO AND THE FEDERAL LAWS OF CANADA APPLICABLE THEREIN WITHOUT REFERENCE TO RULES GOVERNING CHOICE OF LAWS. ANY ACTION RELATING TO THIS AGREEMENT MUST BE BROUGHT IN ONTARIO AND YOU IRREVOCABLY CONSENT TO THE JURISDICTION OF SUCH COURTS.
<BR>
<BR>
27. <b>INFANCY.</b> You attest that you are of legal age to enter into this Agreement.
<BR>
<BR>
28. <b>FORCE MAJEURE.</b> You acknowledge and agree that neither we nor the applicable registry shall be responsible for any failures or delays in performing our respective obligations hereunder arising from any cause beyond our reasonable control, including but not limited to, acts of God, acts of civil or military authority, fires, wars, riots, earthquakes, storms, typhoons and floods.
<BR>
<BR>
29. <b>PRIVACY.</b> Information collected about you is subject to the terms of Tucows’ privacy policy, the terms of which are hereby incorporated by reference. Tucows’ privacy policy can be found at: <a href="http://www.tucows.com/privacy.html">http://www.tucows.com/privacy.html</a><BR>
<BR>
30. <b>CONTROLLING LANGUAGE.</b> In the event that you are reading this Agreement in a language other than the English language, you acknowledge and agree that the English language version hereof shall prevail in case of inconsistency or contradiction in interpretation or translation.
<BR>
<BR>
31. <b>TLD’S.</b> The following additional provisions apply to any domain names that you register through Tucows with the various registries:
<BR>
<table width="100%" border="0" cellpadding="5">
<tr>
<td width="28" valign="top" class="style1">(a)</td>
<td width="693" class="style1"><b>.com/net Domains:</b> In the case of a “.com” or “.net” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Submission to UDRP. Registrant agrees to submit to proceedings under ICANN's Uniform Domain Dispute Policy (“UDRP”) (<a href="http://www.icann.org/dndr/udrp/policy.htm">http://www.icann.org/dndr/udrp/policy.htm</a>) and comply with the requirements set forth by the Registry; these policies are subject to modification;</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">For the adjudication of disputes concerning or arising from use of the domain name, the Registrant shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of the Registrant’s domicile, and (2) where Tucows is located, presently Toronto, Ontario.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(b)</td>
<td width="693" class="style1"><b>.org Domains:</b> In the case of a “.org” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Submission to UDRP. Registrant agrees to submit to proceedings under ICANN's Uniform Dom ain Dispute Policy (“UDRP”) (<a href="http://www.icann.org/dndr/udrp/policy.htm">http://www.icann.org/dndr/udrp/policy.htm</a>) and comply with the requirements set forth by the Registry. These policies are subject to modification;</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">For the adjudication of disputes concerning or arising from use of the domain name, the Registrant shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of the Registrant’s domicile, and (2) where Tucows is located, presently Toronto, Ontario.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(c)</td>
<td width="693" class="style1"><b>.info Domains:</b> In the case of a “.info” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Registrant’s Personal Data. You consent to the use, copying, distribution, publication, modification, and other processing of Registrant’s personal data by Afilias, the .INFO registry, and its designees and agents, in a manner consistent with the purposes specified pursuant to its contract;</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Submission to UDRP. Registrant agrees to submit to proceedings under ICANN's Uniform Domain Dispute Policy (“UDRP”) (<a href="http://www.icann.org/dndr/udrp/policy.htm">http://www.icann.org/dndr/udrp/policy.htm</a>) and comply with the requirements set forth by the Registry. These policies are subject to modification;</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">For the adjudication of disputes concerning or arising from use of the domain name, the Registrant shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of the Registrant’s domicile, and (2) where Tucows is located, presently Toronto, Ontario;</td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Reservation of Rights. Tucows and Afilias expressly reserve the right to deny, cancel, transfer, or modify any registration that either registrar or Afilias deems necessary, at its discretion, to protect the integrity and stability of the registry, to comply with any applicable law, any government rule or requirement, any request of law enforcement, any dispute resolution process, or to avoid any liability, civil or criminal, on the part of the registrar and/or Afilias, as well as their affiliates, subsidiaries, executives, directors, officers, managers, employees, consultants, and agents. The registrar and Afilias also reserve the right to suspend a domain name or its registration data during resolution of a dispute.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(d)</td>
<td width="693" class="style1"><b>.biz Domains.</b> In the case of a “.biz” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">.biz Restrictions. Registrations in the .biz top-level domain must be used or intended to be used primarily for bona fide business or commercial purposes. For the purposes of the .biz registration restrictions, “bona fide business or commercial use” shall mean the bona fide use or bona fide intent to use the domain name or any content, software, materials, graphics or other information thereon, to permit Internet users to access one or more host computers through the DNS:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">to exchange goods, services, or property of any kind;</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">in the ordinary course of business; or</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">to facilitate (i) the exchange of goods, services, information or property of any kind; or (ii) the ordinary course of trade or business.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28"></td>
<td width="693">For more information on the .biz restrictions, which are incorporated herein by reference, please see: <a href="http://www.icann.org/tlds/agreements/biz/registry-agmt-appl-18apr01.htm">http://www.icann.org/tlds/agreements/biz/registry-agmt-appl-18apr01.htm</a>.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Selection of a Domain Name. You represent that:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">the data provided in the domain name registration application is true, correct, up to date and complete, and that you will continue to keep all of the information provided correct, up-to-date and complete;</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">to the best of the your knowledge and belief, neither this registration of a domain name nor the manner in which it is directly or indirectly to be used infringes upon the legal rights of a third party; </td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">that the domain name is not being registered for nor shall it at any time whatsoever be used for any unlawful purpose whatsoever;</td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">the registered domain name will be used primarily for bona fide business or commercial purposes and not (a) exclusively for personal use, or (b) solely for the purposes of (1) selling, trading or leasing the domain name for compensation, or (2) the unsolicited offering to sell, trade or lease the domain name for compensation;</td>
</tr>
<tr>
<td valign="top" width="28">(E)</td>
<td width="693">you have the authority to enter into this Registration Agreement; and</td>
</tr>
<tr>
<td valign="top" width="28">(F)</td>
<td width="693"> the registered domain name is reasonably related to your business or intended commercial purpose at the time of registration.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Provision of Registration Data. As part of the registration process, you are required to provide us with certain information and to keep the information true, current, complete, and accurate at all times. The information includes the following:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">your full name;</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">your postal address;</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">your e-mail address;</td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">your voice telephone number;</td>
</tr>
<tr>
<td valign="top" width="28">(E)</td>
<td width="693">your fax number (if applicable);</td>
</tr>
<tr>
<td valign="top" width="28">(F)</td>
<td width="693">the name of an authorized person for contact purposes in the case of a registrant that is an organization, association, or corporation;</td>
</tr>
<tr>
<td valign="top" width="28">(G)</td>
<td width="693">the IP addresses of the primary nameserver and any secondary nameserver for the domain name;</td>
</tr>
<tr>
<td valign="top" width="28">(H)</td>
<td width="693">the corresponding names of the primary and secondary nameservers;</td>
</tr>
<tr>
<td valign="top" width="28">(I)</td>
<td width="693">the full name, postal address, e-mail address, voice telephone number, and, when available, fax number of the administrative, technical, and billing contacts, and the name holder for the domain name; and</td>
</tr>
<tr>
<td valign="top" width="28">(J)</td>
<td width="693">any remark concerning the domain name that should appear in the Whois directory.</td>
</tr>
<tr>
<td valign="top" width="28">(K)</td>
<td width="693">You agree and understand that the foregoing registration data will be publicly available and accessible on the Whois directory as required by ICANN and/or registry policies, and may be sold in bulk in accordance with the ICANN agreement. </td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Domain Name Disputes. You acknowledge having read and understood and agree to be bound by the terms and conditions of the following documents, as they may be amended from time to time, which are hereby incorporated and made an integral part of this Agreement:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">The Uniform Domain Name Dispute Resolution Policy (“Dispute Policy), available at: <a href="http://www.icann.org/dndr/udrp/policy.htm">http://www.icann.org/dndr/udrp/policy.htm;</a></td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">The Restrictions Dispute Resolution Criteria and Rules (“RDRP”), available at: <a href="http://www.icann.org/tlds/agreements/biz/registry-agmt-appm-27apr01.htm">http://www.icann.org/tlds/agreements/biz/registry-agmt-appm-27apr01.htm</a>; </td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28"></td>
<td width="693">(collectively, the “Dispute Policies”).</td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">The Dispute Policy sets forth the terms and conditions in connection with a dispute between a Registrant and any party other than the Registry or Registrar over the registration and use of an Internet domain name registered by Registrant.</td>
</tr>
<tr>
<td valign="top" width="28">(vi)</td>
<td width="693">The RDRP sets forth the terms under which any allegation that a domain name is not used primarily for business or commercial purposes shall be endorsed on a case-by-case, fact specific basis by an independent ICANN-accredited dispute provider.</td>
</tr>
<tr>
<td valign="top" width="28">(vii)</td>
<td width="693">For the adjudication of disputes concerning or arising from use of the domain name, the Registrant shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of the Registrant’s domicile, and (2) where Tucows is located, presently Toronto, Ontario.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(e)</td>
<td width="693" class="style1"><b>.name Domains.</b> In the case of a “.name” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">.name Restrictions. Registrations in the .name top-level domain must constitute an individual’s “Personal Name”. For purposes of the .name restrictions (the “Restrictions”), a “Personal Name” is a person’s legal name, or a name by which the person is commonly known. A “name by which a person is commonly known” includes, without limitation, a pseudonym used by an author or painter, or a stage name used by a singer or actor.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">.name Representations. As a .name domain name registrant, you hereby represent that:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">the registered domain name or second level domain (“SLD”) e-mail address is your Personal Name.</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">the data provided in the domain name registration application is true, correct, up to date and complete and that you will continue to keep all of the information provided correct, current and complete,</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">to the best of the your knowledge and belief, neither this registration of a domain name nor the manner in which it is directly or indirectly to be used infringes upon the legal rights of a third party;</td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">that the domain name is not being registered for nor shall it at any time whatsoever be used for any unlawful purpose whatsoever;</td>
</tr>
<tr>
<td valign="top" width="28">(E)</td>
<td width="693">the registration satisfies the Eligibility Requirements found at: <a href="http://www.icann.org/tlds/agreements/name/registry-agmt-appl-8aug03.htm">http://www.icann.org/tlds/agreements/name/registry-agmt-appl-8aug03.htm</a>; and</td>
</tr>
<tr>
<td valign="top" width="28">(F)</td>
<td width="693">you have the authority to enter into this Registration Agreement.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693"><b>E-mail Forwarding Services.</b> The Services for which you have registered may, at your option, include e-mail forwarding. To the extent you opt to use e-mail forwarding, you are obliged to do so in accordance with all applicable legislation and are responsible for all use of e-mail forwarding, including the content of messages sent through e-mail forwarding.
<BR><BR>You undertake to familiarize yourself with the content of and to comply with the generally accepted rules for Internet and e-mail usage. This includes, but is not limited to the Acceptable Use Policy, available at <a href="http://www.nic.name/downloads/aup.pdf">http://www.nic.name/downloads/aup.pdf</a> as well as the following restrictions. Without prejudice to the foregoing, you undertake not to use e-mail forwarding:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">to encourage, allow or participate in any form of illegal or unsuitable activity, including but not restricted to the exchange of threatening, obscene or offensive messages, spreading computer viruses, breach of copyright and/or proprietary rights or publishing defamatory material;</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">to gain illegal access to systems or networks by unauthorized access to or use of the data in systems or networks, including all attempts at guessing passwords, checking or testing the vulnerability of a system or network or breaching the security or access control without the sufficient approval of the owner of the system or network;</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">to interrupt data traffic to other users, servers or networks, including, but not restricted to, mail bombing, flooding, Denial of Service (DoS) attacks, wilful attempts to overload another system or other forms of harassment; or</td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">for spamming, which includes, but is not restricted to, the mass mailing of unsolicited e-mail, junk mail, the use of distribution lists (mailing lists) which include persons who have not specifically given their consent to be placed on such distribution list. Users are not permitted to provide false names or in any other way to pose as somebody else when using e-mail forwarding.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Registry reserves the right to implement additional anti-spam measures, to block spam or mail from systems with a history of abuse from entering Registry’s e-mail forwarding. However, due to the nature of such systems, which actively block messages, Registry shall make public any decision to implement such systems a reasonable time in advance, so as to allow you or us to give feedback on the decision.</td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">You understand and agree that Registry may delete material that does not conform to clause (c) above or that in some other way constitutes a misuse of e-mail forwarding. You further understand and agree that Registry is at liberty to block your access to e-mail forwarding if you use e-mail forwarding in a way that contravenes this Agreement. You will be given prior warning of discontinuation of the e-mail forwarding unless it would damage the reputation of Registry or jeopardize the security of Registry or others to do so. Registry reserves the right to immediately discontinue e-mail forwarding without notice if the technical stability of e-mail forwarding is threatened in any way, or if you are in breach of this Agreement. On discontinuing e-mail forwarding, Registry is not obliged to store any contents or to forward unsent e-mail to you or a third party.</td>
</tr>
<tr>
<td valign="top" width="28">(vi)</td>
<td width="693">You understand and agree that to the extent either we and/or Registry is required by law to disclose certain information or material in connection with your e-mail forwarding, either we and/or Registry will do so in accordance with such requirement and without notice to you.</td>
</tr>
<tr>
<td valign="top" width="28">(vii)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the dispute policy that is incorporated herein and made a part of this Agreement by reference. You hereby acknowledge that you have read and understood and agree to be bound by the terms and conditions of the following documents, as they may be amended from time to time, which are hereby incorporated and made an integral part of this Agreement.</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">the Eligibility Requirements (the “Eligibility Requirements”), available at: <a href="http://www.icann.org/tlds/agreements/name/registry-agmt-appl-8aug03.htm">http://www.icann.org/tlds/agreements/name/registry-agmt-appl-8aug03.htm</a>;</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">the Eligibility Requirements Dispute Resolution Policy (the “ERDRP”), available at: <a href="http://www.icann.org/tlds/agreements/name/registry-agmt-appm-8aug03.htm">http://www.icann.org/tlds/agreements/name/registry-agmt-appm-8aug03.htm</a>; and</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">the Uniform Domain Name Dispute Resolution Policy (the “UDRP”), available at: <a href="http://www.icann.org/dndr/udrp/policy.htm">http://www.icann.org/dndr/udrp/policy.htm</a>.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(viii)</td>
<td width="693">The Eligibility Requirements dictate that Personal Name domain names and Personal Name SLD e-mail addresses will be granted on a first-come, first-served basis. The following categories of Personal Name Registrations may be registered: (i) the Personal Name of an individual; (ii) the Personal Name of a fictional character, if you have trademark or service make rights in that character’s Personal Name; (iii) in addition to a Personal Name registration, you may add numeric characters to the beginning or the end of the Personal Name so as to differentiate it from other Personal Names. </td>
</tr>
<tr>
<td valign="top" width="28">(ix)</td>
<td width="693">The ERDRP applies to challenges to (i) registered domain names and SLD e-mail address registrations within .name on the grounds that a Registrant does not meet the Eligibility Requirements, and (ii) to Defensive Registrations (as defined by the Registry) within .name.</td>
</tr>
<tr>
<td valign="top" width="28">(x)</td>
<td width="693">The UDRP sets forth the terms and conditions in connection with a dispute between a Registrant and party other than the Registry or Tucows over the registration and use of an Internet domain name registered by a Registrant.</td>
</tr>
<tr>
<td valign="top" width="28">(xi)</td>
<td width="693">For the adjudication of disputes concerning or arising from use of the domain name, the Registrant shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of the Registrant’s domicile, and (2) where Tucows is located, presently Toronto, Ontario.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
</table>
32. <b>ccTLD’S</b>
<table width="100%" border="0" cellpadding="5">
<tr>
<td width="28" valign="top" class="style1">(a)</td>
<td width="693" class="style1"><b>.at Domains.</b> In the case of a “.at” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Registry Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by Registry policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website at <a href="http://www.nic.at/en/service/legal_information/terms_conditions/">http://www.nic.at/en/service/legal_information/terms_conditions/</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(b)</td>
<td width="693" class="style1"><b>.be Domains.</b> In the case of a “.be” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Registry Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by Registry policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website at <a href="http://www.dns.be/en/home.php?n=51">http://www.dns.be/en/home.php?n=51</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the .be Dispute Policy that is incorporated herein and made a part of this Agreement by reference. The current version of the Dispute Policy may be found at<a href="http://www.dns.be/en/home.php?n=53"> http://www.dns.be/en/home.php?n=53</a>.</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(c)</td>
<td width="693" class="style1"><b>.ca Domains.</b> In the case of a “.ca” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the Dispute Policy, which is incorporated herein and made a part of this Agreement by reference. The current version of the Dispute Policy may be found at <a href="http://www.cira.ca/en/cat_Dpr.html">http://www.cira.ca/en/cat_Dpr.html</a>. Please take the time to familiarize yourself with this policy. </td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Registry Policy. You agree that your registration of the domain name shall be subject to suspension, cancellation, or transfer pursuant to any Registry-adopted policy, or pursuant to any registrar or registry procedure not inconsistent with a Registry adopted policy, (1) to correct mistakes by Tucows or the Registry in registering the name or (2) for the resolution of disputes concerning the domain name.</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Transfer of Ownership. Any transfer of ownership in and to a domain name registration shall be affected in accordance with registry policies and procedures.</td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Registry Agreement and Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by the Registry’s Registrant Agreement, the Registry’s policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website at <a href="http://www.cira.ca/en/doc_Registrar.html">http://www.cira.ca/en/doc_Registrar.html</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry agreement or policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation.</td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">You acknowledge and agree that the Registry shall not be liable to you for any loss, damage, or expense arising out of the Registry’s failure or refusal to register a domain name, it’s failure or refusal to renew a domain name registration, it’s registration of a domain name, it’s failure or refusal to renew a domain name registration, it’s renewal of a domain name registration, it’s failure or refusal to transfer a domain name registration, it’s transfer of a domain name registration, it’s failure or refusal to maintain or modify a domain name registration, it’s maintenance of a domain name registration, it’s modification of a domain name registration, it’s failure to cancel a domain name registration or it’s cancellation of a domain name registration from the Registry;</td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(d)</td>
<td width="693" class="style1"><b>.cc Domains.</b> In the case of a “.cc” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the Dispute Policy that is incorporated herein and made a part of this Agreement by reference. The current version of the Dispute Policy may be found at <a href="http://www.nic.cc/policies/dispute.html">http://www.nic.cc/policies/dispute.html</a>. Please take the time to familiarize yourself with this policy. </td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Registry Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by Registry policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website at: <a href="http://www.enic.cc/en-def-c2689f094aa0/en/policies/policies.shtml">http://www.enic.cc/en-def-c2689f094aa0/en/policies/policies.shtml</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation. </td>
</tr>
</table> </td>
</tr>
<!--indent once finish-->
<tr>
<td width="28" valign="top" class="style1">(e)</td>
<td width="693" class="style1"><b>.ch Domains.</b> In the case of a “.ch” registration, the following terms and conditions shall apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Registry Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by Registry policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website at <a href="http://www.switch.ch/id/terms">http://www.switch.ch/id/terms</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the .ch Dispute Policy that is incorporated herein and made a part of this Agreement by reference. The current version of the Dispute Policy may be found at <a href="http://www.switch.ch/id/disputes/rules">http://www.switch.ch/id/disputes/rules</a>. Please take the time to familiarize yourself with this policy. </td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td width="28" valign="top" class="style1">(f)</td>
<td width="693" class="style1"><b>.cn Domains.</b> In the case of a “.cn” registration, the following terms and conditions shall apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">“Registry” means the China Internet Network Information Center, which is the authority responsible for the administration of the national top-level domain of the People’s Republic of China and the Chinese domain name system;</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">“Registry Gateway” means the service provided by the Registry Operator that facilitates the registration of .cn domain names by registrars operating outside of the People’s Republic of China;</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">“Registry Operator“ means Neustar, Inc., the company authorized to facilitate the registration of .cn domain names by registrars operating outside of the People’s Republic of China.</td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Restrictions. You agree that you shall not register or use a domain name that is deemed by CNNIC to:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">be against the basic principles prescribed in the Constitution of the Peoples Republic of China (“PRC”);</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">jeopardize national security, leak state secrets, intend to overturn the government or disrupt the integrity of the PRC;</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">harm national honour and national interests of the PRC;</td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">instigate hostility or discrimination between different nationalities or disrupt the national solidarity of the PRC;</td>
</tr>
<tr>
<td valign="top" width="28">(E)</td>
<td width="693">spread rumours, disturb public order or disrupt social stability of the PRC;</td>
</tr>
<tr>
<td valign="top" width="28">(F)</td>
<td width="693">spread pornography, obscenity, gambling, violence, homicide, terror or instigate crimes in the PRC;</td>
</tr>
<tr>
<td valign="top" width="28">(G)</td>
<td width="693">insult, libel against others and infringe other people’s legal rights and interests in the PRC; or</td>
</tr>
<tr>
<td valign="top" width="28">(H)</td>
<td width="693">take any other action prohibited in laws, rules and administrative regulations of the PRC.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">Business or Organization Representation. .cn domain name registrations are intended for businesses and organizations and not for individual use. By registering a .cn name, you accordingly represent that you have registered the domain name on behalf or a business or organization. It should be noted that, although .cn policy is permissive in terms of registration, and enforcement is generally in reaction to a complaint (as opposed to proactive review), registrations that are not associated with an organization or business may be subject to deletion. The foregoing prevents an individual from registering a .cn domain name for a business operating as a sole proprietorship.</td>
</tr>
<tr>
<td valign="top" width="28">(vi)</td>
<td width="693">Domain Name Disputes. You acknowledge having read and understood and agree to be bound by the terms and conditions of the CNNIC Domain Name Dispute Policy & Rules for CNNIC Dispute Resolution Policy (“Dispute Policy”), as they may be amended from time to time, which are hereby incorporated and made an integral part of this Agreement. The Dispute Policy is currently found at: <a href="http://www.cnnic.net.cn/html/Dir/2003/11/27/1526.htm">http://www.cnnic.net.cn/html/Dir/2003/11/27/1526.htm</a>.</td>
</tr>
<tr>
<td valign="top" width="28">(vii)</td>
<td width="693">You acknowledge that, pursuant to the Dispute Policy, Registrars must comply with all reasonable requests from the applicable domain name dispute resolution institutions including the provision of all relevant evidence in any domain name disputes in the specified time frames.</td>
</tr>
<tr>
<td valign="top" width="28">(viii)</td>
<td width="693">If we are notified that a complaint has been filed with a judicial or administrative body regarding your use of our domain name registration services, you agree not to make any changes to your domain name record without our prior approval. We may not allow you to make changes to such domain name record until (i) we are directed to do so by the judicial or administrative body, or (ii) we receive notification by you and the other party contesting your registration and use of our domain name registration services that the dispute has been settled. Furthermore, you agree that if you are subject to litigation regarding your registration and use of our domain name registration services, we may deposit control of your domain name record into the registry of the judicial body by supplying a party with a registrar certificate from us.</td>
</tr>
<tr>
<td valign="top" width="28">(ix)</td>
<td width="693">Adherence to Policies. You agree to comply with all applicable laws, regulations and policies of the Peoples Republic of China’s governmental agencies and the China Internet Network Information Centre (“CNNIC”), including but not limited to the following rules and regulations:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">Provisional Administrative Rules for Registration of Domain Names in China (currently at <a href="http://www.cnnic.net.cn/html/Dir/2003/11/27/1520.htm">http://www.cnnic.net.cn/html/Dir/2003/11/27/1520.htm</a>); </td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">Detailed Implementation Rules for Registration of Domain Names in China (currently at <a href="http://www.cnnic.net.cn/html/Dir/2003/11/27/1522.htm">http://www.cnnic.net.cn/html/Dir/2003/11/27/1522.htm</a>);</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">Chinese Domain Names Dispute Resolution Policy (currently at <a href="http://www.cnnic.net.cn/html/Dir/2003/11/27/1526.htm">http://www.cnnic.net.cn/html/Dir/2003/11/27/1526.htm</a>); and </td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">CNNIC Implementing Rules of Domain Name Registration (currently at<a href="http://www.cnnic.net.cn/html/Dir/2003/11/27/1503.htm"> http://www.cnnic.net.cn/html/Dir/2003/11/27/1503.htm</a>).</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28"></td>
<td width="693">You acknowledge that you have read and understood and agree to be bound by the terms and conditions of the policies of the CNNIC, as they may be amended from time to time.</td>
</tr>
<tr>
<td valign="top" width="28">(x)</td>
<td width="693">Suspension and Cancellation. You agree that your registration of the domain name shall be subject to suspension, cancellation, or transfer pursuant to any Tucows, Registry Operator, CNNIC or government-adopted policy, or pursuant to any registrar or registry procedure not inconsistent with a CNNIC or government-adopted policy, (1) to correct mistakes by a party in registering the name, (2) for the resolution of disputes concerning the domain name, (3) to protect the integrity and stability of the registry, (4) to comply with any applicable laws, government rules or requirements, requests of aw enforcement, (5) to avoid any liability, civil or criminal, on the part of Tucows, Registry Operator or CNNIC, as well as their affiliates, subsidiaries, directors, representatives, employees and stockholders or (6) for violations of this Agreement. Tucows, Registry Operator and CNNIC also reserve the right to “freeze” a domain name during the resolution of a dispute. </td>
</tr>
<tr>
<td valign="top" width="28">(xi)</td>
<td width="693">Jurisdiction. For the adjudication of disputes concerning or arising from use of the domain name, the Registrant shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (1) of the Registrant’s domicile, (2) where Tucows is located, and (3) the People’s Republic of China.</td>
</tr>
<tr>
<td valign="top" width="28">(xii)</td>
<td width="693">Governing Law. For the adjudication of a dispute concerning or arising from use of a .cn domain, such dispute will be governed under the Laws of the Peoples Republic of China.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td width="28" valign="top" class="style1">(g)</td>
<td width="693" class="style1"><b>.de Domains.</b> In the case of a “.de” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Selection of a Domain Name. You represent that: </td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">you have reviewed and have accepted the Registry’s Terms and Conditions and the Registry’s Guidelines and have provided your Reseller with written confirmation of same;you have reviewed and have accepted the Registry’s Terms and Conditions and the Registry’s Guidelines and have provided your Reseller with written confirmation of same;</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">either you, or the person designated as the administrative contact for the domain name, shall be resident or shall have a branch in Germany;</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">to the best of the your knowledge and belief, neither this registration of a domain name nor the manner in which it is directly or indirectly to be used infringes upon the legal rights of a third party and, further, that the domain name is not being registered for nor shall it at any time whatsoever be used for any unlawful purpose whatsoever.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Domain Name Disputes. You agree that, if the registration or reservation of your domain name is challenged by a third party, you will be subject to the provisions specified by the Registry or any court of law. You agree that in the event a domain name dispute arises with any third party, you will indemnify and hold us harmless pursuant to the terms and conditions specified by the Registry or any court of law. </td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Registry Policies. You agree to be bound by the Registry’s Registration Terms and Conditions and the Registration Guidelines. English language translations of the Registry’s documents are provided for convenience; in the event of a discrepancy between the English and the German language agreements, the terms of the German agreement will prevail. The Registry documents may be found at:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">English:</td>
<td width="693">(A) Registration Terms and Conditions <BR>
<a href="http://www.denic.de/en/bedingungen.html">http://www.denic.de/en/bedingungen.html</a> <BR>
<BR>(B) Registration Guidelines <BR>
<a href="http://www.denic.de/en/richtlinien.html">http://www.denic.de/en/richtlinien.html</a><BR></td>
</tr>
<tr>
<td valign="top" width="28"><BR>German:</td>
<td width="693"><BR>(C) DENIC-Registrierungsbedingungen <BR>
<a href="http://www.denic.de/de/bedingungen.html">http://www.denic.de/de/bedingungen.html</a><BR>
<BR>(D) DENIC-Registrierungsrichtlinien <BR>
<a href="http://www.denic.de/de/richtlinien.html">http://www.denic.de/de/richtlinien.html</a></td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td width="28" valign="top" class="style1">(h)</td>
<td width="693" class="style1"><b>.es domains.</b> In the case of a “.es” registration, the following terms and conditions will apply: Registry Policies.</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">You agree that your reseller and Tucows shall, jointly and severally be authorized to act in your name before the Registry in order that we may implement your instructions and accordingly agree to the terms found in the outlined at http://resellers.tucows.com/wholesale_services/domain_names/es/ANNEXIII_2006.pdf</td>
</tr>
<!--indent twice start-->
<!--indent twice end-->
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">You agree to be bound by the Registry’s Registration Terms and Conditions and the Registration Guidelines. English language translations of the Registry’s documents are provided for convenience; in the event of a discrepancy between the English and the Spanish language agreements, the terms of the Spanish agreement will prevail. The Registry documents may be found at:</td>
</tr>
<tr>
<td valign="top" width="28"></td>
<td width="693">English:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">http://resellers.tucows.com/contracts/es/ANNEXIII_2006.pdf</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28"></td>
<td width="693">Spanish:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">http://resellers.tucows.com/contracts/es/ANEXOIII_2006.pdf</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td width="28" valign="top" class="style1">(i)</td>
<td width="693" class="style1"><b>.eu domains.</b> In the case of a “.eu” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Eligibility Criteria. .eu domain names are available for registration to companies and persons who fulfill the following criteria. As a condition of registration, you accordingly represent that you are: </td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">an undertaking having its registered office, central administration or principal place of business within the European Community; </td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">an organization established within the European Community without prejudice to the application of national law, or </td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">a natural person resident within the European Community. </td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Registry Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by Registry policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website. Registration policies of the Registry and the terms and conditions applicable to your .eu registration may be found at: <a href="http://www.eurid.eu/en/general/launch">http://www.eurid.eu/en/general/launch</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation.</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Domain Name Disputes. You agree that, if the registration or reservation of your domain name is challenged by a third party, you will be subject to the provisions specified by the Registry or any court of law.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td width="28" valign="top" class="style1">(j)</td>
<td width="693" class="style1"><b>.fr Domains.</b> In the case of a “.fr” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td width="28" valign="top" class="style1"></td>
<td width="693" class="style1">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Representation of Registrant. .fr domain names are available for registration to companies and persons who fulfill the following criteria. As a condition of registration, you accordingly represent that you are: </td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">A legal entity:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(I)</td>
<td width="693">whose head office is in France; (or),</td>
</tr>
<tr>
<td valign="top" width="28">(II)</td>
<td width="693">which possess an address in France which is expressly listed in the public electronic databases of the registrars of the commercial courts or the National Statistical and Economic Studies Institute (INSEE), (or), </td>
</tr>
<tr>
<td valign="top" width="28">(III)</td>
<td width="693">State institutions or departments, local authorities or associated establishments, (or),</td>
</tr>
<tr>
<td valign="top" width="28">(IV)</td>
<td width="693">which own a trademark registered with the National Intellectual Property Institute or own a registered EU or international trademark which expressly includes French territory.</td>
</tr>
</table> </td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Administrative Contact. Each registrant must designate an administrative contact to act as a coordinator between the registrant and the Registry. In the case of .fr registrations, the administrative contact must be based in France where it can receive legal and other documents.</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Registry Policies. You agree to be bound by the Registry’s Naming Charter, its registration rules for .fr. English language translations of the Registry’s documents are provided for convenience. The Registry documents may be found at: www.afnic.fr/obtenir/chartes/nommage-fr.</td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Domain Name Disputes. You agree that, if the registration or reservation of your domain name is challenged by a third party, you will be subject to the provisions specified by the Registry or any court of law. The current .fr dispute resolution policy and procedures can be found at <a href="http://www.afnic.fr/doc/ref/juridique/parl">http://www.afnic.fr/doc/ref/juridique/parl</a>. You agree that in the event a domain name dispute arises with any third party, you will indemnify and hold us harmless pursuant to the terms and conditions specified by the Registry or any court of law.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(k)</td>
<td width="693"><b>.it Domains. </b> In the case of a “it” registration, the following terms and conditions shall apply:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Registration Criteria. Registration of an .it name is restricted to subjects belonging to a member state of the European Union. Individuals and associations operating without a VAT number or a fiscal code are limited to a single domain name registration. </td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Registry Policy. You acknowledge and understand that by accepting the terms and conditions of this agreement you shall be bound by Registry policies and any pertinent rules or policies that exist now or in the future and which are posted on the Registry website at <a href="http://www.nic.it/NA/regole-naming-curr-engl.txt">http://www.nic.it/NA/regole-naming-curr-engl.txt</a>. You are responsible for monitoring the Registry’s site on a regular basis. In the event that you do not wish to be bound by a revision or modification to any Registry policy, your sole remedy is to cancel your domain name registration by following the appropriate Registry policy regarding such cancellation. Additional policies, including transfer procedures and “netiquette” rules may be found at<a href="http://www.nic.it/NA/index-engl.html"> http://www.nic.it/NA/index-engl.html</a>.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(l)</td>
<td width="693"><b>.nl Domains.</b> In the case of a “.nl” registration, the following terms and conditions shall apply:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Registration Criteria. Registration of a .nl domain name is unrestricted save and except that applicants who are not based in the Netherlands or who do not have a registered address in the Netherlands must provide an address in the Netherlands where written documents can be sent to the applicant and where legal summonses can be served.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Registry Policies. You agree to be bound by the policies of the Registry including but not limited to the Registry’s Registration Regulations. English language translations of the Registry’s documents are provided for convenience and may be found at: <a href="http://www.sidn.nl/ace.php/c,728,2679,,,,Regulations_for_registration_of_nl_domain_names.html.">http://www.sidn.nl/ace.php/c,728,2679,,,,Regulations_for_registration_of_nl_domain_names.html.</a> You agree that, if the registration or reservation of your domain name is challenged by a third party, you will be subject to the provisions specified by the Registry or any court of law. The current .nl dispute resolution policy and procedures can be found at <a href="http://www.domain-registry.nl/sidn_english/flat/General/Rules/Regulations_for_arbitration_on_.nl_domain_names/index.html">http://www.domain-registry.nl/sidn_english/flat/General/Rules/Regulations_for_arbitration_on_.nl_domain_names/index.html</a>. You agree that in the event a domain name dispute arises with any third party, you will indemnify and hold us harmless pursuant to the terms and conditions specified by the Registry or any court of law. </td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(m)</td>
<td width="693"><b>.tv Domains.</b> In the case of a “.tv” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another Registrar, you agree to be bound by the Dispute Policy that is incorporated herein and made a part of this Agreement by reference. The current version of the Dispute Policy may be found at <a href="http://www.icann.org/dndr/udrp/policy.htm">http://www.icann.org/dndr/udrp/policy.htm</a>. Please take the time to familiarize yourself with this policy.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Policy . You agree that your registration of the .tv domain name shall be subject to suspension, cancellation, or transfer pursuant to any ICANN or government adopted policy, or pursuant to any Registrar or registry procedure not inconsistent with an ICANN or government-adopted policy, (1) to correct mistakes by us or the applicable Registry in registering the name or (2) for the resolution of disputes concerning the domain name. You acknowledge that you have reviewed the .tv General Terms of Service which may be found at: <a href="http://www.tv/en-def-5066945b5fcc/en/policies/tos.shtml">http://www.tv/en-def-5066945b5fcc/en/policies/tos.shtml</a> and expressly agree to the terms outlined therein. </td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(n)</td>
<td width="693"><b>.uk Domains.</b> In the case of a .uk registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">“Nominet UK” means the entity granted the exclusive right to administer the registry for .uk domain name registrations.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the Dispute Policy which is incorporated herein and made a part of this Agreement by reference. The current version of the Dispute Policy may be found at: <a href="http://www.nominet.org.uk/disputes/">http://www.nominet.org.uk/disputes/</a>. Please take the time to familiarize yourself with this policy. </td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Nominet UK Policy. You agree that your registration of the domain name shall be subject to suspension, cancellation, or transfer pursuant to any Nominet UK-adopted policy, term or condition, or pursuant to any registrar or registry procedure not inconsistent with an Nominet UK-adopted policy, (1) to correct mistakes by a registrar or the registry in registering the name, or (2) for the resolution of disputes concerning the domain name. The current Nominet UK terms and conditions can be found at: <a href="http://www.nominet.org.uk/registrants/legal/terms/">http://www.nominet.org.uk/registrants/legal/terms/</a>.
<BR>
<BR>
When you submit a request for a domain name registration with Tucows and/or Reseller, you will be entering into two contracts – one contract with Tucows and/or Reseller and one contract with Nominet UK.
<BR><BR>
Tucows and your Reseller will act as agents on your behalf by submitting your application to Nominet for you, however, you will still be entering into a direct contract between you and Nominet UK. This is a separate contract from this agreement; may be found at <a href="http://resellers.tucows.com/contracts/uk/ukterms">http://resellers.tucows.com/contracts/uk/ukterms</a>. Tucows and Reseller must also make you aware that by accepting Nominet’s terms and conditions you are consenting to Nominet using your personal data for a variety of reasons. In particular, your name and address may be published as part of Nominet’s Whois look-up service. </td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Transfer of Ownership. Any transfer of ownership in and to a domain name registration shall be affected in accordance with Nominet UK policies and procedures.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(o)</td>
<td width="693"><b>.us Domains.</b> In the case of a “.us” registration, the following terms and conditions will apply:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">“DOC” means the United States of America Department of Commerce.</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">“.us Nexus Requirement”. Only those individuals or organizations that have a substantive lawful connection in the United States are permitted to register for .usTLD domain names. Registrants in the .usTLD must satisfy the nexus requirement (“Nexus” or “Nexus Requirements”) set out at: <a href="http://www.neustar.us/policies/docs/ustld_nexus_requirements.pdf">http://www.neustar.us/policies/docs/ustld_nexus_requirements.pdf</a>.</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">Selection of a Domain Name. You certify and represent that:</td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">You have and shall continue to have, a bona fide presence in the United States on the basis of real and substantial lawful contacts with, or lawful activities in, the United States as defined in Section (ii) hereinabove; </td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">The listed name servers are located within the United States; </td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">The data provided in the domain name registration application is true, correct, up to date and complete, and that you will continue to keep all of the information provided correct, up-to-date and complete; </td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">To the best of the your knowledge and belief, neither this registration of a domain name nor the manner in which it is directly or indirectly to be used infringes upon the legal rights of a third party;</td>
</tr>
<tr>
<td valign="top" width="28">(E)</td>
<td width="693">That the domain name is not being registered for nor shall it at any time whatsoever be used for any unlawful purpose whatsoever; </td>
</tr>
<tr>
<td valign="top" width="28">(E)</td>
<td width="693">You have the authority to enter into this Registration Agreement.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">Domain Name Dispute Policy. If you reserved or registered a domain name through us, or transferred a domain name to us from another registrar, you agree to be bound by the Dispute Policy and the usDRP, as defined below, that is incorporated herein and made a part of this Agreement by reference. Please take the time to familiarize yourself with these policies. </td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">Domain Name Disputes. You acknowledge having read and understood and agree to be bound by the terms and conditions of the following documents, as they may be amended from time to time, which are hereby incorporated and made an integral part of this Agreement: </td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">The Nexus Dispute Policy (“Dispute Policy), available at: <a href="http://www.neustar.us/policies/docs/nexus_dispute_policy.pdf">http://www.neustar.us/policies/docs/nexus_dispute_policy.pdf</a>. The Dispute Policy will provide interested parties with an opportunity to challenge a registration not complying with the Nexus Requirements.</td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">The usTLD Dispute Resolution Policy (“usDRP”) available at: <a href="http://www.neustar.us/policies/docs/usdrp.pdf">http://www.neustar.us/policies/docs/usdrp.pdf</a>. The usDRP is intended to provide interested parties with an opportunity to challenge a registration based on alleged trademark infringement.</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">In addition to the foregoing, you agree that, for the adjudication of disputes concerning or arising from use of the Registered Name, you shall submit, without prejudice to other potentially applicable jurisdictions, to the jurisdiction of the courts (i) of your domicile, (ii) where Tucows is located, and (iii) the United States.</td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(vi)</td>
<td width="693">Policy. You agree that your registration of the domain name shall be subject to suspension, cancellation, or transfer pursuant to any Tucows, Registry Operator, the DOC or government-adopted policy, or pursuant to any registrar or registry procedure not inconsistent with a DOC or government-adopted policy, (1) to correct mistakes by us or the applicable Registry in registering the name or (2) for the resolution of disputes concerning the domain name. The Registry Operator’s policies can be found at <a href="http://www.neustar.us/policies">http://www.neustar.us/policies</a>. </td>
</tr>
<tr>
<td valign="top" width="28">(vii)</td>
<td width="693">Indemnity. The DOC shall be added to the parties you have agreed to indemnify in Section 13 hereinabove.</td>
</tr>
<tr>
<td valign="top" width="28">(viii)</td>
<td width="693">Information. As part of the registration process, you are required to provide us certain information and to update us promptly as such information changes such that our records are current, complete and accurate. You are obliged to provide us the following information: </td>
</tr>
<!--indent twice start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(A)</td>
<td width="693">Your full name, postal address, e-mail address and telephone number and fax number (if available) (or, if different, that of the domain name holder); </td>
</tr>
<tr>
<td valign="top" width="28">(B)</td>
<td width="693">The domain name being registered;</td>
</tr>
<tr>
<td valign="top" width="28">(C)</td>
<td width="693">The name, postal address, e-mail address, and telephone number and fax number (if available) telephone numbers of the administrative contact, the technical contact and the billing contact for the domain name; </td>
</tr>
<tr>
<td valign="top" width="28">(D)</td>
<td width="693">The IP addresses and names of the primary nameserver and any secondary nameserver(s) for the domain name; </td>
</tr>
</table> </td>
</tr>
<!--indent twice end-->
<tr>
<td valign="top" width="28">(ix)</td>
<td width="693">In addition to the foregoing, you will be required to provide additional Nexus Information. The Nexus Information requirements are set out at <a href="http://www.neustar.us/policies/docs/ustld_nexus_requirements.pdf">http://www.neustar.us/policies/docs/ustld_nexus_requirements.pdf</a>.
<BR>
<BR>
Any other information, which we request from you at registration, is voluntary. Any voluntary information we request is collected for the purpose of improving the products and services offered to you through your Reseller.</td>
</tr>
<tr>
<td valign="top" width="28">(x)</td>
<td width="693">Disclosure and Use of the Registration Information. You agree and acknowledge that we will make domain name registration information you provide available to the DOC, to the Registry Operator, and to other third parties as applicable. You further agree and acknowledge that we may make publicly available, or directly available to third party vendors, some, or all, of the domain name registration information you provide, for purposes of inspection (such as through our Whois service) or other purposes as required or permitted by the DOC and applicable laws. </td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28"></td>
<td width="693">You hereby consent to any and all such disclosures and use of information provided by you in connection with the registration of a domain name (including any updates to such information), whether during or after the term of your registration of the domain name. You hereby irrevocably waive any and all claims and causes of action you may have arising from such disclosure or use of your domain name registration information by us.
<BR><BR>
You may access your domain name registration information in our possession to review, modify or update such information, by accessing our domain manager service, or similar service, made available by us through your Reseller.
<BR><BR>
We will not process data about any identified or identifiable natural person that we obtain from you in a way incompatible with the purposes and other limitations which we describe in this Agreement.
<BR><BR>
We will take reasonable precautions to protect the information we obtain from you from our loss, misuse, unauthorized accessor disclosure, alteration or destruction of that information. </td>
</tr>
</table>
33. <b>WHOIS PRIVACY SERVICE</b>. The following terms and conditions will apply if you subscribe to the Whois Privacy Service:
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(a)</td>
<td width="693">Subscribers to the Whois Privacy Service have elected to include the following information in the publicly available Whois Registry:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">Contactprivacy.com shall appear as the Registrant and Contacts name(s);</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Tucows’ postal address and a Tucows assigned email address and telephone number shall appear on behalf of the Registrant and the Contact(s); </td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">The primary and secondary nameservers shall be those designated by the Registrant; </td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">The original date of registration and the expiration of each domain name;</td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693"> Tucows will be identified as the registrar of record.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(b)</td>
<td width="693">You understand and agree that the Registrant and Contact Information that you have provided will be kept on file. You further agree and warrant that you will ensure that the Whois Information is true, accurate and up to date. </td>
</tr>
<tr>
<td valign="top" width="28">(c)</td>
<td width="693">You will will retain complete control over the domain name and its registration records and may suspend and reinstate the Whois Privacy Service at your discretion.</td>
</tr>
<tr>
<td valign="top" width="28">(d)</td>
<td width="693">The Whois Privacy Service may be used with both new and existing domain name registrations. You may use the Whois Privacy Service with respect to a domain name that has been transferred but it will only commence after the transfer has been completed. If you wish to transfer the domain name to a different registrar,the Whois Privacy Service must be disabled in order to initiate the transfer.</td>
</tr>
<tr>
<td valign="top" width="28">(e)</td>
<td width="693">We will send all obligatory renewal and transfer related messages to the Contacts you have designated. </td>
</tr>
<tr>
<td valign="top" width="28">(f)</td>
<td width="693">Communications Forwarding. Communications received with respect to a particular domain name registration will be handled as follows:</td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">We will forward to you or a Contact all correspondence received by registered mail or traceable courier. This information may be opened, scanned and emailed to you or your Contact.. Regular postal mail will be discarded or returned to sender at our discretion. </td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693">Email correspondence will be forwarded according to the instructions of the Registrant as they appear in our records.</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">A voice mail message will advise all callers that inbound messages will not be accepted; calls will be directed to the contactprivacy.com web site where written messages will be forwarded according to your instructions. </td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">We will only be responsible for forwarding communications where our details have appeared in the whois and when your Whois Information is accurate, complete and up to date.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(g)</td>
<td width="693">Right to Suspend and Disable. We shall have the right, at our sole discretion and without liability to you or any of your Contacts, suspend or cancel your domain name and to reveal Registrant and Contact Whois Information in certain circumstances, including but not limited to the following: </td>
</tr>
<!--indent once start-->
<tr>
<td valign="top" width="28"></td>
<td width="693">
<table width="100%" border="0" cellpadding="5">
<tr>
<td valign="top" width="28">(i)</td>
<td width="693">when required by law;</td>
</tr>
<tr>
<td valign="top" width="28">(ii)</td>
<td width="693"> in the good faith belief that disclosure is necessary to further determination of an alleged breach of a law;</td>
</tr>
<tr>
<td valign="top" width="28">(iii)</td>
<td width="693">to comply with a legal process served upon Tucows;</td>
</tr>
<tr>
<td valign="top" width="28">(iv)</td>
<td width="693">to resolve any and all third party claims including but not limited to ICANN’s or a Registry’s dispute resolution policy;</td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">to avoid financial loss or legal liability</td>
</tr>
<tr>
<td valign="top" width="28">(v)</td>
<td width="693">to avoid financial loss or legal liability</td>
</tr>
<tr>
<td valign="top" width="28">(vi)</td>
<td width="693">if we believe that you or one of your Contacts is using the Whois Privacy Service to conceal involvement with illegal, illicit, objectionable or harmful activities; or </td>
</tr>
<tr>
<td valign="top" width="28">(vii)</td>
<td width="693">to transmit SPAM, viruses, worms or other harmful computer programs.</td>
</tr>
</table> </td>
</tr>
<!--indent once end-->
<tr>
<td valign="top" width="28">(h)</td>
<td width="693">You understand and agree that, in the event that we receive a formal complaint, notice of claim or UDRP, that we will have the right to disable the Whois Privacy Service pending final disposition of the matter.</td>
</tr>
</table>
<b>ACCEPTANCE OF AGREEMENT.</b> YOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT AND AGREE TO ALL ITS TERMS AND CONDITIONS. YOU HAVE INDEPENDENTLY EVALUATED THE DESIRABILITY OF THE SERVICE AND ARE NOT RELYING ON ANY REPRESENTATION AGREEMENT, GUARANTEE OR STATEMENT OTHER THAN AS SET FORTH IN THIS AGREEMENT.
{ include('elements/footer.html'); }
|