Level C-1013

: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 }
评分: +30+x

LEVEL
C-1013

生存等级生存等級
​0

逃离逃離:0/5
确保逃离確保逃離

环境環境:1/5
低环境风险低環境風險

实体實體:0/5
无敌对实体無敵對實體


Level C-1013是后室C层群的第1013层。

描述

Level C-1013常被描述为一片“星空”。这并非是因为其环境属于外太空,而是因为其处于永夜状态,且天空呈现为一副极其壮丽的星群。Level C-1013的田野与山坡存在数以千计的私人小型天文望远镜、中型天文望远镜与组织独占/共享的大型光学望远镜,甚至存在数个联合建立的类射电望远镜。

photo-1528818955841-a7f1425131b5?q=80&w=2232&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D

Level C-1013的局部星空

傅里叶辐射与层级辉光

层级密钥是人类在后室中发现的最早一批物品之一,然而其能够籍由震动反映层级相对位置的原因仍未得到一个广为接受的结论。而在Level C-1013被发现并开拓后,这一问题很可能得以得到历史性解答。本层级高层大气逐渐稀薄,并汇入外层的蓝色通道中。这就允许了外界层级在蓝色空间中留下的可能的痕迹在Level C-1013中被捕获。

B.T.C.2016年,傅里叶博士在Level C-1013中使用预警弹珠改造而成的阿西莫夫计量测微器捕获到了极其微弱的反常的ζ粒子扰动。经过排除设备故障后,傅里叶博士提出,这可能是外界层级在Level C-1013留下的遗物。事实证明,层级密钥亦惊人地对这些扰动发生了反应,并且震动结果与数据库已记录地数据相对吻合,甚至对部分扰动成功实施了溯源。

傅里叶博士提出,后室层级很可能存在某种“内在震动”,这种震动会散发出某种难以被检测的独特“辉光”。鉴于蓝色通道中无法检测到此类ζ扰动,傅里叶提出,后室中众多层级散发出的不可肉眼观测的自发辉光籍由Level C-1013大气的折射与作用,转化为可检测的微弱ζ扰动,并在视觉效果上呈现为可目视的“星光”。这种层级自有辉光被称为傅里叶辐射Fourier Radiation,其与层级的光线强度无关,因此连Level 6一类的昏暗层级亦可在本层级中被观测。

层间关系猜想与光栅理论阐释

某种意义上,Level C-1013的这种特性为已经被认为是一门“死科学”的天文学,再次提供了得天独厚的条件。通过各类天文望远镜的观测,天文学家们可以观察到不同层级之间的相对状况。然而,由于蓝色通道的非欧几里得性质与层级本身的游离性及不确定性,这种相对状况时时刻刻都在发生变化,而各个科学家也争相提出自己的假说,试图统计这种无序。

B.T.C.2018年,E.P.B.创始人,尤根·德狄夫博士,也即光栅理论的提出者,运用他极富创造性的理论对其进行了解释。德狄夫失踪后,阿尔西亚·蒙特庇里娅博士及其团队经过一系列精密观测与记录,以及Level C-1013中赫赫有名的“德狄夫”大型类射电望远镜,制定了一套极其完善的体系,出色的解释了层级相对状态的游离。

该理论指出,光栅对物质粒子的无规则散射铸就了层级,而这种无序也导致后室各层级之间是相对离散的。理论给出了后室九大层与C层群中相当数量层级的状态统计,通过复杂的计算修正,成功模拟了Level C-1013中观测到的状况。这一理论被认为是对后室的最终解释,B.T.C.2020年以后,仅有少量天文学家仍滞留于层级中实施常规天文观测,而再无任何人企图对这套理论做出突破,抑或是试图将其推翻。

峦论的提出与其证明

B.T.C.2026.4.16,科学官克莱·罗德里格斯·埃斯本博士发表了一篇论文,详细阐释了一种全新的构筑后室大模型的方法。然而由于这种猜想过于激进及超前,同时又缺乏实在性的证据,并未受到广泛的关注,相反,受到了相当数量的质疑与抨击。

《后室一体论与峦论猜想》选段

研究人员:克莱·罗德里格斯·埃斯本
报告时间:B.T.C.2026.4.16


摘要:为什么德狄夫博士的体系不够完美,以及为什么后室其实是一座山。

关键词:后室一体论 峦论 基础科学体系

正文:

自2018年德狄夫博士再次提出诠释后室与层级的方法后,鲜有人试图对其发起冲击。诚然这套体系已经几乎足够尽善尽美,然而它有一个致命的缺点:不够美。

