SCP-6424 – Міжзоряний пророк й Облудна планета
рейтинг: +1+x

:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
Об'єкт №: 6424
рівень2
Клас зберігання:
евклід
Вторинний клас:
{$secondary-class}
Клас порушення:
влам
Клас ризику:
попередження

Особливі умови здержування:
SCP-6424 має зберігатися в стандартній камері зберігання в Зоні 91. За об'єктом ведеться постійне спостереження на випадок появи нових передач. За виявлення передачі, дані повинні бути розшифровані та збережені, після чого персонал повинен повідомити про події керівника проєкту1.

Опис:
SCP-6424 – Космічний зонд невідомого походження віком не менше 4000 років. У зв'язку з обставинами виявлення об'єкта, в робочому стані залишилися тільки його комунікаційна тарілка та модуль зберігання даних. Принцип роботи цих пристроїв наразі невідомий і вважається аномальним, проте вченим Фонду вдалося частково відтворити використану технологію та зібрати дані з модуля.

amazon%20crash%20site.jpg

Місце падіння аномалії

З модуля було зібрано 6 фотографій, тут позначених як SCP-6424-1…-6. На даних знімках зображено порожній космос, невідоме небесне тіло та SCP-6424. Крім цього, в метаданих була збережена відстань до фотографованого об'єкта.2

Оновлено 01.05.2003:
З модуля було успішно вилучено схему SCP-6424. Для отримання доступу до неї отримайте дозвіл від поточного керівника проєкту.

Додаток А, Виявлення:
22 Березня 2001 року SCP-6424 був помічений на зворотному боці Місяця. Подальше вивчення підтвердило, що зонд не належить ні НАСА, ні будь-якій групі особливого інтересу. Через чотири дні після цього SCP-6424 увійшов в атмосферу Землі та впав у дощові ліси Амазонки, після чого на місце зіткнення були висунуті оперативники Фонду для захоплення об'єкта та встановлення захисного периметру. За результатами 2-х годинного аналізу на місці було встановлено, що SCP-6424 не становить небезпеки довкіллю. Об'єкт був завантажений в вантажівку та відвезений в Зону 91. На загал була поширена легенда про лісову пожежу, спричинену падінням метеорита.

Додаток B, Знімки SCP-6424 -1 по -6

anomaly%20image%201.jpg

SCP-6424-1


SCP-6424-1
Відстань від предмета: Відсутня
Примітка: Зображення порожнього космосу.
anomaly%20image%202.jpg

SCP-6424-2


SCP-6424-2
Відстань від предмета: 15000 км
Примітка: Невідоме небесне тіло. Його діаметр складає приблизно 3000-4500 км. Точне місцезнаходження невідоме
anomaly%20image%203%20new

SCP-6424-3


SCP-6424-3
Відстань від предмета: 15000 км
Примітка: N/A
anomaly%20image%204.jpg

SCP-6424-4


SCP-6424-4
Відстань від предмета: 14000 км
Примітка: На південному полюсі помічена маса, схожа на кінцівку.
anomaly%20image%205.jpg

SCP-6424-5


SCP-6424-5
Відстань від предмета: 17000 км
Примітка: Імовірно SCP-6424 посеред космосу.
anomaly%20image%206.jpg

SCP-6424-6


SCP-6424-6
Відстань від предмета: 16500 км
Примітка: На знімку присутні сильні пошкодження.

Додаток C, Спосіб зйомки:
Вважається, що SCP-6424 раніше мав модуль для зйомки, що підтверджується схемою об'єкта, вилученою з модуля даних через два роки після виявлення. Згідно з цією схемою, камера була встановлена на нижній частині зонда. Імовірно, у певний момент після знімання фотографій SCP-6424-1 - 4, модуль зйомки відділився від основної частини об'єкта. Причина цього невідома. Попри на це, SCP-6424 якимось чином все ще підтримував з нею зв'язок. Імовірно, на момент фотографій SCP-6424-5 та -6, камера вже перебувала поруч з або на небесному тілі, після чого відправила ці знімки зонду.

Якщо не зазначено інше, вміст цієї сторінки доступний на умовах ліцензії Creative Commons Attribution-ShareAlike 3.0 License