aboutsummaryrefslogtreecommitdiffstats
path: root/scraper/startpage.html
blob: f416b49fd11ce3418190bb996a1b5a52421a67b3 (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
<!DOCTYPE html>
<html lang="en">
  <head id="head">

    <title>Startpage Search Results</title><meta charSet="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><meta name="referrer" content="origin"/><meta id="site_theme" name="site_theme" data-site-theme="device"/><meta name="google-adsense-account" content="sites-6086693078427800"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="57x57" href="/sp/cdn/favicons/mobile/apple-icon-57x57.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="60x60" href="/sp/cdn/favicons/mobile/apple-icon-60x60.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="72x72" href="/sp/cdn/favicons/mobile/apple-icon-72x72.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="76x76" href="/sp/cdn/favicons/mobile/apple-icon-76x76.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="114x114" href="/sp/cdn/favicons/mobile/apple-icon-114x114.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="120x120" href="/sp/cdn/favicons/mobile/apple-icon-120x120.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="144x144" href="/sp/cdn/favicons/mobile/apple-icon-144x144.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="152x152" href="/sp/cdn/favicons/mobile/apple-icon-152x152.png"/><link class="favicon" rel="apple-touch-icon-precomposed" sizes="180x180" href="/sp/cdn/favicons/mobile/apple-icon-180x180.png"/><link class="favicon" rel="icon" type="image/png" sizes="192x192" href="/sp/cdn/favicons/mobile/android-icon-192x192.png"/><link class="favicon" rel="icon" type="image/png" sizes="32x32" href="/sp/cdn/favicons/favicon-32x32-gradient.png"/><link class="favicon" rel="icon" type="image/png" sizes="96x96" href="/sp/cdn/favicons/favicon-96x96.png"/><link class="favicon" rel="icon" type="image/png" sizes="16x16" href="/sp/cdn/favicons/favicon-16x16-gradient.png"/><link class="favicon" rel="shortcut icon" type="image/x-icon" href="/sp/cdn/favicons/favicon-gradient.ico"/><meta name="msapplication-TileColor" content="#FFFFFF"/><meta class="mstile" name="msapplication-TileImage" content="/sp/cdn/ms-icon-144x144.png"/><meta class="mstile" name="msapplication-square70x70logo" content="/sp/cdn/favicons/ms-icon-70x70.png"/><meta class="mstile" name="msapplication-square150x150logo" content="/sp/cdn/favicons/ms-icon-150x150.png"/><meta class="mstile" name="msapplication-square310x310logo" content="/sp/cdn/favicons/ms-icon-310x310.png"/><script src="https://vf.startpage.com/sxp/i/fa4874d0f7f644dec8ad457f0db0a852.js" async="" class="ct_clicktrue_58174" data-ch="main" data-uvid="ce92ddaea6a74171b07416ace831c033"></script><meta name="description" content="&quot;Startpage.com - The world&#x27;s most private search engine&quot;"/><meta name="google" content="nositelinkssearchbox"/><meta name="robots" content="noindex, follow"/><style>
  /* Adapted from https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap */
  /* cyrillic-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
      U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0370-03FF;
  }
  /* vietnamese */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
      U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2)
      format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
      U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
      U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
      U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0370-03FF;
  }
  /* vietnamese */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
      U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2)
      format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
      U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
      U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
      U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0370-03FF;
  }
  /* vietnamese */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
      U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2)
      format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
      U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
      U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
      U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0370-03FF;
  }
  /* vietnamese */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
      U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2)
      format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
      U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
      U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
      U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0370-03FF;
  }
  /* vietnamese */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
      U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2)
      format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
      U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
      U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
      U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0370-03FF;
  }
  /* vietnamese */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
      U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url(/sp/cdn/font/Inter/v11/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2)
      format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
      U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
      U+2215, U+FEFF, U+FFFD;
  }