牛顿的万有引力,普朗克的量子论,爱因斯坦的相对论,无不用简洁扼要的体系,出色的为世界绘制了一张蓝图。而德狄夫和阿尔西亚的光栅理论几乎同样出色地完成了这个工作,除了一点——未能解释“切入”与“切出”二者本身。在离散的后室中,这种现象似乎是不可以理解的,也正是因此,光栅理论为它打上的补丁变得越发冗余复杂,就像天动说一样,仍然未能解释行星逆行与进动的本质。

为每一个层级设计独立的“轨道”,这在任何角度都几乎是不可理喻的,但我们却误以为这就是后室紊乱的证明。

我们不妨假设一条公理:

后室整体是处处连续、各个部分连为一体的。

也许可以称其为“后室一体论”。在此基础上,结合一些已有的观测数据与结论,我们再提出两条定律:

  • 1、层级是承载现实的容器,而非现实本身。
  • 2、现实永远是倾向于趋于稳定的,而已稳定的层级则倾向于拒绝现实的输入与输出。


接下来是对于这两条定律的证明。麦克斯韦在Level C-249曾进行过一个实验……



……然而,通过这两条定律与“后室一体论”公理,我们不难推导出一个结论,即现实一直在源源不断地从高现实区流向低现实区,最终形成量子稳定层级。因此,后室终有一日会形成全部由量子稳定层级组成的“现实热寂”。

尽管如此,到目前为止,尚未观测到任何有关“现实热寂”的现象。这是否证明“后室一体论”的谬误呢?我们注意到现实紊乱的层级和相对稳定的层级之间,很少存在持久的出入口。与此同时,这些出入口都会在经常被使用或者一段时间后自发地崩溃、消失。因此,我们有理由假设,后室存在一种独特的机制,用于调节不同的层级之间的现实强度。依据此提出第三条定律:

  • 1、层级是承载现实的容器,而非现实本身。
  • 2、现实永远是倾向于趋于稳定的,而已稳定的层级则倾向于拒绝现实的输入与输出。
  • 3、层级有着维持原有现实状态的惰性,直到受到人为或层级自发的扰动,而这种惰性与层级稳定与否无关。


综合考量上述定律与公理,我们可以提出一个猜想:

后室是一个连续的整体,而其中的现实强度存在着为数众多的高低起伏,这些起伏本身亦是连续变化的。

猜想中,现实强度可以类比为现实中的海拔高度,同时还可以据此绘制出描绘相对层级海拔的等高线地图。由此对猜想进一步补充:

层级是一片相对层级海拔连续的区域。出入层级只能籍由海拔连续的地段通行。

%E6%B5%B7%E6%8B%94%E6%B5%8B%E7%BB%98.jpg

对部分层级相对层级海拔的初步测绘

值得注意的是,层级内海拔不一定相似/相近(Level 14等高度非欧地区),而同一海拔也不一定为同一层级(Level 2Level 3)。

在这个体系中,“层级”们可以被近似看作前厅中山脉与地形的起伏。因此,为这个猜想取了一个形象的名称:“峦论”。

枢纽作为连接后室绝大部分层级的隐秘层级,像一片海洋一样,几乎与所有层级海拔连续。而Level 0作为大多数人从前厅切入后抵达的首个层级,其相对层级海拔显著高于周围。鉴于此二者的代表性与平坦性,为了便于表述,峦论定义前者所处海拔为0Cl,而后者为100Cl,期间均匀划分为100份,单位为1Cl(Clay,克莱)。相对层级海拔可以高于100Cl,亦可低于0Cl。此外,Level 11的平均海拔非常接近0Cl,而且同样与大量后室层级接壤,而且由于繁多的出入口常常比枢纽结合得更为紧密。因此,该层级也可以被作为0Cl的标准。这套标准称为标准相对层级海拔,或称埃氏海拔/白氏海拔。

与前厅山脉不同的是,后室是一个非欧几里得空间。而不同相对层级海拔的高低起伏,使得后室本身呈现为一张拥有着众多褶皱的“画布”,或说“床单”。而如若利用黎曼几何对其曲率进行描述,就可以解释蓝色空间与层级本身的非欧几里得性质,从而摒弃德狄夫的复杂体系,用简洁的公式描述层级间的相对关系。

%E5%9F%BA%E6%9C%AC%E5%85%B3%E7%B3%BB.png

四种海拔基本关系图例示意图


