Existence is an anomaly

: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)); }
 
}
/*--- Motion Accessibility ---*/
@media (prefers-reduced-motion) {
    div.anom-bar-container { --timeScale: 0; }
}
 
/*-------------------------*/
 
@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)); }
}
Item#: ####
Level6
Containment Class:
esoteric
Secondary Class:
thaumiel
Disruption Class:
amida
Risk Class:
critical
Assigned Site Site Director HMCL Supervisor Research Head Assigned Task Force
SCPF-Site-0 Dr. Annetta Lang Dr. Heather Everwood Dr. Xavier Moto MTF ω-12 "Achilles' Heels"

Special Containment Procedures

Protocol Ouroboros


In order to ensure the successful prevention of cataclysmic events, Protocol Ouroboros of The Forbidden City Convention is to be enacted.

Under this procedure, any viable temporal anomaly available is to be used in order to initiate SCP-####-Δ manifestations, which are regulated through causal loops. These loops and timeline alterations allow the Foundation to perform logistically extreme operations without disrupting sociological or ecological order.

Due to the risk of a VK-Class "Axiomatic fragmentation" event produced by SCP-####-Δ, humanity must be kept in a state of relative consensus through disinformation and information suppression. Determining the nature of this consensus and how it is maintained is the primary duty of the Overseer Council as Defined within The Forbidden City Convention.

Any unique divergences from consensus are to be given Special Containment Procedures.

Information Security

The precise mathematical details of SCP-#### are to be documented and held in DEEPWELL-0. Access to the DEEPWELL-0 archive requires a set of conditions to be met.

  • Subject most of an Infohazard Resistance Index (IRI) score greater than 90
  • Subject Must have a Psionic Resistance Index (PRI) value greater than 120.
  • Subject must have a Cognitive Resistance Value (CRV) greater than 60
  • Subject must have memorized the documents of normalcy thoroughly.

If an individual that lacks proper clearance and/or the specified attributes listed above attempts to access DEEPWELL-0's contents, they will be found and terminated by task-forces.

For further details, consult the secure facility dossier for SCPF-Site-0.

The Chronicler Protocol


In order to minimize the inconsistencies in Foundation history created by primacy, a disinformation campaign is to be established to ensure belief in the existence of "retirement proposals". Reclaiming knowledge of Foundation history shall remain in extremely high priority.

Execution Protocol


