SCP-CN-2051
评分: +19+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)); }
 
}
/*--- 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)); }
}
项目编号:項目編號:2051
等级等級1
收容等级:收容等級:
safe
次要等级:次要等級:
{$secondary-class}
扰动等级:擾動等級:
dark
风险等级:風險等級:
待观察

特殊收容措施:SCP-CN-2051被收容于Site-CN-67电子信息收容中心(Electronic Information Containment Center,EICC)的常规收容箱内。同时,应保留一张SCP-CN-2051的完全拷贝光盘,并在不同的电子存储设备中保留三份该光盘的完整映像文件(.ISO),每月应对SCP-CN-2051母本中的所有文件及其所有副本中的文件进行哈希值校验,若发现哈希值与收容时记录的标准值不同,则重新刻录光盘或制作映像文件。请注意:所有对SCP-CN-2051的安装/校验/重新刻录/制作映像文件操作应在Site-CN-67电子信息收容中心五号实验室进行。严禁在其他计算机上使用SCP-CN-2051,无论其正本与副本。五号实验室应避免做他用。

描述:SCP-CN-2051是一组异常的游戏安装文件,经辨认,该组文件展开安装包后为射击游戏《反恐精英》的首发版本,展开后的文件组被标记为SCP-CN-2051-B。与其他同版本号的游戏程序相比,SCP-CN-2051-B在源码上并无异常,仅在其目录中用于储存游戏地图的文件夹中多出了一张地图。删除该地图将导致地图文件重新生成,将地图移入同版本游戏中未显异常。

一旦在SCP-CN-2051-B中启动了该地图的游戏并游玩一段时间(p=5min,σ2=9,n=25),游戏会添加一名同阵营电脑玩家(SCP-CN-2051-C)。需注意,经过与游戏开发商的核实,该版本游戏并无添加电脑玩家功能,对SCP-CN-2051-B的反编译分析也未发现与该功能相关的代码。(见附件 SCP-CN-2051-I)

在游戏中,SCP-CN-2051-C会与玩家通过语音交流,经辨认,SCP-CN-2051-C所说的句子均由单个单词录音拼接。在测试中,SCP-CN-2051-C表现出了明显的智能(其通过了图灵测试)与全知力(可获得游戏外甚至计算机外的信息,可预知未来)(见实验报告 SCP-CN-2051-α,实验报告 SCP-CN-2051-β)。

截至目前,SCP-CN-2051-C并未显示出敌意与攻击意图,也并未有类似计算机病毒经过硬件和网络向其他计算机逃逸的现象,但根据Site-CN-67电子信息收容中心决议,应严格限制对SCP-CN-2051的实验,应控制研究人员与SCP-CN-2051-C的接触,与其进行的所有对话均应记录归档。

    • _
    :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)); }
    }
    
    项目编号:項目編號:2051
    等级等級4
    收容等级:收容等級:
    euclid
    次要等级:次要等級:
    {$secondary-class}
    扰动等级:擾動等級:
    dark
    风险等级:風險等級:
    待观察

    特殊收容措施:SCP-CN-2051被收容于Site-CN-67电子信息收容中心(Electronic Information Containment Center,EICC)的常规收容箱内。同时,应保留一张SCP-CN-2051的完全拷贝光盘,并在不同的电子存储设备中保留三份该光盘的完整映像文件(.ISO),每月应对SCP-CN-2051母本中的所有文件及其所有副本中的文件进行哈希值校验,若发现哈希值与收容时记录的标准值不同,则重新刻录光盘或制作映像文件。请注意:为避免可能的现实污染,所有对SCP-CN-2051的安装/校验/重新刻录/制作映像文件操作应在Site-CN-67电子信息收容中心五号实验室进行,一旦注意到实验室内休谟指数出现未知原因的降低,应立刻发出收容失效预警并启动实验室隔间内的斯克兰顿现实稳定锚。应定期检查五号实验室墙壁隔间内的斯克兰顿现实稳定锚的工作状况。在对SCP-CN-2051-C的实验全程应确保斯克兰顿现实稳定锚的启动。严禁在其他计算机上使用SCP-CN-2051,无论其正本与副本。严禁与SCP-CN-2051-C讨论有关政治、经济、军事、大型自然灾害等重要/可能会引起大型事故的话题。五号实验室应避免做他用。

      • _

      邮件1
      时间:2019.5.18 13:30
      To:nc.gro.pcs|gnahznomis#nc.gro.pcs|gnahznomis(抄送:nc.gro.pcs|trce_76ncetis#nc.gro.pcs|trce_76ncetis)
      From:nc.gro.pcs|ayugakilak#nc.gro.pcs|ayugakilak
      主题:关于SCP-CN-2051的紧急事项
      正文:
      张主任,电子信息收容中心报告一起超过收容能力的收容事件。相关收容物为SCP-CN-2051,具体事件如下:
      在对2051-C的全知力进行测试(详见附件SCP-CN-2051-β)时,有一台便携式康德计数器被遗留在了五号实验室内并保持开机状态。在实验结束后,我在整理实验室时发现已归零过的计数器记录了一组较低的休谟指数最低值。其读数已经达到了一般现实扭曲者/现实扭曲收容物周围的水平。
      初步推测如下:SCP-CN-2051-C并不是“预言”了将发生的事,而是做出一个所谓的“预言”的行为,然后其现实扭曲能力使预言内容成真。至于验证,还需要进一步实验。
      即使SCP-CN-2051-C还没有表现出有意地进行现实扭曲的迹象,为了避免不可预测事故的发生,EICC依然无限期暂停了对2051-C的实验。所以,电子信息收容中心向紧急收容策应组提出申请:启动预案06,向电子信息收容中心紧急抽调五台斯克兰顿现实稳定锚和三台便携式康德计数器及相关的现实扭曲效应监控/防护/清除工具,以便继续安全地展开实验。
      Kali Kaguya,电子信息收容中心

      邮件2
      时间:2019.5.18 15:20
      To:nc.gro.pcs|ayugakilak#nc.gro.pcs|ayugakilak
      From:nc.gro.pcs|gnahznomis#nc.gro.pcs|gnahznomis
      主题:RE:关于SCP-CN-2051的紧急事项
      正文:
      辉夜博士:
      请求批准,预案06已启动,所要求的物资将在6h内送达并安装完毕。届时请继续确认41215-C的特异性质。
      收容,控制,保护。
      Simon Zhang,紧急收容策应组

    描述:SCP-CN-2051是一组异常的游戏安装文件,经辨认,该组文件展开安装包后为射击游戏《反恐精英》的首发版本,展开后的文件组被标记为SCP-CN-2051-B。与其他同版本号的游戏程序相比,SCP-CN-2051-B在源码上并无异常,仅在其目录中用于储存游戏地图的文件夹中多出了一张地图。删除该地图将导致地图文件重新生成,将地图移入同版本游戏中未显异常。

    一旦在SCP-CN-2051-B中启动了该地图的游戏并游玩一段时间(p=5min,σ2=9,n=25),游戏会添加一名同阵营电脑玩家(SCP-CN-2051-C)。需注意,经过与游戏开发商的核实,该版本游戏并无添加电脑玩家功能,对SCP-CN-2051-B的反编译分析也未发现与该功能相关的代码。(见附件 SCP-CN-2051-I)

    在游戏中,SCP-CN-2051-C会与玩家通过语音交流,经辨认,SCP-CN-2051-C所说的句子均由单个单词录音拼接。在测试中,SCP-CN-2051-C表现出了明显的智能(其通过了图灵测试)与现实扭曲能力(可造成现实扭曲事件)(见实验报告 SCP-CN-2051-α,实验报告 SCP-CN-2051-β)。

    截至目前,SCP-CN-2051-C并未显示出敌意与攻击意图,也并未有类似计算机病毒经过硬件和网络向其他计算机逃逸的现象,但由于其现实扭曲特性,根据Site-CN-67电子信息收容中心决议,应严格限制对SCP-CN-2051的实验,且应控制研究人员与SCP-CN-2051-C的接触,与其进行的所有对话均应记录归档。

    为了进一步验证SCP-CN-2051-C的现实扭曲能力。EICC在得到了充分的器材与人员支援后进行了一次实验。实验报告发出后,Site-CN-67EICC与ECRT(紧急收容策应组,Emergency Containment Response Team)以及该站点主管将SCP-CN-2051-C归类为3U级现实扭曲收容物,同时将SCP-CN-2051的项目等级提高至Euclid。

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License