:root { --lh-red: #c0392b; --lh-blue: #2980b9; --lh-green: #27ae60; --lh-dark-green: #16a085; --lh-purple: #8e44ad; --lh-orange: #e67e22; --lh-yellow: #f1c40f; --lh-paper-bg: 255, 251, 240; --lh-string-color: 192, 57, 43; --lh-book-color: var(--gray-monochrome); --lh-tape-color: 90,90,90,0.3; --lh-white-bg: 249,249,249; --lh-dark-bg: 50, 50, 50; --lh-highlighter: var(--bright-accent); --lh-border-color: var(--gray-monochrome); --lh-wiki-note-color: var(--bright-accent) } /** * 旧代码合集 * 为了向下兼容而保留 */ .grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto} /** * 便签纸 * notepaper */ .notepaper { background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0); line-height: 2em; background-size: 100% 2em; background-attachment: local; border: 2em solid rgb(var(--lh-paper-bg)); box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2); padding: 0; margin: 1em auto; box-sizing: border-box; position: relative } .notepaper p { margin: 0; font-size: 1.05rem; letter-spacing: 0.1rem; line-height: inherit } .notepaper.narrow, .notepaper.wide { width: 90% } @media screen and (min-width:768px){ .notepaper.narrow { width: 50% } .notepaper.wide { width: 75% } } .notepaper.tight { border-width: 1rem; border-left-width: 1.2rem; border-right-width: 1.2rem; line-height: 1.8em; background-size: 100% 1.8em; font-size: 13px } .notepaper.with-string::before { content: ''; width: 0.5em; height: 6rem; background: rgb(var(--lh-string-color)); top: -2rem; right: -1rem; display: block; position: absolute; box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2); clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%); } .notepaper.with-tape::before { content: ''; border: 1px solid #ddd; background: rgba(var(--lh-tape-color)); width: 1.5em; height: 4em; transform: rotate(45deg); display: block; position: absolute; top: -3em; left: -1.8em } .notepaper.tight.with-string::before { top: -1rem; right: -0.25rem; } .notepaper.tight.with-tape::before { top: -2.5em; left: -1.3em } .notepaper.page { min-height: 36em; counter-increment: page; display: flex; flex-direction: column; justify-content: space-between } @media screen and (min-width:768px){ .notepaper.page { width: 70% } } .notepaper.page:after { content: counter(page); display: block; text-align: center } .notepaper-group { counter-reset: page; } .book-pattern { display: flex; flex-wrap: wrap; flex-direction: row } .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 100% } @media screen and (min-width: 768px) { .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 50% } } .book-wrapper { background: rgb(var(--lh-book-color)); padding: 0.5rem; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2); border-radius: 5px; margin: 1rem auto } @media screen and (min-width: 768px) { .book-wrapper .notepaper { margin: 0 } } /** * 文字修饰 */ .text-highlighted { position: relative } .text-highlighted::before { content: ""; position: absolute; height: 0.9em; bottom: 2px; left: -2px; width: 105%; z-index: -1; background-color: rgb(var(--lh-highlighter)); opacity: .6; transform: skew(-15deg); transition: opacity .2s ease; border-radius: 3px 8px 10px 6px; transition: 0.1s ease background-color; } .text-underlined { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-wavy { text-decoration: underline wavy; text-underline-offset: 4px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-circled, .text-squared { display: inline-block; border: 2px solid rgb(var(--lh-highlighter)); border-radius: 100%; box-sizing: border-box } .text-squared { border-radius: 0 } .text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) } .text-highlighted.td-red::before { background: var(--lh-red) } .text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) } .text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) } .text-highlighted.td-blue::before { background: var(--lh-blue) } .text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) } .text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) } .text-highlighted.td-green::before { background: var(--lh-green) } .text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) } .text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) } .text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) } .text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) } .text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) } .text-highlighted.td-purple::before { background: var(--lh-purple) } .text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) } .text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) } .text-highlighted.td-yellow::before { background: var(--lh-yellow) } .text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) } .text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) } .text-highlighted.td-orange::before { background: var(--lh-orange) } .text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) } .text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) } /* 隐藏文字 */ .text-blank { color: rgba(0,0,0,0) } .text-block { background: rgb(var(--black-monochrome)); color: rgb(var(--black-monochrome)); } .text-blur { filter: blur(0.3em); -webkit-filter: blur(0.3em) } .text-hoverback, .text-selectback { transition-duration: 0.3s; transition-property: background, transform, color } .text-blank.text-hoverback:hover, .text-blank.text-selectback::selection, .text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) } .text-block.text-hoverback:hover { background: transparent!important } .text-block.text-selectback::selection, .text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) } .text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important } /** * 附加项 */ .with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) } .with-border-dark { border: 1px solid rgb(var(--black-monochrome)) } .with-border-light { border: 1px solid rgb(var(--white-monochrome)) } .with-border-thick { border-width: 2px } .with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) } .with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) } .with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) } .with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) } .with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) } .with-padding, .with-box-style { padding: 0.25em 1em } .with-p-sm { padding: 0.125em 0.5em } .with-p-lg { padding: 0.5em 2em } .with-margin, .with-box-style { margin: 1em auto } .with-m-sm { margin: 0.5em auto } .with-m-lg { margin: 2em auto } .with-narrow-width { width: 90%!important; margin-left: auto; margin-right: auto } @media screen and (min-width: 768px) { .with-narrow-width { width: 75%!important } } [class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important } .with-bg-red { background: var(--lh-red)!important } .with-bg-blue { background: var(--lh-blue)!important } .with-bg-green { background: var(--lh-green)!important } .with-bg-darkgreen { background: var(--lh-dark-green)!important } .with-bg-yellow { background: var(--lh-yellow)!important } .with-bg-orange { background: var(--lh-orange)!important } .with-bg-purple { background: var(--lh-purple)!important } /** * 删除类 */ .offwith-shadow { box-shadow: none!important } .offwith-border { border: none!important } .offwith-padding, .offwith-pam { padding: 0!important } .offwith-margin, .offwith-pam { margin: 0!important } .offwith-width-limit { width: auto!important; margin-left: auto!important; margin-right: auto!important } div[class*="grider"].offwith-grid-gap { grid-gap: 0!important } /** * 网格布局 */ /* Gridder 容器 */ div[class*="gridder"] { display: grid; box-sizing: border-box; grid-gap: 1rem; padding: 0 } div[class*="gridder"] * { box-sizing: border-box } .gridder, .gridder-col-2 { grid-template-columns: 1fr 1fr; } .gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .gridder-col-4 { grid-template-columns: repeat(4, 1fr); } @media screen and (min-width: 768px) { .pc-gridder, .pc-gridder-col-2 { grid-template-columns: 1fr 1fr; } .pc-gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .pc-gridder-col-4 { grid-template-columns: repeat(4, 1fr); } } .spanner, .spanner-2 { grid-column-start: span 2; } .spanner-3 { grid-column-start: span 3; } /** * 告示组件 */ .signblock, .signblock-dark, .signblock-warn { margin: 1rem auto; box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4); background: rgb(var(--lh-white-bg)); font-size: 1.05rem; padding: 2rem } @media screen and (min-width: 768px) { .signblock, .signblock-dark, .signblock-warn { width: 75% } } .signblock-dark, .signblock-dark h1 { background: rgb(var(--lh-dark-bg)); color: #fff } .signblock-warn, .signblock-warn h1 { background: var(--lh-red); color: #fff } .signblock h1, .signblock-dark h1, .signblock-warn h1 { text-align: center; font-size: 2rem; margin: 0; font-weight: 700 } .signblock-img { display: flex; flex-direction: row; justify-content: center } .signblock-img img { width: 8em } .signblock-footer { font-size: 0.9em; text-align: center; margin: 0.5rem 0; font-weight: bolder; display: block } /** * 报告 */ .reportblock, .reportblock-dark { border: 2px solid rgb(var(--lh-border-color)); box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3); background: rgb(var(--white-monochrome)); padding: 0.8rem 1.5rem; padding-bottom: 0.4rem; margin: 1.5rem auto; margin-bottom: 1rem; position: relative } .reportblock hr, .reportblock-dark hr { background-color: rgb(var(--lh-border-color)); margin-left: -1.5rem; margin-right: -1.5rem } .reportblock h1:first-child, .reportblock-dark h1:first-child { position: absolute; top: -1rem; left: 1.5rem; font-size: 110%; font-weight: 600; background: rgb(var(--lh-border-color)); color: #fff; padding: 0.2rem 0.5rem; margin: 0; } .reportblock-dark, .reportblock-dark h1 { border-color: rgb(var(--lh-white-bg)); background: rgb(var(--lh-dark-bg)); color: #fff } .reportblock-dark hr { background-color: rgb(var(--lh-white-bg)); } /* 更好的折叠框 */ .bettercollap { margin: 1em 0; } .bettercollap .collapsible-block { width: auto; overflow: hidden; border: 1px solid rgb(var(--lh-border-color)) } .bettercollap .collapsible-block-content, .bettercollap .collapsible-block-link { background: rgb(var(--white-monochrome)); padding: 0.5em } .bettercollap .collapsible-block-content { padding-left: 1em; padding-right: 1em } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: rgb(var(--white-monochrome)); transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link, .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--white-monochrome)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) } .bettercollap .collapsible-block-link::before { content: "\25BC"; display: inline-block; margin-right: 0.5em; transform: rotate(-90deg) scale(0.9) } .bettercollap .collapsible-block-unfolded .collapsible-block-link::before { transform: rotate(0) scale(0.9) } .bettercollap .collapsible-block + .collapsible-block { border-top: none } .styledcollap.bettercollap .collapsible-block { border-radius: 2px; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3) } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-gray-monochrome)); border-width: 3px } .styledcollap.bettercollap .collapsible-block-link:hover { background: rgba(var(--lh-border-color),0.95)!important; } /** * 提示框 */ .infoblock { color: #f1f1f1; font-weight: bold; background: #424242; padding: 5px 5px 5px 5px; border-radius: 4px; margin: -0.5rem 0 1rem 0; display: block; width: fit-content; padding-right: 25px; } .infoblock::before { content: "ⓘ " } /** * 单页迭代 */ .offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none } .offset-page:target { display: block }

项目名称:“为众生死”
项目等级:SECURE
“信奉于我,崇拜于我,我为你们而死,而你们因我而完美”
收容措施
- 该异常目前被保存于[数据删除]站点的地下保密库中,需有两名及以上的警卫人员在收容室外防止未经许可的同该异常接触行为,且收容室需同时经过后方控制中心,实验人员及近卫人员三方的生物信息验证才可开放
- 该异常被安置于收容室中心的铅制保险箱中,保险箱的开闭状况时刻由后方控制中心监测,若保险箱出现非正常状况,则需立刻派遣佩戴有视觉过滤仪的警卫人员进入并检查保险箱的开闭并及时撤离。
- 若进入收容室的警卫人员所佩戴的视觉过滤仪失效,则需立刻离开收容室并重新派遣人员进入,若警卫人员收到YHN-KHE-713影响将其佩戴从而被转化为YHN-KHE-713-X,则需先由同行者于其进行交涉,随后将YHN-KHE-713-X用作新一轮的实验。
- 若地下保管库被外部势力入侵,且YHN-KHE-713-X已经诞生,则立刻引爆安装在收容室中的PETN炸药从而立刻杀死YHN-KHE-713-X并将YHN-KHE-713掩埋,待后续入侵事件平定后再作处理。
“充足的祈祷,是圣洁之花绽放的肥料”
描述
YHN-KHE-0713在未被干涉时呈现出由暗褐色荆棘与布满锈迹的长钉编织而成的直径约15厘米的冠冕的模样,而在被人类个体佩戴时则会在观测者的视角中呈现出不同的外形.目前收集到的观测外形包括但不限于:嵌入头骨的荆棘花环、由金银珠宝铸成的三重冠冕、悬于佩戴者头顶的纯白光环等。根据从YHN-KHE-713上脱落下来的碎屑,可确定为其由寻常认知中的玫瑰茎秆与熟铁钉编制而成。但根据后续的破坏实验,暂时可将其认定为难以通过常规手段将其破坏。
“罪人的躯壳,是圣洁之花扎根的土壤”
根据目前的实验可知,当人类个体注视YHN-KHE-713时,该个体会产生将YHN-KHE-713佩戴在自己头上的冲动,且该思想会随着观测者对YHN-KHE-713观测时间的增加而变得愈发强烈。而在其将YHN-KHE-713佩戴于头顶后,该人类个体便会被YHN-KHE-713转化为自称为“祈主”1的个体。YHN-KHE-713-X仍保有其被转化前的思维能力,但其常识会被YHN-KHE-713所影响。在不对YHN-KHE-713-X做出任何限制的情况下,YHN-KHE-713-X会尝试让他人信仰自己,并宣称信仰祂的人会在祂死去之后得到赐福,而信仰之人越多,赐福便愈发丰厚。YHN-KHE-713-X的物理及生理性质与寻常人类无异,但其死去之后,信仰祂之人便会在一定程度上如祂所说地获得他们所祈求的赐福。
“虔诚的信仰,是圣洁之花生长的露滴”
附录
同YHN-KHE-713-2的一段交流记录
录音开始
问:那么你的使命又是什么
YHN-KHE-713-2:为了承接祈者之苦。
问:何来的说法?
YHN-KHE-713-2:信仰我之人,向我祈祷之人,所思所想便会因我的血成真。
问:那么不信之人又何去何从?
YHN-KHE-713-2:不信之人,不虔之人,何来何去与我何干。
问:你的血可实现一切吗?
YHN-KHE-713-2:愈发困难之事,愈发艰难之思,需要更为虔诚的祈祷,更为充足的信众。
问:你活着能做到什么?
YHN-KHE-713-2:我的生命无足挂齿,我的死亡带来恩赐。
问:你还记得你曾经是什么样的吗?
YHN-KHE-713-2:自然而然,我始终是我。
问:那你曾经的生活对现在的你而言难道就没有意义了吗?
YHN-KHE-713-2:曾经的生命于我而言不值一提,我存在的意义不过是为祈者带来恩赐。
问:如果我们伤害你,你会做出什么回应?
YHN-KHE-713-2:我受到的一切伤害都不过是为祈者带来恩赐的过程。
问:那如果我们要杀死你呢?
YHN-KHE-713-2:乐意至极。
问:哪怕是曾经的友人,曾经的同僚亲手为之?
YHN-KHE-713-2:哪怕是曾经的友人,曾经的同僚亲手为之。
YHN-KHE-713-2后被实验人员通过注射的方式处死
实验一
实验目的:YHN-KHE-713是否会将非人类个体改造为YHN-KHE-713-X
实验流程:略
实验结果:在经过多达4721起实验,基本可以确认YHN-KHE-713的效果只对人类个体起效。
实验二
实验目的:YHN-KHE-713-X的死亡为祈者带来恩赐的各类相关性
实验流程:
由数组实验人员分分次乞求实现难度由易到难的事物,依次对YHN-KHE-713-4、YHN-KHE-713-5、YHN-KHE-713-6进行同样程度的祈祷和信仰。
结论:
YHN-KHE-713-X所带来的死亡恩赐会从各种方面实现祈者的所思所想,如:
实验人员A祈求可以得到一部全新的手机,在YHN-KHE-713-4被处决后在网络抽奖时抽取到头奖,而正好是他所期待的手机。
实验人员B祈求得到一套全新的房产,在YHN-KHE-713-4被处决后收到了其关注的房产开发公司因不明原因使得房价大幅降低的消息。
实验人员C祈求自己不会死亡,在YHN-KHE-713-5被处决后于[数据删除]项目的处理中发生事故,在场人员除他之外全部死无全尸。在其在医疗中心苏醒后以与寻常截然不同的神态说出:“你的祈求已经结束了”后恢复神智,且对自己所言毫无认知。
由相同的实验人员分别乞求相同的事物,依次对YHN-KHE-713-7、YHN-KHE-713-8、YHN-KHE-713-9进行程度不同的祈祷与信仰。
结论:
YHN-KHE-713-X的死亡恩赐的多少与祈者的祈祷及信仰的虔诚度呈正相关。
由人数不等的人群乞求相同的事物,从多到少依次对YHN-KHE-713-10、YHN-KHE-713-11、YHN-KHE-713-12进行同样虔诚的祈祷与信仰。
结论:
YHN-KHE-713-X的死亡恩赐的多少与祈者的数量呈正相关
由犯下罪行从轻到重的囚徒,依次担当YHN-KHE-713-13、YHN-KHE-713-14、YHN-KHE-713-15,并由数量相等的实验人员进行同样虔诚的祈祷和信仰。
结论:
YHN-KHE-713-X的死亡恩赐的多少与祈者的数量呈正相关
特殊注意事项
- 发现记录:2002年6月2日,中国警方破获了一起有关上百人的失踪案件,据查失踪者均被[数据删除]家族的人杀害并分尸掩埋于[数据删除]。在对该家族的成员的审问过程中,有人交代了他们绑架人口并杀人分尸的原因。该事件后被转交给协会并被协会找到后并收容。
- YHN-KHE-713会影响与其相关的记录文件,阅读时需保持谨慎且由常人陪同
«YHN-KHE-0712 | YHN-KHE-0713 | YHN-KHE-0714 »