If the overseer Council is cited abusing their power or misappropriating resources in any way, the ethics committee is authorized to dispatch Mobile Task Force Omega-1 ('Law's Left Hand") to execute them.

If direct execution is not viable, ethics committee personnel are authorized to provide assistance to groups of interest, including the transfer of anomalous items to enemy groups of interest in order to eliminate the overseers.

For this reason, SCPF-Site-0 has been separated from the majority of Foundation central command structures.

Description


SCP-#### is the effect of using various mathematical anomalies in conjunction with each-other.
    • _
    • SCP-1314: A memetic vector equation that allows an individual to simulate rudimentary physical systems within their own minds.
    • SCP-1714: A variation of the equations of Quantum Field Theory that allows a user to predict the formation of ontokinetic anomalies through analysis of virtual particles.
    • SCP-2477: an interpretation of Newtonian that, with sufficient resources, allows for the complete separation between an object and the outside universe.
    • SCP-3141: A statistical analysis theorem that allows the user to make ontokinetic alterations to the system being analyzed.
    • SCP-5650: A method of applying the Banach-Tarski paradox to physical reality, producing ectoentropic effects.

When these concepts are put together, the user is capable of perceiving SCP-####-א. SCP-####-א is a semi-tangible "substance" known as Hume field, or Descans. SCP-####-א's presence determines the substantiality of any concept it interacts with. This substantiality encompasses concepts of physicality, intelligibility, axiomatic validity, and cultural prominence. Phenomena at lower-level Hume levels shift to match phenomena at higher Hume levels in a similar fashion to how physical objects match abstract forms as described in Plato's theory of forms.

Physical constants within a given point in spacetime are all multiples of said points Hume value. The number of spatial and temporal dimensions an object can move through is determined by its Hume value in a similar fashion. This produces the separation between causal intervals described by 'Elementary Time travel and Causal Analysis' and other models of theoretical physics such as M-Theory.

The attributes of individual SCP-####-א particles shift in order to mimic the quantum information patterns of other particles they interact with. This can produce various causal stasis effects within areas with heightened Hume levels.

SCP-####-ת‎ is Leyland Hume, mathematician, physicist, philosopher, and namesake of the Hume Scale. SCP-####-ת is a reality-altering parahuman capable of moving between periods of time at will. SCP-####-ת is known for traveling back and forth in time to meet various scholars for assistance, and subsequently erasing their memories to minimize timeline alterations. Alongside this, Leyland has retroactively erased information from collective human memory and record in order to benefit Foundation interests.

Addendum ####-1: Planar and Extradimensional Spaces

Planes are iterations of reality that are not separated by extraspatial or extratemporal boundaries, but by an axiomatic incompatibility with each other. points in spacetime within different planes are spatially and temporally coterminous but are separated from each other by an ontological discrepancy. Essentially, they are the result of spacetime being "fragmented" by varied Hume levels.

The most prominent example of a planar distinction is [SCP-612500, a set of seven interconnected planes with a great deal of cosmogenic significance. Most other interplanar entities are pluripotent anomalies interacting with some form of afterlife.

Addendum ####-2: SCP-####-ξ and SCP-####-Δ

SCP-####-ξ is the retrocausal propagation of Hume fields, which represents the way the substantiality of concepts related to past events vary based on present circumstances. On the smallest scale, these retrocausal fields manifest as X-Tachyons.

Paradoxes produced by temporal anomalies or other paradoxical states produce axiomatically invalid states of matter, reducing Hume levels, rendering the attributes of relevant objects subjective. This process is known as SCP-####-Δ. SCP-####-Δ can have a wide range of effects on reality, including:

The foundation uses SCP-####-Δ to alter reality based on the Ouroboros Protocol, described above in the containment procedures. Bellow is a semi-comprehensive catalog of SCP's affected by this procedure.

ASCP Effect
SCP-442 The Reverse engineering of SCP-442 to produce 442i timepiece's.
SCP-711 Mass production of SCP-711 units and the successor device, the ETTR, has been established accros multiple sites.
SCP-1780 The absence of readily available documents of the Department of Temporal anomalies within baseline causality, is attributed to the nature of SCP-#### containment procedures.
SCP-1968 cell-content
SCP-2000 The application of Causality sinks into SCP-2000's construction is attributed to
SCP-2003 The manipulation of highly improbable inertial displacement is partly attributed to SCP-####-Δ
SCP-2370 Project Vonnegut was successfully put back into action by RCT-Δt
SCP-2400 All operations with the TAER have proved successful.
SCP-2692 cell-content
SCP-2943 Mass-production of XACTS units has proven to be a great success.
SCP-3176 The Forth-Xyank Concaptonator is a prominent component of reality-anchoring and multi-universal transit technology.
SCP-3264 Project Expunge was successfully applied in the creation of the Scranton-Xyank Causality Disruptor.
SCP-3455 SCP-####-Δ allows RCT-Δt personnel to remember the events of SCP-3455 events, which are typically used for retrocausal operations, as Earth's causality is greatly shifted.
SCP-3553 cell-content
SCP-3614 cell-content
SCP-3780 cell-content
SCP-3797 SCP-3797 is almost fundamentally built upon SCP-####'s influence.
SCP-4011 Foundation pre-cursors were given access to causality disruption technology, which proved to be greatly useful for the present Foundation.
SCP-4077 Causality sinks and related devices.
SCP-4101 Project Hindsight allowed for the duplication of SCP-2719 for conceptual engineering projects.
SCP-4121 SCP-####-Δ regulates interaction between SCP-4121 and SCP-5647, permitting initiation of Procedure-SCP-5647-Ω
SCP-4242 All individuals traveling through SCP-4242 gain acces to SCP-####-Δ
SCP-4417 SCP-4417 technology has been integrated into SCP-055-PT suits.
SCP-4583 The presence of compound-4583-Δ based medicine throughout history
SCP-4734 The Hermes Space-craft.
SCP-4800 cell-content
SCP-5087 cell-content