-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
1087 lines (1076 loc) · 104 KB
/
privacy.html
File metadata and controls
1087 lines (1076 loc) · 104 KB
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>
<html>
<body>
<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" 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>PRIVACY POLICY<bdt
class="statement-end-if-in-editor"></bdt>
</span></strong>
</div>
<p style="font-size:15px;"><span style="color: rgb(127, 127, 127);"><strong><span
data-custom-class="subtitle">Last updated <bdt class="question">March
23, 2020
</bdt></span></strong></span></p>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">Thank you
for choosing to be part of our community at <bdt class="question">Clapham Watch
</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>”). We are committed to
protecting your
personal information and your right to privacy. If you have any questions or
concerns
about our <span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>, or our practices with regards to your personal
information,
please contact us at <bdt class="question">clapham.watch@gmail.com</bdt>.
</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">When you
visit our <bdt class="block-component"></bdt>website <bdt class="question">
claphamwatch.com</bdt>,<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt> and use our services, you trust us with your
personal information. We take your privacy very seriously. In this <span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>, we seek to explain to you in the clearest way possible
what
information we collect, how we use it and what rights you have in relation to
it. We
hope you take some time to read through it carefully, as it is important. If
there are
any terms in this <span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span> </span>that you do not agree with, please discontinue use of our
<bdt class="block-component"></bdt>Sites<bdt class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt> and our services.
</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">This <span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span> </span>applies to all information collected through our <bdt
class="block-component"></bdt>
<bdt class="forloop-component"></bdt>
<bdt class="question">website</bdt>
<bdt class="forloop-component"></bdt> (such as <bdt class="question">
claphamwatch.com
</bdt>), <bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt> and/or any related services, sales,
marketing or
events (we refer to them collectively in this <span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span> </span>as the "<strong>Services</strong>").
</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Please read this <span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span> </span>carefully as it will help you make informed
decisions
about sharing your personal information with us.</span></strong></span>
</p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span></p>
<p style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">TABLE OF
CONTENTS</span></span></strong></span></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#infocollect"><span
style="color: rgb(89, 89, 89);">1. WHAT INFORMATION DO WE COLLECT?</span></a>
<span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#infouse"><span
style="color: rgb(89, 89, 89);">2.
HOW DO WE USE YOUR INFORMATION?</span></a><span
style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></p>
<p style="font-size:15px;"><span style="color: rgb(89, 89, 89);"><a data-custom-class="link"
href="#infoshare">3. WILL YOUR INFORMATION BE SHARED WITH ANYONE?</a>
<bdt class="block-component"><span data-custom-class="body_text"></bdt>
</span></span><span style="font-size: 15px; color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span><span style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt></span>
</p>
<p style="font-size:15px;"><a data-custom-class="link" href="#inforetain"><span
style="color: rgb(89, 89, 89);">4. HOW LONG DO WE KEEP YOUR
INFORMATION?</span></a><span style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#infosafe"><span
style="color: rgb(89, 89, 89);">5.
HOW DO WE KEEP YOUR INFORMATION SAFE?</span></a><span
style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
<bdt class="block-component"></bdt>
</span></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#infominors"><span
style="color: rgb(89, 89, 89);">6. DO WE COLLECT INFORMATION FROM
MINORS?</span></a>
<bdt class="statement-end-if-in-editor"></bdt>
</p>
<p style="font-size:15px;"><a data-custom-class="link" href="#privacyrights"><span
style="color: rgb(89, 89, 89);">7. WHAT ARE YOUR PRIVACY RIGHTS?<bdt
class="block-component"></bdt></span></a></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#databreach"><span
style="color: rgb(89, 89, 89);">8. DATA BREACH</span></a><a
data-custom-class="link" href="#privacyrights"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></a></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#DNT"><span
style="color: rgb(89, 89, 89);">9.
CONTROLS FOR DO-NOT-TRACK FEATURES</span></a></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#caresidents"><span
style="color: rgb(89, 89, 89);">10. DO CALIFORNIA RESIDENTS HAVE SPECIFIC
PRIVACY
RIGHTS?</span></a></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#policyupdates"><span
style="color: rgb(89, 89, 89);">11. DO WE MAKE UPDATES TO THIS
POLICY?</span></a></p>
<p style="font-size:15px;"><a data-custom-class="link" href="#contact"><span
style="color: rgb(89, 89, 89);">12.
HOW CAN YOU CONTACT US ABOUT THIS POLICY?</span></a></p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span></p>
<p id="infocollect" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">1. WHAT
INFORMATION
DO WE COLLECT?</span></span></strong><span
style="font-size: 19px;"><span data-custom-class="heading_1"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span></span></span></p>
<div style="line-height: 1.1;"><br></div>
<div><span style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_2">Personal information
you
disclose to us</span></strong></span></div>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
data-custom-class="body_text">In Short:</span></em>
</strong><span data-custom-class="body_text"><em>We collect personal
information that you provide to
us.</em></span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"
style="font-size: 15px;">We collect personal information that you voluntarily
provide to
us when <bdt class="block-component"></bdt> expressing an interest in obtaining
information about us or our products and services, when participating in
activities on
the <bdt class="block-component"></bdt>Services<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt> or otherwise contacting us
</span><span data-custom-class="body_text">.</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">The
personal information that we collect depends on the context of your interactions
with us
and the <bdt class="block-component"></bdt>Services<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, the choices you make and the products and
features
you use. The personal information we collect can include the following:
</span><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Publicly Available Personal
Information.</span></strong><span data-custom-class="body_text"> We
collect <bdt class="forloop-component"></bdt>
<bdt class="question">first name, maiden name, last name, and nickname</bdt>;
<bdt class="forloop-component"></bdt>
<bdt class="question">email addresses</bdt>; <bdt class="forloop-component">
</bdt>and
other similar data.<span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span>
<bdt class="block-component"><span data-custom-class="body_text"></span></bdt></span></span>
</p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">All
personal information that you provide to us must be true, complete and accurate,
and you
must notify us of any changes to such personal information.<span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span><span data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></li>
</ul>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component"></bdt>
</bdt>
</span></span></span></span></bdt></span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p id="infouse" style="font-size: 15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">2. HOW DO
WE USE
YOUR INFORMATION?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">We process your
information for purposes based on legitimate business interests,
the
fulfillment of our contract with you, compliance with our legal
obligations, and/or your consent.</span></em></span></span></p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We use personal information collected via
our <bdt class="block-component"></bdt>Services<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt> for a variety of business purposes
described
below. We process your personal information for these purposes in
reliance on
our legitimate business interests, in order to enter into or perform a
contract
with you, with your consent, and/or for compliance with our legal
obligations.
We indicate the specific processing grounds we rely on next to each
purpose
listed below.
</span><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></p>
<p style="font-size:15px;"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We use the information we collect or
receive:<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span></span></span><br><br></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To send you marketing and
promotional communications.</span></strong><span
data-custom-class="body_text"> We and/or our third party
marketing
partners may use the personal information you send to us for our
marketing purposes, if this is in accordance with your marketing
preferences. You can opt-out of our marketing emails at any time
(see
the "</span></span></span><span data-custom-class="body_text"><a
data-custom-class="link" href="#privacyrights"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">WHAT ARE
YOUR PRIVACY RIGHTS</span></span></a></span><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">" below).</span><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span
style="color: rgb(89, 89, 89);"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt
class="block-component">
</bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt
class="statement-end-if-in-editor">
</bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</li>
</ul>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p id="infoshare" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">3. WILL
YOUR
INFORMATION BE SHARED WITH ANYONE?</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">We only share
information with your consent, to comply with laws, to provide
you with
services, to protect your rights, or to fulfill business
obligations.</span></em></span></span></p>
<div><span style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">We may
process
or share data based on the following legal basis:</span></span></div>
<ul>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Consent:</strong>
We
may process your data if you have given us specific consent to use your
personal
information in a specific purpose.</span><br><br></span></li>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Legitimate
Interests:</strong> We may process your data when it is
reasonably
necessary to achieve our legitimate business
interests.</span><br><br></span>
</li>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Performance of
a
Contract: </strong>Where we have entered into a contract with
you, we
may process your personal information to fulfill the terms of our
contract.</span><br><br></span></li>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Legal
Obligations:</strong> We may disclose your information where we
are
legally required to do so in order to comply with applicable law,
governmental
requests, a judicial proceeding, court order, or legal process, such as
in
response to a court order or a subpoena (including in response to public
authorities to meet national security or law enforcement
requirements).</span><br><br></span></li>
<li><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><strong>Vital Interests:</strong> We may
disclose
your information where we believe it is necessary to investigate,
prevent, or
take action regarding potential violations of our policies, suspected
fraud,
situations involving potential threats to the safety of any person and
illegal
activities, or as evidence in litigation in which we are
involved.</span></span>
</li>
</ul>
<p style="font-size:15px;"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">More specifically, we may need to process
your
data or share your personal information in the following
situations:</span><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span><br><br></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Business
Transfers.</span></strong><span
data-custom-class="body_text"> We may share or transfer your
information
in connection with, or during negotiations of, any merger, sale
of
company assets, financing, or acquisition of all or a portion of
our
business to another company.<bdt class="block-component"></bdt>
</span></span></span><br><br></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Third-Party
Advertisers.</span></strong><span
data-custom-class="body_text"> We may use third-party
advertising
companies to serve ads when you visit the <bdt
class="block-component">
</bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>. These companies may use
information
about your visits to our Website(s) and other websites that are
contained in web cookies and other tracking technologies in
order to
provide advertisements about goods and services of interest to
you. <bdt class="block-component"></bdt>
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
</span></span></span></span>
<bdt class="block-component"></bdt></span></span></span><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span></span>
</li>
</ul>
<div>
<bdt class="block-component"><span data-custom-class="body_text"></bdt></span><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"><span
data-custom-class="heading_1"></bdt>
</span></span><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span>
<bdt class="block-component"><span
data-custom-class="body_text"></bdt>
<bdt class="block-component">
</span></bdt></span></span></span></span></span></span></span></span>
</p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span>
</p>
<p id="inforetain" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">4.
HOW LONG
DO WE KEEP YOUR
INFORMATION?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">We keep
your
information for as long as necessary to fulfill the
purposes
outlined in this <span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor">
</bdt>
</span> </span>unless otherwise required by
law.</span></em></span></span></p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">We
will only keep your personal
information for as long as it is necessary for the purposes set
out in
this <span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>, unless a longer retention period is
required or
permitted by law (such as tax, accounting or other legal
requirements).
No purpose in this policy will require us keeping your personal
information for longer than <bdt class="block-component"></bdt>
<bdt class="question">2 years</bdt>
<bdt class="statement-end-if-in-editor"></bdt>.
</span></span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">When we have no ongoing legitimate
business need
to process your personal information, we will either delete or anonymize
it, or,
if this is not possible (for example, because your personal information
has been
stored in backup archives), then we will securely store your personal
information and isolate it from any further processing until deletion is
possible.</span></span><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></p>
<div style="line-height: 1.5;"><br></div>
<p id="infosafe" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">5.
HOW DO
WE KEEP YOUR INFORMATION
SAFE?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">We aim
to
protect your personal information through a system of
organizational and technical security
measures.</span></em></span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">We have implemented appropriate technical
and
organizational security measures designed to protect the security of any
personal information we process. However, please also remember that we
cannot
guarantee that the internet itself is 100% secure. Although we will do
our best
to protect your personal information, transmission of personal
information to
and from our <bdt class="block-component"></bdt>Services<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt> is at your own risk. You should only
access
the services within a secure environment.
</span></span><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span>
</p>
<p id="infominors" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">6.
DO WE
COLLECT INFORMATION FROM
MINORS?</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">We do
not
knowingly collect data from or market to children under
18 years
of age.</span></em></span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">We do not knowingly solicit data from or
market to
children under 18 years of age. By using the <bdt
class="block-component"></bdt>
Services<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, you represent that you are at least
18 or
that you are the parent or guardian of such a minor and consent to such
minor
dependent’s use of the <bdt class="block-component"></bdt>Services<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>. If we learn that personal
information from
users less than 18 years of age has been collected, we will deactivate
the
account and take reasonable measures to promptly delete such data from
our
records. If you become aware of any data we have collected from children
under
age 18, please contact us at <bdt class="block-component"></bdt>
<bdt class="question">clapham.watch@gmail.com</bdt>
<bdt class="else-block"></bdt>.
</span><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span>
</p>
<p id="privacyrights" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">7.
WHAT ARE
YOUR PRIVACY RIGHTS?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><span data-custom-class="body_text"><em>
<bdt class="block-component"></bdt>In some regions, such
as the
European Economic Area, you have rights that allow you
greater
access to and control over your personal information.
<bdt class="statement-end-if-in-editor"></bdt>You may
review,
change, or terminate your account at any time.
</em></span>
<bdt class="block-component"><span data-custom-class="body_text"></span>
</bdt>
</span></span></p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">In
some regions (like the European
Economic Area), you have certain rights under applicable data
protection
laws. These may include the right (i) to request access and
obtain a
copy of your personal information, (ii) to request rectification
or
erasure; (iii) to restrict the processing of your personal
information;
and (iv) if applicable, to data portability. In certain
circumstances,
you may also have the right to object to the processing of your
personal
information. To make such a request, please use
the</span></span> </span><span data-custom-class="body_text"><a
data-custom-class="link" href="#contact"><span
style="font-size: 15px;"><span
style="color: rgb(48, 48, 241);">contact
details</span></span></a></span><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"> provided below. We will consider
and act
upon any request in accordance with applicable data protection
laws.</span></span></span></p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">If
we are relying on your consent to
process your personal information, you have the right to
withdraw your
consent at any time. Please note however that this will not
affect the
lawfulness of the processing before its withdrawal.<span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">If
you are resident in the European
Economic Area and you believe we are unlawfully processing your
personal
information, you also have the right to complain to your local
data
protection supervisory authority. You can find their contact
details
here:</span></span> </span><span
data-custom-class="body_text"><span style="color: rgb(48, 48, 241);"><span
style="font-size: 15px;"><a data-custom-class="link"
href="http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm"
target="_blank">http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm</a>.</span></span></span><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"><span data-custom-class="body_text"></bdt>
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span><span
data-custom-class="body_text">
<bdt class="block-component">
<bdt class="block-component"></bdt>
</bdt>
</span></span></span></span></span></span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p id="databreach" style="font-size:15px;"><strong><span data-custom-class="heading_1"
style="font-size: 19px;">8. DATA BREACH</span></strong></p>
<p style="font-size: 15px;"><span data-custom-class="body_text" style="font-size: 15px;">A
privacy
breach occurs when there is unauthorized access to or collection, use,
disclosure or
disposal of personal information. You will be notified about data breaches when
<bdt class="question">Clapham Watch</bdt> believes you are likely to be at risk
or
serious harm. For example, a data breach may be likely to result in serious
financial
harm or harm to your mental or physical well-being. In the event that <bdt
class="question">Clapham Watch</bdt> becomes aware of a security breach
which
has resulted or may result in unauthorized access, use or disclosure of personal
information <bdt class="question">Clapham Watch</bdt> will promptly investigate
the
matter and notify the applicable Supervisory Authority not later than 72 hours
after
having become aware of it, unless the personal data breach is unlikely to result
in a
risk to the rights and freedoms of natural persons.</span><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="statement-end-if-in-editor">
</bdt>
</bdt>
</span></span></span></span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p id="DNT" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">9.
CONTROLS
FOR DO-NOT-TRACK FEATURES</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span data-custom-class="body_text">Most web
browsers and some mobile
operating systems and mobile applications include a Do-Not-Track
(“DNT”)
feature or setting you can activate to signal your privacy
preference
not to have data about your online browsing activities monitored
and
collected. No uniform technology standard for recognizing and
implementing DNT signals has been finalized. As such, we do not
currently respond to DNT browser signals or any other mechanism
that
automatically communicates your choice not to be tracked online.
If a
standard for online tracking is adopted that we must follow in
the
future, we will inform you about that practice in a revised
version of
this <span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>.</span></span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p id="caresidents" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">10.
DO
CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY
RIGHTS?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">Yes, if
you are
a resident of California, you are granted specific
rights
regarding access to your personal
information.</span></em></span></span></p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">California Civil Code Section
1798.83,
also known as the “Shine The Light” law, permits our users who
are
California residents to request and obtain from us, once a year
and free
of charge, information about categories of personal information
(if any)
we disclosed to third parties for direct marketing purposes and
the
names and addresses of all third parties with which we shared
personal
information in the immediately preceding calendar year. If you
are a
California resident and would like to make such a request,
please submit
your request in writing to us using the contact information
provided
below.</span></span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">If you are under 18 years of age, reside
in
California, and have a registered account with the <bdt
class="block-component">
</bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, you have the right to request
removal of
unwanted data that you publicly post on the <bdt
class="block-component"></bdt>
Services<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>. To request removal of such data,
please
contact us using the contact information provided below, and include the
email
address associated with your account and a statement that you reside in
California. We will make sure the data is not publicly displayed on the
<bdt class="block-component"></bdt>Services<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, but please be aware that the data
may not
be completely or comprehensively removed from our systems.
</span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span>
</p>
<p id="policyupdates" style="font-size: 15px; line-height: 1.5;"><span
style="color: rgb(0, 0, 0);"><strong><span style="font-size: 19px;"><span
data-custom-class="heading_1">11. DO WE MAKE UPDATES TO
THIS
POLICY?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">Yes, we
will
update this policy as necessary to stay compliant with
relevant
laws.</span></em></span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">We may update this <span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span> </span>from time to time. The updated version will be
indicated
by an updated “Revised” date and the updated version will be effective
as soon
as it is accessible. If we make material changes to this <span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>, we may notify you either by prominently posting
a notice
of such changes or by directly sending you a notification. We encourage
you to
review this <span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">privacy
policy</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</span> </span>frequently to be informed of how we are
protecting your
information.</span></span></p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span>
</p>
<p id="contact" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">12.
HOW CAN
YOU CONTACT US ABOUT THIS