-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPrivacyPolicy.js
More file actions
1007 lines (1001 loc) · 58.1 KB
/
PrivacyPolicy.js
File metadata and controls
1007 lines (1001 loc) · 58.1 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
import React from 'react';
export class PrivacyPolicy extends React.Component {
constructor(props) {
super(props);
this.state = {
error: null,
isLoaded: false,
data: ''
}
}
render() {
return (
<div>
<h3 className="western" align="CENTER" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<br />
<br />
</h3>
<h3 className="western" align="CENTER" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%'}}>
<a name="_nkvl8w564snf">
</a> <font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
<b>PRIVACY POLICY</b>
</font>
</font>
</font>
</h3> <p className="western" align="CENTER" style={{marginTop: '0.32cm', marginBottom: '0.32cm', background: 'transparent', border: 'none', padding: '0cm', lineHeight: '115%'}}>
<br />
<br />
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>This Privacy Policy is meant to help you understand what data we collect, why we collect it, and what we do with it. Please, take time to read our Privacy policy carefully. We want to be clear how we’re using information and the ways in which you can protect your privacy.</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
This Privacy Policy applies to your Personal Data when you use the “Help a Paw” app (on iOS, Android or through the web) and does not apply to online websites or services that we do not own or control.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
If you have any questions, please, contact us at
<a href="mailto:help.a.paw@outlook.com">
help.a.paw@outlook.com
</a>
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br /> </p> <p className="western" style={{marginBottom: '0cm'}}>
</p>
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_zi5fm0su0wd5">
</a>
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
WHO WE ARE
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%', pageBreakBefore: 'auto'}}> <font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
The “Help a Paw” service is provided to you by an informal organization under the same name
</font>
</font>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
<span style={{background: '#ffffff'}}>
(referred to hereinafter as HaP)
</span>
</font>
</font>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
, represented by Milen Marinov.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>
We take your right to privacy seriously and work continuously to keep the data we process minimized and in your control. Nevertheless, to enable you to use our services and to improve and secure them, we need to process some personal data. By using any of our services and/or registering an account you agree to have read and understood this Privacy Policy.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm'}}>
</p>
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_ixwy5bvb7hjq">
</a>
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
PERSONAL DATA WE COLLECT AND HOW WE USE IT
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Personal data is data that describes and is linkable to someone as a person. We collect some personal data in order to provide the services to all our users. We will only process personal data for legal reasons, if we are obliged to do so by legal authorities. We don’t sell or otherwise distribute your personal data. We may share it with our selected service providers only when it is vital for the provision of our services as explicitly described below. We may process your personal data for the following purposes:
</font>
</font>
</p>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Names – these are necessary for identification of each HaP Software User, using HaP Software. The main feature of HaP Software is to let users submit and receive signals about animals in need. To prevent abuse of the service it is necessary to identify the users submitting and editing signals. You can choose to use the software anonymously (without registering) in which case you will be able to only receive and view signals without modifying them.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>
Email addresses – these are necessary for authenticating the HaP Software Users before allowing their access to the Software.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Phone numbers - providing this data is optional during registration. If you choose to provide your phone number it will show on any signals that you submit with the goal of enabling other HaP Software Users to reach you faster in case any clarification about the signal is needed.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Locations - this data is used to notify HaP Software Users of any signals in their proximity. You are free to deny access to this data at the operating system level in which case you will not receive the aforementioned notifications but will still be able to view the signals in any chosen area or submit new ones.
</font>
</font>
</p>
</li>
</ol>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Data processing activities, listed above, are necessary for the performance of the services we offer through the Hap Software.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
HaP shall not use any other personal data, entered or uploaded by HaP Software Users, except for categories of data, described above. HaP will ask for your consent before using information for a purpose other than those that are set out in this Privacy Policy.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm'}}>
</p>
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_7kif91sj15ey">
</a>
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
METHOD OF COLLECTION
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Each HaP Software User provides personally the Personal data, entered manually in the Software or obtained after User permission from a third party service (e.g. Facebook, Google, etc.)
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
HaP Software Users are not allowed to enter third party personal data, including sign up a third party using their email address, without due authorization by such third party. HaP does not monitor or control the content, entered or uploaded by Users.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
</font>
</p>
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_jtfsb4jvfcg2">
</a>
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
SECURITY MEASURES
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
We take appropriate technical and organisational measures to protect your personal data against loss or other forms of unlawful processing. We make sure that personal data is only accessible by only those who need access to do their job, and that they are properly trained and authorised. Our staff is required to conduct themselves in a manner consistent with the organization’s guidelines regarding confidentiality, ethics, and appropriate usage of data.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm'}}>
</p>
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_smdthzwgz2f">
</a> <font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
SUBPROCESSORS AND PROCESSING OUT OF EU
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
For providing quality services HaP engages third party service providers - Subprocessors, carefully selected according to their capacity for personal data protection and processing in compliance with HaP’s obligations under the GDPR. We provide personal data to our Subprocessors to process it for us, only based on our instructions and in compliance with our Privacy Policy and any other appropriate confidentiality and security measures.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Based on the above HaP stores and processes User Data out of EU, including in the United States of America, where some of HaP’s Subprocessors are based.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>
By using our Software and Services, you consent to your Personal Data being transferred to other countries, including countries that have different data protection rules than your country.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>
HaP uses as Subprocessors and User personal data may be transferred to the providers of the following services:
</font>
</font>
</p>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>
Data processing and storage (Backendless)
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333"><font size={3}>
Crash reporting and analytics software (Google Firebase)
</font>
</font>
</p>
</li>
</ol>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>
HaP may replace its Subprocessors from time to time following above rules of strict selection. Updated information about the list of current Subprocessors may be found at all times here in this Privacy Policy.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
All our Subprocessors do not have any right to use the personal information we share with them beyond what is necessary to assist us in making our services possible.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm'}} />
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_ejfcnq61cazt" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
INFORMATION WE SHARE
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
We do not share personal information with companies, organizations and individuals unless one of the following circumstances applies:
</font>
</font>
</p>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>
With your consent - we will share personal information with companies, organizations or individuals when we have your consent to do so.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>
For making some services possible – to third party processors, as described above
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333"><font size={3}>
For legal reasons - we will share personal information with companies, organizations or individuals, if we have a good-faith belief that access, use, preservation or disclosure of the information is reasonably necessary to:
</font>
</font>
</p>
</li>
</ol>
<ul>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#333333">
<font size={3} style={{fontSize: '11pt'}}>a) meet any applicable law, regulation, legal process or enforceable governmental request.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#333333">
<font size={3} style={{fontSize: '11pt'}}>b) enforce applicable Terms of Use, including investigation of potential violations.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#333333">
<font size={3} style={{fontSize: '11pt'}}>c) detect, prevent, or otherwise address fraud, security or technical issues.
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#333333">
<font size={3} style={{fontSize: '11pt'}}>d) protect against harm to the rights, property or safety of HaP, our users or the public as required or permitted by law.
</font>
</font>
</p>
</li>
</ul>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
We may share non-personally identifiable information publicly and with our partners. For example, we may share information publicly to show trends about the general use of our service.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
</p>
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_sp0b54s75446" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>YOUR RIGHTS</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
You have the right to request a copy of your personal details at any time, to check the accuracy of the information held and/or to correct or update this information. You may ask your personal information to be deleted completely, if no enquiry from you is in progress. You also have the right to complain when your personal data protection rights have been violated. For your convenience we have provided a full list of our rights in the last Section GDPR Subject Rights.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
We will make reasonable efforts to provide you with reasonable access to any of your personal information we maintain or correct it within 30 days as of receipt of your access request.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
Please, note that after deleting your information, you shall not be able to use adequately the HaP Services. Users have the right to delete User Data during the above term in a manner consistent with the functionality of the Services, if such deletion is in accordance with the GDPR (please, see Section GDPR Subject Rights). HaP will comply with this instruction as soon as reasonably practicable and within a maximum period of 30 days, unless EU or Bulgarian law requires storage. Please, note that HaP may keep that information for legitimate business or legal purposes or be required (including by contract or GDPR) to keep certain of information and not delete it (or to keep this information for a certain time, in which case HaP will comply with the deletion request only after HaP has fulfilled such requirements).
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
If you wish to access, delete (when applicable) or correct your personal information please contact: help.a.paw (@) outlook.com. Please state clear in the subject that your request concerns a privacy matter, and more specific whether it is a request to access, correction or deletion. Bear in mind that we may ask for additional information to determine your identity.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>
We may reject requests that are unreasonably repetitive, require disproportionate technical effort (for example, developing a new system or fundamentally changing an existing practice), risk the privacy of others, or would be extremely impractical (for instance, requests concerning information residing on backup systems). Where we can provide information access and correction, we will do so for free, except where it would require a disproportionate effort.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
If you file a privacy-related complaint, we will collect your name, email and country location and details that gave rise to your complaint. We will use the information you provide to investigate your complaint and to send you an answer once your complaint is reviewed.
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm'}} />
<h3 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '115%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_el03drmmt38b" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={5} style={{fontSize: '19pt'}}>
SUPERVISORY AUTHORITY
</font>
</font>
</font>
</h3>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>If you think we have infringed your privacy rights, you can lodge a complaint with the supervisory authority of Bulgaria, which is the Commission for personal data protection. More information can be found at:
</font>
</font>
<a href="https://www.cpdp.bg/">
<font color="#1155cc">
<font size={3} style={{fontSize: '11pt'}}>
<u>www.cpdp.bg</u>
</font>
</font>
</a>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
You can also lodge your complaint in particular in the country where you live, your place of work or place where you believe we infringed your right(s).
</font>
</font>
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<br />
</p>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>=============================</font>
</font>
</p>
<h2 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_l20zl4d08hjj" />
<font color="#1c1e25">
<font face="Montserrat, serif">GDPR SUBJECT RIGHTS </font>
</font>
</h2>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_xnerx8zccowe" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Right of access by the data subject</font>
</font>
</font>
</h4>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>
The data subject shall have the right to obtain from the controller confirmation as to whether or not personal data concerning him or her are being processed, and, where that is the case, access to the personal data and the following information:
</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
(a) the purposes of the processing;
</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>
(b) the categories of personal data concerned;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(c) the recipients or categories of recipient to whom the personal data have been or will be disclosed, in particular recipients in third countries or international organisations;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(d) where possible, the envisaged period for which the personal data will be stored, or, if not possible, the criteria used to determine that period;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(e) the existence of the right to request from the controller rectification or erasure of personal data or restriction of processing of personal data concerning the data subject or to object to such processing;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(f) the right to lodge a complaint with a supervisory authority;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(g) where the personal data are not collected from the data subject, any available information as to their source;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(h) the existence of automated decision-making, including profiling, referred to in Article 22(1) and (4) and, at least in those cases, meaningful information about the logic involved, as well as the significance and the envisaged consequences of such processing for the data subject.</font>
</font>
</p>
</li>
</ul>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Where personal data are transferred to a third country or to an international organisation, the data subject shall have the right to be informed of the appropriate safeguards pursuant to Article 46 relating to the transfer.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The controller shall provide a copy of the personal data undergoing processing. For any further copies requested by the data subject, the controller may charge a reasonable fee based on administrative costs. Where the data subject makes the request by electronic means, and unless otherwise requested by the data subject, the information shall be provided in a commonly used electronic form.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%'}}> <font color="#333333">
<font size={3}>The right to obtain a copy referred to in paragraph 3 shall not adversely affect the rights and freedoms of others.</font>
</font>
</p>
</li>
</ol>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_598tixp7kpla" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Right to rectification</font>
</font>
</font>
</h4>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>The data subject shall have the right to obtain from the controller without undue delay the rectification of inaccurate personal data concerning him or her. Taking into account the purposes of the processing, the data subject shall have the right to have incomplete personal data completed, including by means of providing a supplementary statement.</font>
</font>
</p>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_195ythoh4sg0" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Right to erasure (‘right to be forgotten’)</font>
</font>
</font>
</h4>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The data subject shall have the right to obtain from the controller the erasure of personal data concerning him or her without undue delay and the controller shall have the obligation to erase personal data without undue delay where one of the following grounds applies:</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(a) the personal data are no longer necessary in relation to the purposes for which they were collected or otherwise processed;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(b) the data subject withdraws consent on which the processing is based according to point (a) of Article 6(1), or point (a) of Article 9(2), and where there is no other legal ground for the processing; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(c) the data subject objects to the processing pursuant to Article 21(1) and there are no overriding legitimate grounds for the processing, or the data subject objects to the processing pursuant to Article 21(2);</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(d) the personal data have been unlawfully processed; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(e) the personal data have to be erased for compliance with a legal obligation in Union or Member State law to which the controller is subject; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(f) the personal data have been collected in relation to the offer of information society services referred to in Article 8(1).</font>
</font>
</p>
</li>
</ul>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Where the controller has made the personal data public and is obliged pursuant to paragraph 1 to erase the personal data, the controller, taking account of available technology and the cost of implementation, shall take reasonable steps, including technical measures, to inform controllers which are processing the personal data that the data subject has requested the erasure by such controllers of any links to, or copy or replication of, those personal data.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Paragraphs 1 and 2 shall not apply to the extent that processing is necessary:</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(a) for exercising the right of freedom of expression and information; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(b) for compliance with a legal obligation which requires processing by Union or Member State law to which the controller is subject or for the performance of a task carried out in the public interest or in the exercise of official authority vested in the controller;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(c) for reasons of public interest in the area of public health in accordance with points (h) and (i) of Article 9(2) as well as Article 9(3);</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(d) for archiving purposes in the public interest, scientific or historical research purposes or statistical purposes in accordance with Article 89(1) in so far as the right referred to in paragraph 1 is likely to render impossible or seriously impair the achievement of the objectives of that processing; or</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(e) for the establishment, exercise or defence of legal claims.</font>
</font>
</p>
</li>
</ul>
</li>
</ol>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_9zl9v3u0o6rn" />
<font color="#1c1e25">
<font face="Montserrat, serif"><font size={4} style={{fontSize: '16pt'}}>Right to restriction of processing</font>
</font>
</font>
</h4>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The data subject shall have the right to obtain from the controller the erasure of personal data concerning him or her without undue delay and the controller shall have the obligation to erase personal data without undue delay where one of the following grounds applies:</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(a) the personal data are no longer necessary in relation to the purposes for which they were collected or otherwise processed;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(b) the data subject withdraws consent on which the processing is based according to point (a) of Article 6(1), or point (a) of Article 9(2), and where there is no other legal ground for the processing; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25"><font size={3} style={{fontSize: '11pt'}}>(c) the data subject objects to the processing pursuant to Article 21(1) and there are no overriding legitimate grounds for the processing, or the data subject objects to the processing pursuant to Article 21(2);</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(d) the personal data have been unlawfully processed; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(e) the personal data have to be erased for compliance with a legal obligation in Union or Member State law to which the controller is subject; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.64cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(f) the personal data have been collected in relation to the offer of information society services referred to in Article 8(1).</font>
</font>
</p>
</li>
</ul>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Where the controller has made the personal data public and is obliged pursuant to paragraph 1 to erase the personal data, the controller, taking account of available technology and the cost of implementation, shall take reasonable steps, including technical measures, to inform controllers which are processing the personal data that the data subject has requested the erasure by such controllers of any links to, or copy or replication of, those personal data.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Paragraphs 1 and 2 shall not apply to the extent that processing is necessary:</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(a) for exercising the right of freedom of expression and information; </font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(b) for compliance with a legal obligation which requires processing by Union or Member State law to which the controller is subject or for the performance of a task carried out in the public interest or in the exercise of official authority vested in the controller;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(c) for reasons of public interest in the area of public health in accordance with points (h) and (i) of Article 9(2) as well as Article 9(3);</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(d) for archiving purposes in the public interest, scientific or historical research purposes or statistical purposes in accordance with Article 89(1) in so far as the right referred to in paragraph 1 is likely to render impossible or seriously impair the achievement of the objectives of that processing; or</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(e) for the establishment, exercise or defence of legal claims.</font>
</font>
</p>
</li>
</ul>
</li>
</ol>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_ke94kqimn4r" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Notification obligation regarding rectification or erasure of personal data or restriction of processing</font>
</font>
</font>
</h4>
<p className="western" style={{marginBottom: '0cm', border: 'none', padding: '0cm', lineHeight: '143%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>The controller shall communicate any rectification or erasure of personal data or restriction of processing carried out in accordance with Article 16, Article 17(1) and Article 18 to each recipient to whom the personal data have been disclosed, unless this proves impossible or involves disproportionate effort. The controller shall inform the data subject about those recipients if the data subject requests it.</font>
</font>
</p>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_j3b90jt0hp0y" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Right to data portability</font>
</font>
</font>
</h4>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The data subject shall have the right to receive the personal data concerning him or her, which he or she has provided to a controller, in a structured, commonly used and machine-readable format and have the right to transmit those data to another controller without hindrance from the controller to which the personal data have been provided, where:</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(a) the processing is based on consent pursuant to point (a) of Article 6(1) or point (a) of Article 9(2) or on a contract pursuant to point (b) of Article 6(1); and</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.64cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(b) the processing is carried out by automated means.</font>
</font>
</p>
</li>
</ul>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>In exercising his or her right to data portability pursuant to paragraph 1, the data subject shall have the right to have the personal data transmitted directly from one controller to another, where technically feasible.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The exercise of the right referred to in paragraph 1 of this Article shall be without prejudice to Article 17. That right shall not apply to processing necessary for the performance of a task carried out in the public interest or in the exercise of official authority vested in the controller.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The right referred to in paragraph 1 shall not adversely affect the rights and freedoms of others.</font>
</font>
</p>
</li>
</ol>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_zh6kdg4z51if" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Right to object</font>
</font>
</font>
</h4>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The data subject shall have the right to object, on grounds relating to his or her particular situation, at any time to processing of personal data concerning him or her which is based on point (e) or (f) of Article 6(1), including profiling based on those provisions. The controller shall no longer process the personal data unless the controller demonstrates compelling legitimate grounds for the processing which override the interests, rights and freedoms of the data subject or for the establishment, exercise or defence of legal claims.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Where personal data are processed for direct marketing purposes, the data subject shall have the right to object at any time to processing of personal data concerning him or her for such marketing, which includes profiling to the extent that it is related to such direct marketing.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333"><font size={3}>Where the data subject objects to processing for direct marketing purposes, the personal data shall no longer be processed for such purposes.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>At the latest at the time of the first communication with the data subject, the right referred to in paragraphs 1 and 2 shall be explicitly brought to the attention of the data subject and shall be presented clearly and separately from any other information.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>In the context of the use of information society services, and notwithstanding Directive 2002/58/EC, the data subject may exercise his or her right to object by automated means using technical specifications.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Where personal data are processed for scientific or historical research purposes or statistical purposes pursuant to Article 89(1), the data subject, on grounds relating to his or her particular situation, shall have the right to object to processing of personal data concerning him or her, unless the processing is necessary for the performance of a task carried out for reasons of public interest.</font>
</font>
</p>
</li>
</ol>
<h4 className="western" style={{marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '121%', pageBreakInside: 'auto', pageBreakAfter: 'auto'}}>
<a name="_o4qhv6wz583t" />
<font color="#1c1e25">
<font face="Montserrat, serif">
<font size={4} style={{fontSize: '16pt'}}>Automated individual decision-making, including profiling</font>
</font>
</font>
</h4>
<ol>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>The data subject shall have the right not to be subject to a decision based solely on automated processing, including profiling, which produces legal effects concerning him or her or similarly significantly affects him or her.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Paragraph 1 shall not apply if the decision:</font>
</font>
</p>
<ul>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(a) is necessary for entering into, or performance of, a contract between the data subject and a data controller;</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(b) is authorised by Union or Member State law to which the controller is subject and which also lays down suitable measures to safeguard the data subject's rights and freedoms and legitimate interests; or</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.64cm', marginTop: '0.64cm', marginBottom: '0.85cm', border: 'none', padding: '0cm', lineHeight: '146%'}}>
<font color="#1c1e25">
<font size={3} style={{fontSize: '11pt'}}>(c) is based on the data subject's explicit consent.</font>
</font>
</p>
</li>
</ul>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.53cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>In the cases referred to in points (a) and (c) of paragraph 2, the data controller shall implement suitable measures to safeguard the data subject's rights and freedoms and legitimate interests, at least the right to obtain human intervention on the part of the controller, to express his or her point of view and to contest the decision.</font>
</font>
</p>
</li>
<li>
<p className="western" style={{marginRight: '0.32cm', marginTop: '0.32cm', marginBottom: '0.32cm', border: 'none', padding: '0cm', lineHeight: '150%'}}>
<font color="#333333">
<font size={3}>Decisions referred to in paragraph 2 shall not be based on special categories of personal data referred to in Article 9(1), unless point (a) or (g) of Article 9(2) applies and suitable measures to safeguard the data subject's rights and freedoms and legitimate interests are in place.</font>
</font>
</p>