Weet iemand wat hier precies gebeurd?
- alltimecaptaincool2019 is niet mijn email adres.
- 2021 was een tijdje geleden.
- Gmail ziet het niet als spam.
- SPF, DKIM en DMARC lijken geldig, of wordt gechecked op basis van oscilpetruse.com en niet youtube.com?
- De inhoud lijkt een normale ToS update.
- Return Path (support@oscilpetruse.com) en unsubscribe link zijn wel verdacht, maar als dit spam is, wat is het doel ervan?
Hmm, MX record voor /oscilpetruse.com is funnkidsschools.com.../f/image/981gSEgyTjJlURLIYOrdvmfE.png?f=fotoalbum_large)
- alltimecaptaincool2019 is niet mijn email adres.
- 2021 was een tijdje geleden.
- Gmail ziet het niet als spam.
- SPF, DKIM en DMARC lijken geldig, of wordt gechecked op basis van oscilpetruse.com en niet youtube.com?
- De inhoud lijkt een normale ToS update.
- Return Path (support@oscilpetruse.com) en unsubscribe link zijn wel verdacht, maar als dit spam is, wat is het doel ervan?
Hmm, MX record voor /oscilpetruse.com is funnkidsschools.com...
Bericht-ID <b512baf1a59198c273a35861b0daa430fc116aba-20181855-111050819@google.com>
Gemaakt om: 27 november 2021 om 07:16 (Bezorgd na 42932340 seconden)
Van: YouTube <no-reply@youtube.com>
Aan: alltimecaptaincool2019@gmail.com
Onderwerp: Updates to YouTube's Terms of Service
SPF: PASS met IP-adres 27.255.79.25 Meer informatie
DKIM: 'PASS' met domein youtube.com Meer informatie
DMARC: 'PASS' Meer informatie
/f/image/981gSEgyTjJlURLIYOrdvmfE.png?f=fotoalbum_large)
code:
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
| Delivered-To: olaf@blah Received: by 2002:a05:6020:127a:b0:277:470c:5e1a with SMTP id f26csp655200wde; Fri, 7 Apr 2023 20:55:26 -0700 (PDT) X-Google-Smtp-Source: AKy350ZCQhgofiERDmksXJwNDDHS+vrRDqwsnL157li93WIEY8OFg5nlAzBBMG7EBXsmKuHByHgL X-Received: by 2002:a17:90b:4b8d:b0:23b:355f:b26c with SMTP id lr13-20020a17090b4b8d00b0023b355fb26cmr4770458pjb.23.1680926125732; Fri, 07 Apr 2023 20:55:25 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1680926125; cv=none; d=google.com; s=arc-20160816; b=TYhMHHco6954c0KcJXo78N9p5aq4BtECHLqQBJjJNELCpKSLu5kCzI/XnGB1bpw0ku TWp+EBHuLXHpCDJQZIH0dV4jHNaSsOboXE2x5mJV6ZL0Ta7Z6JD1IBO35ukGGfeoKiQ2 pRCzH5Qtma5zX1VU/GJXSCndPXnHVTX1C82vfbZnZrVlfETTmQJiomjQARqFja9fG9OR Im/YBumxVQYtEnltuvXIiF9/sGTytAwpXvE002FpBvpxykp3caKtjjE3ET8NdMCGwz7g USI4vOSaOSe84gjqWtC3OFFts1LAzGeg1A8wS9jcaDTegxh+RCPohB1VSSNRkqb0smCj Ge6Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=to:from:subject:list-unsubscribe:message-id:feedback-id:reply-to :date:mime-version:dkim-signature:dkim-signature; bh=VFpDSguINESVzRb6dkSc8l8MMU/1hzd2KUBop0yDX7A=; b=lHwC4SJX2k+y4YhxzjDE+LgOmrkB/g7CLbzZu59vOJJeP9gkAHJc07DZuwkyO1K6NL 6MYDcH3B+q6rsFHJetybZS1fTQde3E3sINGJ0/K7xUNzKt+6kDDU7H1D5tSr5lALCL3e +UsIuI/UjodnWyJ0L/NOiano2vhdpbjlP0wLa3gqcoGeHbW7DnxhyrR0C+Fva6vVW5G4 Cve3ofaGiNCcGAx5KTLRBkJkbpSchBGUsjnNpOppSUeyDFzPMhg3lKVPHk1685BW+T9F sKiK3ew+TztqUzu2eP6W99Mu8KF/pzq87++8B4vsZc+chP7zNU25pPCydt/Z4r+RB/ix nSWA== ARC-Authentication-Results: i=1; mx.google.com; dkim=pass header.i=@Oscilpetruse.com header.s=sharp header.b=W5ysS71G; dkim=pass header.i=@youtube.com header.s=20210112 header.b=xGMHx3cn; spf=pass (google.com: domain of support@oscilpetruse.com designates 27.255.79.25 as permitted sender) smtp.mailfrom=support@oscilpetruse.com; dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=youtube.com Return-Path: <support@oscilpetruse.com> Received: from 25k.complcloudnet.org (25k.complcloudnet.org. [27.255.79.25]) by mx.google.com with ESMTPS id d24-20020a17090ab31800b0023d3980730bsi5013302pjr.16.2023.04.07.20.55.24 for <olaf@blah> (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Fri, 07 Apr 2023 20:55:25 -0700 (PDT) Received-SPF: pass (google.com: domain of support@oscilpetruse.com designates 27.255.79.25 as permitted sender) client-ip=27.255.79.25; Authentication-Results: mx.google.com; dkim=pass header.i=@Oscilpetruse.com header.s=sharp header.b=W5ysS71G; dkim=pass header.i=@youtube.com header.s=20210112 header.b=xGMHx3cn; spf=pass (google.com: domain of support@oscilpetruse.com designates 27.255.79.25 as permitted sender) smtp.mailfrom=support@oscilpetruse.com; dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=youtube.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=sharp; d=Oscilpetruse.com; h=MIME-Version:Date:Reply-To:Message-ID:List-unsubscribe:Subject:From:To: Content-Type; bh=VFpDSguINESVzRb6dkSc8l8MMU/1hzd2KUBop0yDX7A=; b=W5ysS71GYHP+5ChOKw8nAamVh4+HeCINqZG4XV9AfhBDjj7YzXDuCjTiNLzXAISKlFk1r1rWCLxK aUqhlIzhaNGCAUdNbSrK4T7B0mVFdnrzypARtnoGAjUsi0nalN96WPtYXOufg7XBa+h5p5Rg1hJf VHQ7pGSQGIGEBtPFH6o= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=youtube.com; s=20210112; h=mime-version:date:reply-to:feedback-id:message-id:subject:from:to; bh=VFpDSguINESVzRb6dkSc8l8MMU/1hzd2KUBop0yDX7A=; b=xGMHx3cnmqGU+lCv1G4jpwP1Q0EflWspOjnHI4KRpE5ijrMm6JOAvciRVA6K8Eqmm1 xqJpdXn5UNhpwrEUYlyVSr/aogITuhvW98EJXmyates09oO8POf+Hod1ToJyX6CitQ8/ PA0lkRmJvbGM66DiyuTHY8P5aQ3RpBTPBlLmQoTH5nShcf863jSxz0Fg5c3teDlJ3mx+ ysamOC6O5HlaEwZCrspz8OJBqzwPalu6GM/YwsKiI8jpwzfXkamKeKry8os2ALCVnJ+H oUBmcycrMSejJQ0bKL+brRh9wGUVdG/OzlnFWBeVcmPF3F5LLM+HNckMEqyP7tnMAes0 jA+A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:delivered-to:dkim-signature:mime-version:date :reply-to:feedback-id:message-id:subject:from:to; bh=VFpDSguINESVzRb6dkSc8l8MMU/1hzd2KUBop0yDX7A=; b=Ojsgt0RPokP3CzX6h8eMPQUXVlmE2Gqjthknw+xbOw5RqfbGN38gQEW14eSTPEC80j znUMGC3kbR3t7P9y0lXyXSASHFTaBqqtRb+z8Qi+6ldgbFEeJOe5pkSptW0zYmP/sC2Q mmhROzephR7JwvCRQH9LM7AbIVVblwwh0waT2ATbDV5YEud5nBC/vjxwu/uNgJ84ZmxA hzCyFmFD0cunDsPVdO9Y/Uulv54jqoWSVxzEk9/hmYMBgi/CNcEGcFmjJ4pxF24Af8MY IxVuXQs08Tl+PoP4YN02nSXj37RfHQG1rMtdRJW8Rpkw7mSCCAk4UTn2Sf0DHaLJi5iR Pc/w== MIME-Version: 1.0 X-Received: by 2002:a6b:d904:: with SMTP id r4mr40686088ioc.165.1637993785691; Fri, 26 Nov 2021 22:16:25 -0800 (PST) Date: Fri, 26 Nov 2021 22:16:25 -0800 Reply-To: YouTube <no-reply@youtube.com> X-Google-Id: 4113787 Feedback-ID: P2725-0:C20181855:M110485283-en-GB:gamma X-Notifications: GAMMA:<b512baf1a59198c273a35861b0daa430fc116aba-20181855-111050819@google.com> X-Notifications-Bounce-Info: AXvZQxeKiBz1Imb10ZSpPzJm_XvBBhBXtZduwijNUODiAlth91ya08NWD4_jDWPDsHZDaunMeIppU5bAgziWArbyJj-_o1L5KBVNbrl8pijFIFCw99HomPlwRfYHzQZA6EotG33oIjWzzDlnyvNlrjKSguIjzo--stXTNv72zlK9fhuuTo_CSLIy-qR098lCoyZsz2lr06_UlYt7Ec-UpjWHmpOR7pvun_YxY2vTcX8SW8PSynqZDGIm9mHdvtfVckkTUJgNjAwNjA0MDQxNTM1NTk2OTMzMg Message-ID: <b512baf1a59198c273a35861b0daa430fc116aba-20181855-111050819@google.com> List-unsubscribe: <mailto:support@Oscilpetruse.com?subject=unsubscribe> Subject: Updates to YouTube's Terms of Service From: YouTube <no-reply@youtube.com> To: alltimecaptaincool2019@gmail.com Content-Type: multipart/alternative; boundary="000000000000bd8fa305d1bf25d9" --000000000000bd8fa305d1bf25d9 Content-Type: text/plain; charset="UTF-8"; format=flowed; delsp=yes On 5 January 2022, we're updating our Terms of Service ("Terms") to help clarify and make it easier to understand what to expect as you use the service. These changes won't affect the way you use YouTube. You can review a summary of the changes and the updated Terms here <https://notifications.google.com/g/p/AD-FnEwDfAaFtYkpK5NLXI3vrSXer8jT-qtLNGgLazc5aGnM8BPAc8WFShybetwHUtfCvecu4MtvWBbiqrsfOjHr69fu8O1WPnbxQABxkmd_PmTJcZXe0Qysio-5lGn-MhUzSA>. At a glance, this update covers: * More clarity on what to expect: We're providing more transparency about how we develop, improve and update our service, including more details about why we make changes and updates and the advanced notice that we provide to you. * General updates for improved readability: While our Terms remain a legal document, we've done our best to make them easier to understand. This includes reorganising some sections (such as Account Suspension and Termination) and rewording others (such as Changing this Agreement). * Inclusion of the Community Guidelines strikes process: Your use of YouTube has always been subject to the Community Guidelines and its strikes process, but we're now explicitly including the Community Guidelines strikes <https://notifications.google.com/g/p/AD-FnEyoxG67VOttBfWfGkeoi5Ol0k0s-Fr-SqkjnJsVnC6TPsFCz_1Vc16u4lRYz-ZxhcByqFEjz7POlj3Lfphrb_dgeso3IbhKLv_Ca05Jbe-K8NQvqnxHWzdrYP0SyJBtHA> information in the Terms to increase transparency. There are no changes to how Community Guidelines strikes operate, or when a channel or content might receive a strike. Google is also required to inform you under Rule 5 of the Indian Information Technology (Intermediary Guidelines and Digital Media Ethics Code Rules, 2021) Rules, 2021 that if you are a publisher of news or current affairs content, you are required to furnish the details of your accounts on YouTube to the Ministry of Information and Broadcasting, Government of India. Please make sure that you read these updates and remember that the Terms <https://notifications.google.com/g/p/AD-FnEx9z91dvzW-NmxJqPJaDyfFn-PCaSo8zKtiikbupbIq04MMJMMJIV3PCJiUFy5mEhRm_r_zyOo7EJRPUAeUNxeJ7JOcluEWaHcDSPytEFAN3YVvUI8-oUDU2Al8iCAtCg> and Google's Privacy Policy <https://notifications.google.com/g/p/AD-FnEyR22Ns_mrZeAPUgCCV8ThSVi5WMN8spS1oea6H6fsVX7zVH9ckI64QjMEFPNkzH3euAVk9AZHlQQAnz-SFVA79aMnEeL1gVmtdSb5xV15AMlY> apply to your use of YouTube. Violation of these agreements may result in warnings or further action including loss of access or termination of all or part of your account. By continuing to use YouTube after this date, you are agreeing to the updated Terms. Note: If you allow your child to use YouTube Kids or manage your child's use of YouTube through Family Link <https://notifications.google.com/g/p/AD-FnEy4ODkg1XZl8IbApgJ-mALWAmhyA9anjtpHz_wLuX2PGoZJcJ5dX_NX5tC7jHjNdQLLndYrjV3AwA2k8mPDDsiHWh5J2mKID8aEXUnWp1Ottobyi4Lmj5_kBeqE>, take a moment to talk to them about these changes. Thank you for being part of our global community! Help Centre <https://notifications.google.com/g/p/AD-FnEwrj4pFw8HkeTNJRgj-xPj7BljuxAPqfRSlAEAJbIHC7EubHqXBJltPt2pWg-QiYvRGqYVTtY963-q4lDiggVodCqGiVR2fFilfxp4qtK-kxCaKoCoIjOE> Email options <https://notifications.google.com/g/p/AD-FnEzZ9o0z2ueAHtPGOF8ijPfXsvYZpd1cXhNrST4rr31lp6RsmcWR1c7Hzt5w-MnvJ1p5krjwoyC87r5V1THZ5soZBT7H9Yaj38Orrm-cePwIKRvyOI26nKLzaRj-mIyReomaPXm0mgH4r0AWhDKpWjXrpoaumE0HhyFmzeR7NMtjPKsinCIeO-JoyulaFA> You have received this email to update you about important changes to YouTube's Terms of Service. (c) 2021 Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA, 94043 --000000000000bd8fa305d1bf25d9 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www= .w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang=3Den xmlns=3Dhttp://www.w3.org/1999/xhtml xmlns:v=3Durn:schemas-= microsoft-com:vml xmlns:o=3Durn:schemas-microsoft-com:office:office> <head> <title> Important update </title> <!--[if !mso]><!--> <meta http-equiv=3DX-UA-Compatible content=3DIE=3Dedge /> <!--<![endif]--> <meta http-equiv=3DContent-Type content=3D"text/html; charset=3Dutf-8" /> <meta name=3Dviewport content=3D"width=3Ddevice-width, initial-scale=3D1.0"= /> <meta name=3Drobots content=3D"no index"> <meta name=3Dx-apple-disable-message-reformatting> <meta name=3Dformat-detection content=3Dtelephone=3Dno,address=3Dno,email= =3Dno,date=3Dno,url=3Dno> <meta name=3Dcolor-scheme content=3Dlight> <meta name=3Dsupported-color-schemes content=3Dlight> <link href=3Dhttps://fonts.googleapis.com/css?family=3DRoboto:400,300,500,7= 00 rel=3Dstylesheet> <link href=3Dhttps://fonts.googleapis.com/css?family=3DYouTube%20Sans:700 r= el=3Dstylesheet> <!--[if mso]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <![endif]--> <!--[if lte mso 11]> <style> .mj-outlook-group-fix { width:100% !important; } </style> <![endif]--> <style> #outlook a { padding: 0; } * { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { font-family: Roboto, Arial, Helvetica, sans-serif; margin: 0; padding: 0; -webkit-text-size-adjust: none !important; -webkit-font-smoothing: antialiased !important; -ms-text-size-adjust: none !important; } table, tr, th, td { border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; } img { border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; } a, a:link, a:visited, a:hover, a:active { color: #065fd4; text-decoration: none; } p, h1, h2, h3, h4, h5, h6 { margin:0; padding:0; } a[x-apple-data-detectors] { border-bottom: 0 !important; cursor: default !important; color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important; } .im { color: inherit !important; } img.g-img + div { display: none !important; } sup { line-height: 0; font-size: 75%; } <!--[if gte mso 9]> sup { font-size: 100% !important; } <![endif]--> </style> <style> @media only screen and (max-width: 620px) { .hide-on-mobile { display: none !important; } .hide-on-desktop { display: block !important; max-height: none !important; } .hide-on-desktop td { display: table-cell !important; max-height: none !important; } } .hide-on-desktop, .hide-on-desktop td { mso-hide: all; display: none; max-height: 0; overflow: hidden; } </style> <style> @media only screen and (max-width:480px) { table.mj-full-width-mobile { width: 100% !important; } td.mj-full-width-mobile { width: auto !important; } } </style> <style> @media only screen and (min-width:620px) { .mj-column-per-100 { width: 100% !important; max-width: 100%; } .mj-column-per-50 { width: 50% !important; max-width: 50%; } } </style> </head> <body style=3Dbackground-color:#fff;> <div style=3Dbackground-color:#fff;> <div style=3D"margin:0 auto; min-width:480px; max-width:600px;"> <table align=3Dcenter border=3D0 cellpadding=3D0 cellspacing=3D0 role=3Dpre= sentation style=3D"background-position:center center; background-size:conta= in; background-repeat:no-repeat; width:100%;"> <tbody> <tr> <td align=3Dcenter> <!--[if mso | IE]> <table align=3D"center" border=3D"0" cellpadding=3D"0" cellspacing=3D"0" cl= ass=3D"block-grid-outlook" style=3D"width:600px;" width=3D"600" > <tr> <td style=3D"line-height:0; font-size:0; mso-line-height-rule:exactly;"> <![endif]--> <div class=3D"mj-column-per-100 mj-outlook-group-fix" style=3D"font-size:0;= text-align:left; direction:ltr; display:inline-block; vertical-align:top; = width:100%;"> <table border=3D0 cellpadding=3D0 cellspacing=3D0 role=3Dpresentation width= =3D100%> <tbody> <tr> <td style=3D"border:none; vertical-align:top; padding:0 0 0 0;"> <table border=3D0 cellpadding=3D0 cellspacing=3D0 role=3Dpresentation width= =3D100%> <tr> <td> <table width=3D100% role=3Dpresentation border=3D0 cellpadding=3D0 cellspac= ing=3D0 style=3Dtable-layout:fixed;> <tr> <td align=3Dleft valign=3Dmiddle style=3D"overflow:hidden; min-width:480px;= max-width:600px; padding:0 0 0 0;"> <a href=3D# style=3D"display:block; width:600px; height:88px;" aria-hidden= =3Dtrue> <img src=3Dhttps://www.gstatic.com/gumdrop/files/ytc-youtube-header-fill-w1= 200px-h176px-2x.png width=3D600 height=3D88 title=3D"" alt=3D"" border=3D0 = style=3D"display:block; width:600px; max-width:600px;" /> </a> </td> </tr> </table> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#131313; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:16px; font-weight:400; line-height:24px; l= etter-spacing:0.1px;"> On 5 January 2022, we're updating our Terms of Service ("<strong>Terms</str= ong>") to help clarify and make it easier to understand what to expect as y= ou use the service. These changes won't affect the way you use YouTube. You= can review a summary of the changes and the <a style=3D"color:#065fd4; fon= t-weight:500; text-decoration:none" href=3Dhttps://notifications.google.com= /g/p/AD-FnEyEEVgxmCFcymuw66phVXIlGZXEo8JxcKGGrRd8-7txOdWd7Io6jVpc1XPVXDKeQ-= Jmh7oHYX4TY2ougYvPW2qQaeXRJ1bA4sBqYpSlXafgWOvVCG6hQCuHXC9BGUWtKK7v>updated = Terms here</a>. </p> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#131313; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:16px; font-weight:400; line-height:24px; l= etter-spacing:0.1px;"> At a glance, this update covers: </p> </td> </tr><tr> <td align=3Dleft valign=3Dtop style=3D"padding:0 24px 0 24px; direction:ltr= ;"> <ul style=3D"direction:ltr; margin-top:0; margin-bottom:0; padding:0; font-= family:Roboto, Arial, Helvetica, sans-serif; color:#131313; font-size:16px;= line-height:24px; margin-left:24px;" type=3Ddisc> <li style=3D"margin:14px 0 0 0; direction:ltr;"> <strong>More clarity on what to expect:</strong> We're providing more trans= parency about how we develop, improve and update our service, including mor= e details about why we make changes and updates and the advanced notice tha= t we provide to you. </li><li style=3D"margin:14px 0 0 0; direction:ltr;"> <strong>General updates for improved readability:</strong> While our Terms = remain a legal document, we've done our best to make them easier to underst= and. This includes reorganising some sections (such as <span style=3D"font-= style: italic;">Account Suspension</span> and <span style=3D"font-style: it= alic;">Termination</span>) and rewording others (such as <span style=3D"fon= t-style: italic;">Changing this Agreement</span>). </li><li style=3D"margin:14px 0 0 0; direction:ltr;"> <strong>Inclusion of the Community Guidelines strikes process:</strong> You= r use of YouTube has always been subject to the Community Guidelines and it= s strikes process, but we're now explicitly including the <a style=3D"color= :#065fd4; font-weight:500; text-decoration:none" href=3Dhttps://notificatio= ns.google.com/g/p/AD-FnEz9KivcQAsDv21LQ75Hg_BDxj8iYH5e3C-kGO08lMaFDqP4k6ZJY= knv5kV215hWLxq2RaMc4sMii_xXxTUIZcn9RP1lLFnP9c_iPtxPu0hK1p4AkLw9Yq5pvb2g1h-b= Nu6Z>Community Guidelines strikes</a> information in the Terms to increase = transparency. There are no changes to how Community Guidelines strikes oper= ate, or when a channel or content might receive a strike. </li> </ul> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#131313; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:16px; font-weight:400; line-height:24px; l= etter-spacing:0.1px;"> Google is also required to inform you under Rule 5 of the Indian Informatio= n Technology (Intermediary Guidelines and Digital Media Ethics Code Rules, = 2021) Rules, 2021 that if you are a publisher of news or current affairs co= ntent, you are required to furnish the details of your accounts on YouTube = to the Ministry of Information and Broadcasting, Government of India. </p> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#131313; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:16px; font-weight:400; line-height:24px; l= etter-spacing:0.1px;"> Please make sure that you read these updates and remember that the <a style= =3D"color:#065fd4; font-weight:500; text-decoration:none" href=3Dhttps://no= tifications.google.com/g/p/AD-FnEy9AExf2UCs-z77smSjj6KhF1ISmdXySUdmCqojM8xu= s37Y3lej0dxmhkPU54TMQVjPwSquo2QzWKLM-po05SgDWPfWLUSbytVkFYjXBiryHSPi29f1scR= z_b0SL7d_yIGl>Terms</a> and Google's <a style=3D"color:#065fd4; font-weight= :500; text-decoration:none" href=3Dhttps://notifications.google.com/g/p/AD-= FnEz-FQ8dWT_mlYO_FNfcjCfDditGOVkUmkpyQ9KNgyRePEoBWsVg-SyWJfUVWtuSGtb0iGmB26= UMtjjFJdbq3CFgXSmVKxTPxenJrpMU9KsVrhX8ww>Privacy Policy</a> apply to your u= se of YouTube. Violation of these agreements may result in warnings or furt= her action including loss of access or termination of all or part of your a= ccount. </p> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#131313; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:16px; font-weight:400; line-height:24px; l= etter-spacing:0.1px;"> By continuing to use YouTube after this date, you are agreeing to the updat= ed Terms. Note: If you allow your child to use YouTube Kids or manage your = child's use of YouTube through <a style=3D"color:#065fd4; font-weight:500; = text-decoration:none" href=3Dhttps://notifications.google.com/g/p/AD-FnEw2m= gu3q3EnGNQQKDY2tE55faUKi5N7Me7V8_QDdGUrXb-kW0wtIkymynp_LyU6cU-2PvrflXUi4z6p= _X2MOEksLBsnFASQ89eMlCFp8kOAQqS-N8XJM-dfWUjO9yM>Family Link</a>, take a mom= ent to talk to them about these changes. </p> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#131313; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:16px; font-weight:400; line-height:24px; l= etter-spacing:0.1px;"> Thank you for being part of our global community! </p> </td> </tr> <tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"24" style=3D"vertical-align:top; height:24px;"> <![endif]--> <div style=3Dheight:24px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dcenter style=3D"font-size:0; padding-left:24px; padding-right:2= 4px;"> <p style=3D"border-top:1px solid #ccc; font-size:1px; margin:0 auto; width:= 100%;"> </p> <!--[if mso | IE]> <table align=3D"center" border=3D"0" cellpadding=3D"0" cellspacing=3D"0" style=3D"= border-top:1px solid #ccc; font-size:1px; margin:0 auto; width:550px;" role= =3D"presentation" width=3D"550px"> <tr> <td style=3D"height:0; line-height:0;"> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#606060; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:12px; font-weight:400; line-height:18px;"> <a style=3D"color:#065fd4; font-weight:500; text-decoration:none" href=3Dht= tps://notifications.google.com/g/p/AD-FnEwGgYgVd05U-QlrjM22rhUO3REVSCiPqQ2q= M0APueMwDhf0lpJ5HYRPYKMY6QRNS_afcuPMUNsMNz9AmU923TvUo9x8rlA9R_swxszxK0skJ6l= iIsg_Dr5nUQ>Help Centre </a> <span style=3D"color:#606060; font-family:Roboto, Arial, Helvetica, sans-se= rif; font-size:12px; font-weight:400; line-height:18px">• </span><a st= yle=3D"color:#065fd4; font-weight:500; text-decoration:none" href=3Dhttps:/= /notifications.google.com/g/p/AD-FnEyVS9MOAhO4L6_iItfGhEWLndOTehWYT4uIr5Br2= UKZr2E2KH3NzvYA9omEnTWdIxWyU_UVP66JiRtN9v_zmz_gvLVT5XDG1pTIuXAemHfHgyYfBYXt= LtoVxTVL65zvg8fbHtvLc9mOoUc37EO8sQ47_1yA2IuSOTLtu2q1IAzPT9LeKbmGErwZDU34OpM= W>Email options </a> </p> </td> </tr><tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"16" style=3D"vertical-align:top; height:16px;"> <![endif]--> <div style=3Dheight:16px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"direction:ltr; padding:0 24px 0 24px= ;"> <p style=3D"margin:0; padding:0; color:#606060; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:12px; font-weight:400; line-height:18px;"> You have received this email to update you about important changes to YouTu= be's Terms of Service. </p> </td> </tr> <tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"24" style=3D"vertical-align:top; height:24px;"> <![endif]--> <div style=3Dheight:24px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"padding:0 24px 0 24px; direction:ltr= ;"> <a href=3D# style=3D"display:block; width:88px; height:20px;" aria-hidden= =3Dtrue><img title=3D"" alt=3D"" src=3Dhttps://www.gstatic.com/gumdrop/file= s/ytc-youtube-footer-transparent-w176px-h40px-2x.png height=3Dauto width=3D= 88 style=3D"border:none; display:block; outline:none; text-decoration:none;= width:88px; height:20px;" /></a> </td> </tr> <tr> <td style=3Dfont-size:0;> <!--[if mso | IE]> <table role=3D"presentation" border=3D"0" cellpadding=3D"0" cellspacing=3D"= 0"> <tr> <td height=3D"24" style=3D"vertical-align:top; height:24px;"> <![endif]--> <div style=3Dheight:24px;> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tr> <td align=3Dleft valign=3Dtop style=3D"padding:0 24px 0 24px; direction:ltr= ; color:#606060; font-family:Roboto, Arial, Helvetica, sans-serif; font-siz= e:12px; font-weight:400; line-height:18px;"> © 2021 <a href=3D# style=3D"color:#606060; font-family:Roboto, Arial, = Helvetica, sans-serif; font-size:12px; font-weight:400; line-height:18px; t= ext-decoration:none;"> Google LLC, 1600 Amphitheatre Parkway, Mountain View= , CA, 94043 </a> </td> </tr> </table> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> <tbody> </table> <table width=3D100% role=3Dpresentation border=3D0 cellpadding=3D0 cellspac= ing=3D0 align=3Dcenter style=3Dtable-layout:fixed;> <tr> <td style=3D"width:480px; max-width:480px; min-width:480px;"> <table width=3D480 role=3Dpresentation cellpadding=3D0 cellspacing=3D0 bord= er=3D0 align=3Dcenter> <tr> <td style=3D"line-height:1px; min-width:160px;"><img src=3Dhttps://www.gsta= tic.com/gumdrop/files/youtube-spacer-image-transparent-w1px-h1px-2x.gif alt= =3D"" width=3D160 height=3D1 style=3D"display:block; max-height:1px; min-he= ight:1px; min-width:160px; width:160px;" /></td> <td style=3D"line-height:1px; min-width:160px;"><img src=3Dhttps://www.gsta= tic.com/gumdrop/files/youtube-spacer-image-transparent-w1px-h1px-2x.gif alt= =3D"" width=3D160 height=3D1 style=3D"display:block; max-height:1px; min-he= ight:1px; min-width:160px; width:160px;" /></td> <td style=3D"line-height:1px; min-width:160px;"><img src=3Dhttps://www.gsta= tic.com/gumdrop/files/youtube-spacer-image-transparent-w1px-h1px-2x.gif alt= =3D"" width=3D160 height=3D1 style=3D"display:block; max-height:1px; min-he= ight:1px; min-width:160px; width:160px;" /></td> </tr> </table> </td> </tr> </table> <img alt=3D"" class=3Dopen_tracking_img src=3Dhttps://www.youtube.com/gen_2= 04?core_tos_updates_nov2021_msa1 width=3D1 height=3D1> </div> </div> </body> </html> --000000000000bd8fa305d1bf25d9-- |