aboutsummaryrefslogtreecommitdiffstats
path: root/public/privacy.html
blob: 199ae11ac61a7a09a419c4a5332b5e4acb8c161e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Privacy Policy - Ferdi</title>
</head>

<body>
  <div data-custom-class="body">
    <p style="font-size:15px;"><strong><span style="font-size: 26px;"><span data-custom-class="title">
            <bdt class="block-component"></bdt><strong><span style="font-size: 26px;"><span
                  data-custom-class="title">PRIVACY POLICY</span></span></strong>
            <bdt class="statement-end-if-in-editor"></bdt>&nbsp;
          </span>&nbsp;</span>&nbsp;</strong>
    </p>
    <p style="font-size:15px;"><span style="color: rgb(127, 127, 127);"><strong><span data-custom-class="subtitle">Last
            updated <bdt class="question">November 01, 2019</bdt>&nbsp;</span></strong>&nbsp;</span>
    </p>
    <p style="font-size: 15px; line-height: 0.5;">
      <br>
    </p>
    <p style="font-size: 15px; line-height: 0.5;">
      <br>
    </p>
    <p style="font-size:15px;text-align:justify;"><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">
            Ferdi</bdt>
          <bdt class="block-component"></bdt>, doing business as <bdt class="question">"Ferdi", "Ferdi Application" or "getferdi"</bdt>
          <bdt class="statement-end-if-in-editor"></bdt> (<bdt class="block-component"></bdt>
          <bdt class="question"><strong>"Ferdi", "Ferdi Application", "getferdi"</strong></bdt>
          <bdt class="else-block"></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">hello@getferdi.com</bdt>.
        </span>&nbsp;</span>
    </p>
    <p style="font-size:15px;text-align:justify;"><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">https://getferdi.com</bdt>,<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>
          <bdt class="forloop-component"></bdt>
          <bdt class="block-component"></bdt> mobile application,<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>
          <bdt class="forloop-component"></bdt>
          <bdt class="statement-end-if-in-editor"></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>&nbsp;</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> or
          <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps
          <bdt class="statement-end-if-in-editor"></bdt> and our services.
        </span>&nbsp;</span>
    </p>
    <p style="font-size:15px;text-align:justify;"><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>&nbsp;</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">https://getferdi.com</bdt>),
          <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>
          <bdt class="forloop-component"></bdt>
          <bdt class="block-component"></bdt> desktop application,
          <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>
          <bdt class="forloop-component"></bdt>
        </span>
      </span><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">("<strong>Apps</strong>"),<bdt
            class="statement-end-if-in-editor"></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>&nbsp;</span>as the "<strong>Services</strong>").&nbsp;</span>&nbsp;</span>
    </p>
    <p style="font-size:15px;text-align:justify;"><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>&nbsp;</span>carefully as it will help you make informed decisions about sharing your personal
            information with us.&nbsp;</span>&nbsp;</strong>&nbsp;</span>
    </p>
    <p style="font-size:15px;"><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>&nbsp;</strong>&nbsp;</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"></span></bdt>&nbsp;
      </span>
    </p>
    <p style="font-size:15px;"><span style="color: rgb(89, 89, 89);"><a data-custom-class="link" href="#whoshare">4. WHO
          WILL YOUR INFORMATION BE SHARED WITH?</a> <span style="color: rgb(89, 89, 89);">
          <bdt class="statement-end-if-in-editor"></bdt>
        </span></span><span style="font-size: 15px; color: rgb(89, 89, 89);">&nbsp;<bdt class="block-component"></bdt>
        &nbsp;</span></p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#cookies"><span
          style="font-size: 15px; color: rgb(89, 89, 89);">5. DO WE USE COOKIES AND OTHER TRACKING
          TECHNOLOGIES?</span></a><span style="font-size: 15px; color: rgb(89, 89, 89);">&nbsp;<bdt
          class="statement-end-if-in-editor"></bdt></span><span style="color: rgb(89, 89, 89);"><span
          style="color: rgb(89, 89, 89);">&nbsp;<bdt class="block-component"></bdt>
          <bdt class="block-component"></bdt>&nbsp;
        </span></span>
      <bdt class="block-component"></bdt>&nbsp;
    </p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#intltransfers"><span
          style="color: rgb(89, 89, 89);">6. IS YOUR INFORMATION TRANSFERRED INTERNATIONALLY?</span></a> <span
        style="color: rgb(89, 89, 89);">&nbsp;<bdt class="statement-end-if-in-editor"></bdt>
        <bdt class="block-component"></bdt>&nbsp;
      </span></p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#inforetain"><span style="color: rgb(89, 89, 89);">7.
          HOW LONG DO WE KEEP YOUR INFORMATION?&nbsp;</span></a><span style="color: rgb(89, 89, 89);"><span
          style="color: rgb(89, 89, 89);">&nbsp;<bdt class="block-component"></bdt>&nbsp;</span></span>
    </p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#infosafe"><span style="color: rgb(89, 89, 89);">8. HOW
          DO WE KEEP YOUR INFORMATION SAFE?</span></a><span style="color: rgb(89, 89, 89);">&nbsp;<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>&nbsp;
      </span>
    </p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#infominors"><span style="color: rgb(89, 89, 89);">9.
          DO WE COLLECT INFORMATION FROM MINORS?</span></a>
      <bdt class="statement-end-if-in-editor"></bdt>&nbsp;
    </p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#privacyrights"><span
          style="color: rgb(89, 89, 89);">10. WHAT ARE YOUR PRIVACY RIGHTS?<bdt class="block-component"></bdt>
          &nbsp;</span></a></p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#databreach"><span style="color: rgb(89, 89, 89);">11.
          DATA BREACH</span></a><a data-custom-class="link" href="#privacyrights"><span
          style="color: rgb(89, 89, 89);">&nbsp;<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);">12.
          CONTROLS FOR DO-NOT-TRACK FEATURES</span></a><span style="color: rgb(89, 89, 89);">&nbsp;</span></p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#caresidents"><span style="color: rgb(89, 89, 89);">13.
          DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?</span></a><span
        style="color: rgb(89, 89, 89);">&nbsp;</span></p>
    <p style="font-size:15px;"><a data-custom-class="link" href="#policyupdates"><span
          style="color: rgb(89, 89, 89);">14. 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);">15. HOW
          CAN YOU CONTACT US ABOUT THIS POLICY?</span></a></p>
    <p style="font-size:15px;"><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>&nbsp;</strong>&nbsp;</span>
    </p>
    <p style="font-size:15px;"><span style="color: rgb(89, 89, 89);">
        <bdt class="block-component"></bdt><br>
      </span></p>
    <p style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_2">Personal
            information you disclose to us</span></strong>&nbsp;</span>
    </p>
    <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><strong><em><span
              data-custom-class="body_text">In Short:</span></em>&nbsp;</strong><span
          data-custom-class="body_text"><em>We collect personal information that you provide to us such as name,
            address, contact information, passwords and security data,<bdt class="block-component"></bdt> and payment
            information<span style="color: rgb(89, 89, 89);"><em>
                <bdt class="statement-end-if-in-editor"></bdt>
              </em></span>.</em>
        </span>
      </span>
    </p>
    <p style="font-size:15px;text-align:justify;"><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>registering at the <bdt class="block-component"></bdt>
          Services<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps,<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="statement-end-if-in-editor"></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> or <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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;text-align:justify;"><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> or <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>, the choices you make
          and the products and features you use. The personal information we collect can include the following:
        </span></span>
    </p>
    <p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span data-custom-class="body_text">
            <bdt class="block-component"></bdt>Publicly Available Personal Information.
          </span></strong><span data-custom-class="body_text">&nbsp;We collect <bdt class="forloop-component"></bdt>
          <bdt class="question">first name, maiden name, last name, 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);"><strong><span data-custom-class="body_text">
                <bdt class="statement-end-if-in-editor"></bdt>
              </span></strong>
          </span>
        </span>
      </span>
    </p>
    <p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span data-custom-class="body_text">
            <bdt class="block-component"></bdt>Personal Information Provided by You.
          </span></strong><span data-custom-class="body_text">&nbsp;We collect <bdt class="forloop-component"></bdt>
          <bdt class="question">app usage</bdt>, <bdt class="forloop-component"></bdt>and other similar data.<span
            style="color: rgb(89, 89, 89);"><strong><span data-custom-class="body_text">
                <bdt class="statement-end-if-in-editor"></bdt>
              </span></strong>
          </span>
        </span>
      </span>
    </p>
    <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><strong><span
            data-custom-class="body_text">Credentials.</span></strong><span data-custom-class="body_text">&nbsp;We
          collect passwords, password hints, and similar security information used for authentication and account
          access. <bdt class="block-component"></bdt></span>&nbsp;</span>&nbsp;</p>
    <p style="font-size:15px;text-align:justify;"><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><span
          style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
            <bdt class="statement-end-if-in-editor"></bdt>
          </span>
          <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>&nbsp;
        </span>&nbsp;</span>
    </p>
    <p style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
            data-custom-class="heading_2">Information automatically collected</span></strong>&nbsp;</span>
    </p>
    <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><strong><em><span
              data-custom-class="body_text">In Short:</span></em>&nbsp;</strong><em><span
            data-custom-class="body_text">Some information – such as IP address and/or browser and device
            characteristics – is collected automatically when you visit our <bdt class="block-component"></bdt>Services
            <bdt class="statement-end-if-in-editor"></bdt>
            <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
            <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>.
          </span></em></span>
    </p>
    <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><span
          data-custom-class="body_text">We automatically collect certain information when you visit, use or navigate the
          <bdt class="block-component"></bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>. This information does
          not reveal your specific identity (like your name or contact information) but may include device and usage
          information, such as your IP address, browser and device characteristics, operating system, language
          preferences, referring URLs, device name, country, location, information about how and when you use our <bdt
            class="block-component"></bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt> and other technical
          information. This information is primarily needed to maintain the security and operation of our <bdt
            class="block-component"></bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
          <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>, and for our internal
          analytics and reporting purposes.<bdt class="block-component"></bdt>
        </span></span>
    </p>
    <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><span
          data-custom-class="body_text">Like many businesses, we also collect information through cookies and similar
          technologies. <bdt class="block-component"></bdt><span style="color: rgb(89, 89, 89);">
            <bdt class="statement-end-if-in-editor"></bdt>
            <bdt class="statement-end-if-in-editor"></bdt>
          </span></span>&nbsp;</span>&nbsp;</p>
    <p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span data-custom-class="body_text">
            <bdt class="block-component"></bdt>Online Identifiers.
          </span></strong><span data-custom-class="body_text">&nbsp;We collect <bdt class="forloop-component"></bdt>
          <bdt class="question">devices</bdt>, <bdt class="forloop-component"></bdt>
          <bdt class="question">applications</bdt>, <bdt class="forloop-component"></bdt>
          <bdt class="question">cookie identifiers, or others such as the ones used for analytics and marketing</bdt>,
          <bdt class="forloop-component"></bdt>and other similar data.<span
            style="color: rgb(89, 89, 89);"><strong><span data-custom-class="body_text">
                <bdt class="statement-end-if-in-editor"></bdt>
              </span></strong>&nbsp;</span>&nbsp;
        </span>&nbsp;</span><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
          <bdt class="block-component"></bdt>
        </span></span>
    </p>
    <p style="font-size: 15px;"><span style="color: rgb(0, 0, 0);"><strong><span
            data-custom-class="heading_2">Information collected through our Apps</span></strong>&nbsp;</span>
    </p>
    <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><strong><span
            style="font-size: 15px;"><em><span data-custom-class="body_text">In
                Short:</span></em>&nbsp;</span>&nbsp;</strong><em><span style="font-size: 15px;"><span
              data-custom-class="body_text">We may collect information regarding your<bdt class="block-component"></bdt>
              <bdt class="block-component"></bdt>
            </span> mobile device,<span style="font-size: 15px;"><span style="font-size: 15px;">
                <bdt class="statement-end-if-in-editor"></bdt>
              </span></span>
            <bdt class="block-component"></bdt> push notifications,<span style="font-size: 15px;">
              <bdt class="statement-end-if-in-editor"></bdt>
              <bdt class="forloop-component"></bdt>
              <bdt class="block-component"></bdt><span style="font-size: 15px;"><span style="font-size: 15px;">
                  <bdt class="forloop-component"></bdt>&nbsp;
                </span></span>
            </span>when you use our apps.
          </span></em></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 use our Apps, we may also collect the following information:</span>
          <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
          <bdt class="block-component"></bdt>
        </span>
      </span>
      <br>
      <br>
    </p>
    <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><em><span
              data-custom-class="body_text">Mobile Device Access.</span></em><span
            data-custom-class="body_text">&nbsp;We may request access or permission to certain features from your mobile
            device, including your mobile device’s <bdt class="forloop-component"></bdt>
            <bdt class="question">camera</bdt>, <bdt class="forloop-component"></bdt>
            <bdt class="question">microphone</bdt>, <bdt class="forloop-component"></bdt>and other features. If you wish
            to change our access or permissions, you may do so in your device’s settings.<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="statement-end-if-in-editor"></bdt>
                  </span></span>
              </span>
            </span>
            <bdt class="block-component"></bdt>
          </span>
        </span>
      </span>
      <br>
      <br>
    </li>
    <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><em><span
              data-custom-class="body_text">Mobile Device Data.</span></em><span data-custom-class="body_text">&nbsp;We
            may automatically collect device information (such as your mobile device ID, model and manufacturer),
            operating system, version information and IP address.<span style="font-size: 15px;"><span
                style="color: rgb(89, 89, 89);">
                <bdt class="statement-end-if-in-editor"></bdt>
              </span></span>
            <bdt class="block-component"></bdt>
          </span>
        </span>
      </span>
      <br>
      <br>
    </li>
    <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><em><span
              data-custom-class="body_text">Push Notifications.</span></em><span data-custom-class="body_text">&nbsp;We
            may request to send you push notifications regarding your account or the mobile application. If you wish to
            opt-out from receiving these types of communications, you may turn them off in your device’s
            settings.</span><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="forloop-component"></bdt>
                <bdt class="block-component"></bdt>
                <bdt class="forloop-component"></bdt>
              </span></span>
          </span>
        </span>
      </span><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>
      <bdt class="block-component"></bdt><span
        style="text-align: justify; background-color: initial; color: rgb(89, 89, 89);"><span
          data-custom-class="body_text">
          <bdt class="block-component"></bdt>
        </span></span>
      <p></p>
      <p style="font-size:15px;text-align:justify;">
        <br>
      </p>
      <p style="font-size:15px;text-align:justify;"><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>&nbsp;</strong>&nbsp;</span>
      </p>
      <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><strong><em><span
                style="font-size: 15px;"><span data-custom-class="body_text">In
                  Short:</span></span>&nbsp;</em>&nbsp;</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>&nbsp;</span>&nbsp;</span>
      </p>
      <p style="font-size:15px;text-align:justify;"><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> or <bdt class="statement-end-if-in-editor"></bdt>
              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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>&nbsp;</span>
      </p>
      <p style="font-size:15px;text-align:justify;"><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>&nbsp;</span>&nbsp;</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></span></span>&nbsp;</span>
      </p>
      <ul>
        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
                  data-custom-class="body_text">To facilitate account creation and logon process.</span></strong><span
                data-custom-class="body_text">&nbsp;If you choose to link your account with us to a third party account
                (such as your Google or Facebook account), we use the information you allowed us to collect from those
                third parties to facilitate account creation and logon process for the performance of the contract. <bdt
                  class="block-component"></bdt></span></span>&nbsp;</span>&nbsp;<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>
              </span></span>&nbsp;</span>&nbsp;&nbsp;
          <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">&nbsp;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>
                      </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</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 administrative information to you.&nbsp;</span></strong><span
                data-custom-class="body_text">We may use your personal information to send you product, service and new
                feature information and/or information about changes to our terms, conditions, and policies.</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 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>
                          </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          <br>
          <br>
        </li>
        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
                  data-custom-class="body_text">To protect our Services.</span></strong><span
                data-custom-class="body_text">&nbsp;We may use your information as part of our efforts to keep our <bdt
                  class="block-component"></bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
                <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
                <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt> safe and secure
                (for example, for fraud monitoring and prevention).
              </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 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="statement-end-if-in-editor"></bdt>
                                                    <bdt class="block-component"></bdt>
                                                    <bdt class="block-component"></bdt>
                                                  </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;&nbsp;
          <br>
          <br>
        </li>
        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
                  data-custom-class="body_text">To enforce our terms, conditions and policies for Business Purposes,
                  Legal Reasons and Contractual.</span></strong>&nbsp;</span>&nbsp;</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 respond to legal requests and prevent
                  harm.&nbsp;</span></strong><span data-custom-class="body_text">If we receive a subpoena or other legal
                request, we may need to inspect the data we hold to determine how to respond.</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 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="statement-end-if-in-editor"></bdt>
                                                                <bdt class="block-component"></bdt>
                                                              </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
          <br>
          <br>
        </li>
        <li><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
                                                                data-custom-class="body_text"><strong>To manage user
                                                                  accounts</strong>. We may use your information for the
                                                                purposes of managing our account and keeping it in
                                                                working order. <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
                                                                                                                      data-custom-class="body_text">
                                                                                                                      <bdt
                                                                                                                        class="statement-end-if-in-editor">
                                                                                                                      </bdt>
                                                                                                                      <bdt
                                                                                                                        class="block-component">
                                                                                                                      </bdt>
                                                                                                                    </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</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 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"><br></span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
        </li>
        <li><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
                                                                data-custom-class="body_text"><strong>To deliver
                                                                  services to the user.</strong> We may use your
                                                                information to provide you with the requested service.
                                                                <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
                                                                                                                      data-custom-class="body_text"><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
                                                                                                                                                                            data-custom-class="body_text">
                                                                                                                                                                            <bdt
                                                                                                                                                                              class="statement-end-if-in-editor">
                                                                                                                                                                            </bdt>
                                                                                                                                                                          </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
          <bdt class="block-component"></bdt>
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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
                                                                data-custom-class="body_text">
                                                                <bdt class="block-component"></bdt>
                                                              </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
          <br>
          <br>
        </li>
        <li><span style="color: rgb(89, 89, 89); font-size: 15px;"><strong><span data-custom-class="body_text">For other
                Business Purposes.</span></strong><span data-custom-class="body_text">&nbsp;We may use your information
              for other Business Purposes, such as data analysis, identifying usage trends, determining the
              effectiveness of our promotional campaigns and to evaluate and improve our <bdt class="block-component">
              </bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
              <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>, products, marketing
              and your experience.&nbsp;
            </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 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">We may use and store
                                                                  this information in aggregated and anonymized form so
                                                                  that it is not associated with individual end users
                                                                  and does not include personal information. We will not
                                                                  use identifiable personal information without your
                                                                  consent.<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
                                                                                                                          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>
                                                                </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="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
                                                                  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>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
        </li>
      </ul>
      <p style="font-size:15px;">
        <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>&nbsp;</strong>&nbsp;</span>
      </p>
      <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><strong><em><span
                style="font-size: 15px;"><span data-custom-class="body_text">In
                  Short:</span></span>&nbsp;</em>&nbsp;</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.&nbsp;</span></em>&nbsp;</span>&nbsp;</span>
      </p>
      <div>
        <br>
      </div>
      <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.&nbsp;</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.&nbsp;</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:&nbsp;</strong>Where we
              have entered into a contract with you, we may process your personal information to fulfill the terms of
              our contract.&nbsp;</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).&nbsp;</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>&nbsp;</span><span style="font-size: 15px;"><span
            style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
              <bdt class="block-component"></bdt>&nbsp;
            </span></span>&nbsp;</span>
      </p>
      <ul>
        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
                  data-custom-class="body_text">Vendors, Consultants and Other Third-Party Service
                  Providers.</span></strong><span data-custom-class="body_text">&nbsp;We may share your data with third
                party vendors, service providers, contractors or agents who perform services for us or on our behalf and
                require access to such information to do that work. Examples include: payment processing, data analysis,
                email delivery, hosting services, customer service and marketing efforts. We may allow selected third
                parties to use tracking technology on the <bdt class="block-component"></bdt>Services<bdt
                  class="statement-end-if-in-editor"></bdt>
                <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
                <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>, which will enable
                them to collect data about how you interact with the <bdt class="block-component"></bdt>Services<bdt
                  class="statement-end-if-in-editor"></bdt>
                <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
                <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt> over time. This
                information may be used to, among other things, analyze and track data, determine the popularity of
                certain content and better understand online activity. Unless described in this Policy, we do not share,
                sell, rent or trade any of your information with third parties for their promotional purposes. &nbsp;
                <bdt class="block-component"></bdt>We have contracts in place with our data processors. This means that
                they cannot do anything with your personal information unless we have instructed them to do it. They
                will not share your personal information with any organisation apart from us. They will hold it securely
                and retain it for the period we instruct.<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>&nbsp;</span>&nbsp;
              </span><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>&nbsp;</span>&nbsp;</span>&nbsp;</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">&nbsp;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>
                <bdt class="block-component"></bdt>
              </span></span>&nbsp;</span>&nbsp;&nbsp;
          <br>
          <br>
        </li>
        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
                  data-custom-class="body_text">Affiliates.</span></strong><span data-custom-class="body_text">&nbsp;We
                may share your information with our affiliates, in which case we will require those affiliates to honor
                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>. Affiliates include our parent company and any subsidiaries, joint venture partners or other
                companies that we control or that are under common control with us.<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="statement-end-if-in-editor"></bdt>
                      </span></span>&nbsp;</span>&nbsp;</span>
                <bdt class="block-component"></bdt>&nbsp;
              </span>&nbsp;</span>&nbsp;</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 Partners.</span></strong><span
                data-custom-class="body_text">&nbsp;We may share your information with our business partners to offer
                you certain products, services or promotions.</span><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>&nbsp;
                  </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span><span style="font-size: 15px;"><span
              style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
                <bdt class="block-component"></bdt>
                <bdt class="block-component"></bdt>
              </span><span style="color: rgb(89, 89, 89);">
                <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                <bdt class="statement-end-if-in-editor"></bdt>
              </span>
            </span>&nbsp;</span>&nbsp;
          <bdt class="block-component"><span data-custom-class="body_text"></span>
          </bdt>
        </li>
      </ul>
      <div>
        <br>
      </div>
      <div>
        <p id="whoshare" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
                style="font-size: 19px;"><span data-custom-class="heading_1">4. WHO WILL YOUR INFORMATION BE SHARED
                  WITH?</span></span>&nbsp;</strong>&nbsp;</span>
        </p>
      </div>
      <div><span style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                  data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</strong><span
            style="font-size: 15px;"><em><span data-custom-class="body_text">We only share information with the
                following third parties.</span></em>&nbsp;</span>&nbsp;</span>
      </div>
      <div><span style="color: rgb(89, 89, 89);"><span style="font-size: 15px;">&nbsp;</span>&nbsp;</span>
      </div>
      <div><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">We
              only share and disclose your information with the following third parties. We have categorized each party
              so that you may be easily understand the purpose of our data collection and processing practices. If we
              have processed your data based on your consent and you wish to revoke your consent, please contact
              us.</span></span> &nbsp;</span>
      </div>
      <div>
        <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
      </div>
    </li>
    <div>
      <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
      <div>
        <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
        <div>
          <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
        </div>
        <ul>
          <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                  data-custom-class="body_text"><strong>Communicate and Chat with
                    Users</strong></span></span>&nbsp;</span>
            <br><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                <bdt class="forloop-component"><span data-custom-class="body_text"></span></bdt><span
                  data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                      <bdt class="block-component"></bdt>
                    </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                      <bdt class="question">GitHub</bdt>
                    </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                      <bdt class="block-component"></bdt>
                    </span></span>
                </span>
              </span>
              <bdt class="forloop-component"></bdt>
              <bdt class="statement-end-if-in-editor"></bdt>
            </span>
          </li>
        </ul>
        <div>
          <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
          <div>
            <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
            <div>
              <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
              <div>
                <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                <div>
                  <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                </div>
                <ul>
                  <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                          data-custom-class="body_text"><strong>Retargeting
                            Platforms</strong></span></span>&nbsp;</span>
                    <br><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                        <bdt class="forloop-component"><span data-custom-class="body_text"></span></bdt><span
                          data-custom-class="body_text"><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);">
                              <bdt class="block-component"></bdt>
                            </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                              <bdt class="question">Mailgun</bdt>
                            </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                              <bdt class="block-component"></bdt>
                            </span></span>
                        </span>
                      </span>
                      <bdt class="forloop-component"></bdt>
                      <bdt class="statement-end-if-in-editor"></bdt>
                    </span>
                  </li>
                </ul>
                <div>
                  <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                  <div>
                    <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                    <div>
                      <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                      <div>
                        <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                      </div>
                      <ul>
                        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                                data-custom-class="body_text"><strong>Web and Mobile
                                  Analytics</strong></span></span>&nbsp;</span>
                          <br><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                              <bdt class="forloop-component"><span data-custom-class="body_text"></span></bdt><span
                                data-custom-class="body_text"><span style="font-size: 15px;"><span
                                    style="color: rgb(89, 89, 89);">
                                    <bdt class="block-component"></bdt>
                                  </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                    <bdt class="question">Google Analytics</bdt>
                                  </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                    <bdt class="block-component"></bdt>
                                  </span></span>
                              </span>
                            </span>
                            <bdt class="forloop-component"></bdt>
                            <bdt class="statement-end-if-in-editor"></bdt>
                          </span>
                        </li>
                      </ul>
                      <div>
                        <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                      </div>
                      <ul>
                        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                                data-custom-class="body_text"><strong>Website
                                  Hosting</strong></span></span>&nbsp;</span>
                          <br><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                              <bdt class="forloop-component"><span data-custom-class="body_text"></span></bdt><span
                                data-custom-class="body_text"><span style="font-size: 15px;"><span
                                    style="color: rgb(89, 89, 89);">
                                    <bdt class="block-component"></bdt>
                                  </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                    <bdt class="question">Amazon AWS</bdt>
                                  </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                    <bdt class="block-component"></bdt>
                                  </span></span>
                              </span>
                            </span>
                            <bdt class="forloop-component"></bdt>
                            <bdt class="statement-end-if-in-editor"></bdt>
                          </span>
                        </li>
                      </ul>
                      <div>
                        <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                      </div>
                      <ul>
                        <li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                                data-custom-class="body_text"><strong>Website Performance
                                  Monitoring</strong></span></span>&nbsp;</span>
                          <br><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                              <bdt class="forloop-component"><span data-custom-class="body_text"></span></bdt><span
                                data-custom-class="body_text"><span style="font-size: 15px;"><span
                                    style="color: rgb(89, 89, 89);">
                                    <bdt class="block-component"></bdt>
                                  </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                    <bdt class="question">Sentry</bdt>
                                  </span></span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                    <bdt class="block-component"></bdt>
                                  </span></span>
                              </span>
                            </span>
                            <bdt class="forloop-component"></bdt>
                            <bdt class="statement-end-if-in-editor"></bdt>
                          </span>
                        </li>
                      </ul>
                      <div>
                        <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                        <div><span data-custom-class="body_text"></span><span data-custom-class="body_text"></span><span
                            data-custom-class="body_text"></span><span data-custom-class="body_text"></span><span
                            data-custom-class="body_text"></span><span data-custom-class="body_text">
                            <bdt class="statement-end-if-in-editor"></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"></span></bdt>&nbsp;
                                  </span>&nbsp;</span>&nbsp;</span>
                            </span>
                          </span>
                        </div>
                        <div>
                          <br>
                        </div>
                        <div><span id="cookies" style="color: rgb(0, 0, 0);"><strong><span
                                style="font-size: 19px;"><span data-custom-class="heading_1">5. DO WE USE COOKIES AND
                                  OTHER TRACKING TECHNOLOGIES?</span></span>&nbsp;</strong>&nbsp;</span>
                        </div>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</strong><span
                              style="font-size: 15px;"><em><span data-custom-class="body_text">We may use cookies and
                                  other tracking technologies to collect and store your
                                  information.</span></em>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">We may
                              use cookies and similar tracking technologies (like web beacons and pixels) to access or
                              store information. Specific information about how we use such technologies and how you can
                              refuse certain cookies is set out in our Cookie Policy<bdt class="block-component"></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);"><span
                                        data-custom-class="body_text">
                                        <bdt class="statement-end-if-in-editor"></bdt>
                                      </span></span>
                                  </span>
                                </span>
                              </span>
                            </span>
                          </span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89); font-size: 15px;"><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 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"></span></bdt>
                                      &nbsp;
                                    </span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;&nbsp;
                        </p>
                        <p style="font-size:15px;"><span style="color: rgb(89, 89, 89);"><br></span></p>
                        <p id="intltransfers" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
                                style="font-size: 19px;"><span data-custom-class="heading_1">6. IS YOUR INFORMATION
                                  TRANSFERRED INTERNATIONALLY?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</strong><span
                              style="font-size: 15px;"><em><span data-custom-class="body_text">We may transfer, store,
                                  and process your information in countries other than your
                                  own.</span></em>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">Our servers are
                                located in<bdt class="forloop-component"></bdt>
                                <bdt class="block-component"></bdt>
                                <bdt class="question">United States</bdt>
                                <bdt class="block-component"></bdt>
                                <bdt class="forloop-component"></bdt>. If you are accessing our <bdt
                                  class="block-component"></bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
                                <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
                                <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>
                                from outside<bdt class="forloop-component"></bdt>
                                <bdt class="block-component"></bdt>
                                <bdt class="question">United States</bdt>
                                <bdt class="block-component"></bdt>
                                <bdt class="forloop-component"></bdt>, please be aware that your information may be
                                transferred to, stored, and processed by us in our facilities and by those third parties
                                with whom we may share your personal information (see "
                              </span></span>
                          </span><span data-custom-class="body_text"><a data-custom-class="link" href="#infoshare"><span
                                style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">WILL YOUR INFORMATION BE
                                  SHARED WITH
                                  ANYONE?</span></span>
                            </a>
                          </span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                                data-custom-class="body_text">" above), in<bdt class="forloop-component"></bdt>
                                <bdt class="question">United States</bdt>,<bdt class="forloop-component"></bdt> and
                                other countries.
                              </span></span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">If you are a resident
                                in the European Economic Area, then these countries may not have data protection or
                                other laws as comprehensive as those in your country. We will however take all necessary
                                measures to protect your personal information in accordance with 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>&nbsp;</span>and applicable law.
                                <bdt class="block-component"></bdt>
                                &nbsp;</span>
                            </span>&nbsp;</span>&nbsp;
                          <bdt class="block-component"></bdt>
                          <bdt class="block-component"></bdt>&nbsp;<span
                            style="color: rgb(89, 89, 89); font-size: 15px;"><span
                              style="color: rgb(89, 89, 89); font-size: 15px;"><span
                                style="color: rgb(89, 89, 89); font-size: 15px;"><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 data-custom-class="body_text">
                                            <bdt class="statement-end-if-in-editor"></bdt>
                                            <bdt class="block-component"></bdt>
                                          </span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;"><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">7. HOW LONG DO WE KEEP YOUR
                                  INFORMATION?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</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>&nbsp;</span>unless otherwise required by law.
                                </span>&nbsp;</em>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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">the period of time in which users have an account with us</bdt>
                                <bdt class="else-block"></bdt>.
                              </span>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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);">&nbsp; <bdt
                              class="block-component"></bdt>&nbsp;</span></p>
                        <div>
                          <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">8. HOW DO WE KEEP YOUR
                                  INFORMATION SAFE?&nbsp;</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</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>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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> or <bdt class="statement-end-if-in-editor"></bdt>
                              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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">&nbsp;<bdt class="block-component"></bdt>
                              &nbsp;</span></span>
                        </p>
                        <p style="font-size:15px;"><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">9. DO WE COLLECT
                                  INFORMATION FROM MINORS?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</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>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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> or <bdt class="statement-end-if-in-editor"></bdt>
                              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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> or <bdt class="statement-end-if-in-editor"></bdt>
                              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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">hello@getferdi.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>&nbsp;
                              </span></span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;"><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">10. WHAT ARE YOUR PRIVACY
                                  RIGHTS?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</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>&nbsp;
                            </span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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>&nbsp;</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">&nbsp;provided below. We will consider and act upon any
                                request in accordance with applicable data protection laws.</span></span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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;text-align:justify;"><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>&nbsp;</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>&nbsp;</span><span
                            style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                              <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
                              <br>
                            </span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;"><span style="font-size: 15px;"><span
                              style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_2">Account
                                  Information</span></strong>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">If you would at any
                                time like to review or change the information in your account or terminate your account,
                                you can:<bdt class="forloop-component"></bdt></span></span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;">&nbsp; &nbsp;&nbsp;<span
                            style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                                data-custom-class="body_text">
                                <bdt class="question">Log into your account settings and update your user account.</bdt>
                                <bdt class="forloop-component"></bdt>
                              </span></span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">Upon your request to
                                terminate your account, we will deactivate or delete your account and information from
                                our active databases. However, some information may be retained in our files to prevent
                                fraud, troubleshoot problems, assist with any investigations, enforce our Terms of Use
                                and/or comply with legal requirements.</span><span style="font-size: 15px;"><span
                                  style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
                                      style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
                                        <bdt class="statement-end-if-in-editor"></bdt>
                                        <bdt class="block-component"></bdt>
                                      </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);"><strong><u><span data-custom-class="body_text">Cookies and
                                    similar technologies:</span></u>&nbsp;</strong><span
                                data-custom-class="body_text">Most Web browsers are set to accept cookies by default. If
                                you prefer, you can usually choose to set your browser to remove cookies and to reject
                                cookies. If you choose to remove cookies or reject cookies, this could affect certain
                                features or services of our <bdt class="block-component"></bdt>Services<bdt
                                  class="statement-end-if-in-editor"></bdt>
                                <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
                                <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>.
                                To opt-out of interest-based advertising by advertisers on our <bdt
                                  class="block-component"></bdt>Services<bdt class="statement-end-if-in-editor"></bdt>
                                <bdt class="block-component"></bdt> or <bdt class="statement-end-if-in-editor"></bdt>
                              </span></span>&nbsp;</span><span style="font-size: 15px;"><span
                              style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
                                <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></bdt>
                                visit
                              </span></span>&nbsp;</span><span data-custom-class="body_text"><a
                              href="http://www.aboutads.info/choices/" target="_blank"><span
                                style="font-size: 15px;"><span
                                  style="color: rgb(48, 48, 241);">http://www.aboutads.info/choices/</span></span>
                            </a>
                          </span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
                                data-custom-class="body_text">. <bdt class="block-component"></bdt><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);">
                                            <bdt class="statement-end-if-in-editor"></bdt>
                                          </span></span>&nbsp;</span>&nbsp;</span>&nbsp;</span>&nbsp;</span>
                                <bdt class="block-component"></bdt>&nbsp;
                              </span>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span style="color: rgb(89, 89, 89);"><span
                              style="font-size: 15px;"><strong><u><span data-custom-class="body_text">Opting out of
                                    email marketing:</span></u>&nbsp;</strong><span data-custom-class="body_text">You
                                can unsubscribe from our marketing email list at any time by clicking on the unsubscribe
                                link in the emails that we send or by contacting us using the details provided below.
                                You will then be removed from the marketing email list – however, we will still need to
                                send you service-related emails that are necessary for the administration and use of
                                your account. To otherwise opt-out, you may:<bdt class="forloop-component"></bdt>
                              </span></span>&nbsp;</span>
                        </p>
                        <div><span style="color: rgb(89, 89, 89);">&nbsp; &nbsp;&nbsp;</span><span
                            style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
                                style="font-size: 15px;">
                                <bdt class="question">Access your account settings and update preferences.</bdt>
                                <bdt class="forloop-component"></bdt><span style="font-size: 15px;">
                                  <bdt class="statement-end-if-in-editor"></bdt>
                                </span>
                              </span>
                            </span>
                          </span>
                        </div>
                        <div>
                          <br>
                        </div>
                        <div>
                          <bdt class="block-component"></bdt>
                        </div>
                        <div>
                          <br>
                        </div>
                        <p id="databreach" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
                                style="font-size: 19px;"><span data-custom-class="heading_1">11. DATA
                                  BREACH</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <div style="text-align: justify;"><span style="color: rgb(89, 89, 89);"><span
                              style="font-size: 15px;"><span data-custom-class="body_text"><span
                                  data-custom-class="body_text">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">Ferdi</bdt> believes
                                  you are likely to be at risk of 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">Ferdi</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">Ferdi</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>
                              <bdt class="statement-end-if-in-editor"></bdt>
                            </span>
                          </span>
                        </div>
                        <div style="text-align: justify;">
                          <br>
                        </div>
                        <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">12. CONTROLS FOR
                                  DO-NOT-TRACK FEATURES</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size: 15px; text-align: justify;"><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>&nbsp;</span>&nbsp;</span>
                        </p>
                        <div>
                          <br>
                        </div>
                        <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">13. DO CALIFORNIA RESIDENTS
                                  HAVE SPECIFIC PRIVACY RIGHTS?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</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.&nbsp;</span></em>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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> or <bdt class="statement-end-if-in-editor"></bdt>
                              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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> or <bdt class="statement-end-if-in-editor"></bdt>
                              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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> or <bdt class="statement-end-if-in-editor"></bdt>
                              <bdt class="block-component"></bdt>Apps<bdt class="statement-end-if-in-editor"></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;"><span style="color: rgb(89, 89, 89);"><br></span></p>
                        <p id="policyupdates" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
                                style="font-size: 19px;"><span data-custom-class="heading_1">14. DO WE MAKE UPDATES TO
                                  THIS POLICY?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89);"><strong><em><span style="font-size: 15px;"><span
                                    data-custom-class="body_text">In Short:</span></span>&nbsp;</em>&nbsp;</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>&nbsp;</span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><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>&nbsp;</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>&nbsp;</span>frequently to be informed of how we are protecting your
                              information.&nbsp;
                            </span>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;"><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">15. HOW CAN YOU CONTACT US
                                  ABOUT THIS POLICY?</span></span>&nbsp;</strong>&nbsp;</span>
                        </p>
                        <p style="font-size:15px;text-align:justify;"><span
                            style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">If you
                              have questions or comments about this policy, you may <bdt class="block-component"></bdt>
                              email us at <bdt class="question">hello@getferdi.com</bdt>
                              <bdt class="statement-end-if-in-editor"></bdt>
                            </span></span>
                        </p>
                        <div><span style="color: rgb(89, 89, 89);">
                            <bdt class="question"><span style="font-size: 15px;"><span
                                  data-custom-class="body_text">November 1st, 2019</span><span
                                  data-custom-class="body_text">&nbsp;&nbsp;</span></span>&nbsp;</bdt><span
                              data-custom-class="body_text"><span style="font-size: 15px;"><span
                                  data-custom-class="body_text">&nbsp;<bdt class="block-component"></bdt>
                                </span></span>
                            </span>
                          </span>
                        </div>
                        <div><span style="color: rgb(89, 89, 89);">
                            <bdt class="question"><span style="font-size: 15px;"><span
                                  data-custom-class="body_text">Ferdi</span><span
                                  data-custom-class="body_text">&nbsp;&nbsp;</span></span>&nbsp;</bdt><span
                              data-custom-class="body_text"><span style="font-size: 15px;"><span
                                  data-custom-class="body_text">&nbsp;<bdt class="block-component"></bdt>
                                </span></span>
                            </span>
                          </span>
                        </div>
                        <div>
                          <br>
                        </div>
                        <div>
                          <bdt class="block-component"></bdt>&nbsp;
                        </div>
                        <style>
                          ul {
                            list-style-type: square;
                          }

                          ul>li>ul {
                            list-style-type: circle;
                          }

                          ul>li>ul>li>ul {
                            list-style-type: square;
                          }

                          ol li {
                            font-family: Arial;
                          }

                          body {
                            background: rgb(245, 245, 245);
                            color: #212121;
                            padding: 1rem 5rem;
                          }

                        </style>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>

</html>