相对层级海拔有着四种基本关系,分别为交叠、交叉、嵌套与相切。嵌套与相切见图示。交叠,表现为不同海拔之间的相互重叠。重叠区域则会出现现实的不稳定,被称为“不稳定区”或“交互区”,而现象也高发于此类区域。值得注意的是,交叠与空间叠加现象并不完全等同,交互区不一定发生空间叠加,空间叠加也不一定是因为发生了交叠。交叉,表现为海拔等高线之间的交叉,通常与交叠一并出现,但也有独立存在的情况。交汇点同样会出现现实的不稳定,被称为“不稳定点”或“交互点”,而层级出入口常在此类区域出现。

这四种基本关系无法涵盖复杂多变的后室环境。海拔等高线有时会面对不确定的情况,在此给出四种相对常见的特殊情况。

%E5%9B%9B%E7%A7%8D%E7%89%B9%E6%80%A7.png

四种特殊情况图例示意图


一,非恒定边界,即变动边界。这类现象的出现伴随着等高线的移动或者断裂、重组,同时也会极大程度上影响层级内部环境。边界变动的原因通常归咎于层级本身的特性,诸如Level 295对其他层级的蚕食就会引发周边层级的海拔被抬升或沉降至与其同等(-68Cl),并创造大量不稳定区。层级空间脱离/融合是变动边界的一个极端案例。

二,空腔。空腔常伴随着变动边界而来,层级空间脱离/融合现象的第二阶段就包含空腔的形成。然而,并非所有空腔都如此安全稳定,一些层级自发产生的空腔会伴随着难以预料的危险,应当尽可能远离。

三,不可观测区,即黑障。一个典型例子是支离破碎之地,其白氏海拔远高于500Cl,难以在Level C-1013中被观测与记录。此类特殊案例的具体情况仍在探索中。

四,震荡间断点。间断点内在较小范围内包含大量较大幅度海拔变动(并非变动边界),不便于记录,常用此图例表示。

这些图例可以有效地定性描述层间关系,而定量描述则需用到黎曼几何体系。在此以Level 0Level 1为例。

已知的观测记录显示……



……由此可见,峦论对层间关系的表述远远比阿尔西亚的表述简洁,富有美感。


致谢:Level C-1013

参考文献:……




“后室一体论”的证明工作于B.T.C.2026年下旬由埃斯本正式发起,而直到B.T.C.2027年年初才招募到首位共同研究者。该公理的证明工作逐渐吸引到了为数不多的天文工作者与其他研究者,但仍然逐渐淡出大众的视野,德狄夫的光栅论仍然占绝对的统治地位。

直到B.T.C.2030.10.23,Level C-1013的观测站捕获了层级高空中,即将出现的一场“流星雨”。

这场“流星雨”,实际上是一场由Level 11层级空间结构断裂引发的小规模层级空间脱离现象。Level C-1013观测站检测到了Level 11周遭傅里叶辐射(即自发辉光)的细微波动,而后这一小块层级碎片不再能在蓝色通道中被观测到。

埃斯本及其团队敏锐的捕获了这一消息,而经过峦论猜想的诠释和计算,埃斯本推断这一层级碎片将在穿过一层薄薄的黑障区后,抵达Level C-1013的大气层。同时,这一碎片并未籍由蓝色通道或简单的切入/切出进行穿梭,故而假若可以证明该层级碎片降临在Level C-1013,就可以证明层级之间的连续性,从而否定后室离散论,并一定程度上佐证峦论计算的准确性。






现今峦论已被承认为与“光栅理论”等理论并立的平行理论。通过埃斯本在论文中提及的方法,层间连结得以被计量与描述,因而极大地便捷了出入口的定位、层级基础安全性与稳定性考查、现象灾难救援等众多曾只能依靠穷举法进行的工作。同时,该理论并未彻底占据原有理论的生态位。

“峦论提供一种解释后室结构的新思路,但这并不意味这它推翻了原有理论,如光栅论。事实上,经过大量事实验证的光栅论,绝大部分仍然是正确的,而我的理论只是为其给出了一片补充与深入……”1

Level C-1013仍然被作为层级观测与峦论研究的重要场所。此外,经过一致表决通过,层级内,埃斯本曾在抓捕level 11的层级碎片中坠落的地点树立起一座高20.30米的纪念碑,形制类似于方尖碑,上无铭文。该纪念碑位于一座小山丘的山顶,用于纪念埃斯本对峦论与后室基础科学做出的贡献。

基地、前哨与社区

M.E.G.天文观测群

  • 由大量隶属于M.E.G.的望远镜及观测站组成。

E.P.B.天象研究所

  • 由隶属于E.P.B.的观测站及研究所组成。

其他天文观测群落

  • 隶属于其他组织与个人的天文设备。

入口与出口

入口
出口

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