Entity C-49 - “厌胜物”
: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 }

IETS:3C
IETS
:3
智能:C

古有丁侯不朝,武王乃画丁侯,茸墚射之。丁侯病大剧。今后生你修此道,谨记厌胜之物炼成此生终有五弊三缺。
实体编号:C-49
栖息地:人类身体

描述

厌胜物是一类以人类为主要宿主,具有一定智能的实体,从解剖结果来看,其构造违反了生物学基本原理,根据现有信息目前推测,其起源可能为巫术产生的异常生命。
目前己知大部分厌胜物转化为类似于人类的四肢或五官的形态,但也有少部分转化为型似内脏的案例。
厌胜物拥有一定的行动能力,会帮助宿主完成所需的任务,但是其会从人体中汲取所需养分,具体来说近似于鱼与缩头鱼虱的关系1
以下关于厌胜物的习性,由于样本过少不可涵盖请自行辨别。

生物学结构

暂未发现压胜物的幼年体,在对成年体的解剖中,显示这些个体是由部分肌肉组织和结缔组织错误生长形成的类似肿瘤状物质,其中有成型的循环结构包括血管和神经组织,但是其排布的方式明显不同于正常的人类躯体又或是已知的其他正常生物器官,且并没有相对完整的连接,而是在部分区域形成类似小型肿瘤状团块的结构
通过模仿构造可以确认,厌胜物的生理构造和物理性质完全无法进行替代和活动,因厌胜物由异途道门强相关并且被长期使用,可以怀疑厌胜物的异常效用与某种巫术能量抑或是异常有关。
同时我们发现在厌胜物的寄生行为中,若是暴力寄生则会优先包裹被暴力寄生的部位,通过数天的巫术及异常影响转换被寄生部位的结构,使其逐渐变为上述的厌胜物内部结构并与厌胜物相结合,遭遇以上情况若未在1小时内剥离压胜则不要再次尝试剥离,这可能导致大量皮肉随厌胜物一起拽下且被寄生部位完全不可用。
活性化后厌胜物与拟态的器官相同,且通过未知的异常方法进行行动。

行为

厌胜物拥有几种常见行为,分别为繁殖、维持、交流、执行、斗厌

繁殖

此行动一般与寄生同时进行,倘若宿主有意进行传承或自认命不久矣,厌胜物所拟态的器官将会生长出肿瘤,直到活性化后利用身边工具切割肿瘤,从上摘除下的肉瘤将主动化为成年体,这被认作为厌胜物的繁殖。
请注意,提前切割肿瘤会导致所形成的成年体死亡,畸形等症状,过晚切割则会导致成年体直接扎根于寄宿母体,随机化形。
多数成年体将会选择缺失器官的宿主寄生,也有少部分厌胜物会选择强行撕裂,截肢宿主某种器官以达成供自己寄生的目的。
找好寄生位置时,其会将缺失器官附近用一层胶质薄膜包裹,随后将整体体塑形为相似的器官,并在一到半个月后完全改变基因性状直到与现任宿主相同。在一些案例中部分追求力量的异途道门成员可能会进行自残行为以求进行更多次的寄生。
完成寄生行为以后,厌胜物会与宿主进行简单交流为其命名,命名后便不能更改,若长时间未能成功命名,其名字将默认为所代替器官的名字。
在呼叫厌胜物时需要在心里呼唤其所对应的名字,若错误呼唤了想要驱使的厌胜物,呼喊者将受到极大反噬,此现象在斗厌中呼唤对方的厌胜物中依然适用。

维持

进行此行为的厌胜物将伪装成宿主的正常体外器官,在少数案例中,有拟态成内部器官厌胜物,如果宿主的其他内部器官缺失,厌胜物会在拟态的器官后替代原器官的功能,令人困惑的是其结构依然无法完成这些功能。
在一些流浪者营地,厌胜物维持行为被包装为治疗残疾的神物,也因大多自愿寄生厌胜物者在这之前都缺失器官,部分极端者甚至会主动切除器官,而在异途道门迷信思想中认为此乃修行厌胜物必然获得的残一门。

