-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.html
1784 lines (1766 loc) · 162 KB
/
toc.html
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>HuskyNZ </title>
<link rel="stylesheet" type="text/css" href="CSS/styals.css">
<link rel="stylesheet" type="text/css" href="CSS/normalize.css">
<link rel="stylesheet" type="text/css" href="CSS/nav.css">
<link rel="apple-touch-icon" sizes="180x180" href="https://serv.hnz.li/logo/default.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://serv.hnz.li/logo/default.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://serv.hnz.li/logo/default.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200&display=swap" rel="stylesheet">
<script src="Javascript/fbase.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/5.0.0/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/5.0.0/firebase-ui-auth.css" />
<link rel="stylesheet" href="https://s.pageclip.co/v1/pageclip.css" media="screen">
<script src="https://cdn.auth0.com/js/auth0-spa-js/1.13/auth0-spa-js.production.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/configcat-js@latest/dist/configcat.min.js">
</script>
<script data-ad-client="ca-pub-6576328292608068" async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script src="http://www.atmrum.net/rum.js"></script>
<script>
rum.start("93b15585c5d5000986509dc1615f6133");
</script>
</head>
<style>
[data-custom-class='body'],
[data-custom-class='body'] * {
background: transparent !important;
}
[data-custom-class='title'],
[data-custom-class='title'] * {
font-family: Arial !important;
font-size: 26px !important;
color: #000000 !important;
}
[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
font-family: Arial !important;
color: #595959 !important;
font-size: 14px !important;
}
[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
font-family: Arial !important;
font-size: 19px !important;
color: #000000 !important;
}
[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
font-family: Arial !important;
font-size: 17px !important;
color: #000000 !important;
}
[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
color: #595959 !important;
font-size: 14px !important;
font-family: Arial !important;
}
[data-custom-class='link'],
[data-custom-class='link'] * {
color: #3030F1 !important;
font-size: 14px !important;
font-family: Arial !important;
word-break: break-word !important;
}
</style>
<div data-custom-class="body">
<div align="center" style="text-align: left; line-height: 1;">
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div align="center" class="MsoNormal" style="text-align:center;line-height:150%;"><a
name="_2cipo4yr3w5d"></a>
<div align="center" class="MsoNormal" style="line-height: 22.5px;">
<div align="center" class="MsoNormal" style="line-height: 150%;"><a name="_gm5sejt4p02f"></a>
<div align="center" class="MsoNormal" data-custom-class="title"
style="text-align: left; line-height: 1.5;"><strong><span
style="line-height: 22.5px; font-size: 26px;">
<bdt class="block-component"></bdt>
<bdt class="question">HUSKYNZ TERMS OF USE</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span></strong></div>
<div align="center" class="MsoNormal" style="line-height: 22.5px; text-align: left;"><a
name="_7m5b3xg56u7y"></a></div>
<div align="center" class="MsoNormal" data-custom-class="subtitle"
style="text-align: left; line-height: 22.5px;"><br></div>
<div align="center" class="MsoNormal" data-custom-class="subtitle"
style="text-align: left; line-height: 1.5;"><span
style="color: rgb(89, 89, 89); font-size: 14.6667px; text-align: justify;"><strong>Last
updated <bdt class="block-container question question-in-editor"
data-id="e2088df5-25ea-aec9-83d4-6284f5a7e043" data-type="question">October 1st 2024</bdt></strong></span></div>
</div>
</div>
<div align="center" class="MsoNormal" style="line-height: 17.25px; text-align: left;"><br></div>
<div align="center" class="MsoNormal" style="line-height: 17.25px; text-align: left;"><br></div>
<div align="center" class="MsoNormal" style="line-height: 17.25px; text-align: left;"><br></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">TABLE OF
CONTENTS</span></strong></span></span></span></div>
<div style="line-height: 1.5; text-align: left;"><br></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#agreement"><span style="color: rgb(89, 89, 89);">1.
AGREEMENT TO TERMS</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#ip"><span style="color: rgb(89, 89, 89);">2. INTELLECTUAL
PROPERTY RIGHTS</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#userreps">3. USER
REPRESENTATIONS</a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#userreg"><span style="color: rgb(89, 89, 89);">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_account_option"
data-type="statement"><span style="font-size: 15px;"></span></bdt>
</div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#prohibited"><span style="color: rgb(89, 89, 89);">4.
PROHIBITED ACTIVITIES</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#ugc"><span style="color: rgb(89, 89, 89);">5. USER GENERATED
CONTRIBUTIONS</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#license">6. CONTRIBUTION
LICENSE</a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#reviews"><span style="color: rgb(89, 89, 89);">
<bdt class="block-container if" data-type="if"
id="a378120a-96b1-6fa3-279f-63d5b96341d3">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="review_option"
data-type="statement"><span style="font-size: 15px;"></span></bdt>
</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#mobile"><span style="color: rgb(89, 89, 89);">
<bdt class="block-container if" data-type="if"
id="c954892f-02b9-c743-d1e8-faf0d59a4b70">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="mobile_app_option"
data-type="statement"><span style="font-size: 15px;"></span></bdt>
</span></a></span></div>
<div align="center" style="text-align: left;"><span style="font-size: 15px;">
<bdt class="block-component">
</span></bdt></span></a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#submissions">7.
SUBMISSIONS</a></span></span></div>
<div align="center" style="text-align: left;"><span style="font-size: 15px;">
<bdt class="block-component"></bdt><a data-custom-class="link" href="#thirdparty"><span
style="color: rgb(89, 89, 89);">8. THIRD-PARTY WEBSITE AND CONTENT</span></a><a
data-custom-class="link" href="#agreement"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor" data-type="close"><span
style="font-size: 15px;"></span></bdt>
</span></a>
</span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#advertisers"><span style="color: rgb(89, 89, 89);">
<bdt class="block-container if" data-type="if"
id="14038561-dad7-be9d-370f-f8aa487b2570">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="advertiser_option"
data-type="statement"><span style="font-size: 15px;"></span></bdt>
</bdt>
</bdt>9. ADVERTISERS
</span></a><a data-custom-class="link" href="#agreement"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor" data-type="close"><span
style="font-size: 15px;"></span></bdt>
</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#sitemanage">10. SITE
MANAGEMENT</a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#privacypolicy1"><span style="color: rgb(89, 89, 89);">
<bdt class="block-container if" data-type="if"
id="bdd90fa9-e664-7d0b-c352-2b8e77dd3bb4">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="privacy_policy_option"
data-type="statement"><span style="font-size: 15px;"></span></bdt>
</bdt>
</bdt>11. PRIVACY POLICY
</span></a><a data-custom-class="link" href="#advertisers"></a><a data-custom-class="link"
href="#agreement"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor" data-type="close"><span
style="font-size: 15px;">
<bdt class="block-container if" data-type="if"
id="87a7471d-cf82-1032-fdf8-601d37d7b017">
<bdt data-type="conditional-block">
<bdt class="block-component"
data-record-question-key="privacy_policy_followup"
data-type="statement" style="font-size: 14.6667px;"><span
style="font-size: 15px;"></span></bdt>
</span></a><a data-custom-class="link" href="#privacypolicy"></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#dmca"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component">
<bdt class="block-component">
</span></bdt>
</bdt></span></bdt>
</bdt></span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#copyright1"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component">
<bdt class="block-component"></bdt>
</div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#terms"></a><a data-custom-class="link" href="#terms"><span
style="color: rgb(89, 89, 89);">12. TERM AND TERMINATION</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#modifications"><span style="color: rgb(89, 89, 89);">13.
MODIFICATIONS AND INTERRUPTIONS</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#law"><span style="color: rgb(89, 89, 89);">14. GOVERNING
LAW</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#disputes"><span style="color: rgb(89, 89, 89);">15. DISPUTE
RESOLUTION</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#corrections">16.
CORRECTIONS</a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#disclaimer"><span style="color: rgb(89, 89, 89);">17.
DISCLAIMER</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#liability"><span style="color: rgb(89, 89, 89);">18.
LIMITATIONS OF LIABILITY</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#indemnification">19.
INDEMNIFICATION</a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#userdata"><span style="color: rgb(89, 89, 89);">20. USER
DATA</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#electronic"><span style="color: rgb(89, 89, 89);">21.
ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND SIGNATURES</span></a></span></div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">
<bdt class="block-component">
</span></bdt></span></a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#misc"><span style="color: rgb(89, 89, 89);">22.
MISCELLANEOUS</span></a></span></div>
<div style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#contact">23. CONTACT
US</a></span></span></div>
<div style="line-height: 1.5; text-align: left;"><br></div>
<div style="line-height: 1.5; text-align: left;"><br></div>
</div>
<div class="MsoNormal" data-custom-class="heading_1" id="agreement" style="line-height: 115%;"><a
name="_a7mwfgcrtsqn"></a><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">1. AGREEMENT TO
TERMS</span></strong></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">These Terms of Use constitute a legally binding agreement made between you, whether personally or
on behalf of an entity (“you”) and <bdt class="block-container question question-in-editor"
data-id="4ab94aa9-19d1-61e0-711e-42c7d186232b" data-type="question">HuskyNZ</bdt>
<bdt class="block-component"></bdt> ("<bdt class="block-component"></bdt><strong>Company</strong>
<bdt class="statement-end-if-in-editor"></bdt>," “<strong>we</strong>," “<strong>us</strong>," or
“<strong>our</strong>”), concerning your access to and use of the <bdt
class="block-container question question-in-editor"
data-id="92c3b320-1d8b-c74c-db68-d12810736807" data-type="question"><a
href="https://www.husky.nz" target="_blank"
data-custom-class="link">https://www.husky.nz</a></bdt> or https://hnz.li website as well as any other media
form, media channel, mobile website or mobile application related, linked, or otherwise connected
thereto (collectively, the “Site”).<span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">
<bdt class="statement-end-if-in-editor">.</bdt>
<bdt class="else-block"></bdt>
</bdt>
</span></bdt></span>
<bdt class="statement-end-if-in-editor"></bdt></span>
<bdt class="block-component"></bdt></span></span></span></span> You agree that by accessing the Site,
you have read, understood, and agreed to be bound by all of these Terms of Use. IF YOU DO NOT AGREE WITH
ALL OF THESE TERMS OF USE, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SITE AND YOU MUST
DISCONTINUE USE IMMEDIATELY.</span>
</div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">Supplemental terms and conditions or documents that may be posted on the Site from time to time are
hereby expressly incorporated herein by reference. We reserve the right, in our sole discretion, to
make changes or modifications to these Terms of Use <bdt class="block-component"></bdt>at any time
and for any reason<bdt class="statement-end-if-in-editor"></bdt>. We will alert you about any
changes by updating the “Last updated” date of these Terms of Use, and you waive any right to
receive specific notice of each such change. Please ensure that you check the applicable Terms every
time you use our Site so that you understand which Terms apply. You will be subject to, and will be
deemed to have been made aware of and to have accepted, the changes in any revised Terms of Use by
your continued use of the Site after the date such revised Terms of Use are posted.</span></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">The information provided on the Site is not intended for distribution to or use by any person or
entity in any jurisdiction or country where such distribution or use would be contrary to law or
regulation or which would subject us to any registration requirement within such jurisdiction or
country. Accordingly, those persons who choose to access the Site from other locations do so on
their own initiative and are solely responsible for compliance with local laws, if and to the extent
local laws are applicable.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">
<bdt class="block-component"></bdt>
</span></bdt></span></span></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_o18_option" data-type="statement"><span
style="font-size: 15px;"></span></bdt><span style="font-size: 15px;">
<bdt data-type="body"><span style="line-height: 16.8667px; color: rgb(89, 89, 89);">The Site is
intended for users who are at least 18 years old. Persons under the age of 18 are not
permitted to use or register for the Site.</span></bdt>
</span>
</bdt><span style="font-size: 15px;">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_o18_option" data-type="statement">
</span></bdt>
</div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_1" id="ip" style="line-height: 1.5;"><a
name="_4rd71iod99ud"></a><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">2.
</span></strong>INTELLECTUAL PROPERTY RIGHTS</span></strong></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">Unless otherwise indicated, the Site is our proprietary
property and all source code, databases, functionality, software, website
designs, audio, video, text, photographs, and graphics on the Site
(collectively, the “Content”) and the trademarks, service marks, and logos
contained therein (the “Marks”) are owned or controlled by us or licensed to
us, and are protected by copyright and trademark laws and various other
intellectual property rights and unfair competition laws of the United States, international
copyright laws, and international conventions. The Content and the Marks are provided on the
Site “AS IS” for your information and personal use only. Except as expressly provided in these Terms
of Use, no part of the Site and no Content or Marks may be copied, reproduced,
aggregated, republished, uploaded, posted, publicly displayed, encoded,
translated, transmitted, distributed, sold, licensed, or otherwise exploited
for any commercial purpose whatsoever, without our express prior written
permission.</span></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">Provided that you are eligible to use the Site, you are
granted a limited license to access and use the Site and to download or print a
copy of any portion of the Content to which you have properly gained access
solely for your personal, non-commercial use. We reserve all rights not
expressly granted to you in and to the Site, the Content and the Marks.</span></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_1" id="userreps" style="line-height: 1.5;"><a
name="_vhkegautf00d"></a><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">3.</span></strong></span>
</strong>USER REPRESENTATIONS</span></strong></div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph;
line-height:115%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">By using the Site, you
represent and warrant that: </span>
<bdt class="block-container if" data-type="if" id="d2d82ca8-275f-3f86-8149-8a5ef8054af6">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_account_option"
data-type="statement"></bdt>
</bdt><span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">1</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you have the legal capacity and you agree
to comply with these Terms of Use;</span>
<bdt class="block-container if" data-type="if" id="8d4c883b-bc2c-f0b4-da3e-6d0ee51aca13">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_u13_option"
data-type="statement"></bdt>
</bdt></span>
</bdt>
</bdt>
</bdt><span style="color: rgb(89, 89, 89); font-size: 11pt;"> (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">2</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you are not a minor in the jurisdiction in
which you reside<bdt class="block-container if" data-type="if"
id="76948fab-ec9e-266a-bb91-948929c050c9">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_o18_option"
data-type="statement"></bdt>
</bdt>; (</span><span style="color: rgb(89, 89, 89); font-size: 14.6667px;">3</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will not access the Site through
automated or non-human means, whether through a bot, script, or otherwise; (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">4</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will not use the Site for any illegal or
unauthorized purpose; and (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">5</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) your use of the Site will not violate any
applicable law or regulation.</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;"></span>
</div>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><br></div>
<div class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph;
line-height:115%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">If you provide any
information that is untrue, inaccurate, not current, or incomplete, we have the right to suspend
or terminate your account and refuse any and all current or future use of the Site (or any
portion thereof).</span></div>
</div>
</div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 1.5;"><br></div>
<div align="center" class="MsoNormal" style="text-align: left; line-height: 150%;">
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1;"><a name="_esuoutkhaf53"></a>
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_account_option" data-type="statement">
<span style="font-size: 15px;"></span></bdt>
</div>
<div class="MsoNormal" style="line-height:115%;"><a name="_1voziltdxegg"></a>
<div class="MsoNormal" data-custom-class="heading_1" id="prohibited" style="line-height: 17.25px;">
<strong><span style="line-height: 24.5333px; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">4.</span></strong></span>
</strong>PROHIBITED ACTIVITIES</span></strong></div>
</div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" style="line-height:115%;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You may not access or
use the Site for any purpose other than that for which we make the Site available. The Site may
not be used in connection with any commercial endeavors except those that are specifically
endorsed or approved by us.</span></div>
</div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" style="line-height:115%;">
<div class="MsoNormal" style="text-align: justify; line-height: 17.25px;">
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">As a user of
the Site, you agree not to:</span></div>
</div>
<ul>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Systematically
retrieve data or other content from the Site to create or compile, directly or
indirectly, a collection, compilation, database, or directory without written
permission from us.</span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Trick,
defraud, or mislead us and other users, especially in any attempt to
learn sensitive account information such as user
passwords.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Circumvent,
disable, or otherwise interfere with security-related features of the
Site, including features that prevent or restrict the use or copying of
any Content or enforce limitations on the use of the Site and/or the
Content contained therein.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Disparage,
tarnish, or otherwise harm, in our opinion, us and/or the
Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Use
any information obtained from the Site in order to harass, abuse, or
harm another person.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Make
improper use of our support services or submit false reports of abuse or
misconduct.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Use
the Site in a manner inconsistent with any applicable laws or
regulations.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Engage
in unauthorized framing of or linking to the
Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Upload
or transmit (or attempt to upload or to transmit) viruses, Trojan
horses, or other material, including excessive use of capital letters
and spamming (continuous posting of repetitive text), that interferes
with any party’s uninterrupted use and enjoyment of the Site or
modifies, impairs, disrupts, alters, or interferes with the use,
features, functions, operation, or maintenance of the
Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Engage
in any automated use of the system, such as using scripts to send
comments or messages, or using any data mining, robots, or similar data
gathering and extraction tools.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Delete
the copyright or other proprietary rights notice from any
Content.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Attempt
to impersonate another user or person or use the username of another
user.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Upload
or transmit (or attempt to upload or to transmit) any material that acts
as a passive or active information collection or transmission mechanism,
including without limitation, clear graphics interchange formats
(“gifs”), 1×1 pixels, web bugs, cookies, or other similar devices
(sometimes referred to as “spyware” or “passive collection mechanisms”
or “pcms”).</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Interfere
with, disrupt, or create an undue burden on the Site or the networks or
services connected to the Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Harass,
annoy, intimidate, or threaten any of our employees or agents engaged in
providing any portion of the Site to
you.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Attempt
to bypass any measures of the Site designed to prevent or restrict
access to the Site, or any portion of the
Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Copy
or adapt the Site’s software, including but not limited to Flash, PHP,
HTML, JavaScript, or other code.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Except
as permitted by applicable law, decipher, decompile, disassemble, or
reverse engineer any of the software comprising or in any way making up
a part of the Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Except
as may be the result of standard search engine or Internet browser
usage, use, launch, develop, or distribute any automated system,
including without limitation, any spider, robot, cheat utility, scraper,
or offline reader that accesses the Site, or using or launching any
unauthorized script or other
software.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Use
a buying agent or purchasing agent to make purchases on the
Site.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Make
any unauthorized use of the Site, including collecting usernames and/or
email addresses of users by electronic or other means for the purpose of
sending unsolicited email, or creating user accounts by automated means
or under false pretenses.</span></span></span></span></span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Use
the Site as part of any effort to compete with us or otherwise use the
Site and/or the Content for any revenue-generating endeavor or
commercial enterprise.</span></span></span></span>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Spam any @husky.nz email or email associated to HuskyNZ</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Circumvent, disable, or otherwise interfere with security-related
features of your Site. This includes features that prevent/restrict the use of any
content limits site usage</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Disparage, tarnish, or otherwise harm, in our opinion, your
company and/or your Site</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Harass, abuse, or harm another person using any information
obtained from your site</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Use the support services improperly, or submit false reports of
abuse or misconduct</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Framing or linking to your Site without authorization</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Attempt to upload or transmit viruses, Trojan horses, or other
materials (including excessive use of capital letters and spamming) that interferes
with any party's uninterrupted use of your Site and its features</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Use scripts, data-mining, robots, or similar data gathering tools
to send comments or messages</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Delete the copyright or other proprietary rights notice from any
content</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Impersonate another user or person or use the username of another
user</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Use your site in an effort to compete with you, or otherwise use
your Site and/or the content Content for any revenue-generating endeavor or
commercial enterprise</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Use your site in an unauthorized way (collecting usernames, email
addresses, of users for the purpose of sending unsolicited email, or creating user
accounts by automated means or under false pretenses</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Use any automated system (spiders, robots, cheat utility, scraper,
offline reader) to access the site, or launch any unauthorized script or software
(Unless as a result of a standard search engine or internet browser usage)</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;">
<span style="font-size: 15px;">
<bdt class="question">Except as may be the result of standard search engine or Internet
browser usage, use, launch, develop, or distribute any automated system, including
without limitation, any spider, robot, cheat utility, scraper, or offline reader
that accesses the Site, or using or launching any unauthorized script or other
software</bdt>
<bdt class="forloop-component"></bdt>
</span></li>
</ul>
<div class="MsoNormal" style="text-align: left; line-height: 1.5;"><a name="_zbbv9tgty199"></a>
</div>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1" id="ugc"
style="line-height: 17.25px; text-align: left;"><strong><span
style="line-height: 24.5333px; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">5.</span></strong></span>
</strong>USER GENERATED CONTRIBUTIONS</span></strong></div>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>The Site does not offer users to submit or post
content. We may provide you with the opportunity to create, submit, post, display,
transmit, perform, publish, distribute, or broadcast content and materials to us or
on the Site, including but not limited to text, writings, video, audio, photographs,
graphics, comments, suggestions, or personal information or other material
(collectively, "Contributions"). Contributions may be viewable by other users of the
Site and through third-party websites. As such, any Contributions you transmit may
be treated in accordance with the Site Privacy Policy. When you create or make
available any Contributions, you thereby represent and warrant that:<span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span>
</span></div>
</bdt>
</bdt>
<bdt data-type="conditional-block">
<bdt data-type="body">
<ul>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">The creation, <span
style="font-size: 14px; color: rgb(89, 89, 89);">distribution, transmission,
public display, or performance, and the accessing, downloading, or copying
of your Contributions do not and will not infringe the proprietary rights,
including but not limited to the copyright, patent, trademark, trade secret,
or moral rights of any third party.</span></span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);"><span
style="font-size: 14px; color: rgb(89, 89, 89);">You are the creator and
owner of or have the necessary licenses, rights, consents, releases, and
permissions to use and to authorize us, the Site, and other users of the
Site to use your Contributions in any manner contemplated by the Site and
these Terms of Use.</span></span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">You have the written consent,
release, and/or permission of each and every identifiable individual person in
your Contributions to use the name or likeness of each and every such
identifiable individual person to enable inclusion and use of your Contributions
in any manner contemplated by the Site and these Terms of Use.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions are not
false, inaccurate, or misleading.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions are not
unsolicited or unauthorized advertising, promotional materials, pyramid schemes,
chain letters, spam, mass mailings, or other forms of solicitation.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions are not
obscene, lewd, lascivious, filthy, violent, harassing, libelous, slanderous, or
otherwise objectionable (as determined by us).</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions do not
ridicule, mock, disparage, intimidate, or abuse anyone.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions are not used
to harass or threaten (in the legal sense of those terms) any other person and
to promote violence against a specific person or class of people.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions do not
violate any applicable law, regulation, or rule.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions do not
violate the privacy or publicity rights of any third party.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions do not
violate any applicable law concerning child pornography, or otherwise intended
to protect the health or well-being of minors.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions do not
include any offensive comments that are connected to race, national origin,
gender, sexual preference, or physical handicap.</span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 14px; color: rgb(89, 89, 89);">Your Contributions do not
otherwise violate, or link to material that violates, any provision of these
Terms of Use, or any applicable law or regulation.</span></li>
</ul>
</bdt>
</bdt>
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">Any use of
the Site in violation of the foregoing violates these Terms of Use and may result
in, among other things, termination or suspension of your rights to use the
Site.</span></div>
</bdt>
</bdt>
</div>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height:115%;">
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1" id="license"
style="line-height: 1.5; text-align: left;"><strong><span
style="line-height: 24.5333px; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">6.</span></strong></span>
</strong>CONTRIBUTION LICENSE</span></strong></div>
</bdt>
</bdt>
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" style="line-height: 17.25px; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;"><br></div>
</div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You and the Site agree
that we may access, store, process, and use any information and personal data that you provide
following the terms of the Privacy Policy and your choices (including settings).</span></div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">By submitting
suggestions or other feedback regarding the Site, you agree that we can use and share such
feedback for any purpose without compensation to you.</span></div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">We do not assert any
ownership over your Contributions. You retain full ownership of all of your Contributions and
any intellectual property rights or other proprietary rights associated with your Contributions.
We are not liable for any statements or representations in your Contributions provided by you in
any area on the Site. You are solely responsible for your Contributions to the Site and you
expressly agree to exonerate us from any and all responsibility and to refrain from any legal
action against us regarding your Contributions.</span></div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-container if" data-type="if">
<bdt class="statement-end-if-in-editor" data-type="close"><span style="font-size: 15px;"></span>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1;">
<bdt class="block-container if" data-type="if">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="review_option" data-type="statement">
<span style="font-size: 15px;"></span></bdt>
</bdt>
</div>
</div>
<div class="MsoNormal" style="line-height: 115%;"><span style="font-size: 15px;"><a
name="_6nl7u6ag6use"></a></span></div>
<bdt class="block-container if" data-type="if" id="c954892f-02b9-c743-d1e8-faf0d59a4b70">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="mobile_app_option" data-type="statement">
<span style="font-size: 15px;"></span></bdt>
</bdt>
</div>
<div align="center"><span style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span></div>
<div class="MsoNormal" data-custom-class="heading_1" id="submissions" style="line-height: 115%;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">7.</span></strong></span>
</strong>SUBMISSIONS</span></strong></div>
<div style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">You acknowledge and agree that any questions, comments,
suggestions, ideas, feedback, or other information regarding the Site ("Submissions") provided by
you to us are non-confidential and shall become our sole property. We shall own exclusive rights,
including all intellectual property rights, and shall be entitled to the unrestricted use and
dissemination of these Submissions for any lawful purpose, commercial or otherwise, without
acknowledgment or compensation to you. You hereby waive all moral rights to any such Submissions,
and you hereby warrant that any such Submissions are original with you or that you have the right to
submit such Submissions. You agree there shall be no recourse against us for any alleged or actual
infringement or misappropriation of any proprietary right in your Submissions.</span></span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><br></div>
<div align="center"><span style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span></div>
<div class="MsoNormal" data-custom-class="heading_1" id="thirdparty" style="line-height: 115%;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">8.</span></strong></span>
</strong>THIRD-PARTY WEBSITE AND CONTENT</span></strong></div>
<div style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">The Site may contain (or you may be sent via the Site)
links to other websites ("Third-Party Websites") as well as articles, photographs, text, graphics,
pictures, designs, music, sound, video, information, applications, software, and other content or items
belonging to or originating from third parties ("Third-Party Content"). Such Third-Party Websites and
Third-Party Content are not investigated, monitored, or checked for accuracy, appropriateness, or