: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 }

项目名称:“殉道者”
项目编号:YHN-KHE-0095
危险等级:LIMITATION
归档者:lemenote
殉道之人,可登天堂。
阅读本文档前必须准备好认知抗阻装置
仅供权限等级4以上的成员查看
特殊收容措施:该项目无法直接收容,仅能通过认知抗阻装置与现实稳定锚对其造成的部分模因污染和现实扭曲进行清理。
描述
该异常为一类模因危害,其可以造成模因污染并最终通过模因的叙事性干涉现实。
该异常造成的的模因污染一般分为三个阶段。
第一阶段:受害者的记忆被篡改,表现为记忆中开始出现关于“终启教会”的碎片化信息以及一首名为《明日挽歌》的诗歌。
第二阶段:在此阶段,受害者表现出明显认知崩塌,具体表现为人格错位,记忆出现大规模变动等。
第三阶段:受害者从主观意识上彻底成为“终启教会”的一员,并且受害者的认知彻底崩坏。
注:模因污染的受害者越多,受害者受模因污染的影响越深,该异常所能干涉的现实就越广泛。
特性
该项目无实体,无具体观测记录,仅通过模因干涉现实。
附录
《明日挽歌》
天穹之星毋可触及,
归终死水涌向天底。
吾等归途仍未明晰,
灯塔之光照射大地。
光明与影摇曳不定,
此世之人愚不可及。
十日天堂终归泡影,
巴别高塔撼动神明。
无上至高应归何处,
虚假天穹筑作墓地。
迷朦雾中怎寻明日,
夜莺悲啼挽歌长鸣。
- 该事件为▇▇级情景
- 本事件是一场由于《终焉启示录》的广泛传播而导致的现实扭曲事件。此次事件直接导致“十日天堂”降临现实。具体表现为世界开始向《终焉启示录》中所记载的内容演化,“殉道十日”于“天堂降临”事件的第二天发生,随后,协会为阻止事态进一步恶化,启动认知抗阻装置与现实稳定锚以抵御“十日天堂”的降临所带来的影响,但未见明显成效。最后,在协会使用▇▇▇▇后,“天堂降临”事件停止。数小时后,“天堂降临“事件的影响被消除。
如同《圣经》记述着终启教会信奉的“神”的事迹,协会在一座废弃的教堂地下发现《终焉启示录》与▇▇▇▇,现收容于area-666内部。
下文为协会从《终焉启示录》中发现与该异常有关内容的节选。
(此处节选自《终焉启示录》第五章)
虔诚的信徒雅各布登上了通往天堂的天梯,他用了十天到达了天堂,他在天堂遇见了他的主,他向主虔诚的询问:“全能而仁慈的主啊,人们的未来将尽于何处,明日现在于何方?”主说:“有无数人曾经向我发问。但只有你一人见到到了人世间众人的苦难,那就应该由你去改变。我要你带着我的意志前往人间,用十天去铸造乐园,为这苦难的世界带来福音。”于是,雅各布知晓了,这便是他崇高无上的使命,作为登上天梯的先驱者,他将成为奉献者,成为开拓者,成为殉道者。
……
(此处节选自《终焉启示录》第六章至第八章)
主让他的信徒,无辜的羔羊们前往人世。揭开七印带来清洗。羔羊们揭开七印中第一印的时候,就听见四活物中的一个活物,声音如雷,说:“你来!”见有一匹白马,骑在马上的,拿着弓,并有冠冕赐给他。他便出来,胜了又要胜。揭开第二印的时候,第二个活物说:“你来!”就另有一匹马出来,是红的,有权柄给了那骑马的,可以从地上夺去太平,使人彼此相杀,又有一把大刀赐给他。揭开第三印的时候,第三个活物说:“你来!”,见有一匹黑马,骑在马上的,手里拿着天平。在四活物中似乎有声音说:“一钱银子买一升麦子,一钱银子买三升大麦,油和酒不可糟蹋。”揭开第四印的时候,第四个活物说:“你来!”见有一匹灰色马,骑在马上的,名字叫作死,阴府也随着他。有权柄赐给他们,可以用刀剑、饥荒、瘟疫(“瘟疫”或作“死亡”)、野兽,杀害地上四分之一的人。揭开第五印的时候,在祭坛底下,有为神的道、并为作见证被杀之人的灵魂,大声喊着说:“圣洁真实的主啊,你不审判住在地上的人,给我们伸流血的冤,要等到几时呢?于是有白衣赐给他们各人,又有话对他们说:“还要安息片时,等着一同作仆人的和他们的弟兄也像他们被杀,满足了数目。”揭开第六印的时候,我又看见地大震动,日头变黑像毛布,满月变红像血。天上的星辰坠落于地,如同无花果树被大风摇动,落下未熟的果子一样。天就挪移,好像书卷被卷起来;山岭海岛都被挪移,离开本位。地上的君王、臣宰、将军、富户、壮士和一切为奴的、自主的,都藏在山洞和岩石穴里,向山和岩石说:“倒在我们身上吧!把我们藏起来,躲避坐宝座者的面目和羔羊们的忿怒,因为他们忿怒的大日到了,谁能站得住呢?”羔羊们揭开第七印的时候,天上寂静约有二刻。那站在神面前的七位天使,有七枝号赐给他们。另有一位天使拿着金香炉来站在祭坛旁边,有许多香赐给他,要和众圣徒的祈祷一同献在宝座前的金坛上。那香的烟和众圣徒的祈祷从天使的手中一同升到神面前。天使拿着香炉,盛满了坛上的火,倒在地上,随有雷轰、大声、闪电、地震。拿着七枝号的七位天使就预备要吹。第一位天使吹号,就有雹子与火搀着血丢在地上,地的三分之一和树的三分之一被烧了,一切的青草也被烧了。第二位天使吹号,就有彷佛火烧着的大山扔在海中,海的三分之一变成血,海中的活物死了三分之一,船只也坏了三分之一。第三位天使吹号,就有烧着的大星好像火把从天上落下来,落在江河的三分之一和众水的泉源上。这星名叫“茵陈”。众水的三分之一变为茵陈,因水变苦,就死了许多人。第四位天使吹号,日头的三分之一,月亮的三分之一,星辰的三分之一都被击打,以致日月星的三分之一黑暗了,白昼的三分之一没有光,黑夜也是这样。一个鹰飞在空中,它大声说:“三位天使要吹那其余的号,你们住在地上的民,祸哉,祸哉,祸哉!”
(注:笔录完成后,▇▇▇已被处决)
记录人员:“可以开始你的陈述了”
▇▇▇:“哦,好,是这样的……我最近好像多了一些不属于我的记忆。”
记录人员:“比如呢?”
▇▇▇:“一首诡异的诗歌,内容上叙述着摸不着头脑的东西,比如什么星星啊,乐园天堂之类的……反正就是类似于寓言一类的东西。”
记录人员:“除了这首诗歌还有其他内容吗?”
▇▇▇:“有……我在生活中一直是一名坚定的无神论者,可我却记得一个教会的名字…而且知道很多关于它的内容。”
记录人员:“基督教?新教?这些就算是无神论者也会知道的,没什么大不了的。”
▇▇▇:“不,不是……那些我当然不会觉得奇怪……额……对,是什么…终启教会!”
记录人员:“终启教会?”
▇▇▇:“对对对,就是终启教会,还有那个什么……十日天堂!但你要说其他什么的话…我就不记得了。”
记录人员:“感你你的配合,这对我们有很大帮助,这次笔录就做到这里了。但我们还有些事情需要你帮忙完成,跟我来吧。
……
« YHN-KHE-0094 | YHN-KHE-0095 | YHN-KHE-0096 »