交流

此阶段的厌胜物开始活性,拟态的厌胜物会尝试运用附近的笔纸与宿主交流,2
在异途道门中也有通过对画像进行破坏,从而指使代胜物对画像上的人进行伤害的行为,有理由确信异途道门部分人员拒绝被拍摄原因出自于此。
在后室万维网中一些疑似来自异途道门的言论宣称,厌胜物的智力不亚于人类。

执行

如果宿主要求验厌胜物执行某事,此阶段的厌胜物大多会选择宿主入睡后脱离身份,此时宿主身上将会表达出某些暂时无法解明异常效应,例如即使厌胜物拟态的是肺、心脏等重要器官,宿主的生命体征依旧平稳。
厌胜物在执行宿主的任务时,会在尽量保证自身完整的情况下,以隐秘的手段执行任务。3
特殊情况宿主醒来后会发现其被厌胜物拟态的器官消失不见,维持生理特征的异常效应也会消失,目前推测为厌胜物死亡的原因或于战斗阶段失败。

斗厌

斗厌,顾名思义为两个厌胜物使用者因为某种缘故开始进行厮杀或缠斗时,双方都使用厌胜进行离体攻击,斗厌主要分为活斗和死斗,通常斗厌都为活斗,当一方开始猜测并喊出对方压胜的名字时,所对应厌胜将瞬间爆裂死亡,此行为在道门相关团体中被视为挑衅,届时将开启死斗,于死斗中败者死亡时留下的厌胜物将归胜者所有,故不推荐大肆暴露自己厌胜物相关信息。
在斗厌中厌胜物会敌我一一配对,同等形态的厌胜物或同等重要的厌胜物将会优先配在一起,进行一对一的厮杀,若有没有配对的厌胜物出现,则先在场外等候直到出现新的落单压胜,直到两方中的一方没有压胜或死亡为止。

发现记录

在多次有报告声称看到了独自行动的手脚而进行追踪后发现了这种寄生物,根据目前的调查,已知这种生物在人类部分社区通过师承血缘等关系传给下一代,尚未知道早期厌胜物他们从何获得,对于这些群体的追查发现相关记录大多为神话传说。
但根据大多数的案例总结,拥有宗教信仰或者民俗行为传承的家庭使用此生物的比例较高,尤其是多代以前便出生于后室的人员。他们运用这种生物为自己争取利益,也有一部分运用此生物为聚集地驱逐实体。
在部分聚集地的民俗传统文化中将统称为厌胜,结合了异途道门的经文逐渐形成一些宗教团体。从广泛来看可以视作异途道门的一部分。

相关文化

在厌胜物相关的宗教仪式大多指向仙亲文化,从宗教层面将厌胜物认作仙族或仙人产物,其通过仪式以求加入这个厌胜物家庭。
当异常社群到达一定数量时,一般由最早接受验厌胜物的人作为巫觋进行宗教仪式掩盖厌胜物的传播,从部分对其认知与经文看其应为异途道门某个流派的分支。
在一些并不存在厌胜物古老的流浪者营地里拥有着油炸厌胜物的传说,此行为被冠以破厌法的外壳,虽然没有直接的目击证明,但拥有众多的民间传说,从传说推测自古以来厌胜物因为较低的物理性质常通常通过装神弄鬼引起恐慌的方式达成目标。

生物防治

此实体与异途道门息息相关,鉴于此群体的大多产物并不稳定且利大于弊,M.E.G曾长期立志于清除此种生物,虽然有意保证宿主的生命,大部分群体以坚持实体视作自己的家人亦或者自身一部分。故最后演变成流血镇压,从而导致宿主连同寄生物一同死去,目前正在考虑更加温和的办法。

行为准则:

应当:

拒绝寄生
上报目击报告
拒绝为被寄生者遮掩

不应:

利用厌胜物达成目的
掩盖被寄生者的行踪
贪图其异常效果加入被寄生的行列


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