</style>

    <!-- prevent theme flash -->
    <style class="theme-flash-mitigation">
      @media (prefers-color-scheme: dark) {
        html {
          background: #171B25;
        }
      }
      @media (prefers-color-scheme: light) {
        html {
          background: #fff;
        }
      }
      #root {
        opacity: 0;
      }
    </style>
    <noscript>
      <style>
        #root {
          opacity: 1;
        }
      </style>
    </noscript>
    <script>
      const osPrefersDarkTheme = window.matchMedia("(prefers-color-scheme: dark)");
      const themeFlashStyleTag = document.querySelector(".theme-flash-mitigation");
      const siteTheme = document.querySelector("#site_theme").dataset.siteTheme;
      const isDarkOsThemeOnly = osPrefersDarkTheme.matches && siteTheme === "device";
      const isSiteThemeDark = ["dark", "night"].includes(siteTheme);
      const isSiteThemeLight = ["light", "air"].includes(siteTheme);
      function revealRoot() {
        themeFlashStyleTag.innerHTML += `
          #root {
            opacity: 1;
          }
        `;
      }
      function setHtmlBackgroundColor(color) {
        themeFlashStyleTag.innerHTML += `
          html {
            background: ${color};
          }
        `;
      }
      if (isSiteThemeDark) {
        setHtmlBackgroundColor("#171B25");
      }
      if (isSiteThemeLight) {
        setHtmlBackgroundColor("#fff");
      }
      if (isDarkOsThemeOnly) {
        // see mountClient.ts for the event dispatch
        window.addEventListener('app:hydrated', function() {
          revealRoot();
        });
      } else {
        revealRoot();
      }
    </script>
    <!-- end prevent theme flash -->

    <style>
      .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: #000000;
        color: white;
        padding: 8px;
        z-index: 100;
      }

      .skip-link:focus {
        top: 0;
      }
    </style>

  </head>
  <body>
    <noscript id="noscript"></noscript>

    <div id="root"><style data-emotion="css xo6a4s">.css-xo6a4s{-webkit-transition:opacity,visibility,0.06s ease;transition:opacity,visibility,0.06s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;}</style><div class="themeProvider css-xo6a4s"><div class="Layout"><style data-emotion="css-global 16z2x15">*{font-family:Inter,Helvetica Neue,Arial,sans-serif;}*,*:before,*:after{box-sizing:inherit;}html,body{padding:0;margin:0;color:#202945;box-sizing:border-box;overflow-x:hidden;}</style><noscript><style data-emotion="css eivff4">.css-eivff4{display:none;}</style><iframe title="sp-verify" src="https://vf.startpage.com/ns/a6067631be43f7c5c553d38f62651803.html?ch=main" width="0" height="0" class="css-eivff4"></iframe></noscript><style data-emotion="css 12mbex5">.css-12mbex5{position:relative;z-index:999;}@media (max-width: 990px){.css-12mbex5{padding:16px 24px 0;}}@media (max-width: 650px){.css-12mbex5{padding:16px 0 0 13px;}}@media (min-width: 990px){.css-12mbex5{position:fixed;top:0;left:0;width:100%;z-index:1000;}}</style><style data-emotion="css p8upca">.css-p8upca{padding:1rem 1rem 0;background-color:#fafaff;outline:none;position:relative;z-index:999;}@media (max-width: 990px){.css-p8upca{padding:16px 24px 0;}}@media (max-width: 650px){.css-p8upca{padding:16px 0 0 13px;}}@media (min-width: 990px){.css-p8upca{position:fixed;top:0;left:0;width:100%;z-index:1000;}}</style><header role="banner" class="css-p8upca e1fgh61o0"><style data-emotion="css 1ljuqhy">.css-1ljuqhy{position:absolute;left:-9999px;margin-left:-100px;z-index:999;padding:1em;background-color:#6573ff;color:white;}</style><a class="skip-to-main-content-link css-1ljuqhy" href="#mainline-skip-to" tabindex="0" aria-label="skip to main content">skip to main content</a><style data-emotion="css 17c5lbf">.css-17c5lbf{margin:0 0 14px;display:none;}@media (max-width: 650px){.css-17c5lbf{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;display:none;}}</style><div class="mobile-nav css-17c5lbf" role="navigation" aria-label="nav"><style data-emotion="css kztwvx">.css-kztwvx{display:inline-block;color:#202945;-webkit-text-decoration:none;text-decoration:none;}</style><a href="/?sc=hxv4I4izXbsl00&amp;t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Startpage home page" aria-hidden="false" data-testid="" role="link" title="Startpage Search" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><style data-emotion="css x3gepa">.css-x3gepa{height:24px;width:104px;background-color:transparent;}</style><div tabindex="0" class="css-x3gepa"><link rel="preload" as="image" href="/sp/cdn/images/startpage-logo-gradient.svg"/><style data-emotion="css dsle73">.css-dsle73{height:24px;width:104px;object-fit:contain;opacity:1;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-1jcflpd css-dsle73" height="24px" width="104px" src="/sp/cdn/images/startpage-logo-gradient.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1jcflpd {display:none;}</style><style data-emotion="css ojtn0p">.css-ojtn0p{height:24px;width:104px;object-fit:contain;}</style><img src="/sp/cdn/images/startpage-logo-gradient.svg" height="24px" width="104px" alt="" class="css-ojtn0p"/></noscript></div></a><div class="hamburger-menu-app-promo"><style data-emotion="css 1sty8jw">.css-1sty8jw{padding:0.5rem;width:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:4px;position:absolute;top:8px;right:8px;}.css-1sty8jw i{height:20px;width:20px;background-image:url(/sp/cdn/images/startpage-hamburger-button.svg);-webkit-background-position:center;background-position:center;-webkit-background-size:contain;background-size:contain;background-repeat:no-repeat;display:block;}.css-1sty8jw:hover{background-color:#f2f3ff;cursor:pointer;}.css-1sty8jw:hover i{background-image:url(/sp/cdn/images/startpage-hamburger-button-hover.svg);-webkit-filter:none;filter:none;}</style><div class="hamburger-button css-1sty8jw" role="button" aria-label="hamburger menu" tabindex="0"><i></i></div><style data-emotion="css rh1qfm">.css-rh1qfm{position:fixed;top:0;left:0;width:100%;height:100vh;display:none;z-index:1000;background:rgba(59,67,92,.4);}</style><div class="hamburger-mask css-rh1qfm"></div><style data-emotion="css 1i4x82j">.css-1i4x82j{position:fixed;top:0;right:-262px;background:#ffffff;height:100%;width:262px;padding:60px 24px 24px;border-radius:4px;box-shadow:2px 4px 4px rgb(0 0 0 / 10%);border:1px solid #dee0f7;-webkit-transition:right 0.2s ease;transition:right 0.2s ease;z-index:1000;overflow-x:scroll;-ms-overflow-style:none;scrollbar-width:none;}.css-1i4x82j::-webkit-scrollbar{display:none;}@media (max-width: 990px){.css-1i4x82j{width:330px;right:-330px;max-width:80vw;}}</style><div class="hamburger-drawer css-1i4x82j"><style data-emotion="css hpffgq">.css-hpffgq{position:absolute;top:20px;right:20px;}.css-hpffgq:hover{cursor:pointer;}</style><div class="close-btn css-hpffgq" role="button" tabindex="-1" aria-label="close hamburger menu" aria-hidden="true"><svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1 1 11M1 1l10 10" stroke="#7f869e" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><style data-emotion="css 1lfgow6">.css-1lfgow6{margin:0 0 20px;display:none;}@media (max-width: 990px){.css-1lfgow6{border-bottom:1px solid #dee0f7;padding:0 0 32px;margin:0 0 32px;}}</style><div class="app-banner-promo-container css-1lfgow6"><style data-emotion="css 1162ry9">.css-1162ry9{background-image:url(/sp/cdn/images/app-promo/gradient-hamburger.svg);-webkit-background-size:cover;background-size:cover;background-repeat:no-repeat;border-radius:12px;padding:16px;}</style><div class="hamburger-app-promo-banner css-1162ry9"><style data-emotion="css 13n7ld">.css-13n7ld{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#ffffff;}</style><div class="content css-13n7ld"><style data-emotion="css 1wjb9tp">.css-1wjb9tp img{-webkit-transform:scale(1.3);-moz-transform:scale(1.3);-ms-transform:scale(1.3);transform:scale(1.3);}</style><div class="icon css-1wjb9tp"><style data-emotion="css fysv4x">.css-fysv4x{height:40px;width:40px;background-color:transparent;}</style><div tabindex="0" class="css-fysv4x"><link rel="preload" as="image" href="/sp/cdn/images/app-promo/app-icon.svg"/><style data-emotion="css i8zbkv">.css-i8zbkv{height:40px;width:40px;object-fit:contain;opacity:1;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-pxty3t css-i8zbkv" height="40px" width="40px" src="/sp/cdn/images/app-promo/app-icon.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-pxty3t {display:none;}</style><style data-emotion="css 1yg5fi2">.css-1yg5fi2{height:40px;width:40px;object-fit:contain;}</style><img src="/sp/cdn/images/app-promo/app-icon.svg" height="40px" width="40px" alt="" class="css-1yg5fi2"/></noscript></div></div><style data-emotion="css ack54r">.css-ack54r{margin-left:17px;}</style><div class="text css-ack54r"><style data-emotion="css 1tfejz">.css-1tfejz{font-size:17px;font-weight:700;line-height:20px;margin:5px 0 0;}</style><p class="app-promo-title css-1tfejz">Private search meets private browsing.</p></div></div><style data-emotion="css lkodef">.css-lkodef{display:block;background:#29DDCC;border:none;border-radius:12px;color:#202945;font-weight:800;padding:8px 10px;width:100%;font-size:16px;box-shadow:2px 4px 4px rgb(0 0 0 / 10%);text-align:center;margin:12px 0 0;-webkit-text-decoration:none;text-decoration:none;}.css-lkodef:hover{background:#36F3E1;}</style><a href="https://app.startpage.com/?source=ham" rel="noreferrer noopener nofollow" target="_self" aria-label="Get the app" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-lkodef"><span class="link-text">Get the app</span></a></div></div><style data-emotion="css oaygii">.css-oaygii{margin-bottom:35px;padding-bottom:5px;border-bottom:1px solid #dee0f7;}.css-oaygii:nth-last-of-type(2){display:none;}.css-oaygii:nth-last-of-type(1){border-bottom:none;}.css-oaygii:nth-last-of-type(3){border-bottom:none;}@media (max-width: 990px){.css-oaygii:nth-last-of-type(2){display:block;border-bottom:inherit;}.css-oaygii:nth-last-of-type(3){border-bottom:inherit;}}</style><div class="link-section css-oaygii"><style data-emotion="css 1jme3ai">.css-1jme3ai{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:30px;}.css-1jme3ai a{font-size:16px;line-height:19px;font-weight:400;}.css-1jme3ai img{margin-right:0.5rem;}.css-1jme3ai button{outline:none;padding:0;border:none;background:none;font-size:16px;line-height:19px;font-weight:400;display:inline-block;color:#202945;}.css-1jme3ai button:hover{color:#6573ff;cursor:pointer;}.css-1jme3ai .subtext{display:block;margin-top:8px;font-size:13px;line-height:13px;font-weight:400;color:#7f869e;}.css-1jme3ai .subtext:hover{color:#6573ff;}@media (max-width: 990px){.css-1jme3ai{margin-bottom:25px;}}</style><div class="css-1jme3ai"><a href="https://www.startpage.com/en/about-us?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="About Startpage" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">About Startpage</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/en/privacy-policy?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Our Privacy Policy" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Our Privacy Policy</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Privacy, Please! Blog" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Privacy, Please! Blog</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/privacy-please/press/" rel="noreferrer noopener nofollow" target="_self" aria-label="Press" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Press</span></a></div><div class="css-1jme3ai"><a href="https://support.startpage.com/hc/en-us" rel="noreferrer noopener nofollow" target="_self" aria-label="Support" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Support</span></a></div><div class="css-1jme3ai"><a href="/do/settings?query=corpse%20party&amp;t=device&amp;lui=english&amp;cat=video&amp;sc=hxv4I4izXbsl00" rel="noreferrer noopener nofollow" target="_self" aria-label="Settings" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Settings</span></a></div></div><div class="link-section css-oaygii"><div class="css-1jme3ai"><a href="/?sc=hxv4I4izXbsl00&amp;t=device&amp;cat=web" rel="noreferrer noopener nofollow" target="_self" aria-label="Web" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Web</span></a></div><div class="css-1jme3ai"><a href="https://support.startpage.com/hc/en-us/articles/4521527855636-Impressum" rel="noreferrer noopener nofollow" target="_self" aria-label="Imprint" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Imprint</span></a></div></div><div class="link-section css-oaygii"><div class="css-1jme3ai"><style data-emotion="css 4zleql">.css-4zleql{display:block;}</style><div class="link-with-subtext css-4zleql"><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Privacy, Please!" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Privacy, Please!</span></a><span class="subtext" aria-describedby="Blog articles, interviews, and guides" aria-hidden="true">Blog articles, interviews, and guides</span></div></div><div class="css-1jme3ai"><a href="https://www.startpage.com/en/how-startpage-works?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="How Does Private Search Work?" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">How Does Private Search Work?</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/en/anonymous-view?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Learn About Anonymous View" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Learn About Anonymous View</span></a></div></div><div class="link-section css-oaygii"></div></div></div></div><style data-emotion="css nx7q65">.css-nx7q65{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0.5rem 0 0;}.css-nx7q65 .home-btn-magnifying{display:none;}@media (max-width: 990px){.css-nx7q65{margin:auto;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}.css-nx7q65 .home-btn-magnifying{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}@media (max-width: 650px){.css-nx7q65 .home-btn-logo{display:none;}@supports (-webkit-touch-callout: none){.css-nx7q65{padding:0 0.5rem 0 0;}}}</style><div class="header-inner-container css-nx7q65"><style data-emotion="css ggih3w">.css-ggih3w{margin:0 1.4rem 0 0.4rem;}</style><div class="home-btn-logo css-ggih3w"><a href="/?sc=hxv4I4izXbsl00&amp;t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Startpage home page" aria-hidden="false" data-testid="" role="link" title="Startpage home page" tabindex="0" class=" css-kztwvx"><span class="link-text"></span></a></div><style data-emotion="css d87pqa">.css-d87pqa{-webkit-flex:1;-ms-flex:1;flex:1;margin-right:0.5rem;}@media (max-width: 990px){.css-d87pqa{margin-right:0;}}</style><div class="search-form css-d87pqa" id="header-search-form"><style data-emotion="css 1nq2wfq">.css-1nq2wfq{position:relative;width:100%;max-width:630px;color:#202945;background:#ffffff;border-radius:2rem;border:1px solid #dee0f7;-webkit-transition:border 0.2s ease;transition:border 0.2s ease;box-shadow:0 2px 4px #dee0f7;}.css-1nq2wfq form{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:39px;}.css-1nq2wfq input,.css-1nq2wfq button{color:#202945;padding:0;border:none;background-color:transparent;}.css-1nq2wfq span:hover,.css-1nq2wfq button:hover{cursor:pointer;}.css-1nq2wfq input{font-size:16px;-webkit-flex:1;-ms-flex:1;flex:1;padding:10px 75px 10px 15px;width:100%;}@media (max-width: 650px){.css-1nq2wfq input{padding:10px 70px 10px 15px;}}.css-1nq2wfq input:focus{outline:none;}.css-1nq2wfq input::-webkit-input-placeholder{color:#C3C8DA;}.css-1nq2wfq input::-moz-placeholder{color:#C3C8DA;}.css-1nq2wfq input:-ms-input-placeholder{color:#C3C8DA;}.css-1nq2wfq input::placeholder{color:#C3C8DA;}@media (max-width: 650px){.css-1nq2wfq input::-webkit-input-placeholder{color:transparent;visibility:hidden;}.css-1nq2wfq input::-moz-placeholder{color:transparent;visibility:hidden;}.css-1nq2wfq input:-ms-input-placeholder{color:transparent;visibility:hidden;}.css-1nq2wfq input::placeholder{color:transparent;visibility:hidden;}}.css-1nq2wfq .btns{position:absolute;right:0;top:50%;margin-top:-10px;}.css-1nq2wfq .x-btn-container{padding-right:0.5rem;margin-right:0.5rem;border-right:1px solid #ebecf7;}@media (max-width: 650px){.css-1nq2wfq .x-btn-container{border-right:none;padding-right:0;}}.css-1nq2wfq .x-btn{background-image:url(/sp/cdn/images/grey-x.svg);-webkit-background-size:contain;background-size:contain;background-repeat:no-repeat;-webkit-background-position:center;background-position:center;height:20px;width:20px;display:block;}.css-1nq2wfq .x-btn:hover{background-image:url(/sp/cdn/images/x-btn-hover.svg);}.css-1nq2wfq .search-btn{background-image:url(/sp/cdn/images/magnifying-glass-grey.svg);-webkit-background-size:contain;background-size:contain;background-repeat:no-repeat;-webkit-background-position:center;background-position:center;height:20px;width:20px;display:block;margin-right:0.7rem;}.css-1nq2wfq .search-btn:hover{background-image:url(/sp/cdn/images/magnifying-glass.svg);}@media (max-width: 330px){.css-1nq2wfq{margin-right:10px;}}</style><div class="css-1nq2wfq e1vne5t50"><noscript><style>.x-btn {
            display: none !important;
          }</style></noscript><form action="/sp/search" method="post" class="search-14tgctq" id="search" data-testid="search" role="search"><input type="text" aria-haspopup="false" aria-label="search" autoCapitalize="off" autoComplete="off" autoCorrect="off" dir="ltr" id="q" data-testid="q" maxLength="2048" name="query" placeholder="" role="searchbox" spellcheck="false" title="Search" value="corpse party"/><input type="hidden" name="t" value="device"/><input type="hidden" name="lui" value="english"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="cat" value="video"/><style data-emotion="css s5xdrg">.css-s5xdrg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}</style><div class="btns css-s5xdrg"><div class="x-btn-container"><button aria-label="clear search bar" type="button" class="x-btn" data-testid="x-btn"></button></div><button class="search-btn" type="submit" aria-label="search button"></button></div></form><style data-emotion="css savd8u">.css-savd8u{position:absolute;top:45px;width:100%;z-index:999;-webkit-transition:opacity,visibility,0.5s ease;transition:opacity,visibility,0.5s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;}</style><div class="suggested-search-container css-savd8u"><style data-emotion="css 9pe8cc">.css-9pe8cc{-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;border:1px solid #dee0f7;border-radius:4px;background-color:#ffffff;overflow:hidden;-webkit-transition:opacity,visibility,0.5s ease;transition:opacity,visibility,0.5s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;}</style><div class="search-suggest css-9pe8cc"></div></div></div></div><style data-emotion="css 1dfoan3">@media (max-width: 990px){.css-1dfoan3{margin:0 0 0 0.75rem;}}</style><div class="top-nav-container css-1dfoan3"><style data-emotion="css 5ej25d">.css-5ej25d{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}</style><div class="nav-app-promo css-5ej25d"><style data-emotion="css 1pducxn">@media (max-width: 990px){.css-1pducxn{display:none;}}</style><div class="css-1pducxn"><style data-emotion="css w1m7lx">.css-w1m7lx{position:relative;margin-right:1rem;z-index:999;}</style><div class="blog-menu css-w1m7lx"><style data-emotion="css 1wgt0iz">.css-1wgt0iz{border:none;font-weight:500;font-size:14px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 10px;cursor:pointer;border-radius:4px;line-height:26px;color:#202945;}.css-1wgt0iz span{margin-right:0.5rem;color:inherit;}.css-1wgt0iz .blog-menu-circle{position:absolute;right:7px;width:16px;height:16px;border-radius:50%;background:#f2f3ff;top:10px;margin-right:0;}.css-1wgt0iz .blog-menu-chevron{margin:-25px 0 0 10px;z-index:2;}.css-1wgt0iz img{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);-webkit-transition:-webkit-transform 0.2s ease;transition:transform 0.2s ease;}.css-1wgt0iz:hover{background-color:#f2f3ff;color:#6573ff;}</style><div role="button" tabindex="0" class="css-1wgt0iz">Privacy, Please!<span class="blog-menu-chevron"><style data-emotion="css 17vu6ua">.css-17vu6ua{height:5px;width:10px;background-color:transparent;}</style><div tabindex="-1" class="css-17vu6ua"><link rel="preload" as="image" href="/sp/cdn/images/filter-chevron.svg"/><style data-emotion="css vb6ifn">.css-vb6ifn{height:5px;width:10px;object-fit:contain;opacity:1;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-1e6l6j9 css-vb6ifn" height="5px" width="10px" src="/sp/cdn/images/filter-chevron.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1e6l6j9 {display:none;}</style><style data-emotion="css 1jgq24a">.css-1jgq24a{height:5px;width:10px;object-fit:contain;}</style><img src="/sp/cdn/images/filter-chevron.svg" height="5px" width="10px" alt="" class="css-1jgq24a"/></noscript></div></span><span class="blog-menu-circle"></span></div><style data-emotion="css jl2eeq">.css-jl2eeq{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;box-shadow:0px 20px 20px rgba(0, 0, 0, 0.1);border-radius:4px;border:1px solid #dee0f7;width:408px;right:-10px;text-align:center;margin-top:0.25rem;padding:20px;background-color:#ffffff;-webkit-transition:-webkit-transform,0.06s ease;transition:transform,0.06s ease;-webkit-transform:scale(0.8);-moz-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);-webkit-transition:opacity,visibility,0.06s ease;transition:opacity,visibility,0.06s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;}.css-jl2eeq .link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;color:inherit;font-weight:400;font-size:14px;line-height:20px;height:50%;text-align:left;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:24px;padding-bottom:8px;margin-right:20px;}.css-jl2eeq .link:first-of-type{border-bottom:solid 1px #dee0f7;padding-top:8px;padding-bottom:20px;}.css-jl2eeq .link-text{-webkit-text-decoration:underline;text-decoration:underline;color:#202945;}.css-jl2eeq .link-text:hover{color:#6573ff;}</style><div class="privacy-please-card css-jl2eeq"><style data-emotion="css fr8z7">.css-fr8z7{width:58%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-right:1px solid #dee0f7;padding:0;text-align:center;}.css-fr8z7 a{padding-left:12px;}</style><div class="left css-fr8z7"><div class="link"><div tabindex="0" class="css-fysv4x"><link rel="preload" as="image" href="/sp/cdn/images/privacy-please-lock-icon.svg"/><img class="css-1sioiin css-i8zbkv" height="40px" width="40px" src="/sp/cdn/images/privacy-please-lock-icon.svg" alt="Lock with shield" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1sioiin {display:none;}</style><img src="/sp/cdn/images/privacy-please-lock-icon.svg" height="40px" width="40px" alt="Lock with shield" class="css-1yg5fi2"/></noscript></div><style data-emotion="css c68e2a">.css-c68e2a{display:inline-block;color:#202945;-webkit-text-decoration:underline;text-decoration:underline;}</style><a href="https://www.startpage.com/en/how-startpage-works/?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="How does Private Search Work?" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-c68e2a"><span class="link-text">How Does Private Search Work?</span></a></div><div class="link"><div tabindex="0" class="css-fysv4x"><link rel="preload" as="image" href="/sp/cdn/images/privacy-please-av-icon.svg"/><img class="css-1iwvoc6 css-i8zbkv" height="40px" width="40px" src="/sp/cdn/images/privacy-please-av-icon.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1iwvoc6 {display:none;}</style><img src="/sp/cdn/images/privacy-please-av-icon.svg" height="40px" width="40px" alt="" class="css-1yg5fi2"/></noscript></div><a href="https://www.startpage.com/en/anonymous-view/?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Learn About Anonymous View." aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-c68e2a"><span class="link-text">Learn About Anonymous View.</span></a></div></div><style data-emotion="css ak08ok">.css-ak08ok{width:42%;text-align:center;margin-left:20px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-ak08ok .x-button{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;top:3px;right:3px;width:25px;height:25px;border-radius:50%;}.css-ak08ok .x-button:hover{cursor:pointer;background-color:#fbfbfd;}.css-ak08ok .x-button .x-icon{display:block;width:20px;height:20px;background:url(/sp/cdn/images/grey-x.svg) 50% 50% no-repeat;}.css-ak08ok .x-button .x-icon:hover{background:url(/sp/cdn/images/x-btn-hover.svg) 50% 50% no-repeat;}.css-ak08ok a{font-size:14px;line-height:20px;}</style><div class="right css-ak08ok"><style data-emotion="css gzg3jy">.css-gzg3jy{height:65px;width:85px;background-color:transparent;}</style><div tabindex="0" class="css-gzg3jy"><link rel="preload" as="image" href="/sp/cdn/images/privacy-please-sign-en--light.svg"/><style data-emotion="css qtw5bk">.css-qtw5bk{height:65px;width:85px;object-fit:contain;opacity:1;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-1tjkuaj css-qtw5bk" height="65px" width="85px" src="/sp/cdn/images/privacy-please-sign-en--light.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1tjkuaj {display:none;}</style><style data-emotion="css yajcse">.css-yajcse{height:65px;width:85px;object-fit:contain;}</style><img src="/sp/cdn/images/privacy-please-sign-en--light.svg" height="65px" width="85px" alt="" class="css-yajcse"/></noscript></div><style data-emotion="css 1bii9j6">.css-1bii9j6{margin:6px 0 0 0;color:#202945;font-size:14px;line-height:20px;font-weight:400;}</style><p class="css-1bii9j6">Privacy, Please!</p><style data-emotion="css 4j0fg8">.css-4j0fg8{color:#7f869e;margin:4px 0 8px 0;line-height:18px;font-size:12px;}</style><p class="css-4j0fg8">Blog and newsletter on the latest in privacy</p><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Visit Our Blog" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-c68e2a"><span class="link-text">Visit Our Blog</span></a><span class="x-button" tabindex="0" role="button" aria-label="close privacy please blog menu"><span class="x-icon"></span></span></div></div></div></div><div class="hamburger-menu-app-promo"><style data-emotion="css 65wr26">.css-65wr26{padding:0.5rem;width:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:4px;padding:0.5rem 0;}.css-65wr26 i{height:20px;width:20px;background-image:url(/sp/cdn/images/startpage-hamburger-button.svg);-webkit-background-position:center;background-position:center;-webkit-background-size:contain;background-size:contain;background-repeat:no-repeat;display:block;}.css-65wr26:hover{background-color:#f2f3ff;cursor:pointer;}.css-65wr26:hover i{background-image:url(/sp/cdn/images/startpage-hamburger-button-hover.svg);-webkit-filter:none;filter:none;}@media (max-width: 650px){.css-65wr26{display:none;}}@media (max-width: 330px){.css-65wr26{width:20px;}}</style><div class="hamburger-button css-65wr26" role="button" aria-label="hamburger menu" tabindex="0"><i></i></div><div class="hamburger-mask css-rh1qfm"></div><div class="hamburger-drawer css-1i4x82j"><div class="close-btn css-hpffgq" role="button" tabindex="-1" aria-label="close hamburger menu" aria-hidden="true"><svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1 1 11M1 1l10 10" stroke="#7f869e" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div class="app-banner-promo-container css-1lfgow6"><div class="hamburger-app-promo-banner css-1162ry9"><div class="content css-13n7ld"><div class="icon css-1wjb9tp"><div tabindex="0" class="css-fysv4x"><link rel="preload" as="image" href="/sp/cdn/images/app-promo/app-icon.svg"/><img class="css-isphy1 css-i8zbkv" height="40px" width="40px" src="/sp/cdn/images/app-promo/app-icon.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-isphy1 {display:none;}</style><img src="/sp/cdn/images/app-promo/app-icon.svg" height="40px" width="40px" alt="" class="css-1yg5fi2"/></noscript></div></div><div class="text css-ack54r"><p class="app-promo-title css-1tfejz">Private search meets private browsing.</p></div></div><a href="https://app.startpage.com/?source=ham" rel="noreferrer noopener nofollow" target="_self" aria-label="Get the app" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-lkodef"><span class="link-text">Get the app</span></a></div></div><div class="link-section css-oaygii"><div class="css-1jme3ai"><a href="https://www.startpage.com/en/about-us?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="About Startpage" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">About Startpage</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/en/privacy-policy?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Our Privacy Policy" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Our Privacy Policy</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Privacy, Please! Blog" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Privacy, Please! Blog</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/privacy-please/press/" rel="noreferrer noopener nofollow" target="_self" aria-label="Press" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Press</span></a></div><div class="css-1jme3ai"><a href="https://support.startpage.com/hc/en-us" rel="noreferrer noopener nofollow" target="_self" aria-label="Support" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Support</span></a></div><div class="css-1jme3ai"><a href="/do/settings?query=corpse%20party&amp;t=device&amp;lui=english&amp;cat=video&amp;sc=hxv4I4izXbsl00" rel="noreferrer noopener nofollow" target="_self" aria-label="Settings" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Settings</span></a></div></div><div class="link-section css-oaygii"><div class="css-1jme3ai"><a href="/?sc=hxv4I4izXbsl00&amp;t=device&amp;cat=web" rel="noreferrer noopener nofollow" target="_self" aria-label="Web" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Web</span></a></div><div class="css-1jme3ai"><a href="https://support.startpage.com/hc/en-us/articles/4521527855636-Impressum" rel="noreferrer noopener nofollow" target="_self" aria-label="Imprint" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Imprint</span></a></div></div><div class="link-section css-oaygii"><div class="css-1jme3ai"><div class="link-with-subtext css-4zleql"><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Privacy, Please!" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Privacy, Please!</span></a><span class="subtext" aria-describedby="Blog articles, interviews, and guides" aria-hidden="true">Blog articles, interviews, and guides</span></div></div><div class="css-1jme3ai"><a href="https://www.startpage.com/en/how-startpage-works?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="How Does Private Search Work?" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">How Does Private Search Work?</span></a></div><div class="css-1jme3ai"><a href="https://www.startpage.com/en/anonymous-view?t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="Learn About Anonymous View" aria-hidden="true" data-testid="" role="link" title="" tabindex="-1" class=" css-kztwvx"><span class="link-text">Learn About Anonymous View</span></a></div></div><div class="link-section css-oaygii"></div></div></div></div></div></div><style data-emotion="css xn76z1">.css-xn76z1{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:13px 0 0;margin-left:133px;max-width:630px;-ms-overflow-style:none;scrollbar-width:none;}.css-xn76z1::-webkit-scrollbar{display:none;}@media (max-width: 990px){.css-xn76z1{margin:0 0 0 40px;max-width:100%;padding:12px 0 0;}}@media (max-width: 650px){.css-xn76z1{overflow-x:auto;margin-left:14px;overflow-x:auto;}.css-xn76z1::before{-webkit-mask-image:linear-gradient(
                to right,
                black calc(100% - 15px),
                transparent 100%
              );mask-image:linear-gradient(
                to right,
                black calc(100% - 15px),
                transparent 100%
              );-webkit-mask-image:linear-gradient(
                to right,
                black calc(100% - 15px),
                transparent 100%
              );}}</style><div class="inline-nav css-xn76z1"><style data-emotion="css 5ncz91">.css-5ncz91{display:grid;grid-template-columns:0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr;}@media (max-width: 650px){@supports (-webkit-touch-callout: none){.css-5ncz91 button{margin-bottom:0;margin-left:2px;}}}</style><div class="categories css-5ncz91"><style data-emotion="css djb6d8">.css-djb6d8{-webkit-flex:1;-ms-flex:1;flex:1;display:inline-block;}</style><div class="vertical-link-container css-djb6d8"><style data-emotion="css 1s5a826">.css-1s5a826 button{color:#3b435b;padding-bottom:0.75rem;margin-right:10px;font-weight:500;border-bottom:2px solid transparent;}.css-1s5a826 button:hover{cursor:pointer;color:#6573ff;}@media (max-width: 650px){.css-1s5a826 button{font-size:13px;padding:0 0 0.75rem;margin-right:32px;}.css-1s5a826 button:hover{color:#3b435b;}}@media (max-width: 650px){.css-1s5a826{-webkit-flex:1;-ms-flex:1;flex:1;}}</style><form action="/sp/search" method="post" class="css-1s5a826"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="web"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><style data-emotion="css ocm99y">.css-ocm99y{border:none;background:transparent;color:#202945;font-size:14px;}.css-ocm99y:hover{cursor:pointer;}</style><button tabindex="0" type="submit" data-testid="Web" role="link" class="css-ocm99y"><div class="css-s5xdrg"><style data-emotion="css 1p7qe93">.css-1p7qe93{width:16px;height:17px;margin-right:6px;}@media (max-width: 650px){.css-1p7qe93{display:none;}}</style><div class="header-nav-img-container css-1p7qe93"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><circle cx="6.15385" cy="6.15385" r="4.90385" stroke="#3B435B" stroke-width="1.5"></circle><path d="M9.8457 9.84619L13.9995 14" stroke="#3B435B" stroke-width="1.5" stroke-linecap="round"></path></svg></div><style data-emotion="css vh5nmu">.css-vh5nmu{font-size:13px;}</style><div class="css-vh5nmu">Web<!-- --> </div></div></button></form></div><div class="vertical-link-container css-djb6d8"><form action="/sp/search" method="post" class="css-1s5a826"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="images"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><button tabindex="0" type="submit" data-testid="Images" role="link" class="css-ocm99y"><div class="css-s5xdrg"><div class="header-nav-img-container css-1p7qe93"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="1" width="14" height="14" rx="2" stroke="#3B435B" stroke-width="1.5"></rect><circle cx="9" cy="5.5" r="1.5" stroke="#3B435B" stroke-width="1.5" stroke-linejoin="round"></circle><path d="M9 12L11.6572 9.32703C11.8408 9.1423 12.1355 9.1295 12.3345 9.29763L15 11.55" stroke="#3B435B" stroke-width="1.5"></path><path d="M1 10.1111L3.85017 7.34731C4.0481 7.15537 4.36406 7.15989 4.55643 7.3574L12 15" stroke="#3B435B" stroke-width="1.5"></path></svg></div><div class="css-vh5nmu">Images<!-- --> </div></div></button></form></div><div class="vertical-link-container css-djb6d8"><style data-emotion="css pywsim">.css-pywsim button{color:#3b435b;padding-bottom:0.75rem;margin-right:10px;font-weight:500;border-bottom:2px solid transparent;color:#6573ff;border-bottom:2px solid #6573ff;}.css-pywsim button:hover{cursor:pointer;color:#6573ff;}@media (max-width: 650px){.css-pywsim button{font-size:13px;padding:0 0 0.75rem;margin-right:32px;}.css-pywsim button:hover{color:#3b435b;}}@media (max-width: 650px){.css-pywsim{-webkit-flex:1;-ms-flex:1;flex:1;}}</style><form action="/sp/search" method="post" class="css-pywsim"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="video"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><button tabindex="0" type="submit" data-testid="Videos" role="link" class="css-ocm99y"><div class="css-s5xdrg"><div class="header-nav-img-container css-1p7qe93"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M2 13.191V2.80902C2 2.43733 2.39116 2.19558 2.72361 2.3618L13.1056 7.55279C13.4741 7.73705 13.4741 8.26295 13.1056 8.44721L2.72361 13.6382C2.39116 13.8044 2 13.5627 2 13.191Z" stroke="#6677FB" stroke-width="1.5" stroke-linecap="round"></path></svg></div><div class="css-vh5nmu">Videos<!-- --> </div></div></button></form></div><div class="vertical-link-container css-djb6d8"><form action="/sp/search" method="post" class="css-1s5a826"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="news"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><button tabindex="0" type="submit" data-testid="News" role="link" class="css-ocm99y"><div class="css-s5xdrg"><div class="header-nav-img-container css-1p7qe93"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="0.75" y="0.75" width="14.5" height="14.5" rx="2.25" stroke="#3B435B" stroke-width="1.5"></rect><line x1="9.75" y1="4.5" x2="12.25" y2="4.5" stroke="#3B435B" stroke-width="1.5" stroke-linecap="round"></line><line x1="9.75" y1="8" x2="12.25" y2="8" stroke="#3B435B" stroke-width="1.5" stroke-linecap="round"></line><line x1="3.75" y1="11.5" x2="12.25" y2="11.5" stroke="#3B435B" stroke-width="1.5" stroke-linecap="round"></line><mask id="path-5-inside-1_210_7615" fill="white"><rect x="3" y="3.75" width="5" height="5" rx="0.5"></rect></mask><rect x="3" y="3.75" width="5" height="5" rx="0.5" stroke="#3B435B" stroke-width="3" mask="url(#path-5-inside-1_210_7615)"></rect></svg></div><div class="css-vh5nmu">News<!-- --> </div></div></button></form></div><div class="vertical-link-container css-djb6d8"><form action="/sp/search" method="post" class="css-1s5a826"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="shopping"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><button tabindex="0" type="submit" data-testid="Shopping" role="link" class="css-ocm99y"><div class="css-s5xdrg"><style data-emotion="css 1y0t1t7">.css-1y0t1t7{width:18px;height:17px;margin-right:6px;}@media (max-width: 650px){.css-1y0t1t7{display:none;}}</style><div class="header-nav-img-container css-1y0t1t7"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="17" viewBox="0 0 18 17" fill="none"><path d="M1.13451 6.46518C1.06546 6.15305 1.30303 5.85718 1.62271 5.85718H16.3773C16.697 5.85718 16.9345 6.15305 16.8655 6.46518L14.9534 15.108C14.9027 15.337 14.6997 15.5 14.4652 15.5H3.53481C3.30028 15.5 3.09727 15.337 3.04661 15.108L1.13451 6.46518Z" stroke="#3B435B" stroke-width="1.5"></path><path d="M4.73339 7.42501L9.0023 1.07499" stroke="#3B435B" stroke-width="1.5" stroke-linecap="round"></path><path d="M13.2666 7.42501L8.9977 1.07499" stroke="#3B435B" stroke-width="1.5" stroke-linecap="round"></path></svg></div><div class="css-vh5nmu">Shopping<!-- --> <style data-emotion="css 1b6fvp5">.css-1b6fvp5{font-size:8px;font-weight:700;line-height:10px;vertical-align:super;}</style><span class="css-1b6fvp5">BETA</span></div></div></button></form></div><div class="vertical-link-container css-djb6d8"><style data-emotion="css lhcvrl">.css-lhcvrl{color:#3b435b;padding-bottom:0.75rem;margin-right:10px;font-weight:500;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-bottom:2px solid transparent;background:transparent;}.css-lhcvrl:hover{cursor:pointer;color:#6573ff;}@media (max-width: 650px){.css-lhcvrl{font-size:13px;padding:0 0 0.75rem;margin-right:32px;}.css-lhcvrl:hover{color:#3b435b;}}@media (max-width: 650px){.css-lhcvrl{-webkit-flex:1;-ms-flex:1;flex:1;}}</style><div class="maps css-lhcvrl"><style data-emotion="css 1r0pr4l">.css-1r0pr4l{position:relative;-webkit-flex:0;-ms-flex:0;flex:0;}.css-1r0pr4l .dropdown-select{font-size:13px;margin-top:2px;}.css-1r0pr4l .dropdown-display{padding:16px;padding-top:0;background:#fafaff;color:#202945;}</style><div class="css-1r0pr4l exorgsi6"><style data-emotion="css 3ssenp">.css-3ssenp{font-size:14px;max-width:none;}.css-3ssenp:hover{cursor:pointer;}</style><div class="dropdown-select css-3ssenp exorgsi4" role="button" aria-pressed="false" tabindex="0" aria-expanded="false" aria-haspopup="menu" aria-label="select {}"><style data-emotion="css zjik7">.css-zjik7{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}</style><div class="css-zjik7"><div class="header-nav-img-container css-1p7qe93"><svg fill="none" height="16" viewBox="0 0 17 16" width="17" xmlns="http://www.w3.org/2000/svg"><g stroke="#3B435B" stroke-linejoin="round" stroke-width="1.5"><path d="m1.09995 15.2494v-12.66791l4.59632-1.681588 5.38103 1.905798 4.4843-1.68159v12.55579l-4.4843 1.5695-5.38103-1.7937z"></path><path d="m5.69624 1.01196v12.55584"></path><path d="m11.0773 2.80566v12.33164"></path></g></svg></div><div>Maps</div></div></div><style data-emotion="css 1crfaxs">.css-1crfaxs{position:absolute;border:1px solid #dee0f7;box-shadow:2px 4px 8px rgb(0 0 0 / 15%);border-radius:4px;background:#fafaff;width:250px;top:27px;left:0;z-index:998;-webkit-transition:-webkit-transform,0.06s ease;transition:transform,0.06s ease;-webkit-transform:scale(0.8);-moz-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);-webkit-transition:opacity,visibility,0.06s ease;transition:opacity,visibility,0.06s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;}@media (max-width: 990px){.css-1crfaxs{position:fixed;top:50%;left:50%;z-index:1000;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);}}</style><div class="dropdown-display css-1crfaxs exorgsi1"><style data-emotion="css 18yhr2g">.css-18yhr2g{border-bottom:1px solid #dee0f7;margin:0 -16px 0.7rem;font-weight:600;padding:0 25px;color:#202945;}</style><div class="title css-18yhr2g"><style data-emotion="css 8ob0xn">.css-8ob0xn{line-height:0;font-size:13px;}</style><h5 class="css-8ob0xn">Choose a Map</h5></div><style data-emotion="css 1q2nof1">.css-1q2nof1{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:0.5rem;color:#2b3860;font-size:14px;width:100%;text-align:left;font-weight:400;}.css-1q2nof1:hover{cursor:pointer;color:#202C46;background-color:#ffffff;}</style><div aria-pressed="false" aria-haspopup="menu" tabindex="0" role="button" class="css-1q2nof1"><style data-emotion="css r5hahk">.css-r5hahk{margin-right:20px;}</style><div class="css-r5hahk"><style data-emotion="css 1mw1kz1">.css-1mw1kz1{height:24px;width:24px;background-color:transparent;}</style><div tabindex="0" class="css-1mw1kz1"><link rel="preload" as="image" href="/sp/cdn/images/google-icon.svg"/><style data-emotion="css lc6025">.css-lc6025{height:24px;width:24px;object-fit:contain;opacity:1;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-1mtl8we css-lc6025" height="24px" width="24px" src="/sp/cdn/images/google-icon.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1mtl8we {display:none;}</style><style data-emotion="css 1mugjpc">.css-1mugjpc{height:24px;width:24px;object-fit:contain;}</style><img src="/sp/cdn/images/google-icon.svg" height="24px" width="24px" alt="" class="css-1mugjpc"/></noscript></div></div><style data-emotion="css 6sug3x">.css-6sug3x{margin-top:3px;}</style><span class="css-6sug3x">Google Maps</span></div><div aria-pressed="false" aria-haspopup="menu" tabindex="0" role="button" class="css-1q2nof1"><div class="css-r5hahk"><div tabindex="0" class="css-1mw1kz1"><link rel="preload" as="image" href="/sp/cdn/images/bing-icon.svg"/><img class="css-1bbsh3 css-lc6025" height="24px" width="24px" src="/sp/cdn/images/bing-icon.svg" alt="" loading="eager" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1bbsh3 {display:none;}</style><img src="/sp/cdn/images/bing-icon.svg" height="24px" width="24px" alt="" class="css-1mugjpc"/></noscript></div></div><span class="css-6sug3x">Bing</span></div><div></div></div></div></div></div></div><style data-emotion="css vo3wvx">.css-vo3wvx{margin:-10px 0 0 -10px;}@supports (-webkit-touch-callout: none){.css-vo3wvx{margin:-9px 0 0 -10px;}}@media (max-width: 650px){.css-vo3wvx{display:none;}}</style><div class="settings css-vo3wvx"><div class="settings-button css-s5xdrg"><style data-emotion="css 6lw2pr">.css-6lw2pr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:12px;}</style><a href="/do/settings?query=corpse%20party&amp;t=device&amp;lui=english&amp;cat=video&amp;sc=hxv4I4izXbsl00" aria-label="Settings" class="css-6lw2pr"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#374677"><path d="M8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z" stroke="current" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.9333 9.99996C12.8446 10.201 12.8181 10.4241 12.8573 10.6404C12.8965 10.8566 12.9996 11.0562 13.1533 11.2133L13.1933 11.2533C13.3173 11.3771 13.4156 11.5242 13.4827 11.686C13.5498 11.8479 13.5844 12.0214 13.5844 12.1966C13.5844 12.3718 13.5498 12.5453 13.4827 12.7072C13.4156 12.8691 13.3173 13.0161 13.1933 13.14C13.0695 13.2639 12.9224 13.3623 12.7606 13.4294C12.5987 13.4965 12.4252 13.531 12.25 13.531C12.0748 13.531 11.9013 13.4965 11.7394 13.4294C11.5775 13.3623 11.4305 13.2639 11.3067 13.14L11.2667 13.1C11.1095 12.9463 10.91 12.8432 10.6937 12.804C10.4775 12.7647 10.2544 12.7912 10.0533 12.88C9.85614 12.9645 9.68798 13.1048 9.56953 13.2836C9.45108 13.4625 9.38751 13.6721 9.38666 13.8866V14C9.38666 14.3536 9.24618 14.6927 8.99613 14.9428C8.74608 15.1928 8.40695 15.3333 8.05332 15.3333C7.6997 15.3333 7.36056 15.1928 7.11052 14.9428C6.86047 14.6927 6.71999 14.3536 6.71999 14V13.94C6.71483 13.7193 6.6434 13.5053 6.515 13.3258C6.38659 13.1462 6.20715 13.0095 5.99999 12.9333C5.79891 12.8445 5.57586 12.8181 5.3596 12.8573C5.14333 12.8965 4.94378 12.9996 4.78666 13.1533L4.74666 13.1933C4.62283 13.3173 4.47577 13.4156 4.31391 13.4827C4.15205 13.5498 3.97854 13.5843 3.80332 13.5843C3.6281 13.5843 3.4546 13.5498 3.29274 13.4827C3.13087 13.4156 2.98382 13.3173 2.85999 13.1933C2.73602 13.0695 2.63768 12.9224 2.57058 12.7605C2.50348 12.5987 2.46894 12.4252 2.46894 12.25C2.46894 12.0747 2.50348 11.9012 2.57058 11.7394C2.63768 11.5775 2.73602 11.4305 2.85999 11.3066L2.89999 11.2666C3.05368 11.1095 3.15678 10.9099 3.19599 10.6937C3.23521 10.4774 3.20873 10.2544 3.11999 10.0533C3.03548 9.85611 2.89516 9.68795 2.7163 9.5695C2.53744 9.45105 2.32785 9.38748 2.11332 9.38663H1.99999C1.64637 9.38663 1.30723 9.24615 1.05718 8.9961C0.807132 8.74605 0.666656 8.40691 0.666656 8.05329C0.666656 7.69967 0.807132 7.36053 1.05718 7.11048C1.30723 6.86044 1.64637 6.71996 1.99999 6.71996H2.05999C2.28065 6.7148 2.49466 6.64337 2.67419 6.51497C2.85372 6.38656 2.99047 6.20712 3.06666 5.99996C3.1554 5.79888 3.18187 5.57583 3.14266 5.35957C3.10345 5.1433 3.00035 4.94375 2.84666 4.78663L2.80666 4.74663C2.68269 4.6228 2.58434 4.47574 2.51724 4.31388C2.45014 4.15202 2.41561 3.97851 2.41561 3.80329C2.41561 3.62807 2.45014 3.45457 2.51724 3.29271C2.58434 3.13084 2.68269 2.98379 2.80666 2.85996C2.93049 2.73599 3.07754 2.63765 3.2394 2.57055C3.40127 2.50345 3.57477 2.46891 3.74999 2.46891C3.92521 2.46891 4.09871 2.50345 4.26058 2.57055C4.42244 2.63765 4.56949 2.73599 4.69332 2.85996L4.73332 2.89996C4.89044 3.05365 5.09 3.15675 5.30626 3.19596C5.52253 3.23517 5.74558 3.2087 5.94666 3.11996H5.99999C6.19717 3.03545 6.36534 2.89513 6.48379 2.71627C6.60224 2.53741 6.6658 2.32782 6.66666 2.11329V1.99996C6.66666 1.64634 6.80713 1.3072 7.05718 1.05715C7.30723 0.807102 7.64637 0.666626 7.99999 0.666626C8.35361 0.666626 8.69275 0.807102 8.9428 1.05715C9.19285 1.3072 9.33332 1.64634 9.33332 1.99996V2.05996C9.33418 2.27448 9.39775 2.48408 9.5162 2.66294C9.63465 2.8418 9.80281 2.98212 9.99999 3.06663C10.2011 3.15537 10.4241 3.18184 10.6404 3.14263C10.8566 3.10342 11.0562 3.00032 11.2133 2.84663L11.2533 2.80663C11.3772 2.68266 11.5242 2.58431 11.6861 2.51721C11.8479 2.45011 12.0214 2.41558 12.1967 2.41558C12.3719 2.41558 12.5454 2.45011 12.7072 2.51721C12.8691 2.58431 13.0162 2.68266 13.14 2.80663C13.264 2.93046 13.3623 3.07751 13.4294 3.23937C13.4965 3.40124 13.531 3.57474 13.531 3.74996C13.531 3.92518 13.4965 4.09868 13.4294 4.26055C13.3623 4.42241 13.264 4.56946 13.14 4.69329L13.1 4.73329C12.9463 4.89041 12.8432 5.08997 12.804 5.30623C12.7648 5.5225 12.7912 5.74555 12.88 5.94663V5.99996C12.9645 6.19714 13.1048 6.3653 13.2837 6.48375C13.4625 6.60221 13.6721 6.66577 13.8867 6.66663H14C14.3536 6.66663 14.6928 6.8071 14.9428 7.05715C15.1928 7.3072 15.3333 7.64634 15.3333 7.99996C15.3333 8.35358 15.1928 8.69272 14.9428 8.94277C14.6928 9.19282 14.3536 9.33329 14 9.33329H13.94C13.7255 9.33415 13.5159 9.39771 13.337 9.51616C13.1582 9.63461 13.0178 9.80278 12.9333 9.99996V9.99996Z" stroke="current" stroke-linecap="round" stroke-linejoin="round"></path></svg></a></div></div></div></header><style data-emotion="css mtrntq">.css-mtrntq{padding:106px 0 1px;}@media (max-width: 990px){.css-mtrntq{padding:0 0 1px;}}</style><div id="filters-container" class="css-mtrntq"><style data-emotion="css 17xytvj">.css-17xytvj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;white-space:nowrap;padding:10px 17px;margin-left:133px;}@media (max-width: 990px){.css-17xytvj{max-width:630px;margin:auto;padding:13px 17px 9px;}}@media (max-width: 650px){.css-17xytvj{max-width:100%;overflow-x:scroll;}}</style><div class="filters css-17xytvj"><div class="css-0"><style data-emotion="css bjn8wh">.css-bjn8wh{position:relative;}</style><div class="dropdown css-bjn8wh"><style data-emotion="css igyja7">.css-igyja7{background:transparent;border:none;padding:0.5rem 0;margin:0 1.5rem 0 0;font-size:14px;color:#202945;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-igyja7 svg{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);-webkit-transition:-webkit-transform 0.2s ease;transition:transform 0.2s ease;margin-left:8px;}.css-igyja7:hover{cursor:pointer;}</style><button type="button" aria-label="type dropdown" aria-expanded="false" aria-haspopup="true" class="dropdown__button css-igyja7">Relevant<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 0.397478C5.11697 0.397478 5.23344 0.437478 5.32823 0.517978L9.24023 3.84298L8.58378 4.60248L5 1.55598L1.41622 4.60248L0.759764 3.84298L4.67177 0.517978C4.76656 0.437478 4.88303 0.397478 5 0.397478Z" fill="#202945"></path></svg></button><div><style data-emotion="css lepigc">.css-lepigc{border:1px solid #dee0f7;box-shadow:2px 4px 8px rgb(0 0 0 / 15%);border-radius:4px;position:absolute;background:#fafaff;padding:16px 12px 12px;padding-top:0;min-width:256px;top:35px;left:0;z-index:998;-webkit-transition:-webkit-transform,0.06s ease;transition:transform,0.06s ease;-webkit-transform:scale(0.8);-moz-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);-webkit-transition:opacity,visibility,0.06s ease;transition:opacity,visibility,0.06s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;}@media (max-width: 990px){.css-lepigc{position:fixed;top:50%;left:50%;z-index:1000;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);}}.css-lepigc .title{border-bottom:1px solid #dee0f7;margin:0 -16px 0.7rem;font-weight:600;padding:0 20px;}.css-lepigc h5{line-height:0;}</style><div class="dropdown__modal css-lepigc"><div class="title"><h5>Filter by relevance</h5></div><style data-emotion="css 18iax1g">.css-18iax1g{background:#fafaff;}@media (min-width: 990px){.css-18iax1g{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:16px;}.css-18iax1g>div{min-width:9rem;}}</style><div class="dropdown__modal-content css-18iax1g"><style data-emotion="css 8atqhb">.css-8atqhb{width:100%;}</style><div class="dropdown__modal--left css-8atqhb"><form action="/do/search" method="post" class="css-0"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="video"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><style data-emotion="css dci7sz">.css-dci7sz{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:4px;border-radius:4px;padding:0.5rem;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border:none;background:#ebecf7;color:#202C46;font-weight:700;font-size:14px;width:100%;text-align:left;}.css-dci7sz .checkmark{margin-right:1rem;right:0;height:9px;margin-top:3px;position:relative;left:10px;width:12px;background:url(/sp/cdn/images/sp-checkmark-light.svg) 50% 50% no-repeat;-webkit-background-size:cover;background-size:cover;}.css-dci7sz:hover{cursor:pointer;color:#202C46;background-color:#ffffff;}</style><button name="sort_by" type="submit" value="" title="Relevant" tabindex="0" class="css-dci7sz"><span>Relevant</span><span class="checkmark"></span></button><style data-emotion="css bjdl73">.css-bjdl73{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:4px;border-radius:4px;padding:0.5rem;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border:none;background:transparent;color:#202945;font-weight:400;font-size:14px;width:100%;text-align:left;}.css-bjdl73 .checkmark{margin-right:1rem;right:0;height:9px;margin-top:3px;position:relative;left:10px;width:12px;background:url(/sp/cdn/images/sp-checkmark-light.svg) 50% 50% no-repeat;-webkit-background-size:cover;background-size:cover;}.css-bjdl73:hover{cursor:pointer;color:#202C46;background-color:#ffffff;}</style><button name="sort_by" type="submit" value="popular" title="Popular" tabindex="0" class="css-bjdl73"><span>Popular</span></button><button name="sort_by" type="submit" value="recent" title="Recent" tabindex="0" class="css-bjdl73"><span>Recent</span></button></form></div><style data-emotion="css 149e1qv">.css-149e1qv{display:none;}@media (max-width: 990px){.css-149e1qv{padding:0.5rem;}}</style><div class="dropdown__modal--right css-149e1qv"></div></div></div></div></div></div><div class="css-0"><div class="dropdown css-bjn8wh"><button type="button" aria-label="duration dropdown" aria-expanded="false" aria-haspopup="true" class="dropdown__button css-igyja7">Any length<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 0.397478C5.11697 0.397478 5.23344 0.437478 5.32823 0.517978L9.24023 3.84298L8.58378 4.60248L5 1.55598L1.41622 4.60248L0.759764 3.84298L4.67177 0.517978C4.76656 0.437478 4.88303 0.397478 5 0.397478Z" fill="#202945"></path></svg></button><div><div class="dropdown__modal css-lepigc"><div class="title"><h5>Filter by video length</h5></div><div class="dropdown__modal-content css-18iax1g"><div class="dropdown__modal--left css-8atqhb"><form action="/do/search" method="post" class="css-0"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="video"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><button name="with_duration" type="submit" value="" title="Any length" tabindex="0" class="css-dci7sz"><span>Any length</span><span class="checkmark"></span></button><button name="with_duration" type="submit" value="short" title="Short" tabindex="0" class="css-bjdl73"><span>Short</span></button><button name="with_duration" type="submit" value="medium" title="Medium" tabindex="0" class="css-bjdl73"><span>Medium</span></button><button name="with_duration" type="submit" value="long" title="Long" tabindex="0" class="css-bjdl73"><span>Long</span></button></form></div><div class="dropdown__modal--right css-149e1qv"></div></div></div></div></div></div><style data-emotion="css 1id180z">.css-1id180z{font-size:14px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:7px 0;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 20px 0 0;}</style><div class="safe-search-filter css-1id180z"><style data-emotion="css 18vmbz5">.css-18vmbz5{position:relative;-webkit-flex:0;-ms-flex:0;flex:0;}.css-18vmbz5 .dropdown-display{padding:16px;padding-top:0;background:#fafaff;}</style><div class="css-18vmbz5 exorgsi6"><div class="dropdown-select css-3ssenp exorgsi4" role="button" aria-pressed="false" tabindex="0" aria-expanded="false" aria-haspopup="menu" aria-label="select {}"><style data-emotion="css rn9djj">.css-rn9djj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#202945;}.css-rn9djj .chevron{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);-webkit-transition:-webkit-transform 0.2s ease;transition:transform 0.2s ease;}.css-rn9djj .safe-search-text{margin:0 6px 0 0;font-weight:600;}</style><div class="css-rn9djj"><span class="safe-search-text">Safe Search<!-- -->:<!-- --> <!-- -->Off</span><svg class="chevron" width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 0.397478C5.11697 0.397478 5.23344 0.437478 5.32823 0.517978L9.24023 3.84298L8.58378 4.60248L5 1.55598L1.41622 4.60248L0.759764 3.84298L4.67177 0.517978C4.76656 0.437478 4.88303 0.397478 5 0.397478Z" fill="#202945"></path></svg></div></div><div class="dropdown-display css-1crfaxs exorgsi1"><style data-emotion="css kdvo10">.css-kdvo10{border-bottom:1px solid #dee0f7;margin:0 -16px 0.7rem;font-weight:600;padding:0 25px;}</style><div class="title css-kdvo10"><h5 class="css-8ob0xn">Filter explicit content</h5></div><style data-emotion="css 1el8myf">.css-1el8myf{border-radius:4px;padding:0.5rem;overflow:hidden;background:transparent;color:#2b3860;font-weight:400;font-size:14px;width:100%;text-align:left;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:transparent;color:#202945;}.css-1el8myf:hover{cursor:pointer;background-color:#ffffff;}.css-1el8myf:not(:last-of-type){margin-bottom:4px;}.css-1el8myf:hover{cursor:pointer;color:#202C46;background-color:#ffffff;}.css-1el8myf .checkmark{margin-right:1rem;right:0;height:9px;margin-top:3px;position:relative;left:10px;width:12px;background:url(/sp/cdn/images/sp-checkmark-light.svg) 50% 50% no-repeat;-webkit-background-size:cover;background-size:cover;}</style><div aria-pressed="false" aria-haspopup="menu" tabindex="0" role="button" class="css-1el8myf e1fdrujs0"><span>On</span></div><style data-emotion="css 1xkz65u">.css-1xkz65u{border-radius:4px;padding:0.5rem;overflow:hidden;background:#ebecf7;color:#2b3860;font-weight:600;font-size:14px;width:100%;text-align:left;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#ebecf7;color:#202C46;}.css-1xkz65u:hover{cursor:pointer;background-color:#ffffff;}.css-1xkz65u:not(:last-of-type){margin-bottom:4px;}.css-1xkz65u:hover{cursor:pointer;color:#202C46;background-color:#ffffff;}.css-1xkz65u .checkmark{margin-right:1rem;right:0;height:9px;margin-top:3px;position:relative;left:10px;width:12px;background:url(/sp/cdn/images/sp-checkmark-light.svg) 50% 50% no-repeat;-webkit-background-size:cover;background-size:cover;}</style><div selected="" aria-pressed="false" aria-haspopup="menu" tabindex="0" role="button" class="css-1xkz65u e1fdrujs0"><span>Off</span><span class="checkmark"></span></div></div></div></div><noscript><style>.filters {
            visibility: hidden;
          }</style></noscript></div></div><style data-emotion="css 1vwcaio">.css-1vwcaio{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:calc(100vh - 152px);}@media (max-width: 990px){.css-1vwcaio{padding:0 0 1px;}}</style><div class="css-1vwcaio e1w2sbvt0"><style data-emotion="css 19pkf4h">.css-19pkf4h{width:100%;max-width:630px;margin-left:133px;margin-right:66px;}@media (max-width: 990px){.css-19pkf4h{margin:0 auto;}}@media (max-width: 650px){.css-19pkf4h{padding:0 4px;}}</style><div id="main" class="css-19pkf4h"><a tabindex="0" id="mainline-skip-to"></a><style data-emotion="css zuognr">.css-zuognr{position:relative;padding:0 17px;display:grid;grid-template-columns:1fr;grid-gap:10px 4px;}@media (max-width: 990px){.css-zuognr{padding:0 4px;margin-left:auto;margin-right:auto;}}@media (max-width: 650px){.css-zuognr{grid-template-columns:49.4% 50%;}}</style><div class="vo-bg css-zuognr"><style data-emotion="css 1it4r5h">.css-1it4r5h{position:absolute;top:-35px;right:-145px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}@media (max-width: 990px){.css-1it4r5h{display:none;}}</style><div class="bg-disclaimer-container css-1it4r5h"><style data-emotion="css o3oie7">.css-o3oie7{white-space:nowrap;margin-right:7px;color:#7f869e;font-size:12px;}</style><span class="yt-results-provided-by css-o3oie7">Results provided by YouTube</span><div class="yt-disclaimer"><style data-emotion="css if1loy">.css-if1loy{cursor:pointer;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;width:16px;height:16px;background:url(/sp/cdn/images/info-icon.svg) 50% 50% no-repeat;-webkit-background-size:contain;background-size:contain;}</style><div class="info-icon css-if1loy" role="button" data-testid="shopping-information" aria-label="privacy information button" tabindex="0"></div><style data-emotion="css uu1a7t">.css-uu1a7t{display:none;border:1px solid #dee0f7;border-radius:4px;padding:10px;position:absolute;top:0;right:25px;width:233px;background:#ffffff;}@media (max-width: 650px){.css-uu1a7t{top:24px;right:50%;margin-right:-116px;z-index:1000;}}</style><div class="yt-disclaimer-content css-uu1a7t"><style data-emotion="css 1jp1jfw">.css-1jp1jfw{font-size:12px;line-height:18px;}.css-1jp1jfw a{color:#6573ff;-webkit-text-decoration:underline;text-decoration:underline;}</style><span class="text css-1jp1jfw">Viewing video results is privacy protected by Startpage. When you visit YouTube video links, you are subject to the <a href='https://www.youtube.com/t/terms' target='_blank'>YouTube Terms of Service</a>.</span></div></div></div><div class="result"><style data-emotion="css 9lhh11">.css-9lhh11{-webkit-text-decoration:none;text-decoration:none;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;}@media (max-width: 650px){.css-9lhh11{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:initial;-webkit-box-align:initial;-ms-flex-align:initial;align-items:initial;border:1px solid #dee0f7;border-radius:4px;}}</style><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="The Rise and Fall of Corpse Party; YouTube; 1:11:21; Fri, 26 Feb 2021"><style data-emotion="css 1r4v16h">.css-1r4v16h{position:relative;width:253px;margin:0 10px 0 0;}.css-1r4v16h:hover{cursor:pointer;}@media (max-width: 650px){.css-1r4v16h{width:100%;margin:0;}}</style><div class="thumbnail-section css-1r4v16h"><style data-emotion="css 1drnu37">.css-1drnu37{background-color:transparent;}</style><div tabindex="0" class="css-1drnu37"><style data-emotion="css 1tth2jd">.css-1tth2jd{object-fit:cover;opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;height:143px;width:254px;}@media (max-width: 650px){.css-1tth2jd{width:100%;height:130px;}}</style><img class="css-12homyx css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-12homyx {display:none;}</style><style data-emotion="css 77ro53">.css-77ro53{object-fit:cover;height:143px;width:254px;}@media (max-width: 650px){.css-77ro53{width:100%;height:130px;}}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FJZ2msQ-QvMY%2Fmqdefault.jpg&amp;sp=1721338787T6f3df48ff54c024a5a8aa98fa454b35fb9c1b77cc5c5e5e0bc62a6df9d8274e6" alt="" class="css-77ro53"/></noscript></div><style data-emotion="css a5kg23">.css-a5kg23{position:absolute;bottom:12px;right:5px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}</style><div class="video-duration css-a5kg23"><style data-emotion="css zjmlpj">.css-zjmlpj{background:#202c46e0;padding:0 7px;border-radius:2px;font-weight:500;margin-right:3px;}</style><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><style data-emotion="css 6egl9d">.css-6egl9d{background:#202c46e0;color:#ffffff;padding:2px 4px;border-radius:2px;font-size:13px;font-weight:500;line-height:15.5px;}</style><span class="duration css-6egl9d">1:11:21</span></div></div><style data-emotion="css 3pw2bg">.css-3pw2bg{padding:4px 8px 8px;}@media (max-width: 650px){.css-3pw2bg{height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}}</style><div class="details css-3pw2bg"><style data-emotion="css olpt7z">.css-olpt7z{-webkit-text-decoration:none;text-decoration:none;color:#2E39B3;}.css-olpt7z:hover{-webkit-text-decoration:underline;text-decoration:underline;}.css-olpt7z:visited{color:#813a94;}.css-olpt7z:visited .title{color:#813a94!important;}</style><a href="https://www.youtube.com/watch?v=JZ2msQ-QvMY" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><style data-emotion="css 10j6eje">.css-10j6eje{font-size:16px;font-weight:400;line-height:20px;margin:0 0 6px;color:#2E39B3;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;}@media (max-width: 650px){.css-10j6eje{font-size:15px;}}</style><h3 class="title css-10j6eje" aria-hidden="true">The Rise and Fall of Corpse Party</h3></a><style data-emotion="css x6620o">.css-x6620o{color:#5B627A;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:5px;font-size:13px;margin:0 0 6px;}@media (max-width: 650px){.css-x6620o{font-size:11px;color:#202945;}}</style><div class="stats css-x6620o"><span class="views">3.6M<!-- --> <!-- -->views</span>·<span class="date">3 years ago</span></div><style data-emotion="css 1j2xofp">.css-1j2xofp{font-size:13px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#5B627A;margin:0 0 6px;}.css-1j2xofp svg{-webkit-transform:scale(0.5);-moz-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);}@media (max-width: 650px){.css-1j2xofp{font-size:11px;}}</style><div class="channel-details css-1j2xofp"><style data-emotion="css xcis6b">.css-xcis6b{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;min-width:45px;}</style><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><style data-emotion="css 5c2ei1">.css-5c2ei1{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;}</style><span class="css-5c2ei1">Thafnine</span></div><style data-emotion="css 1o0cm23">.css-1o0cm23{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-size:13px;color:#202945;line-height:20px;height:42px;max-width:347px;}.css-1o0cm23 p{margin:0 0 6px;}@media (max-width: 650px){.css-1o0cm23{display:none;}}</style><div class="description css-1o0cm23" aria-label="It&#x27;s a ghoulish celebration, and everyone is invited whether they like it or not.

THAF PLUSH IS OUT NOW: https://www.makeship.com/products/big-thaf-jumbo

PATREON: http://patreon.com/thafnine
MERCH: https://thaf.store/
DISCORD: https://discord.gg/thaf
TWITTER: http://twitter.com/thafnine
TWITCH: http://twitch.tv/thafnine
SECOND CHANNEL: http://youtube.com/T9Plays

After 4 years in development,..."><p aria-hidden="true">It&#x27;s a ghoulish celebration, and everyone is invited whether they like it or not.

THAF PLUSH IS OUT NOW: https://www.makeship.com/products/big-thaf-jumbo

PATREON: http://patreon.com/thafnine
MERCH: https://thaf.store/
DISCORD: https://discord.gg/thaf
TWITTER: http://twitter.com/thafnine
TWITCH: http://twitch.tv/thafnine
SECOND CHANNEL: http://youtube.com/T9Plays

After 4 years in development, the project is finally here. In this video I talk about the entire Corpse Party franchise from beginning to end, including the original PC-98 game all the way to present day, and talk about the spin-offs, sequels and many many adaptations to the original Corpse Party game. Not to be confused with Corpse Husband. This video has been one of the hardest videos I ever will make as this took the entirety of 5 months of non-stop work since the last video so hopefully the wait between this one and the RPG Maker video was worth it! Obviously from the title of the video you&#x27;ve been warned, so go into the game franchise with some caution! Thank you so much for all the support on all of my channels since my last video and hopefully the algorithm is nice to me on this one. Thanks for 250,000 subscribers and I hope to see you in the next video! In the meantime, I&#x27;m fairly active on my second channel and on Twitch so you can also see me there. :)


Sources
Corpse Party PSP gameplay by SvalPlay:
https://www.youtube.com/watch?v=xpG2VhgTYpg

Corpse Party 3DS gameplay by me and igans:
https://youtu.be/-W2MB8OKbPI

Heavenly Host GMOD map by VinylVortex:
https://www.reddit.com/r/HeavenlyHost/comments/kwytzm/ive_been_working_on_and_off_on_a_gmod_map_of/

Corpse Party franchise article by Jason Withrow:
http://www.hardcoregaming101.net/</p></div><style data-emotion="css wp977">.css-wp977{width:100%;display:block;margin:4px 0 0;}@media (max-width: 650px){.css-wp977{margin:8px 0 0;}}.css-wp977 .anonymous-view-link-text{white-space:nowrap;}@media (max-width: 650px){.css-wp977 .anonymous-view-link-text{font-size:12px;}}</style><div class="anonymous-view-link css-wp977"><style data-emotion="css 1056owm">.css-1056owm{-webkit-text-decoration:none;text-decoration:none;display:inline-block;color:#2E39B3;font-weight:400;height:100%;}</style><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242554964796b79456e6b554d6849474a6978764d79306c4a6a746a4d54732b64443576636e4a34496d4e79495430384d5477334a334d6a635778316332732b59326f774a6e4e31636a556a646d5a3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=e5dd904fb4911f9dedf45205c79faca3" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: The Rise and Fall of Corpse Party" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><style data-emotion="css 1qopqw0">.css-1qopqw0{font-size:14px;line-height:16px;color:#2E39B3;margin-left:6px;}.css-1qopqw0:hover{-webkit-text-decoration:underline;text-decoration:underline;}</style><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="𝚌𝚘𝚛𝚙𝚜𝚎 𝚙𝚊𝚛𝚝𝚢 𝚎𝚙_(1-4) 𝚊𝚕𝚕 𝚎𝚙𝚒𝚜𝚘𝚍𝚎; YouTube; 1:39:24; Wed, 10 Mar 2021"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-gu8x5x css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-gu8x5x {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FOpShh3dJWPw%2Fmqdefault.jpg&amp;sp=1721338787T91160698eeb415551ff02838d438cf5d1de53d57d73cc58bb5f35a21d409ec98" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:39:24</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=OpShh3dJWPw" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">𝚌𝚘𝚛𝚙𝚜𝚎 𝚙𝚊𝚛𝚝𝚢 𝚎𝚙_(1-4) 𝚊𝚕𝚕 𝚎𝚙𝚒𝚜𝚘𝚍𝚎</h3></a><div class="stats css-x6620o"><span class="views">118.8K<!-- --> <!-- -->views</span>·<span class="date">3 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Kazuhan_Sam</span></div><div class="description css-1o0cm23" aria-label=""><p aria-hidden="true"></p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242416946697770634441504577386f4a6978764d79306c4a6a746a4d54732b644435764953496e64324d6d645774715954706d4a33596a634446334a57646f59577777644864336332306b49446c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=aadd23f1c4f61489f0af6e08295ce263" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: 𝚌𝚘𝚛𝚙𝚜𝚎 𝚙𝚊𝚛𝚝𝚢 𝚎𝚙_(1-4) 𝚊𝚕𝚕 𝚎𝚙𝚒𝚜𝚘𝚍𝚎" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="BEST PARTY! - Corpse Party - Part 1 (Walkthrough / Playthrough / Lets Play); YouTube; 18:05; Sat, 24 May 2014"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-1140w1s css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1140w1s {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FUbnmlfxnNAs%2Fmqdefault.jpg&amp;sp=1721338787T10f6a20c962c667ff9219fe33dbf578b2288a2a85a20b828c9450eaef3965f11" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">18:05</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=UbnmlfxnNAs" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">BEST PARTY! - Corpse Party - Part 1 (Walkthrough / Playthrough / Lets Play)</h3></a><div class="stats css-x6620o"><span class="views">9.2M<!-- --> <!-- -->views</span>·<span class="date">10 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">PewDiePie</span></div><div class="description css-1o0cm23" aria-label="Corpse Party, this is a game I&#x27;ve been wanting to play for a long time! 
Next Part ► https://www.youtube.com/watch?v=7HH4NpPHZSw&amp;list=PLYH8WvNV1YEkd2-lzFsm_qdX-ipnl8oWB
More in the Playlist ► https://www.youtube.com/playlist?list=PLYH8WvNV1YEkd2-lzFsm_qdX-ipnl8oWB
Click Here To Subscribe! ► http://bit.ly/JoinBroArmy

This game..."><p aria-hidden="true">Corpse Party, this is a game I&#x27;ve been wanting to play for a long time! 
Next Part ► https://www.youtube.com/watch?v=7HH4NpPHZSw&amp;list=PLYH8WvNV1YEkd2-lzFsm_qdX-ipnl8oWB
More in the Playlist ► https://www.youtube.com/playlist?list=PLYH8WvNV1YEkd2-lzFsm_qdX-ipnl8oWB
Click Here To Subscribe! ► http://bit.ly/JoinBroArmy

This game has a large fandom already and I&#x27;d hate to see it collide with the bros. Would love to if you would post fanart through #pewDart (don&#x27;t worry I&#x27;ll find it). And not though #Corpse Party. Thanks! 

Download My App!
Apple ► http://bit.ly/AppleBro
Android ► http://bit.ly/AndroidBro

Check Out My Shop! ► http://bit.ly/ShopBro

Get Awesome Games! ► http://www.g2a.com/PewDiePie
Get My Headphones! ► http://rzr.to/QhxzU

Awesome PewDiePie merch
► Newest collection! http://bit.ly/TshirtsPewdiepie
► http://pewdiepie.spreadshirt.com/ (EU+US)

Facebook ► http://facebook.com/pewdiepie
Twitter ► https://twitter.com/pewdiepie
-------------------------------------------
Please:
Respect each other in the comments. 

Thanks for all your support bros, rating the video and leaving a comment
is always appreciated! 
...........
...................__
............./´¯/&#x27;...&#x27;/´¯¯`·¸
........../&#x27;/.../..../......./¨¯\
........(&#x27;(...´...´.... ¯~/&#x27;...&#x27;)
.........\.................&#x27;...../
..........&#x27;&#x27;...\.......... _.·´
............\..............(
BROFIST ...........</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352416f774b796b744a537772436834734a6978764d79306c4a6a746a4d54732b644435764a695a796354496e4a32316f5a6d6c676353556c4a6a567a634763394d47673064484e324a57427a4954313564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=e11a4433fb39d1f5436666fd9d245b7a" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: BEST PARTY! - Corpse Party - Part 1 (Walkthrough / Playthrough / Lets Play)" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Mayu&#x27;s tragic death - Corpse party; YouTube; 1:54; Sun, 22 Feb 2015"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-f4ou3u css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-f4ou3u {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FFnKoMeBU63A%2Fmqdefault.jpg&amp;sp=1721338787T6423e7549339bec12e0b5d3e71e2e53f65dd07a8548ebcc90a8536a1cb587bf2" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:54</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=FnKoMeBU63A" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Mayu&#039;s tragic death - Corpse party</h3></a><div class="stats css-x6620o"><span class="views">71K<!-- --> <!-- -->views</span>·<span class="date">9 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Silver</span></div><div class="description css-1o0cm23" aria-label="truly, a death you can feel deep inside you."><p aria-hidden="true">truly, a death you can feel deep inside you.</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352426b384469734d4a685951636d77654a6978764d79306c4a6a746a4d54732b644435764a794630495442304a5774765a6d706e6353467a496d56794a6d74755a6d347849795569656d4a3863446c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=73c36d12b34a5bd02772fc47a35b5238" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Mayu&#x27;s tragic death - Corpse party" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="corpse party deaths; YouTube; 9:52; Sat, 08 Oct 2016"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-shjlzf css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-shjlzf {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F1DH-QCBQld0%2Fmqdefault.jpg&amp;sp=1721338787T62783f34e1e42bc51570a8b106a0bc40eed4954adfc4042727b92711e6f0bb67" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">9:52</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=1DH-QCBQld0" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">corpse party deaths</h3></a><div class="stats css-x6620o"><span class="views">645.1K<!-- --> <!-- -->views</span>·<span class="date">7 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">The Random Taco</span></div><div class="description css-1o0cm23" aria-label="Enjoy Guys
_____________________________________________________________
Anime: Corpse Party
________________________________________________
I don&#x27;t own this anime or anything of the music.All rights to the normal owners/owner.

~CoconutEmerald~"><p aria-hidden="true">Enjoy Guys
_____________________________________________________________
Anime: Corpse Party
________________________________________________
I don&#x27;t own this anime or anything of the music.All rights to the normal owners/owner.

~CoconutEmerald~</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735247345744576b51414259554b4474764a6978764d79306c4a6a746a4d54732b644435766458556c64474278636d396e4e573077644346776354467a4a7a78704f47786d6458596e6532423049576c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=b2071c94785c8343df6b5af1df0b17c5" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: corpse party deaths" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party Classic Part 1 | WHAT COULD GO WRONG!?; YouTube; 28:10; Wed, 04 Jun 2014"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-1avjdzw css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1avjdzw {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FxE0QmbP-bTg%2Fmqdefault.jpg&amp;sp=1721338787Td3f6a67fbb44d743b212395e87945b90fdb9779a465e288585e8065fa9904a45" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">28:10</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=xE0QmbP-bTg" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party Classic Part 1 | WHAT COULD GO WRONG!?</h3></a><div class="stats css-x6620o"><span class="views">1.8M<!-- --> <!-- -->views</span>·<span class="date">10 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Markiplier</span></div><div class="description css-1o0cm23" aria-label="The story begins! This is the very first Corpse Party ever made translated for English! It&#x27;s a fantastic adventure and once I get back from New York I plan to..."><p aria-hidden="true">The story begins! This is the very first Corpse Party ever made translated for English! It&#x27;s a fantastic adventure and once I get back from New York I plan to play the newest Corpse Party games for the PSP!
Subscribe Today ► http://bit.ly/Markiplier

MORE RPG HORROR ▼

Mad Father ► https://www.youtube.com/watch?v=eRwkMg0wFx4&amp;list=PL3tRBEVW0hiCi9oxiHY6-0IzkLFsV-anB&amp;index=2

The Crooked Man ► https://www.youtube.com/watch?v=2LITw6gRNYw&amp;list=PL3tRBEVW0hiC3XqdH8dZysCiFXbMrC9fZ&amp;index=2

Ib ► https://www.youtube.com/watch?v=cV-1qT8f940&amp;index=2&amp;list=PL3tRBEVW0hiDBDWIcyRTm8SUQ97ke9g3b

Paranoiac ► https://www.youtube.com/watch?v=6iLVoiATJg4&amp;index=2&amp;list=PL3tRBEVW0hiBvoXEpet4zJYc_a34X7c8k

The Witch&#x27;s House ► https://www.youtube.com/watch?v=_hIZNaBH0lw&amp;list=PL3tRBEVW0hiBSL5AIcxjbctIsKF_Az0ok&amp;index=2

Follow me on Twitter ► https://twitter.com/markiplier
Like me on Facebook ► https://www.facebook.com/markiply

T-Shirts ► http://www.rodeoarcade.com/collections/markiplier-game
Livestreams ► http://www.twitch.tv/markiplier</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352436358645255734951526f4a6773344a6978764d79306c4a6a746a4d54732b644435764a43496a657a647a6657303959576872636e5234646d496d664770724e7a737a4a69416c635746776444783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=0f5bbffb2b7875c245d2befbeed213d9" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party Classic Part 1 | WHAT COULD GO WRONG!?" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party: Opening Cinematic; YouTube; 1:31; Tue, 06 Dec 2011"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-9fjvok css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-9fjvok {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVTGJz0fP2og%2Fmqdefault.jpg&amp;sp=1721338787T061637aea8c7b608257022a4b32e9e5b818e66c7bbc59f52df6a6a92dced8a6f" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:31</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=VTGJz0fP2og" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party: Opening Cinematic</h3></a><div class="stats css-x6620o"><span class="views">357K<!-- --> <!-- -->views</span>·<span class="date">12 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">IGN</span></div><div class="description css-1o0cm23" aria-label="Japanese horror games can be rather intense, and the latest &quot;Corpse Party&quot; for PSP is no different. Watch the intro movie to the game and prepare to die in horrible..."><p aria-hidden="true">Japanese horror games can be rather intense, and the latest &quot;Corpse Party&quot; for PSP is no different. Watch the intro movie to the game and prepare to die in horrible ways.
Get more Corpse Party Info at IGN:
http://psp.ign.com/objects/109/109535.html</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352416b4741673437637a4956646a41344a6978764d79306c4a6a746a4d54732b644435764a79567963575677646a77374d57387a49794677637a6439647a30384d44746b66584a354a6d5232496d353564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=2f81d11818184d8bd5d4d1b2d018b1a4" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party: Opening Cinematic" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="corpse party yuka death; YouTube; 1:28; Mon, 01 Jun 2015"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-176n266 css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-176n266 {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fx8Lf3qjpbyI%2Fmqdefault.jpg&amp;sp=1721338787T07399c940fcc423328e5ba388a5ded7afddf8e304c595a7319d923fcab4cd76a" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:28</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=x8Lf3qjpbyI" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">corpse party yuka death</h3></a><div class="stats css-x6620o"><span class="views">19.3K<!-- --> <!-- -->views</span>·<span class="date">9 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Loonatic-39</span></div><div class="description css-1o0cm23" aria-label="why"><p aria-hidden="true">why</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735243647143534a794d6a34314a6959574a6978764d79306c4a6a746a4d54732b64443576493364326354416e495767364d7a7733646e5a35656d647a64326b384e6a30336333787a496d45686357703564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=89cd07ad075dcb24a380e8c3ce85e8b6" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: corpse party yuka death" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Coezy Horror Hours  📦 [Corpse Party: Blood Drive] 🐰 [#asmr  Gaming]; YouTube; 3:29:34; Thu, 18 Jul 2024"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-lfzhdg css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-lfzhdg {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FEsmp1qdgi5s%2Fmqdefault.jpg&amp;sp=1721338787T0e82e1e8a00ebbef071efad11859c8e629af4c0d73bc0bdd68557a12353b85c8" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">3:29:34</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=Esmp1qdgi5s" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Coezy Horror Hours  📦 [Corpse Party: Blood Drive] 🐰 [#asmr  Gaming]</h3></a><div class="stats css-x6620o"><span class="views">103<!-- --> <!-- -->views</span>·<span class="date">21 hours ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Coello Amai Ch. [Love-Chu!]</span></div><div class="description css-1o0cm23" aria-label="#asmr #softspoken  #vtuber 
Thank you for coming to my stream!  Please mind the rules.  Most importantly, relax with me and have fun 📦🐰

📦Stream Rules 🐰
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ
📦┊ Do..."><p aria-hidden="true">#asmr #softspoken  #vtuber 
Thank you for coming to my stream!  Please mind the rules.  Most importantly, relax with me and have fun 📦🐰

📦Stream Rules 🐰
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ
📦┊ Do not use slurs or any hateful language in my chat. 
🐰┊Ignore and report trolls if you notice any. Don&#x27;t argue with them.
📦┊ No heavy topics (politics, religion etc.) keep the chat light and fun.
🐰┊ Please do not make sexual comments towards me or other viewers.
📦┊Don&#x27;t request ear licking or other suggestive sounds during ASMR streams.  
🐰┊ No trauma dumping or using the chat/donations to vent. 
📦┊  Stream is 16+.
🐰┊ Be kind to mods and everyone in chat.
📦┊Relax and have fun ❤️
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ

 📦Support the Stream🐰
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ
📦┊Donations: https://streamelements.com/sweetcoello/tip
🐰┊Kofi: https://kofi.com/coello
📦┊Pateron: https://www.patreon.com/coello
🐰┊Throne: https://throne.com/sweetcoello
📦┊Use Code &quot;Coello&quot; for 10% off Rouge Energy:  https://rogueenergy.com/discount/coello?ref=cheozcjv
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ

📦Stack Up🐰
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ
We are raising money for Stack Up, a non-profit 501(c)3 charity that helps Veterans and service members promote positive mental health and suicide prevention through the power of gaming. To donate, click here: https://stackup.donordrive.com/participant/8776
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ

📦Socials🐰
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ
📦┊Twitter: https://twitter.com/sweetcoello
🐰┊Twitch: https://www.twitch.tv/sweetcoello
📦┊Tiktok: https://www.tiktok.com/@sweetcoello
🐰┊Discord Server: https://discord.gg/6RyrDgGwYp
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ

📦Credits🐰
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ
📦┊ Op/ED: Nukkunuku - Nyalpaca BGM Workshop
🐰┊Model: Deamao studio
📦┊S/BRB/ED Screens: https://x.com/MalloMarururu
ට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352426f684b4452774d6a41694c576f734a6978764d79306c4a6a746a4d54732b6444357664694a7a496d4e32635763394f546f77646e416e4a545677646d38364d32746763484a77636a49684a32703564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=ce6dcde63553c932dbdff83489ccc3ca" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Coezy Horror Hours  📦 [Corpse Party: Blood Drive] 🐰 [#asmr  Gaming]" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="How to beat the ANGRY GHOSTS in &quot;Corpse Party&quot;; YouTube; 31:55; Sat, 16 Apr 2022"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-aq97gt css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-aq97gt {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FPbds3sp4JUM%2Fmqdefault.jpg&amp;sp=1721338787T41002664f236d1c9af06243b3d93879ee1a5f0a8ae96bfa49059cebd78cb178c" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">31:55</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=Pbds3sp4JUM" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">How to beat the ANGRY GHOSTS in &quot;Corpse Party&quot;</h3></a><div class="stats css-x6620o"><span class="views">761.7K<!-- --> <!-- -->views</span>·<span class="date">2 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">How To Beat Anime</span></div><div class="description css-1o0cm23" aria-label="If you were suddenly teleported into a world where dead spirits walk the earth what would you do? These crazy ghosts are trying to kill you and there&#x27;s NO WAY..."><p aria-hidden="true">If you were suddenly teleported into a world where dead spirits walk the earth what would you do? These crazy ghosts are trying to kill you and there&#x27;s NO WAY out of this nightmare. I&#x27;m going to break down the mistakes made, what you should do, and how to beat the ANGRY GHOSTS in Corpse Party. 

Narrated by Griffin 
Directed by Albert Pranoto and Dom Jeswal
Written by Dom Jeswal
Edited by Albert Pranoto 
                                  -------What other things the team is up to-----

Wanna hire Griffin (the voice guy)?  Check him out here :https://www.upwork.com/freelancers/~01e15ca46beb05764f?viewMode=1 

Check out Griffin&#x27;s YouTube channel!
✨️https://youtube.com/@GriffVO✨️

When Dom (the WRITER) and Albert (the EDITOR ) aren&#x27;t here, we GAME! Come play and talk with us ❤️: https://www.youtube.com/c/CantCamp
-Instagram-
Offical How to Beat Anime IG: https://www.instagram.com/howtobeatanime/
Albert: https://www.instagram.com/albiepanda/
Dom: https://www.instagram.com/domjeswal/

Are you an anime couple that&#x27;s getting married soon? Want to preserve your wedding bouquet?  Then check out: https://www.etsy.com/shop/MayanaRoseCreativeCo</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352413877495464794d43527844676f534a6978764d79306c4a6a746a4d54732b644435764a43596e636d5630636a356e5a6d6c6d4958563464574d6e66446f395a6d786949334e314a6d42394a57783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=62bcd7236fbc651c62057d4de7245276" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: How to beat the ANGRY GHOSTS in &quot;Corpse Party&quot;" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party Game Story (PC, True Ending); YouTube; 30:21; Thu, 22 Apr 2021"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-7zdco0 css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-7zdco0 {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F6qZuQDrJmhE%2Fmqdefault.jpg&amp;sp=1721338787T3ac7f5405a1490cf2f9a709b2d25d39060a5b49698df97f9c58e0102cb1c17c2" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">30:21</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=6qZuQDrJmhE" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party Game Story (PC, True Ending)</h3></a><div class="stats css-x6620o"><span class="views">100.8K<!-- --> <!-- -->views</span>·<span class="date">3 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Ji the Storyteller</span></div><div class="description css-1o0cm23" aria-label="Corpse Party PC Game Story Summary, I take the most important bits of the story and narrate/explain to the best of my ability. 
It&#x27;s True Ending with all 5 chapters...."><p aria-hidden="true">Corpse Party PC Game Story Summary, I take the most important bits of the story and narrate/explain to the best of my ability. 
It&#x27;s True Ending with all 5 chapters.  20~ hours of gameplay condensed into 30 minute story.

0:00 - Intro
0:49 - Prologue
2:20 - Chapter 1 
6:44 - Chapter 2
10:37 - Chapter 3
14:14 - Chapter 4
20:10 - Chapter 5

~🌸 Ji the Storyteller


Corpse Party Story, Corpse Party Game, Corpse Party: Blood Covered, Corpse Party PC version

Music:  Corpse Party OST, Naruto, Slime reincarnate, Monster Hunter
Opening Lo-Fi Tune by Moon Natives
https://open.spotify.com/artist/1PNBXRWya4FGmEFDak6KJA?si=oGecIaH5QuCPvbmVqjP7FQ
Fatmorning Blob by Nethar</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352476b6a487a4551427959504b5463614a6978764d79306c4a6a746a4d54732b644435766448416a636a496e644731735a4739684a6964796344596b637a34375932737766435633496a4231646d6c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=93089a6f665e5fa9f1db16566b263a8d" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party Game Story (PC, True Ending)" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="... Why, yall? Seriously. | CORPSE PARTY - CHAPTER 1; YouTube; 1:55:15; Sat, 09 Mar 2019"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-vbbhp3 css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-vbbhp3 {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FM72KDSLvO6I%2Fmqdefault.jpg&amp;sp=1721338787T6aea650e83a8233f5233427306b5a89660b83c9b78a3a8fac22f47999c314302" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:55:15</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=M72KDSLvO6I" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">... Why, yall? Seriously. | CORPSE PARTY - CHAPTER 1</h3></a><div class="stats css-x6620o"><span class="views">1.3M<!-- --> <!-- -->views</span>·<span class="date">5 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">berleezy</span></div><div class="description css-1o0cm23" aria-label="#EEZYGANG MERCH!! - https://www.eezygang.com

Follow me on Instagram ► https://www.instagram.com/berleezy
Follow me on Twitter ► https://twitter.com/berleezy
Like me on Facebook ► https://www.facebook.com/berleezy

BECOME A MEMBER and SUPPORT the #EEZYGANG today!! (Users of iOS and..."><p aria-hidden="true">#EEZYGANG MERCH!! - https://www.eezygang.com

Follow me on Instagram ► https://www.instagram.com/berleezy
Follow me on Twitter ► https://twitter.com/berleezy
Like me on Facebook ► https://www.facebook.com/berleezy

BECOME A MEMBER and SUPPORT the #EEZYGANG today!! (Users of iOS and other unsupported devices can use this link to become members)
https://www.youtube.com/channel/UCp1VWSTrt2cUBInkn4dUmDA/join

If you’re reading the description, this is Berleezy&#x27;s official gaming channel! Subscribe for gaming, horror let’s play videos and fire ass content every week!</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352424a6c647738464542677a43326b574a6978764d79306c4a6a746a4d54732b64443576635859674954636a643267385a6d7468643377676344596e496a34395a44356d64585a304a7a647a4a6d6c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=bc8e8c2a9049f8954b0552346c069dec" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: ... Why, yall? Seriously. | CORPSE PARTY - CHAPTER 1" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party episode 1 [eng sub]; YouTube; 29:18; Tue, 11 Apr 2017"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-1ya3ue css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1ya3ue {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FGQQizcbP-MU%2Fmqdefault.jpg&amp;sp=1721338787T4501d13947eede4182832cd319b06e459b2b8e6c87b597335dc44314f35b804d" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">29:18</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=GQQizcbP-MU" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party episode 1 [eng sub]</h3></a><div class="stats css-x6620o"><span class="views">176.7K<!-- --> <!-- -->views</span>·<span class="date">7 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Seiko Shinohara</span></div><div class="description css-1o0cm23" aria-label="I hope you enjoy it~"><p aria-hidden="true">I hope you enjoy it~</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242674446433037494459566152494b4a6978764d79306c4a6a746a4d54732b6444357663434a79634751684a3263375a6a303064485a794a575a78496d77364d6d746c6379556b646a4a79636a783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=aeb9970c1f98ff049ea959cbd97b0ce2" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party episode 1 [eng sub]" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="CORPSE PARTY! - Chapter One [1] | Here Comes Trouble; YouTube; 19:24; Mon, 23 Jun 2014"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-1dztxke css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1dztxke {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FKaxHOpkwuRE%2Fmqdefault.jpg&amp;sp=1721338787T0837597535ffac051a38dda6ec78c6b7d163d4f666cea1642603b180e2b07d36" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">19:24</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=KaxHOpkwuRE" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">CORPSE PARTY! - Chapter One [1] | Here Comes Trouble</h3></a><div class="stats css-x6620o"><span class="views">1M<!-- --> <!-- -->views</span>·<span class="date">10 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">CoryxKenshin</span></div><div class="description css-1o0cm23" aria-label="Guys... this is going to be one wicked adventure.

MORE RPG Horrors ► https://www.youtube.com/user/CoryxKenshin/playlists?sort=dd&amp;shelf_id=13&amp;view=50

SUB A BROTHA ► https://www.youtube.com/user/Coryxkenshin?sub_confirmation=1
Bro, do u even TWITTER ► https://twitter.com/coryxkenshin
That FACEBOOK ► https://www.facebook.com/CoryxKenshin

Jesus said to love one..."><p aria-hidden="true">Guys... this is going to be one wicked adventure.

MORE RPG Horrors ► https://www.youtube.com/user/CoryxKenshin/playlists?sort=dd&amp;shelf_id=13&amp;view=50

SUB A BROTHA ► https://www.youtube.com/user/Coryxkenshin?sub_confirmation=1
Bro, do u even TWITTER ► https://twitter.com/coryxkenshin
That FACEBOOK ► https://www.facebook.com/CoryxKenshin

Jesus said to love one another and that we should be servants to each other, so I would ask that you all do that in the comment section. That means more to me than anything. Thank you.

~CK</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242517a5051774f4d7a38794d5130614a6978764d79306c4a6a746a4d54732b6444357664535a796432456e49476b395a6a70724a694234645441684a5474754e3263326653456c653242384a7a783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=9e2cb4f556f4baadf1dfde19b4d2a553" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: CORPSE PARTY! - Chapter One [1] | Here Comes Trouble" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party Is A Masterpiece; YouTube; 1:08:24; Thu, 30 Mar 2023"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-18rlwc0 css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-18rlwc0 {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FFTK-_wHnyq0%2Fmqdefault.jpg&amp;sp=1721338787T1fc9fcaaf5460a904c1ebf10ddab2fe8ebbb38367cb1f36d47881665a79a8372" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:08:24</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=FTK-_wHnyq0" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party Is A Masterpiece</h3></a><div class="stats css-x6620o"><span class="views">17.6K<!-- --> <!-- -->views</span>·<span class="date">1 year ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Evelyn Red</span></div><div class="description css-1o0cm23" aria-label="Corpse Party is a horror game with exploration and puzzle elements made by Makoto Kedwin and Team GrisGris. It was initially released as CORPSE-PARTY for the PC-98, rebooted as Corpse..."><p aria-hidden="true">Corpse Party is a horror game with exploration and puzzle elements made by Makoto Kedwin and Team GrisGris. It was initially released as CORPSE-PARTY for the PC-98, rebooted as Corpse Party: NewChapter, remade as Corpse Party: Blood Covered, remastered as Corpse Party: Blood Covered: ... Repeated Fear, rebuilt for the 3DS, and finally ported for eighth generation consoles and PC in 2021. In this analysis, I explain why it&#x27;s actually a pretty good game, and why its design and legacy are so important.

00:00 Opening - Release
11:01 Chapter 1 - Encounter
21:00 Chapter 2 - Demise
32:05 Chapter 3 - Breakdown
47:58 Chapter 4 - Charm
57:03 Chapter 5 - Shiawase no Sachiko Ever After
1:07:38 Ending - Thank You, Farewell</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352426b47446d6b654e427772505335764a6978764d79306c4a6a746a4d54732b6444357649794a784a6d4a33494478734d57316963435a3465324e79646d786e4e6d3169665356324a6a416e6357743564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=4ccd6d320def6d9ce16ba64a3d6c4962" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party Is A Masterpiece" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="The Scariest Moment in Corpse Party; YouTube; 0:51; Tue, 01 Nov 2022"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-85d24j css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-85d24j {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9xbSD3mGgpY%2Fmqdefault.jpg&amp;sp=1721338787T81c3ffb7515d4b60844d7463efc79a463f82e130d3f25e16f9b2776ef82fe2a5" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">0:51</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=9xbSD3mGgpY" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">The Scariest Moment in Corpse Party</h3></a><div class="stats css-x6620o"><span class="views">23.3K<!-- --> <!-- -->views</span>·<span class="date">1 year ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Michael_SK</span></div><div class="description css-1o0cm23" aria-label="I&#x27;m apparently afraid of dial tones now.

FULL VIDEO: https://youtu.be/Dk7uNKWdJCU
PLAYLIST: https://www.youtube.com/playlist?list=PLBPNfI73fc3EA8qWFgZ8CEiQdYOED3iQa

#shorts #corpseparty2021 #ghostgaming"><p aria-hidden="true">I&#x27;m apparently afraid of dial tones now.

FULL VIDEO: https://youtu.be/Dk7uNKWdJCU
PLAYLIST: https://www.youtube.com/playlist?list=PLBPNfI73fc3EA8qWFgZ8CEiQdYOED3iQa

#shorts #corpseparty2021 #ghostgaming</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e7073524759714a78634663446b43497938474a6978764d79306c4a6a746a4d54732b64443576497946786447306d49576f354e476c684a43596a4a325230494730354d4734326469556e4957527a66576c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=019b967b6f6fe6a96e191f41fe968085" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: The Scariest Moment in Corpse Party" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Full movie | Corpse Party | Horror; YouTube; 1:34:11; Sun, 15 Oct 2023"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-n6ya3z css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-n6ya3z {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FXTru0R8yZJI%2Fmqdefault.jpg&amp;sp=1721338787T27528d75dff7c3f9e4ee42db64f4e4989981613ce36109628f62a68e951bf6fe" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">1:34:11</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=XTru0R8yZJI" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Full movie | Corpse Party | Horror</h3></a><div class="stats css-x6620o"><span class="views">62.2K<!-- --> <!-- -->views</span>·<span class="date">9 months ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">YABAI JAPAN MOVIES</span></div><div class="description css-1o0cm23" aria-label="▼Synopsis
The legendary horror adventure game, popular for over 15 years, is finally made into a live-action movie!

The film stars Rina Ikoma, a national idol who starred in her first movie..."><p aria-hidden="true">▼Synopsis
The legendary horror adventure game, popular for over 15 years, is finally made into a live-action movie!

The film stars Rina Ikoma, a national idol who starred in her first movie role in the previous &quot;&quot;Corpse Party&quot;&quot; and played the center of Nogizaka46 from their 1st single to their 5th single. The supporting cast includes Kimi Maeda, an official popteen model who has appeared in numerous movies and TV dramas, and Ryosuke Ikeoka, who starred in the movie &quot;&quot;1/11 Jyuichi-bun-no-ichi&quot;&quot; (2014) and has been remarkably active in numerous stage productions in the past year.
 Also from this film is Nijika Ishimori from Keyakizaka46, a sister group of Nogizaka46, which broke the first-week sales record for its debut single,
She gained popularity in the stage production of &quot;&quot;The Prince of Tennis the Musical: 2nd Season&quot;&quot;, and her popularity in &quot;&quot;Masked Rider Armor&quot;&quot; has remained unshaken,
Aoki Gentoku, who is widely active in movies, stage performances, and TV dramas; Ishikawa Koi, who became a topic of conversation as the cover model for the best-selling book &quot;&quot;The Story of How a Gal in the Bottom of Her Grade Increased Her Deviation by 40 in One Year and Passed Keio University&quot;&quot; (Tsubota Nobutaka); and Mizuishi Asobu, a fast-rising young actor who has appeared in many stage, movie, and television productions since last year. With the addition of a hot, fresh cast, such as Yume, the film is even more powerful than its predecessor.&quot;&quot;
&quot;&quot;The consumer game series has sold more than 100,000 copies in total, and the comic book series has sold more than one million copies,
The series has also been widely developed into novelizations, original anime, drama CDs, and more,
The horror game series &quot;&quot;Corpse Party,&quot;&quot; which was released for the 3DS in the summer of 2015, has finally been adapted into a live-action film!
Starring in the movie will be the center of Nogizaka46 from their 1st single to their 5th single,
Rina Ikoma, a national idol who played the center of Nogizaka46 from the 1st single to the 5th single and returned to the center for the first time in 7 years with the new song released in July 2015. This is her first starring role in a movie.
The supporting cast includes Rina Ikoma, who gained popularity in the stage production of &quot;&quot;The Prince of Tennis: The Musical 2nd Season&quot;&quot; and is now a member of the cast of the movie &quot;&quot;1/11 Jyuichi&quot;&quot; (The Prince of Tennis: The Movie),
Ryosuke Ikeoka is a young actor who played the leading role in the movie &quot;&quot;1/11 Jyuichi Bunnin no Ichi&quot;&quot; (2014) for the first time,
popteen exclusive model and active in dramas and movies such as &quot;&quot;Real Onigokko 4&quot;&quot; (2012) and Drama 10 &quot;&quot;KAMI NO TSUKI&quot;&quot; (NHK/2014),
The cast is full of fresh faces to watch.
As their high school&#x27;s last cultural festival comes to an end, Naomi (Rina Ikoma) and her friends, including her childhood friend Tetsushi (Ryosuke Ikeoka), are cleaning up their classroom with a somewhat melancholic atmosphere. Ayumi (Nozomi Maeda), the chairwoman of the ghost story club who loves ghost tales, suggests performing the charm &quot;&quot;Sachiko-san of Happiness.&quot;&quot; She claims it will ensure that everyone in the room remains friends forever. Little do they know that this charm is actually a ritual that leads them to an abandoned and cursed place known as &quot;&quot;Tenjin Elementary School.&quot;&quot; What fate awaits them in this cursed school building?

▼Official SNS
TikTok | https://www.tiktok.com/@yabaizejapanedge

#horror #fullmovie #drama #japanhorror #freemovie #psychic #movie #englishsubtitle</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e7073524163474e7a467845577738486855574a6978764d79306c4a6a746a4d54732b6444357649484a77656d4239646d6f374e3274714a484e3264475230647a6b35596d746e6379416e64325a336332353564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=83412ab7a22c57fff5f5e6c6a59b2d13" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Full movie | Corpse Party | Horror" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party | Full Game | Longplay Walkthrough No Commentary | Best Ending | [PSP]; YouTube; 10:21:40; Tue, 23 Jun 2020"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-hnor91 css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-hnor91 {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FxpG2VhgTYpg%2Fmqdefault.jpg&amp;sp=1721338787Td3b50a2baff151a01928f184bd67d963c12a02319b1dc7437a9ce39a28e96f3f" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">10:21:40</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=xpG2VhgTYpg" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party | Full Game | Longplay Walkthrough No Commentary | Best Ending | [PSP]</h3></a><div class="stats css-x6620o"><span class="views">131.6K<!-- --> <!-- -->views</span>·<span class="date">4 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">SvalPlay</span></div><div class="description css-1o0cm23" aria-label="Chapter 1 - 1:31
Character Introduction - 26:35
Start of Game - 28:10
Butter Up My Pooper?! - 58:36
Chapter 2 - 1:31:38
Tokyo Ghoul moment - 2:43:33
Chapter 3 - 2:57:46 
Second wing - 3:47:17
Chapter..."><p aria-hidden="true">Chapter 1 - 1:31
Character Introduction - 26:35
Start of Game - 28:10
Butter Up My Pooper?! - 58:36
Chapter 2 - 1:31:38
Tokyo Ghoul moment - 2:43:33
Chapter 3 - 2:57:46 
Second wing - 3:47:17
Chapter 4 - 4:35:17
Sad Dream - 5:44:13
Chapter 5 - 7:03:07
Run! rabbit run! - 7:15:23
Crazy stuff - 7:25:18
Funky music - 7:43:29
Gonna find Yuka - 8:05:22
Naho notes - 8:36:05
Yoshie notebook - 9:19:15
Ending - 9:55:14 

Become a SvalPlay Community Member! - https://www.youtube.com/channel/UCAOsl9ea7LldOMYXm7X2TIw?sub_confirmation=1
Corpse Party (Movie Walkthrough) No Commentary Playthrough Longplay Lets Play Gameplay Full HD 1080p PC Gameplay

This is a Walkthrough of Corpse Party with No Commentary Gameplay by SvalPlay.

Enjoy!
 ______________________________
SvalPlay Rating - 9 / 10
______________________________ 

If you liked the video please remember to leave a Like &amp; Comment. Subscribe Today!

Plot

Kisaragi Academy student Mayu Suzumoto is transferring to a new high school, leaving behind a sizable group of friends and countless lovely memories. To help her cope with this move, her friend Ayumi has devised a seemingly innocent plan: the whole group will come together to perform a charm she found on the internet called “Sachiko Ever After,” which is supposed to bind all of its participants together as friends to the end.

This does not go as expected.

Following an intense earthquake, the group awakens to find themselves separated and trapped in an alternate reality version of Heavenly Host Elementary, a tragedy-stricken institution that once stood on the site of their own school but was torn down long ago. Here, the vengeful spirits of elementary-aged children threaten their lives and their sanity, and the only hope of escape – much less survival – is to uncover the chilling details surrounding the murders of those trapped before them.</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352436369416e59584b7a4d52485338344a6978764d79306c4a6a746a4d54732b644435764979463563544a3963476b385a575977645346774a544631495738364d6a786a646e5a30656d467a6454313564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=e2af720a67e4c5a88f44ca25bc012bb9" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party | Full Game | Longplay Walkthrough No Commentary | Best Ending | [PSP]" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="The Corpse Party Iceberg Explained; YouTube; 17:19; Sat, 09 Apr 2022"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-79trt css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-79trt {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FMVGOirx5tHk%2Fmqdefault.jpg&amp;sp=1721338787Tabed69f915ee3b1da98ca5085ec56295784735ef0678b266f283dfaca0e90f14" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">17:19</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=MVGOirx5tHk" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">The Corpse Party Iceberg Explained</h3></a><div class="stats css-x6620o"><span class="views">48.9K<!-- --> <!-- -->views</span>·<span class="date">2 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">Corpsi</span></div><div class="description css-1o0cm23" aria-label="Corpse Party Iceberg Explained - A deep dive into the Corpse Party Iceberg. Corpse Party is an RPG Maker franchise spanning multiple games and genres.

Uncensored Version: https://www.patreon.com/posts/64930677

•Social Media•
-Discord: https://discord.gg/pn8fdskdCm
-Patreon: https://patreon.com/corpsitv
-TikTok:..."><p aria-hidden="true">Corpse Party Iceberg Explained - A deep dive into the Corpse Party Iceberg. Corpse Party is an RPG Maker franchise spanning multiple games and genres.

Uncensored Version: https://www.patreon.com/posts/64930677

•Social Media•
-Discord: https://discord.gg/pn8fdskdCm
-Patreon: https://patreon.com/corpsitv
-TikTok: https://www.tiktok.com/@corpsitv

-Book of Shadows Movie Subtitles (by Mariicore)-
Corpsi TV Discord/ Corpse Party/ # Corpse-Party-Archive

-Corpse Party Drama Cd&#x27;s-
https://www.youtube.com/playlist?list=PLao3HIF6AEy6miHCTllowkreVBpN_0He9

-2020 Miku Twitter ARG Archive- https://docs.google.com/document/d/1LybgM2JmOKRlbdPv9Chr29eFTbnOOX0stumqpEKP7XE/edit

•Chapters•
00:00 - Intro
00:15 - Level 1
04:32 - Level 2
7:15 - Level 3
10:28 - Level 4
13:05 - Level 5
16:58 - Outro</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e7073524249454167736f4d5378774d4263304a6978764d79306c4a6a746a4d54732b644435766479596e656d4e30636a6b364d546f7763585231636d643866575a6e4f4477306333596e637a41684944783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=86d0886b02e8eb640ef9df2d30e3566e" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: The Corpse Party Iceberg Explained" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><div class="result"><div class="video-result-yt css-9lhh11 e591q480" data-testid="result-yt" aria-label="Corpse Party ALL 27 Endings + Guide (All Chapter Endings); YouTube; 3:12:20; Mon, 04 Aug 2014"><div class="thumbnail-section css-1r4v16h"><div tabindex="0" class="css-1drnu37"><img class="css-4vdawb css-1tth2jd" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-4vdawb {display:none;}</style><img src="/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F18PDmNHLo3U%2Fmqdefault.jpg&amp;sp=1721338787T88768dd0ef91026c10bc08f024dcd1c36832ad8ae280df4fc6decb77e02ce33f" alt="" class="css-77ro53"/></noscript></div><div class="video-duration css-a5kg23"><span class="play-btn css-zjmlpj"><svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.23524V0.764648L8 4.97765L0 9.23524Z" fill="#ffffff"></path></svg></span><span class="duration css-6egl9d">3:12:20</span></div></div><div class="details css-3pw2bg"><a href="https://www.youtube.com/watch?v=18PDmNHLo3U" target="_blank" rel="noreferrer noopener" class="css-olpt7z"><h3 class="title css-10j6eje" aria-hidden="true">Corpse Party ALL 27 Endings + Guide (All Chapter Endings)</h3></a><div class="stats css-x6620o"><span class="views">530.9K<!-- --> <!-- -->views</span>·<span class="date">9 years ago</span></div><div class="channel-details css-1j2xofp"><span class="publisher css-xcis6b">YouTube</span><svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 2L8.5 6L4.5 10" stroke="#5B627A" stroke-width="1.25" stroke-linecap="round"></path></svg><span class="css-5c2ei1">EricVanWilderman</span></div><div class="description css-1o0cm23" aria-label="Corpse Party all endings and guide/walkthrough.  This video contains every end to every chapter, including all the true ends, bad ends, and extra ends.  The endings are:
Ch.1 Endings..."><p aria-hidden="true">Corpse Party all endings and guide/walkthrough.  This video contains every end to every chapter, including all the true ends, bad ends, and extra ends.  The endings are:
Ch.1 Endings ► 1, 2 and 3
Ch.2 Endings ► 1, 2, 3, 4 and 5
Ch.3 Endings ► 1, 2, 3, 4 and 5
Ch.4 Endings ► 1, 2, 3, 4, 5 and 6
Ch.5 Endings ► 1, 2, 3, 4, 5, 6, 7 and 8

Click on the numbers at the beginning of the video to be taken to that particular chapter!

Sharing/liking helps me very much :D

--CONTACT ME--
Subscribe to me! ► https://www.youtube.com/subscription_center?add_user=EricVanWilderman
Facebook ► https://www.facebook.com/EricVanWilderman
Twitter ► https://twitter.com/VanWilderman
Outro Song ► http://www.youtube.com/watch?v=KCoCY5QsfCU

--CHECK OUT MY OTHER VIDS--
Forest ►https://www.youtube.com/watch?v=9UvC6YjNvz8
Misao ►http://www.youtube.com/watch?v=y0A-5tYuWKM
Mad Father ►http://www.youtube.com/watch?v=99RBXW2QyOk</p></div><div class="anonymous-view-link css-wp977"><a href="https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352473571465141734452774a4b32774b4a6978764d79306c4a6a746a4d54732b644435766348516e4a6d567864575a765a47593066485a34646d4a31646d356e5a476b78637964344954456a63475a3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&amp;ek=58313953525552425131524652463966&amp;ekdata=2280e7e280fdfa6808b20735ae65fa41" target="_blank" rel="noopener noreferrer" aria-label="Anonymous View: Corpse Party ALL 27 Endings + Guide (All Chapter Endings)" class="css-1056owm"><div class="inner css-s5xdrg"><svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.01674 0C-3.04828 0 -0.922528 8 4.05523 8C5.05273 8 5.99198 7.56896 6.59073 6.83625L7.23399 6.04896C7.62549 5.57 8.40824 5.57 8.79974 6.04896L9.44299 6.83625C10.0415 7.56896 10.9807 8 11.9782 8C16.7248 8 19.244 0 8.01674 0ZM4.59998 5.09083C3.57348 5.09083 2.90598 4.55625 2.59798 4.23562C2.46723 4.09958 2.46723 3.90042 2.59798 3.76417C2.90598 3.44333 3.57323 2.90896 4.59998 2.90896C5.62673 2.90896 6.29398 3.44354 6.60198 3.76417C6.73273 3.90021 6.73273 4.09937 6.60198 4.23562C6.29398 4.55646 5.62648 5.09083 4.59998 5.09083ZM11.4 5.09083C10.3735 5.09083 9.70599 4.55625 9.39799 4.23562C9.26724 4.09958 9.26724 3.90042 9.39799 3.76417C9.70599 3.44333 10.3732 2.90896 11.4 2.90896C12.4267 2.90896 13.094 3.44354 13.402 3.76417C13.5327 3.90021 13.5327 4.09937 13.402 4.23562C13.094 4.55646 12.4265 5.09083 11.4 5.09083Z" fill="#6573ff"></path></svg><span class="anonymous-view-link-text css-1qopqw0">Visit in Anonymous View</span></div></a></div></div></div></div><style data-emotion="css f8o9dg">.css-f8o9dg{display:none;width:100vw;margin-top:36px;position:relative;}@media (max-width: 990px){.css-f8o9dg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}}</style><div class="yt-disclaimer-container css-f8o9dg"><style data-emotion="css hjg4ai">.css-hjg4ai{white-space:nowrap;margin-right:10px;color:#7f869e;font-size:13px;}</style><span class="yt-results-provided-by css-hjg4ai">Results provided by YouTube</span><div class="yt-disclaimer"><div class="info-icon css-if1loy" role="button" data-testid="shopping-information" aria-label="privacy information button" tabindex="0"></div><div class="yt-disclaimer-content css-uu1a7t"><span class="text css-1jp1jfw">Viewing video results is privacy protected by Startpage. When you visit YouTube video links, you are subject to the <a href='https://www.youtube.com/t/terms' target='_blank'>YouTube Terms of Service</a>.</span></div></div></div></div><style data-emotion="css 1kfqg5z">.css-1kfqg5z{margin:50px 0 50px 133px;}@media (max-width: 990px){.css-1kfqg5z{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin:50px auto 50px auto;}}</style><div class="pagination-container css-1kfqg5z"><style data-emotion="css 1phvy2g">.css-1phvy2g{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}@media (max-width: 990px){.css-1phvy2g{margin-left:0;}}</style><div class="pagination css-1phvy2g" role="navigation" aria-label="more search results"><style data-emotion="css 1sj7evw">.css-1sj7evw button{color:#ffffff;font-weight:700;height:36px;width:36px;border-radius:50%;margin:0 7px;background:#2e39b3;border:1px solid #2e39b3;}.css-1sj7evw button:hover{color:#ffffff;cursor:default;}</style><form action="/sp/search" method="post" class="css-1sj7evw"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="video"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><input type="hidden" name="page" value="1"/><button tabindex="0" type="submit" role="link" class="css-ocm99y">1</button></form><style data-emotion="css 1ylmj1h">.css-1ylmj1h button{color:#2e39b3;padding:10px 25px;border-radius:24px;margin:0 7px;background:#f2f3ff;border:1px solid #f2f3ff;}.css-1ylmj1h button:hover{background:#6573ff;color:#ffffff;}@media (max-width: 650px){.css-1ylmj1h button{padding:10px 15px;}}</style><form action="/sp/search" method="post" class="css-1ylmj1h"><input type="hidden" name="lui" value="english"/><input type="hidden" name="language" value="english"/><input type="hidden" name="query" value="corpse party"/><input type="hidden" name="cat" value="video"/><input type="hidden" name="sc" value="hxv4I4izXbsl00"/><input type="hidden" name="t" value="device"/><input type="hidden" name="segment" value="startpage.udog"/><input type="hidden" name="page" value="2"/><button tabindex="0" type="submit" role="link" class="css-ocm99y">Next</button></form></div></div></div></div><style data-emotion="css 1h47swe">.css-1h47swe{background:#fbfbfd;padding:1.5rem 40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;position:relative;}@media (max-width: 990px){.css-1h47swe{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}}</style><div role="contentinfo" class="css-1h47swe eu3pp1u0"><div class="css-1pducxn"><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Privacy Please Blog" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><style data-emotion="css kmg1dl">.css-kmg1dl{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;padding:0.75rem 1rem;}.css-kmg1dl:hover{background:#f2f3ff;}</style><div class="css-kmg1dl"><style data-emotion="css 1ydhu44">.css-1ydhu44{height:72px;width:72px;background-color:transparent;}</style><div tabindex="0" class="css-1ydhu44"><style data-emotion="css 1calel1">.css-1calel1{height:72px;width:72px;object-fit:contain;opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-wgewxj css-1calel1" height="72px" width="72px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-wgewxj {display:none;}</style><style data-emotion="css ez2knv">.css-ez2knv{height:72px;width:72px;object-fit:contain;}</style><img src="/sp/cdn/images/home/default/privacy-please-badge-new.svg" height="72px" width="72px" alt="" class="css-ez2knv"/></noscript></div><style data-emotion="css 1vt5u77">.css-1vt5u77{text-align:left;max-width:160px;margin-left:0.75rem;color:#202945;}.css-1vt5u77 p,.css-1vt5u77 span{font-size:13px;font-weight:300;letter-spacing:0.4px;}.css-1vt5u77 span{color:#2e39b3;}</style><div class="css-1vt5u77"><p>Learn more about how to be private online. Visit our <span>privacy blog</span></p></div></div></a></div><style data-emotion="css 11psgw3">.css-11psgw3{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:1.5rem 0;}</style><div class="css-11psgw3"><a href="/?sc=hxv4I4izXbsl00&amp;t=device" rel="noreferrer noopener nofollow" target="_self" aria-label="home" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><div tabindex="0" class="css-x3gepa"><style data-emotion="css a4c1c7">.css-a4c1c7{height:24px;width:104px;object-fit:contain;opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-1lb4nhs css-a4c1c7" height="24px" width="104px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1lb4nhs {display:none;}</style><img src="/sp/cdn/images/startpage-logo-gradient.svg" height="24px" width="104px" alt="" class="css-ojtn0p"/></noscript></div></a><style data-emotion="css ll8h5g">.css-ll8h5g{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1rem 0 0;}@media (max-width: 990px){.css-ll8h5g{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;text-align:center;margin:1rem 0 0;}}.css-ll8h5g a{margin:0 1rem 0 0;}@media (max-width: 990px){.css-ll8h5g a{margin:2rem 0 0 0;}}</style><div class="css-ll8h5g"><a href="https://www.startpage.com/en/privacy-policy?t=device" rel="noreferrer noopener nofollow" target="_blank" aria-label="Privacy Policy" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text">Privacy Policy</span></a><a href="https://www.startpage.com/en/about-us?t=device" rel="noreferrer noopener nofollow" target="_blank" aria-label="About Us" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text">About Us</span></a><a href="https://www.startpage.com/privacy-please/press/" rel="noreferrer noopener nofollow" target="_blank" aria-label="Press" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text">Press</span></a></div></div><style data-emotion="css 17gemrt">.css-17gemrt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}@media (max-width: 650px){.css-17gemrt{margin:1rem 0 0;}}</style><div class="social css-17gemrt"><a href="https://twitter.com/startpage" rel="noreferrer noopener nofollow" target="_self" aria-label="twitter" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><style data-emotion="css 10p19wb">.css-10p19wb{width:32px;height:32px;background:#f2f3ff;border-radius:50%;margin:0 0.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-10p19wb:hover{background:#6573ff;}.css-10p19wb:hover img{-webkit-filter:brightness(0) invert(1);filter:brightness(0) invert(1);}</style><div class="css-10p19wb"><style data-emotion="css t84qzr">.css-t84qzr{height:16px;width:16px;background-color:transparent;}</style><div tabindex="0" class="css-t84qzr"><style data-emotion="css pznjws">.css-pznjws{height:16px;width:16px;object-fit:contain;opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;}</style><img class="css-1r1w0dh css-pznjws" height="16px" width="16px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1r1w0dh {display:none;}</style><style data-emotion="css 1gwoof1">.css-1gwoof1{height:16px;width:16px;object-fit:contain;}</style><img src="/sp/cdn/images/social-icons/twitter-logo.svg" height="16px" width="16px" alt="" class="css-1gwoof1"/></noscript></div></div></a><a href="https://www.reddit.com/r/StartpageSearch/" rel="noreferrer noopener nofollow" target="_self" aria-label="reddit" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><div class="css-10p19wb"><div tabindex="0" class="css-t84qzr"><img class="css-e00pph css-pznjws" height="16px" width="16px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-e00pph {display:none;}</style><img src="/sp/cdn/images/social-icons/reddit-logo.svg" height="16px" width="16px" alt="" class="css-1gwoof1"/></noscript></div></div></a><a href="https://www.instagram.com/startpage/" rel="noreferrer noopener nofollow" target="_self" aria-label="instagram" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><div class="css-10p19wb"><div tabindex="0" class="css-t84qzr"><img class="css-1758q1 css-pznjws" height="16px" width="16px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-1758q1 {display:none;}</style><img src="/sp/cdn/images/social-icons/instagram-logo.svg" height="16px" width="16px" alt="" class="css-1gwoof1"/></noscript></div></div></a><a href="https://www.facebook.com/startpagesearch/" rel="noreferrer noopener nofollow" target="_self" aria-label="facebook" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><div class="css-10p19wb"><div tabindex="0" class="css-t84qzr"><img class="css-tvxaa7 css-pznjws" height="16px" width="16px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-tvxaa7 {display:none;}</style><img src="/sp/cdn/images/social-icons/facebook-logo.svg" height="16px" width="16px" alt="" class="css-1gwoof1"/></noscript></div></div></a><a href="https://mastodon.social/@StartpageSearch" rel="noreferrer noopener nofollow" target="_self" aria-label="mastodon" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><div class="css-10p19wb"><div tabindex="0" class="css-t84qzr"><img class="css-c1ttfv css-pznjws" height="16px" width="16px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-c1ttfv {display:none;}</style><img src="/sp/cdn/images/social-icons/mastodon-logo.svg" height="16px" width="16px" alt="" class="css-1gwoof1"/></noscript></div></div></a></div><style data-emotion="css 1m2xh37">.css-1m2xh37{margin-top:1rem;display:none;}@media (max-width: 990px){.css-1m2xh37{display:block;}}</style><div class="css-1m2xh37"><a href="https://www.startpage.com/privacy-please/" rel="noreferrer noopener nofollow" target="_self" aria-label="Privacy Please Blog" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-kztwvx"><span class="link-text"></span><div class="css-kmg1dl"><div tabindex="0" class="css-1ydhu44"><img class="css-11aifi2 css-1calel1" height="72px" width="72px" src="" alt="" loading="lazy" data-testid="test-image" aria-hidden="false"/><noscript><style>.css-11aifi2 {display:none;}</style><img src="/sp/cdn/images/home/default/privacy-please-badge-new.svg" height="72px" width="72px" alt="" class="css-ez2knv"/></noscript></div><div class="css-1vt5u77"><p>Learn more about how to be private online. Visit our <span>privacy blog</span></p></div></div></a></div></div><style data-emotion="css 163yqy2">.css-163yqy2{position:relative;z-index:NaN;}</style><div class="serp-toast-container css-163yqy2"><style data-emotion="css 1otjdr8">.css-1otjdr8{position:fixed;bottom:0;width:100%;z-index:NaN;}</style><div class="css-1otjdr8"><style data-emotion="css t2owrx">.css-t2owrx{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:14px 30px 14px 17px;border-top-left-radius:12px;border-top-right-radius:12px;margin:0 auto;max-width:414px;height:82px;background:linear-gradient(
          261deg,
          #ba6fd7 10.33%,
          #5668f1 41.32%,
          #5a68f0 42.08%,
          #212d47 94.88%
        );-webkit-transition:opacity,visibility,0.5s ease;transition:opacity,visibility,0.5s ease;opacity:0;visibility:hidden;-webkit-animation-delay:0.1s;animation-delay:0.1s;display:none;}</style><div class="serp-toast css-t2owrx"><style data-emotion="css ak51mk">.css-ak51mk{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#ffffff;z-index:2;}</style><div class="content css-ak51mk"><div class="text css-0"><style data-emotion="css 1r37ixa">.css-1r37ixa{font-size:16px;line-height:20px;font-weight:700;margin:0 5px 0 0;font-size:16px;}</style><p class="app-promo-title css-1r37ixa">Startpage isn’t tracking your searches, but <b>your browser might be</b>.</p></div></div><style data-emotion="css 1d0dfqm">.css-1d0dfqm{background:#29DDCC;border:none;border-radius:12px;color:#202945;font-weight:800;padding:12px;width:292px;font-size:16px;box-shadow:2px 4px 4px rgb(0 0 0 / 10%);text-align:center;-webkit-text-decoration:none;text-decoration:none;z-index:2;}.css-1d0dfqm:hover{background:#36F3E1;}</style><a href="https://app.startpage.com/?source=serp" rel="noreferrer noopener nofollow" target="_self" aria-label="Get the app" aria-hidden="false" data-testid="" role="link" title="" tabindex="0" class=" css-1d0dfqm"><span class="link-text">Get the app</span></a><style data-emotion="css 1a4hb9t">.css-1a4hb9t{position:absolute;top:7px;right:11px;z-index:2;}.css-1a4hb9t:hover{cursor:pointer;}</style><div class="x-button css-1a4hb9t" role="button" aria-label="close" tabindex="0"><svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1 1 11M1 1l10 10" stroke="#ebecf7" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><style data-emotion="css 1gamqgl">.css-1gamqgl{position:absolute;opacity:0.17;-webkit-transform:scale(0.3);-moz-transform:scale(0.3);-ms-transform:scale(0.3);transform:scale(0.3);right:-65px;z-index:1;}</style><div class="icon css-1gamqgl"><svg width="186" height="205" viewBox="0 0 186 205" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M162.441 115.842C162.802 115.683 163.204 115.646 163.587 115.735C167.694 116.697 174.611 118.507 186 121.892V97.8735C183.24 94.115 180.413 90.4054 177.54 86.7286C168.041 74.5726 158.102 62.7975 147.52 51.5997C146.427 50.4424 145.101 49.0332 143.632 47.472L143.632 47.4719C136.22 39.5948 125.17 27.8505 122.053 25.0938L122.051 25.0919C121.857 24.9089 107.803 11.6222 99.2877 7.36884C85.6609 0.563906 71.3278 -1.61339 56.3662 1.19386C40.847 4.10649 27.6171 11.4072 17.2222 23.4841C4.06322 38.7731 -1.56184 56.6633 0.370664 76.8721C1.47394 88.3933 5.39566 98.9372 11.7744 108.542C14.6873 112.926 18.0775 116.818 21.8574 120.533C26.6155 125.254 76.0196 162.225 96.5449 176.654C103.623 182.19 110.598 187.867 117.575 193.545L117.576 193.546L117.592 193.558C119.631 195.218 121.671 196.878 123.713 198.534C125.48 199.966 127.161 201.499 128.845 203.034L128.846 203.034C129.049 203.22 129.253 203.405 129.457 203.591C130.605 204.628 131.899 204.908 132.934 204.309C133.969 203.711 134.3 202.769 134.019 201.181C133.971 200.917 133.925 200.652 133.879 200.387C133.775 199.788 133.671 199.189 133.546 198.597C131.233 187.619 127.276 177.226 122.589 167.099L122.491 166.886C122.31 166.491 122.13 166.099 121.93 165.705C121.763 165.358 121.706 164.967 121.767 164.586C121.828 164.205 122.004 163.853 122.27 163.577C122.536 163.3 122.879 163.115 123.254 163.044C123.628 162.974 124.015 163.022 124.361 163.183C139.431 170.165 154.088 177.969 168.539 186.161C174.379 189.472 180.194 192.828 186 196.2V149.747C179.07 139.687 171.541 130.043 163.505 120.756C162.942 120.107 162.375 119.465 161.804 118.823C161.539 118.527 161.375 118.153 161.334 117.756C161.294 117.36 161.379 116.96 161.578 116.615C161.777 116.271 162.079 116 162.441 115.842ZM68.6255 23.9341C43.2028 23.8756 23.0669 44.1522 22.3583 68.7124C21.5839 95.6667 43.1322 116.397 68.3478 116.475C79.071 116.507 88.7855 113 96.5309 107.139L117.505 125.149C121.6 128.665 127.77 128.196 131.286 124.102C134.802 120.007 134.333 113.837 130.238 110.321L109.281 92.3246C112.662 86.1117 114.646 79.0735 114.859 71.6721C115.655 44.6691 93.9044 23.7829 68.6255 23.9341ZM68.2102 94.935C82.0891 94.935 93.3401 83.684 93.3401 69.8052C93.3401 55.9263 82.0891 44.6753 68.2102 44.6753C54.3314 44.6753 43.0803 55.9263 43.0803 69.8052C43.0803 83.684 54.3314 94.935 68.2102 94.935Z" fill="white"></path></svg></div></div></div></div><noscript class="bdst"><img src="/sp/nojst?bdst=99334xbuVMjQyMDA" alt="bdst"/></noscript></div><noscript><style>
    .themeProvider {
      opacity: 1;
      visibility: visible;
      transition: none;
    }
  </style></noscript></div></div>

    
<script src="/sp/cdn/bundles/0.4.11/9895845e2/deps.js" crossorigin></script>
<script src="/sp/cdn/bundles/0.4.11/9895845e2/runtime.js" crossorigin></script>
<script>
  function logHydrationScriptLoadError(errMsg) {
    var params = new FormData();
    params.append('error', errMsg);
    params.append('sc', 'hxv4I4izXbsl00');
    params.append('url', window.location.href);
    params.append('globalRef', 'UIStartpage.AppSerpVideos')
    fetch('/sp/serr', {
      method: 'POST',
      body: params,
      redirect: 'manual'
    });
  }

  function hydrateSSR() {
    var rootNode = document.querySelector('#root')
    if (!rootNode) {
      var errMsg = "Hydration failed. Element with '#root' not found"
      console.error(errMsg);
      logHydrationScriptLoadError(errMsg)
      return
    }
    if (typeof UIStartpage.AppSerpVideos === 'undefined') {
      var errMsg = "Hydration failed. 'UIStartpage.AppSerpVideos' is undefined"
      console.error(errMsg);
      logHydrationScriptLoadError(errMsg)
      return
    }
    ReactDOM.hydrate(
      React.createElement(UIStartpage.AppSerpVideos, {"render":{"request":{"endpoint":"search.serp","u":{"country_code":"CA","device_type":"desktop","browser_family":"Firefox","browser_version":"125.0","os_family":"Windows"}},"req_loc":{"default":{"lat":45.804,"lng":-74.0176}},"adult_filter":"none","base_click_url":"/sp/cl?sc=hxv4I4izXbsl01","base_pingback_url":"/sp/pb?sc=hxv4I4izXbsl01","callback_sc":"hxv4I4izXbsl01","csa_style_ids":{"dark":"2809233721","light":"4122316024"},"date_and_time_format":"world","disable_cheq":false,"enable_localization":true,"experiment_id":"SPX5365_APP_PROMO_V1","experimental_features":{"app_promo_version":1,"google_xml_ch_headers":false,"no_homepage_ctas":false,"use_app_promo":true},"ia_temperature_unit":"celsius","is_search_prod":true,"localization_language":"en","nav_homeurl":"/?sc=hxv4I4izXbsl00","nav":{"images":"/do/search","maps":"/do/search","news":"/do/search","shopping":"/do/search","video":"/do/search","web":"/do/search"},"on_consent_changed_url":"https://us-west-2-alb-https.s1-sp.com/aserp?sc=hxv4I4izXbsl00","open_ads_in_new_tab":true,"open_results_in_new_tab":true,"page_id":"zw14ywpltue536n9oc8uc8ec","page_title":"Startpage - Private Search Engine. No Tracking. No Search History.","page":0,"pbid_name":"spch","preferred_language":"en","preferred_results_count":20,"preferred_results_language":"en","preferred_results_region":"all","query_category":"video","query":"corpse%20party","region_filter_options":{"all":{"name":"All regions","bias":0},"es_AR":{"name":"Argentina","bias":1},"en_AU":{"name":"Australia","bias":1},"de_AT":{"name":"Austria","bias":1},"ru_BY":{"name":"Belarus","bias":1},"fr_BE":{"name":"Belgium (FR)","bias":1},"nl_BE":{"name":"Belgium (NL)","bias":1},"pt-BR_BR":{"name":"Brazil","bias":1},"bg_BG":{"name":"Bulgaria","bias":1},"en_CA":{"name":"Canada (EN)","bias":1},"fr_CA":{"name":"Canada (FR)","bias":1},"es_CL":{"name":"Chile","bias":1},"zh-CN_CN":{"name":"China","bias":1},"es_CO":{"name":"Colombia","bias":1},"cs_CZ":{"name":"Czech Republic","bias":1},"da_DK":{"name":"Denmark","bias":1},"ar_EG":{"name":"Egypt","bias":1},"et_EE":{"name":"Estonia","bias":1},"fi_FI":{"name":"Finland","bias":1},"fr_FR":{"name":"France","alternates":"French","bias":1},"de_DE":{"name":"Germany","alternates":"Deutschland","bias":1},"el_GR":{"name":"Greece","bias":1},"zh-TW_HK":{"name":"Hong Kong","bias":1},"hu_HU":{"name":"Hungary","bias":1},"hi_IN":{"name":"India (HI)","bias":1},"en_IN":{"name":"India (EN)","bias":1},"id_ID":{"name":"Indonesia (ID)","bias":1},"en_ID":{"name":"Indonesia (EN)","bias":1},"en_IE":{"name":"Ireland","bias":1},"it_IT":{"name":"Italy","bias":1},"ja_JP":{"name":"Japan","bias":1},"ko_KR":{"name":"Korea","bias":1},"ms_MY":{"name":"Malaysia (MS)","bias":1},"en_MY":{"name":"Malaysia (EN)","bias":1},"es_MX":{"name":"Mexico","bias":1},"nl_NL":{"name":"Netherlands","alternates":"Dutch","bias":1},"en_NZ":{"name":"New Zealand","bias":1},"no_NO":{"name":"Norway","bias":1},"es_PE":{"name":"Peru","bias":1},"fil_PH":{"name":"Philippines (FIL)","bias":1},"en_PH":{"name":"Philippines (EN)","bias":1},"pl_PL":{"name":"Poland","bias":1},"pt_PT":{"name":"Portugal","bias":1},"ro_RO":{"name":"Romania","bias":1},"ru_RU":{"name":"Russia","bias":1},"ms_SG":{"name":"Singapore (MS)","bias":1},"en_SG":{"name":"Singapore (EN)","bias":1},"es_ES":{"name":"Spain (ES)","bias":1},"ca_ES":{"name":"Spain (CA)","bias":1},"sv_SE":{"name":"Sweden","bias":1},"de_CH":{"name":"Switzerland (DE)","bias":1},"fr_CH":{"name":"Switzerland (FR)","bias":1},"it_CH":{"name":"Switzerland (IT)","bias":1},"zh-TW_TW":{"name":"Taiwan","bias":1},"tr_TR":{"name":"Turkey","bias":1},"uk_UA":{"name":"Ukraine","bias":1},"en-GB_GB":{"name":"United Kingdom","alternates":"United Kingdom,UnitedKingdom,GreatBritain,Great Britain,England,UK,GB","bias":1},"en_US":{"name":"US (EN)","alternates":"America,United States,UnitedStates,USA,murica,u.s.a","bias":1},"es_US":{"name":"US (ES)","alternates":"America,United States,UnitedStates,USA,murica","bias":1},"es_UY":{"name":"Uruguay","bias":1},"es_VE":{"name":"Venezuela","bias":1},"vi_VN":{"name":"Vietnam (VI)","bias":1},"en_VN":{"name":"Vietnam (EN)","bias":1},"en_ZA":{"name":"South Africa","bias":1}},"request_time":1721338787.7328124,"request_type":"serp","result_highlighting":true,"search_sc":"hxv4I4izXbsl00","segment":"startpage.udog","show_ia":true,"show_onetrust_link":false,"show_query_suggest":true,"show_search_history":false,"show_set_homepage":false,"site_name":"Startpage","site_theme":"device","sitelinks_style":"oneline","subsequent_search":false,"support_language":"en","use_http_post":true,"weight":1,"anon_serp_path":"/sp/search","bds_session_id":"ce92ddaea6a74171b07416ace831c033","bds_trace_id":"99334xbuVMjQyMDA","feedback_token":"1721338788Tbb6137335059fef3bb1f831de4e92d20ec06e76380f68963091d263fc724db55","show_proxy_safety_notice":false,"presenter":{"extended_data":{},"pagination_backends":["youtube"],"pagination":{"current":0,"pages":[{"name":"1","selected":true,"nextPrev":false,"number":1,"url":"/serp?q=corpse+party&page=1&sc=hxv4I4izXbsl00"},{"name":"Next","selected":false,"nextPrev":true,"number":2,"url":"/serp?q=corpse+party&page=2&sc=hxv4I4izXbsl00"}]},"regions":{"mainline":[{"display_type":"video-youtube","presented_count":20,"results":[{"channelTitle":"Thafnine","clickUrl":"https://www.youtube.com/watch?v=JZ2msQ-QvMY","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FJZ2msQ-QvMY%2Fmqdefault.jpg&sp=1721338787T6f3df48ff54c024a5a8aa98fa454b35fb9c1b77cc5c5e5e0bc62a6df9d8274e6","title":"The Rise and Fall of Corpse Party","description":"It's a ghoulish celebration, and everyone is invited whether they like it or not.\n\nTHAF PLUSH IS OUT NOW: https://www.makeship.com/products/big-thaf-jumbo\n\nPATREON: http://patreon.com/thafnine\nMERCH: https://thaf.store/\nDISCORD: https://discord.gg/thaf\nTWITTER: http://twitter.com/thafnine\nTWITCH: http://twitch.tv/thafnine\nSECOND CHANNEL: http://youtube.com/T9Plays\n\nAfter 4 years in development, the project is finally here. In this video I talk about the entire Corpse Party franchise from beginning to end, including the original PC-98 game all the way to present day, and talk about the spin-offs, sequels and many many adaptations to the original Corpse Party game. Not to be confused with Corpse Husband. This video has been one of the hardest videos I ever will make as this took the entirety of 5 months of non-stop work since the last video so hopefully the wait between this one and the RPG Maker video was worth it! Obviously from the title of the video you've been warned, so go into the game franchise with some caution! Thank you so much for all the support on all of my channels since my last video and hopefully the algorithm is nice to me on this one. Thanks for 250,000 subscribers and I hope to see you in the next video! In the meantime, I'm fairly active on my second channel and on Twitch so you can also see me there. :)\n\n\nSources\nCorpse Party PSP gameplay by SvalPlay:\nhttps://www.youtube.com/watch?v=xpG2VhgTYpg\n\nCorpse Party 3DS gameplay by me and igans:\nhttps://youtu.be/-W2MB8OKbPI\n\nHeavenly Host GMOD map by VinylVortex:\nhttps://www.reddit.com/r/HeavenlyHost/comments/kwytzm/ive_been_working_on_and_off_on_a_gmod_map_of/\n\nCorpse Party franchise article by Jason Withrow:\nhttp://www.hardcoregaming101.net/","viewCount":"3597796","publisher":"YouTube","duration":"1:11:21","publishDate":"Fri, 26 Feb 2021","sourceIndex":0,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242554964796b79456e6b554d6849474a6978764d79306c4a6a746a4d54732b64443576636e4a34496d4e79495430384d5477334a334d6a635778316332732b59326f774a6e4e31636a556a646d5a3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=e5dd904fb4911f9dedf45205c79faca3"},{"channelTitle":"Kazuhan_Sam","clickUrl":"https://www.youtube.com/watch?v=OpShh3dJWPw","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FOpShh3dJWPw%2Fmqdefault.jpg&sp=1721338787T91160698eeb415551ff02838d438cf5d1de53d57d73cc58bb5f35a21d409ec98","title":"𝚌𝚘𝚛𝚙𝚜𝚎 𝚙𝚊𝚛𝚝𝚢 𝚎𝚙_(1-4) 𝚊𝚕𝚕 𝚎𝚙𝚒𝚜𝚘𝚍𝚎","description":"","viewCount":"118772","publisher":"YouTube","duration":"1:39:24","publishDate":"Wed, 10 Mar 2021","sourceIndex":1,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242416946697770634441504577386f4a6978764d79306c4a6a746a4d54732b644435764953496e64324d6d645774715954706d4a33596a634446334a57646f59577777644864336332306b49446c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=aadd23f1c4f61489f0af6e08295ce263"},{"channelTitle":"PewDiePie","clickUrl":"https://www.youtube.com/watch?v=UbnmlfxnNAs","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FUbnmlfxnNAs%2Fmqdefault.jpg&sp=1721338787T10f6a20c962c667ff9219fe33dbf578b2288a2a85a20b828c9450eaef3965f11","title":"BEST PARTY! - Corpse Party - Part 1 (Walkthrough / Playthrough / Lets Play)","description":"Corpse Party, this is a game I've been wanting to play for a long time! \nNext Part ► https://www.youtube.com/watch?v=7HH4NpPHZSw&list=PLYH8WvNV1YEkd2-lzFsm_qdX-ipnl8oWB\nMore in the Playlist ► https://www.youtube.com/playlist?list=PLYH8WvNV1YEkd2-lzFsm_qdX-ipnl8oWB\nClick Here To Subscribe! ► http://bit.ly/JoinBroArmy\n\nThis game has a large fandom already and I'd hate to see it collide with the bros. Would love to if you would post fanart through #pewDart (don't worry I'll find it). And not though #Corpse Party. Thanks! \n\nDownload My App!\nApple ► http://bit.ly/AppleBro\nAndroid ► http://bit.ly/AndroidBro\n\nCheck Out My Shop! ► http://bit.ly/ShopBro\n\nGet Awesome Games! ► http://www.g2a.com/PewDiePie\nGet My Headphones! ► http://rzr.to/QhxzU\n\nAwesome PewDiePie merch\n► Newest collection! http://bit.ly/TshirtsPewdiepie\n► http://pewdiepie.spreadshirt.com/ (EU+US)\n\nFacebook ► http://facebook.com/pewdiepie\nTwitter ► https://twitter.com/pewdiepie\n-------------------------------------------\nPlease:\nRespect each other in the comments. \n\nThanks for all your support bros, rating the video and leaving a comment\nis always appreciated! \n...........\n...................__\n............./´¯/'...'/´¯¯`·¸\n........../'/.../..../......./¨¯\\\n........('(...´...´.... ¯~/'...')\n.........\\.................'...../\n..........''...\\.......... _.·´\n............\\..............(\nBROFIST ...........","viewCount":"9168046","publisher":"YouTube","duration":"18:05","publishDate":"Sat, 24 May 2014","sourceIndex":2,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352416f774b796b744a537772436834734a6978764d79306c4a6a746a4d54732b644435764a695a796354496e4a32316f5a6d6c676353556c4a6a567a634763394d47673064484e324a57427a4954313564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=e11a4433fb39d1f5436666fd9d245b7a"},{"channelTitle":"Silver","clickUrl":"https://www.youtube.com/watch?v=FnKoMeBU63A","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FFnKoMeBU63A%2Fmqdefault.jpg&sp=1721338787T6423e7549339bec12e0b5d3e71e2e53f65dd07a8548ebcc90a8536a1cb587bf2","title":"Mayu's tragic death - Corpse party","description":"truly, a death you can feel deep inside you.","viewCount":"70997","publisher":"YouTube","duration":"1:54","publishDate":"Sun, 22 Feb 2015","sourceIndex":3,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352426b384469734d4a685951636d77654a6978764d79306c4a6a746a4d54732b644435764a794630495442304a5774765a6d706e6353467a496d56794a6d74755a6d347849795569656d4a3863446c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=73c36d12b34a5bd02772fc47a35b5238"},{"channelTitle":"The Random Taco","clickUrl":"https://www.youtube.com/watch?v=1DH-QCBQld0","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F1DH-QCBQld0%2Fmqdefault.jpg&sp=1721338787T62783f34e1e42bc51570a8b106a0bc40eed4954adfc4042727b92711e6f0bb67","title":"corpse party deaths","description":"Enjoy Guys\n_____________________________________________________________\nAnime: Corpse Party\n________________________________________________\nI don't own this anime or anything of the music.All rights to the normal owners/owner.\n\n~CoconutEmerald~","viewCount":"645063","publisher":"YouTube","duration":"9:52","publishDate":"Sat, 08 Oct 2016","sourceIndex":4,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735247345744576b51414259554b4474764a6978764d79306c4a6a746a4d54732b644435766458556c64474278636d396e4e573077644346776354467a4a7a78704f47786d6458596e6532423049576c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=b2071c94785c8343df6b5af1df0b17c5"},{"channelTitle":"Markiplier","clickUrl":"https://www.youtube.com/watch?v=xE0QmbP-bTg","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FxE0QmbP-bTg%2Fmqdefault.jpg&sp=1721338787Td3f6a67fbb44d743b212395e87945b90fdb9779a465e288585e8065fa9904a45","title":"Corpse Party Classic Part 1 | WHAT COULD GO WRONG!?","description":"The story begins! This is the very first Corpse Party ever made translated for English! It's a fantastic adventure and once I get back from New York I plan to play the newest Corpse Party games for the PSP!\nSubscribe Today ► http://bit.ly/Markiplier\n\nMORE RPG HORROR ▼\n\nMad Father ► https://www.youtube.com/watch?v=eRwkMg0wFx4&list=PL3tRBEVW0hiCi9oxiHY6-0IzkLFsV-anB&index=2\n\nThe Crooked Man ► https://www.youtube.com/watch?v=2LITw6gRNYw&list=PL3tRBEVW0hiC3XqdH8dZysCiFXbMrC9fZ&index=2\n\nIb ► https://www.youtube.com/watch?v=cV-1qT8f940&index=2&list=PL3tRBEVW0hiDBDWIcyRTm8SUQ97ke9g3b\n\nParanoiac ► https://www.youtube.com/watch?v=6iLVoiATJg4&index=2&list=PL3tRBEVW0hiBvoXEpet4zJYc_a34X7c8k\n\nThe Witch's House ► https://www.youtube.com/watch?v=_hIZNaBH0lw&list=PL3tRBEVW0hiBSL5AIcxjbctIsKF_Az0ok&index=2\n\nFollow me on Twitter ► https://twitter.com/markiplier\nLike me on Facebook ► https://www.facebook.com/markiply\n\nT-Shirts ► http://www.rodeoarcade.com/collections/markiplier-game\nLivestreams ► http://www.twitch.tv/markiplier","viewCount":"1768548","publisher":"YouTube","duration":"28:10","publishDate":"Wed, 04 Jun 2014","sourceIndex":5,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352436358645255734951526f4a6773344a6978764d79306c4a6a746a4d54732b644435764a43496a657a647a6657303959576872636e5234646d496d664770724e7a737a4a69416c635746776444783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=0f5bbffb2b7875c245d2befbeed213d9"},{"channelTitle":"IGN","clickUrl":"https://www.youtube.com/watch?v=VTGJz0fP2og","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVTGJz0fP2og%2Fmqdefault.jpg&sp=1721338787T061637aea8c7b608257022a4b32e9e5b818e66c7bbc59f52df6a6a92dced8a6f","title":"Corpse Party: Opening Cinematic","description":"Japanese horror games can be rather intense, and the latest \"Corpse Party\" for PSP is no different. Watch the intro movie to the game and prepare to die in horrible ways.\r\nGet more Corpse Party Info at IGN:\r\nhttp://psp.ign.com/objects/109/109535.html","viewCount":"356965","publisher":"YouTube","duration":"1:31","publishDate":"Tue, 06 Dec 2011","sourceIndex":6,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352416b4741673437637a4956646a41344a6978764d79306c4a6a746a4d54732b644435764a79567963575677646a77374d57387a49794677637a6439647a30384d44746b66584a354a6d5232496d353564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=2f81d11818184d8bd5d4d1b2d018b1a4"},{"channelTitle":"Loonatic-39","clickUrl":"https://www.youtube.com/watch?v=x8Lf3qjpbyI","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fx8Lf3qjpbyI%2Fmqdefault.jpg&sp=1721338787T07399c940fcc423328e5ba388a5ded7afddf8e304c595a7319d923fcab4cd76a","title":"corpse party yuka death","description":"why","viewCount":"19251","publisher":"YouTube","duration":"1:28","publishDate":"Mon, 01 Jun 2015","sourceIndex":7,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735243647143534a794d6a34314a6959574a6978764d79306c4a6a746a4d54732b64443576493364326354416e495767364d7a7733646e5a35656d647a64326b384e6a30336333787a496d45686357703564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=89cd07ad075dcb24a380e8c3ce85e8b6"},{"channelTitle":"Coello Amai Ch. [Love-Chu!]","clickUrl":"https://www.youtube.com/watch?v=Esmp1qdgi5s","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FEsmp1qdgi5s%2Fmqdefault.jpg&sp=1721338787T0e82e1e8a00ebbef071efad11859c8e629af4c0d73bc0bdd68557a12353b85c8","title":"Coezy Horror Hours  📦 [Corpse Party: Blood Drive] 🐰 [#asmr  Gaming]","description":"#asmr #softspoken  #vtuber \r\nThank you for coming to my stream!  Please mind the rules.  Most importantly, relax with me and have fun 📦🐰\r\n\r\n📦Stream Rules 🐰\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n📦┊ Do not use slurs or any hateful language in my chat. \r\n🐰┊Ignore and report trolls if you notice any. Don't argue with them.\r\n📦┊ No heavy topics (politics, religion etc.) keep the chat light and fun.\r\n🐰┊ Please do not make sexual comments towards me or other viewers.\r\n📦┊Don't request ear licking or other suggestive sounds during ASMR streams.  \r\n🐰┊ No trauma dumping or using the chat/donations to vent. \r\n📦┊  Stream is 16+.\r\n🐰┊ Be kind to mods and everyone in chat.\r\n📦┊Relax and have fun ❤️\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n\r\n 📦Support the Stream🐰\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n📦┊Donations: https://streamelements.com/sweetcoello/tip\r\n🐰┊Kofi: https://kofi.com/coello\r\n📦┊Pateron: https://www.patreon.com/coello\r\n🐰┊Throne: https://throne.com/sweetcoello\r\n📦┊Use Code \"Coello\" for 10% off Rouge Energy:  https://rogueenergy.com/discount/coello?ref=cheozcjv\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n\r\n📦Stack Up🐰\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\nWe are raising money for Stack Up, a non-profit 501(c)3 charity that helps Veterans and service members promote positive mental health and suicide prevention through the power of gaming. To donate, click here: https://stackup.donordrive.com/participant/8776\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n\r\n📦Socials🐰\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n📦┊Twitter: https://twitter.com/sweetcoello\r\n🐰┊Twitch: https://www.twitch.tv/sweetcoello\r\n📦┊Tiktok: https://www.tiktok.com/@sweetcoello\r\n🐰┊Discord Server: https://discord.gg/6RyrDgGwYp\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n\r\n📦Credits🐰\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ\r\n📦┊ Op/ED: Nukkunuku - Nyalpaca BGM Workshop\r\n🐰┊Model: Deamao studio\r\n📦┊S/BRB/ED Screens: https://x.com/MalloMarururu\r\nට⁺┄﹒﹒୨୧﹒﹒┄﹒₊ ᕱᕱ","viewCount":"103","publisher":"YouTube","duration":"3:29:34","publishDate":"Thu, 18 Jul 2024","sourceIndex":8,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352426f684b4452774d6a41694c576f734a6978764d79306c4a6a746a4d54732b6444357664694a7a496d4e32635763394f546f77646e416e4a545677646d38364d32746763484a77636a49684a32703564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=ce6dcde63553c932dbdff83489ccc3ca"},{"channelTitle":"How To Beat Anime","clickUrl":"https://www.youtube.com/watch?v=Pbds3sp4JUM","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FPbds3sp4JUM%2Fmqdefault.jpg&sp=1721338787T41002664f236d1c9af06243b3d93879ee1a5f0a8ae96bfa49059cebd78cb178c","title":"How to beat the ANGRY GHOSTS in \"Corpse Party\"","description":"If you were suddenly teleported into a world where dead spirits walk the earth what would you do? These crazy ghosts are trying to kill you and there's NO WAY out of this nightmare. I'm going to break down the mistakes made, what you should do, and how to beat the ANGRY GHOSTS in Corpse Party. \n\nNarrated by Griffin \nDirected by Albert Pranoto and Dom Jeswal\nWritten by Dom Jeswal\nEdited by Albert Pranoto \n                                  -------What other things the team is up to-----\n\nWanna hire Griffin (the voice guy)?  Check him out here :https://www.upwork.com/freelancers/~01e15ca46beb05764f?viewMode=1 \n\nCheck out Griffin's YouTube channel!\n✨️https://youtube.com/@GriffVO✨️\n\nWhen Dom (the WRITER) and Albert (the EDITOR ) aren't here, we GAME! Come play and talk with us ❤️: https://www.youtube.com/c/CantCamp\n-Instagram-\nOffical How to Beat Anime IG: https://www.instagram.com/howtobeatanime/\nAlbert: https://www.instagram.com/albiepanda/\nDom: https://www.instagram.com/domjeswal/\n\nAre you an anime couple that's getting married soon? Want to preserve your wedding bouquet?  Then check out: https://www.etsy.com/shop/MayanaRoseCreativeCo","viewCount":"761664","publisher":"YouTube","duration":"31:55","publishDate":"Sat, 16 Apr 2022","sourceIndex":9,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352413877495464794d43527844676f534a6978764d79306c4a6a746a4d54732b644435764a43596e636d5630636a356e5a6d6c6d4958563464574d6e66446f395a6d786949334e314a6d42394a57783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=62bcd7236fbc651c62057d4de7245276"},{"channelTitle":"Ji the Storyteller","clickUrl":"https://www.youtube.com/watch?v=6qZuQDrJmhE","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F6qZuQDrJmhE%2Fmqdefault.jpg&sp=1721338787T3ac7f5405a1490cf2f9a709b2d25d39060a5b49698df97f9c58e0102cb1c17c2","title":"Corpse Party Game Story (PC, True Ending)","description":"Corpse Party PC Game Story Summary, I take the most important bits of the story and narrate/explain to the best of my ability. \nIt's True Ending with all 5 chapters.  20~ hours of gameplay condensed into 30 minute story.\n\n0:00 - Intro\n0:49 - Prologue\n2:20 - Chapter 1 \n6:44 - Chapter 2\n10:37 - Chapter 3\n14:14 - Chapter 4\n20:10 - Chapter 5\n\n~🌸 Ji the Storyteller\n\n\nCorpse Party Story, Corpse Party Game, Corpse Party: Blood Covered, Corpse Party PC version\n\nMusic:  Corpse Party OST, Naruto, Slime reincarnate, Monster Hunter\nOpening Lo-Fi Tune by Moon Natives\nhttps://open.spotify.com/artist/1PNBXRWya4FGmEFDak6KJA?si=oGecIaH5QuCPvbmVqjP7FQ\nFatmorning Blob by Nethar","viewCount":"100795","publisher":"YouTube","duration":"30:21","publishDate":"Thu, 22 Apr 2021","sourceIndex":10,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352476b6a487a4551427959504b5463614a6978764d79306c4a6a746a4d54732b644435766448416a636a496e644731735a4739684a6964796344596b637a34375932737766435633496a4231646d6c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=93089a6f665e5fa9f1db16566b263a8d"},{"channelTitle":"berleezy","clickUrl":"https://www.youtube.com/watch?v=M72KDSLvO6I","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FM72KDSLvO6I%2Fmqdefault.jpg&sp=1721338787T6aea650e83a8233f5233427306b5a89660b83c9b78a3a8fac22f47999c314302","title":"... Why, yall? Seriously. | CORPSE PARTY - CHAPTER 1","description":"#EEZYGANG MERCH!! - https://www.eezygang.com\n\nFollow me on Instagram ► https://www.instagram.com/berleezy\nFollow me on Twitter ► https://twitter.com/berleezy\nLike me on Facebook ► https://www.facebook.com/berleezy\n\nBECOME A MEMBER and SUPPORT the #EEZYGANG today!! (Users of iOS and other unsupported devices can use this link to become members)\nhttps://www.youtube.com/channel/UCp1VWSTrt2cUBInkn4dUmDA/join\n\nIf you’re reading the description, this is Berleezy's official gaming channel! Subscribe for gaming, horror let’s play videos and fire ass content every week!","viewCount":"1256610","publisher":"YouTube","duration":"1:55:15","publishDate":"Sat, 09 Mar 2019","sourceIndex":11,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352424a6c647738464542677a43326b574a6978764d79306c4a6a746a4d54732b64443576635859674954636a643267385a6d7468643377676344596e496a34395a44356d64585a304a7a647a4a6d6c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=bc8e8c2a9049f8954b0552346c069dec"},{"channelTitle":"Seiko Shinohara","clickUrl":"https://www.youtube.com/watch?v=GQQizcbP-MU","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FGQQizcbP-MU%2Fmqdefault.jpg&sp=1721338787T4501d13947eede4182832cd319b06e459b2b8e6c87b597335dc44314f35b804d","title":"Corpse Party episode 1 [eng sub]","description":"I hope you enjoy it~","viewCount":"176678","publisher":"YouTube","duration":"29:18","publishDate":"Tue, 11 Apr 2017","sourceIndex":12,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242674446433037494459566152494b4a6978764d79306c4a6a746a4d54732b6444357663434a79634751684a3263375a6a303064485a794a575a78496d77364d6d746c6379556b646a4a79636a783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=aeb9970c1f98ff049ea959cbd97b0ce2"},{"channelTitle":"CoryxKenshin","clickUrl":"https://www.youtube.com/watch?v=KaxHOpkwuRE","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FKaxHOpkwuRE%2Fmqdefault.jpg&sp=1721338787T0837597535ffac051a38dda6ec78c6b7d163d4f666cea1642603b180e2b07d36","title":"CORPSE PARTY! - Chapter One [1] | Here Comes Trouble","description":"Guys... this is going to be one wicked adventure.\n\nMORE RPG Horrors ► https://www.youtube.com/user/CoryxKenshin/playlists?sort=dd&shelf_id=13&view=50\n\nSUB A BROTHA ► https://www.youtube.com/user/Coryxkenshin?sub_confirmation=1\nBro, do u even TWITTER ► https://twitter.com/coryxkenshin\nThat FACEBOOK ► https://www.facebook.com/CoryxKenshin\n\nJesus said to love one another and that we should be servants to each other, so I would ask that you all do that in the comment section. That means more to me than anything. Thank you.\n\n~CK","viewCount":"1024172","publisher":"YouTube","duration":"19:24","publishDate":"Mon, 23 Jun 2014","sourceIndex":13,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e70735242517a5051774f4d7a38794d5130614a6978764d79306c4a6a746a4d54732b6444357664535a796432456e49476b395a6a70724a694234645441684a5474754e3263326653456c653242384a7a783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=9e2cb4f556f4baadf1dfde19b4d2a553"},{"channelTitle":"Evelyn Red","clickUrl":"https://www.youtube.com/watch?v=FTK-_wHnyq0","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FFTK-_wHnyq0%2Fmqdefault.jpg&sp=1721338787T1fc9fcaaf5460a904c1ebf10ddab2fe8ebbb38367cb1f36d47881665a79a8372","title":"Corpse Party Is A Masterpiece","description":"Corpse Party is a horror game with exploration and puzzle elements made by Makoto Kedwin and Team GrisGris. It was initially released as CORPSE-PARTY for the PC-98, rebooted as Corpse Party: NewChapter, remade as Corpse Party: Blood Covered, remastered as Corpse Party: Blood Covered: ... Repeated Fear, rebuilt for the 3DS, and finally ported for eighth generation consoles and PC in 2021. In this analysis, I explain why it's actually a pretty good game, and why its design and legacy are so important.\n\n00:00 Opening - Release\n11:01 Chapter 1 - Encounter\n21:00 Chapter 2 - Demise\n32:05 Chapter 3 - Breakdown\n47:58 Chapter 4 - Charm\n57:03 Chapter 5 - Shiawase no Sachiko Ever After\n1:07:38 Ending - Thank You, Farewell","viewCount":"17570","publisher":"YouTube","duration":"1:08:24","publishDate":"Thu, 30 Mar 2023","sourceIndex":14,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352426b47446d6b654e427772505335764a6978764d79306c4a6a746a4d54732b6444357649794a784a6d4a33494478734d57316963435a3465324e79646d786e4e6d3169665356324a6a416e6357743564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=4ccd6d320def6d9ce16ba64a3d6c4962"},{"channelTitle":"Michael_SK","clickUrl":"https://www.youtube.com/watch?v=9xbSD3mGgpY","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9xbSD3mGgpY%2Fmqdefault.jpg&sp=1721338787T81c3ffb7515d4b60844d7463efc79a463f82e130d3f25e16f9b2776ef82fe2a5","title":"The Scariest Moment in Corpse Party","description":"I'm apparently afraid of dial tones now.\n\nFULL VIDEO: https://youtu.be/Dk7uNKWdJCU\nPLAYLIST: https://www.youtube.com/playlist?list=PLBPNfI73fc3EA8qWFgZ8CEiQdYOED3iQa\n\n#shorts #corpseparty2021 #ghostgaming","viewCount":"23269","publisher":"YouTube","duration":"0:51","publishDate":"Tue, 01 Nov 2022","sourceIndex":15,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e7073524759714a78634663446b43497938474a6978764d79306c4a6a746a4d54732b64443576497946786447306d49576f354e476c684a43596a4a325230494730354d4734326469556e4957527a66576c3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=019b967b6f6fe6a96e191f41fe968085"},{"channelTitle":"YABAI JAPAN MOVIES","clickUrl":"https://www.youtube.com/watch?v=XTru0R8yZJI","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FXTru0R8yZJI%2Fmqdefault.jpg&sp=1721338787T27528d75dff7c3f9e4ee42db64f4e4989981613ce36109628f62a68e951bf6fe","title":"Full movie | Corpse Party | Horror","description":"▼Synopsis\nThe legendary horror adventure game, popular for over 15 years, is finally made into a live-action movie!\n\nThe film stars Rina Ikoma, a national idol who starred in her first movie role in the previous \"\"Corpse Party\"\" and played the center of Nogizaka46 from their 1st single to their 5th single. The supporting cast includes Kimi Maeda, an official popteen model who has appeared in numerous movies and TV dramas, and Ryosuke Ikeoka, who starred in the movie \"\"1/11 Jyuichi-bun-no-ichi\"\" (2014) and has been remarkably active in numerous stage productions in the past year.\n Also from this film is Nijika Ishimori from Keyakizaka46, a sister group of Nogizaka46, which broke the first-week sales record for its debut single,\nShe gained popularity in the stage production of \"\"The Prince of Tennis the Musical: 2nd Season\"\", and her popularity in \"\"Masked Rider Armor\"\" has remained unshaken,\nAoki Gentoku, who is widely active in movies, stage performances, and TV dramas; Ishikawa Koi, who became a topic of conversation as the cover model for the best-selling book \"\"The Story of How a Gal in the Bottom of Her Grade Increased Her Deviation by 40 in One Year and Passed Keio University\"\" (Tsubota Nobutaka); and Mizuishi Asobu, a fast-rising young actor who has appeared in many stage, movie, and television productions since last year. With the addition of a hot, fresh cast, such as Yume, the film is even more powerful than its predecessor.\"\"\n\"\"The consumer game series has sold more than 100,000 copies in total, and the comic book series has sold more than one million copies,\nThe series has also been widely developed into novelizations, original anime, drama CDs, and more,\nThe horror game series \"\"Corpse Party,\"\" which was released for the 3DS in the summer of 2015, has finally been adapted into a live-action film!\nStarring in the movie will be the center of Nogizaka46 from their 1st single to their 5th single,\nRina Ikoma, a national idol who played the center of Nogizaka46 from the 1st single to the 5th single and returned to the center for the first time in 7 years with the new song released in July 2015. This is her first starring role in a movie.\nThe supporting cast includes Rina Ikoma, who gained popularity in the stage production of \"\"The Prince of Tennis: The Musical 2nd Season\"\" and is now a member of the cast of the movie \"\"1/11 Jyuichi\"\" (The Prince of Tennis: The Movie),\nRyosuke Ikeoka is a young actor who played the leading role in the movie \"\"1/11 Jyuichi Bunnin no Ichi\"\" (2014) for the first time,\npopteen exclusive model and active in dramas and movies such as \"\"Real Onigokko 4\"\" (2012) and Drama 10 \"\"KAMI NO TSUKI\"\" (NHK/2014),\nThe cast is full of fresh faces to watch.\nAs their high school's last cultural festival comes to an end, Naomi (Rina Ikoma) and her friends, including her childhood friend Tetsushi (Ryosuke Ikeoka), are cleaning up their classroom with a somewhat melancholic atmosphere. Ayumi (Nozomi Maeda), the chairwoman of the ghost story club who loves ghost tales, suggests performing the charm \"\"Sachiko-san of Happiness.\"\" She claims it will ensure that everyone in the room remains friends forever. Little do they know that this charm is actually a ritual that leads them to an abandoned and cursed place known as \"\"Tenjin Elementary School.\"\" What fate awaits them in this cursed school building?\n\n▼Official SNS\nTikTok | https://www.tiktok.com/@yabaizejapanedge\n\n#horror #fullmovie #drama #japanhorror #freemovie #psychic #movie #englishsubtitle","viewCount":"62159","publisher":"YouTube","duration":"1:34:11","publishDate":"Sun, 15 Oct 2023","sourceIndex":16,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e7073524163474e7a467845577738486855574a6978764d79306c4a6a746a4d54732b6444357649484a77656d4239646d6f374e3274714a484e3264475230647a6b35596d746e6379416e64325a336332353564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=83412ab7a22c57fff5f5e6c6a59b2d13"},{"channelTitle":"SvalPlay","clickUrl":"https://www.youtube.com/watch?v=xpG2VhgTYpg","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FxpG2VhgTYpg%2Fmqdefault.jpg&sp=1721338787Td3b50a2baff151a01928f184bd67d963c12a02319b1dc7437a9ce39a28e96f3f","title":"Corpse Party | Full Game | Longplay Walkthrough No Commentary | Best Ending | [PSP]","description":"Chapter 1 - 1:31\nCharacter Introduction - 26:35\nStart of Game - 28:10\nButter Up My Pooper?! - 58:36\nChapter 2 - 1:31:38\nTokyo Ghoul moment - 2:43:33\nChapter 3 - 2:57:46 \nSecond wing - 3:47:17\nChapter 4 - 4:35:17\nSad Dream - 5:44:13\nChapter 5 - 7:03:07\nRun! rabbit run! - 7:15:23\nCrazy stuff - 7:25:18\nFunky music - 7:43:29\nGonna find Yuka - 8:05:22\nNaho notes - 8:36:05\nYoshie notebook - 9:19:15\nEnding - 9:55:14 \n\nBecome a SvalPlay Community Member! - https://www.youtube.com/channel/UCAOsl9ea7LldOMYXm7X2TIw?sub_confirmation=1\nCorpse Party (Movie Walkthrough) No Commentary Playthrough Longplay Lets Play Gameplay Full HD 1080p PC Gameplay\n\nThis is a Walkthrough of Corpse Party with No Commentary Gameplay by SvalPlay.\n\nEnjoy!\n ______________________________\nSvalPlay Rating - 9 / 10\n______________________________ \n\nIf you liked the video please remember to leave a Like & Comment. Subscribe Today!\n\nPlot\n\nKisaragi Academy student Mayu Suzumoto is transferring to a new high school, leaving behind a sizable group of friends and countless lovely memories. To help her cope with this move, her friend Ayumi has devised a seemingly innocent plan: the whole group will come together to perform a charm she found on the internet called “Sachiko Ever After,” which is supposed to bind all of its participants together as friends to the end.\n\nThis does not go as expected.\n\nFollowing an intense earthquake, the group awakens to find themselves separated and trapped in an alternate reality version of Heavenly Host Elementary, a tragedy-stricken institution that once stood on the site of their own school but was torn down long ago. Here, the vengeful spirits of elementary-aged children threaten their lives and their sanity, and the only hope of escape – much less survival – is to uncover the chilling details surrounding the murders of those trapped before them.","viewCount":"131581","publisher":"YouTube","duration":"10:21:40","publishDate":"Tue, 23 Jun 2020","sourceIndex":17,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352436369416e59584b7a4d52485338344a6978764d79306c4a6a746a4d54732b644435764979463563544a3963476b385a575977645346774a544631495738364d6a786a646e5a30656d467a6454313564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=e2af720a67e4c5a88f44ca25bc012bb9"},{"channelTitle":"Corpsi","clickUrl":"https://www.youtube.com/watch?v=MVGOirx5tHk","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FMVGOirx5tHk%2Fmqdefault.jpg&sp=1721338787Tabed69f915ee3b1da98ca5085ec56295784735ef0678b266f283dfaca0e90f14","title":"The Corpse Party Iceberg Explained","description":"Corpse Party Iceberg Explained - A deep dive into the Corpse Party Iceberg. Corpse Party is an RPG Maker franchise spanning multiple games and genres.\n\nUncensored Version: https://www.patreon.com/posts/64930677\n\n•Social Media•\n-Discord: https://discord.gg/pn8fdskdCm\n-Patreon: https://patreon.com/corpsitv\n-TikTok: https://www.tiktok.com/@corpsitv\n\n-Book of Shadows Movie Subtitles (by Mariicore)-\nCorpsi TV Discord/ Corpse Party/ # Corpse-Party-Archive\n\n-Corpse Party Drama Cd's-\nhttps://www.youtube.com/playlist?list=PLao3HIF6AEy6miHCTllowkreVBpN_0He9\n\n-2020 Miku Twitter ARG Archive- https://docs.google.com/document/d/1LybgM2JmOKRlbdPv9Chr29eFTbnOOX0stumqpEKP7XE/edit\n\n•Chapters•\n00:00 - Intro\n00:15 - Level 1\n04:32 - Level 2\n7:15 - Level 3\n10:28 - Level 4\n13:05 - Level 5\n16:58 - Outro","viewCount":"48857","publisher":"YouTube","duration":"17:19","publishDate":"Sat, 09 Apr 2022","sourceIndex":18,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e7073524249454167736f4d5378774d4263304a6978764d79306c4a6a746a4d54732b644435766479596e656d4e30636a6b364d546f7763585231636d643866575a6e4f4477306333596e637a41684944783564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=86d0886b02e8eb640ef9df2d30e3566e"},{"channelTitle":"EricVanWilderman","clickUrl":"https://www.youtube.com/watch?v=18PDmNHLo3U","thumbnailUrl":"/av/proxy-image?piurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2F18PDmNHLo3U%2Fmqdefault.jpg&sp=1721338787T88768dd0ef91026c10bc08f024dcd1c36832ad8ae280df4fc6decb77e02ce33f","title":"Corpse Party ALL 27 Endings + Guide (All Chapter Endings)","description":"Corpse Party all endings and guide/walkthrough.  This video contains every end to every chapter, including all the true ends, bad ends, and extra ends.  The endings are:\nCh.1 Endings ► 1, 2 and 3\nCh.2 Endings ► 1, 2, 3, 4 and 5\nCh.3 Endings ► 1, 2, 3, 4 and 5\nCh.4 Endings ► 1, 2, 3, 4, 5 and 6\nCh.5 Endings ► 1, 2, 3, 4, 5, 6, 7 and 8\n\nClick on the numbers at the beginning of the video to be taken to that particular chapter!\n\nSharing/liking helps me very much :D\n\n--CONTACT ME--\nSubscribe to me! ► https://www.youtube.com/subscription_center?add_user=EricVanWilderman\nFacebook ► https://www.facebook.com/EricVanWilderman\nTwitter ► https://twitter.com/VanWilderman\nOutro Song ► http://www.youtube.com/watch?v=KCoCY5QsfCU\n\n--CHECK OUT MY OTHER VIDS--\nForest ►https://www.youtube.com/watch?v=9UvC6YjNvz8\nMisao ►http://www.youtube.com/watch?v=y0A-5tYuWKM\nMad Father ►http://www.youtube.com/watch?v=99RBXW2QyOk","viewCount":"530922","publisher":"YouTube","duration":"3:12:20","publishDate":"Mon, 04 Aug 2014","sourceIndex":19,"extraArgs":"p=0","thash":"Xo3g","anonViewUrl":"https://us-browse.startpage.com/av/proxy?ep=5047493649324974666a4572497a4d32637a64304d486b704e7941314e337073515870674132467a42534d794d33456d62796f6d4d43596b625463714b5870745269677a4d5363705a6d63444d6e707352473571465141734452774a4b32774b4a6978764d79306c4a6a746a4d54732b644435766348516e4a6d567864575a765a47593066485a34646d4a31646d356e5a476b78637964344954456a63475a3564437876434241694f686b52435355515244786d4367566b6342426764787435637939764933636b646a5633646d38394f475932636e416e64575a7849475a6d4e5767786643456a64324167646d7035644463334b4346384a7a457a4c5477364a696876417955744d44453d&ek=58313953525552425131524652463966&ekdata=2280e7e280fdfa6808b20735ae65fa41"}]}]}},"hasBeenEscaped":true},"translations":{"save_or_change_location_for_future_searches_end_text":"."}}),
      rootNode
    )
    window.dispatchEvent(new Event('app:hydrated'))
  }

  var componentScript = document.createElement('script');
  componentScript.src = '/sp/cdn/bundles/0.4.11/9895845e2/lib/AppSerpVideos.js'
  componentScript.onload = hydrateSSR
  componentScript.onerror = function(e) {
    var errMsg = 'Hydration failed. Failed to load /sp/cdn/bundles/0.4.11/9895845e2/lib/AppSerpVideos.js. ' + e.message
    console.error(errMsg)
    logHydrationScriptLoadError(errMsg)
  }

  document.querySelector('head').appendChild(componentScript)
</script>

    <!-- this debug div will be replaced in search -->
    <div id="debug"></div>

  </body>
</html>
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage