{{{#!wiki style="margin: -0px -10px -5px; min-height:calc(1.5em + 5px)" {{{#!folding [ 펼치기 · 접기 ] {{{#!wiki style="margin: -5px -1px -11px; word-break:keep-all" | <colbgcolor=darkgreen><colcolor=#fff> 기본 플레이 | |
시스템 | 세계 (시드) · 게임 모드 · 난이도 · 게임 규칙 · 엔딩 · 죽음 메시지 · 스플래시 · 명령어 · NBT · 거리 효과 · 런처 | |
인게임 | 아이템 · 몹 (플레이어) · 개체 · 날씨 · 차원 · 생물 군계 · 구조물 · 마법 부여 · 상태 효과 · 조작법 · 피해 · 업적 · 버그 | |
도움말 | 튜토리얼 · 팁 (탐험 · 파밍 · 회로) · 재생 가능한 자원 · 브릿징 · PVP · 파쿠르 · 스피드런 (베드락 에디션) · 건축 (맵아트) | |
시리즈 및 매체 | ||
출시 에디션 | 베드락 에디션 (업데이트) · 자바 에디션 (업데이트) · 중국 에디션 · 포켓 에디션* · 콘솔 에디션 (업데이트)* · 파이 에디션* · 4K* | |
파생 게임 | 외전 시리즈 · 마인크래프트 에듀케이션 · 마인크래프트 던전스* · 마인크래프트 레전드* · 마인크래프트: 스토리 모드* · 마인크래프트 어스* | |
미디어 | OST · 관련 서적 · 레고 · 영화 · 애니메이션 · Minecraft Live · Minecraft Now · Minecraft Monthly | |
유저 콘텐츠 | ||
창작 요소 | 2차 창작 · 망토 · 맵 · 모드 (개발 · 팁 · 모드팩) · 애드온 · 팩 (리소스 팩 · 데이터 팩) · 외부 프로그램 · 핵 · 마켓플레이스 패스 · 밈 | |
멀티 콘텐츠 | 멀티플레이 · 서버 · 플러그인 · Realms · EULA | |
개발 | 개발 기초 · 모드 개발 · 플러그인 개발 | |
기타 | ||
이야깃거리 | 여담 · 커뮤니티 · 위키 · 사건 사고 · 문제점 · 용어 · 지원 언어 · 머나먼 땅 · 이미테이션 게임 · 히로빈 | |
틀 | · · · | |
관련 문서 | 나무위키 마인크래프트 프로젝트 · 마인크래프트로 분류된 문서 · 마인크래프트의 하위 문서ㆍ닉네임 및 스킨 | |
새로운 컨텐츠 | ||
구리 시대 (출시 예정) | ||
하늘을 쫓아서 |
| |
* 표시는 서비스가 종료되었거나 개발이 중단되었다는 표시이다. | }}}}}}}}} |
1. 개요
마인크래프트의 팩은 유저가 마인크래프트와 관련해 만든 콘텐츠를 정리한 파일이다.2. 목록
2.1. 자바 에디션
2.1.1. pack.mcmeta
공통적으로 팩 파일 안에는pack.mcmeta
라는 파일을 만들어 주면 된다. 이 파일은 JSON 형식으로 되어있는데, 팩 제작 때 필수로 넣어야 하는 것이다. 이 과정에서 오류가 발생하면 팩을 불러오지 못한다. 파일 확장자명이 안 보인다면 윈도우 기준으로 파일 탐색기에서 위에 있는 보기를 눌러준 다음에 파일 확장명을 체크 표시해주면 된다. 이 과정을 정상적으로 끝마치면 다음 코드를 작성하면 된다.#!syntax json
{
"pack": {
"pack_format": 1,
"description": "namuwiki -- 여기는 나무위키를 지우고 자기가 원하는 글을 쓰면 팩의 설명이 된다."
}
}
다중 버전을 지원하는 팩을 만들려면 다음과 같이 작성한다. 작성 예시는 1.20.2부터 1.20.4까지 버전을 지원할 경우이다.(이 기능은 1.20.2에 추가되었다.)#!syntax json
{
"pack": {
"pack_format": 26,
"supported_formats":{
"min_inclusive":18,
"max_inclusive":26
},
"description": "데이터 팩의 설명"
}
}
중요: pack_format
값은 데이터 팩을 적용할 마인크래프트 버전에 따라 다르게 설정해야 된다. 값은 하위 문단에서 다룬다.pack.mcmeta의 자세한 정보는 다음과 같다.
- pack < > - 팩 정보.
- pack_format <
> - 팩의 버전. 리소스 팩 버전과 데이터 팩 버전과 다르다. - description <
> - 팩의 설명. 작성 방법은 마인크래프트/명령어/텍스트 구성 요소 문서를 참고한다. - supported_formats <
> - (선택사항) 팩 형식의 범위를 설명한다. 예:18
,[18,26]
,{"min_inclusive":18,"max_inclusive":26}
- filter < > - 팩 로딩 시 지정된 파일에서 필터를 한다.
- block <
> - 패턴 목록 - overlays < > - 오버레이를 지정한다. 해당 팩의 루트 디렉터리에 저장한다.
- entries <
> - 오버레이 목록 - < > - 오버레이 하나
- formats <
> - 팩 포맷값. - directory <
> - 각 버전에 대한 오버레이 디렉토리.a-z
,0-9
,_
,-
만 가능하다. - language < > - 리소스 팩 전용. 언어 메뉴에 추가 메뉴를 추가한다.
- 언어id < > - 언어 하나. 언어 id는
en_us
,ko_kr
와 같은 형식으로 작성해야한다. - name <
> - 언어 전체 이름. - region <
> - 언어 지역 이름. - bidirectional <
> - 만약 true일 경우 지정된 언어는 오른쪽에서 왼쪽으로 읽는다. 비어있다면 false로 설정한다.
예: 데이터 팩 모든 조합법 제거하기:
#!syntax json
{
"pack": {
"pack_format": 81,
"description": "namuwiki!"
},
"filter": {
"block": [
{
"namespace": ".*",
"path": "recipe/.*"
}
]
}
}
예: 다중 버전(작성 예는 1.21.8, 1.21.6, 1.21.5, 1.21.4)데이터 팩 지원하기.
|
#!syntax json
{
"pack": {
"pack_format": 81,
"supported_formats":{
"min_inclusive":61,
"max_inclusive":81
},
"description": "데이터 팩의 설명"
},
"overlays": {
"entries": [
{
"directory": "overlay_1_21_4",
"formats": 61
},
{
"directory": "overlay_1_21_5",
"formats": 71
},
{
"directory": "overlay_1_21_6",
"formats": 80
},
{
"directory": "overlay_1_21_8",
"formats": 81
}
]
}
}
2.1.1.1. 리소스 팩 버전
<colbgcolor=#F5F5F5,#2D2F34> 값 | 버전 |
1 | 1.6.1 ~ 1.8.9 |
2 | 1.9 ~ 1.10.2 |
3 | 1.11 ~ 1.12.2 |
4 | 1.13 ~ 1.14.4 |
5 | 1.15 ~ 1.16.1 |
6 | 1.16.2 ~ 1.16.5 |
7 | 1.17 ~ 1.17.1 |
8 | 1.18 ~ 1.18.2 |
9 | 1.19 ~ 1.19.2 |
12 | 1.19.3 |
13 | 1.19.4 |
15 | 1.20 ~ 1.20.1 |
18 | 1.20.2 |
22 | 1.20.3 ~ 1.20.4 |
32 | 1.20.5 ~ 1.20.6 |
34 | 1.21 ~ 1.21.1 |
42 | 1.21.2 ~ 1.21.3 |
46 | 1.21.4 |
55 | 1.21.5 |
63 | 1.21.6 |
64 | 1.21.7 ~ 1.21.8 |
- 모든 pack_format 버전 보기 [ 펼치기 · 접기 ]
- |pack_format|<tablebordercolor=black,white><tablebgcolor=white,black><colbgcolor=#F5F5F5,#2D2F34> 값 ||<bgcolor=#F5F5F5,#2D2F34> 모든 버전 ||<colbgcolor=#FF7F7F,#a00000><bgcolor=#F5F5F5,#2D2F34> 정식 버전 ||
1 13w24a ~ 1.8.9 1.6.1 ~ 1.8.9 2 15w31a ~ 1.10.2 1.9 ~ 1.10.2 3 16w32a ~ 17w47b 1.11 ~ 1.12.2 4 17w48a ~ 19w46b 1.13 ~ 1.14.4 5 1.15-pre1 ~ 1.16.2-pre3 1.15 ~ 1.16.1 6 1.16.2-rc1 ~ 1.16.5 1.16.2 ~ 1.16.5 7 20w45a ~ 21w38a 1.17 ~ 1.17.1 8 21w39a ~ 1.18.2 1.18 ~ 1.18.2 9 22w11a ~ 1.19.2 1.19 ~ 1.19.2 11 22w42a ~ 22w44a - 12 22w45a ~ 23w07a 1.19.3 13 1.19.4-pre1 ~ 23w13a 1.19.4 14 23w14a ~ 23w16a - 15 23w17a ~ 1.20.1 1.20 ~ 1.20.1 16 23w31a - 17 23w32a ~ 1.20.2-pre1 - 18 1.20.2-pre2 ~ 23w41a 1.20.2 19 23w42a - 20 23w43a ~ 23w44a - 21 23w45a ~ 23w46a - 22 1.20.3-pre1 ~ 23w51b 1.20.3 ~ 1.20.4 24 24w03a ~ 24w04a - 25 24w05a ~ 24w05b - 26 24w06a ~ 24w07a - 28 24w09a ~ 24w10a - 29 24w11a - 30 24w12a - 31 24w13a ~ 1.20.5-pre3 - 32 1.20.5-pre4 ~ 1.20.6 1.20.5 ~ 1.20.6 33 24w18a ~ 24w20a - 34 24w21a ~ 1.21.1 1.21 ~ 1.21.1 35 24w33a - 36 24w34a ~ 24w35a - 37 24w36a - 38 24w37a - 39 24w38a ~ 24w39a - 40 24w40a - 41 1.21.2-pre1 ~ 1.21.2 - 42 1.21.2-pre3 ~ 1.21.3 1.21.2 ~ 1.21.3 43 24w44a - 44 24w45a - 45 24w46a - 46 1.21.4-pre1 ~ 1.21.4 1.21.4 47 25w02a - 48 25w03a - 49 25w04a - 50 25w05a - 51 25w06a - 52 25w07a - 53 25w08a ~ 25w09b - 54 25w10a - 55 1.21.5-pre1 ~ 1.21.5 1.21.5 56 25w15a - 57 25w16a - 58 25w17a - 59 25w18a - 60 25w19a - 61 25w20a - 62 25w21a -
2.1.1.2. 데이터 팩 버전
<colbgcolor=#F5F5F5,#2D2F34> 값 | 버전 |
4 | 1.13 ~ 1.14.4 |
5 | 1.15 ~ 1.16.1 |
6 | 1.16.2 ~ 1.16.5 |
7 | 1.17 ~ 1.17.1 |
8 | 1.18 ~ 1.18.1 |
9 | 1.18.2 |
10 | 1.19 ~ 1.19.3 |
12 | 1.19.4 |
15 | 1.20 ~ 1.20.1 |
18 | 1.20.2 |
26 | 1.20.3 ~ 1.20.4 |
41 | 1.20.5 ~ 1.20.6 |
48 | 1.21 ~ 1.21.1 |
57 | 1.21.2 ~ 1.21.3 |
61 | 1.21.4 |
71 | 1.21.5 |
80 | 1.21.6 |
81 | 1.21.7 ~ 1.21.8 |
- 모든 pack_format 버전 보기 [ 펼치기 · 접기 ]
- |pack_format|<tablebordercolor=black,white><tablebgcolor=white,black><colbgcolor=#F5F5F5,#2D2F34> 값 ||<bgcolor=#F5F5F5,#2D2F34> 모든 버전 ||<colbgcolor=#FF7F7F,#a00000><bgcolor=#F5F5F5,#2D2F34> 정식 버전 ||
4 17w48a ~ 19w46b 1.13 ~ 1.14.4 5 1.15-pre1 ~ 1.16.2-pre3 1.15 ~ 1.16.1 6 1.16.2-rc1 ~ 20w45a 1.16.2 ~ 1.16.5 7 20w46a ~ 1.17.1 1.17 ~ 1.17.1 8 21w37a ~ 22w07a 1.18 ~ 1.18.1 9 1.18.2-pre1 ~ 1.18.2 1.18.2 10 22w11a ~ 1.19.3 1.19 ~ 1.19.3 11 23w03a ~ 23w05a - 12 23w06a ~ 1.19.4 1.19.4 13 23w12a ~ 23w14a - 14 23w16a ~ 23w17a - 15 23w18a ~ 1.20.1 1.20 ~ 1.20.1 16 23w31a - 17 23w32a ~ 23w35a - 18 1.20.2-pre1 ~ 1.20.2 1.20.2 19 23w40a - 20 23w41a - 21 23w42a - 22 23w43a ~ 23w43b - 23 23w44a - 24 23w45a - 25 23w46a - 26 1.20.3-pre1 ~ 1.20.4 1.20.3 ~ 1.20.4 27 23w51a ~ 23w51b - 28 24w03a ~ 24w03b - 29 24w04a - 30 24w05a ~ 24w05b - 31 24w06a - 32 24w07a - 33 24w09a - 34 24w10a - 35 24w11a - 36 24w12a - 37 24w13a - 38 24w14a - 39 1.20.5-pre1 - 40 1.20.5-pre2 - 41 1.20.5-pre3 ~ 1.20.6 1.20.5 ~ 1.20.6 42 24w18a - 43 24w19a ~ 24w19b - 44 24w20a - 45 24w21a ~ 24w21b - 46 1.21-pre1 - 47 1.21-pre2 - 48 1.21-pre3 ~ 1.21.1 1.21 ~ 1.21.1 49 24w33a - 50 24w34a - 51 24w35a - 52 24w36a - 53 24w37a - 54 24w38a - 55 24w39a - 56 24w40a - 57 1.21.2-pre1 ~ 1.21.3 1.21.2 ~ 1.21.3 58 24w44a - 59 24w45a - 60 24w46a ~ 1.21.4-pre1 - 61 1.21.4-pre2 ~ 1.21.4 1.21.4 62 25w02a - 63 25w03a - 64 25w04a - 65 25w05a - 66 25w06a - 67 25w07a - 68 25w08a - 69 25w09a ~ 25w09b - 70 25w10a ~ 1.21.5-pre1 - 71 1.21.5-pre2 ~ 1.21.5 1.21.5 72 25w15a - 73 25w16a - 74 25w17a - 75 25w18a - 76 25w19a - 77 25w20a - 78 25w21a - 79 1.21.6 Pre-1 ~ 1.21.6 Pre-2 - 80 1.21.6 Pre-3 ~ 1.21.7 RC-1 1.21.6 81 1.21.7 RC-2 ~ 1.21.7 ~ 1.21.8 이후 버전은 제거되었으며, pack_format은 이제 선택 사항이다.
- 모든 format 버전 보기 [ 펼치기 · 접기 ]
- |format|<tablebordercolor=black,white><tablebgcolor=white,black><colbgcolor=#F5F5F5,#2D2F34> 값 ||<bgcolor=#F5F5F5,#2D2F34> 모든 버전 ||<colbgcolor=#FF7F7F,#a00000><bgcolor=#F5F5F5,#2D2F34> 정식 버전 ||
82.0 25w31a - 83.0 25w32a -
2.1.2. pack.mcmeta(향후 업데이트)
공통적으로 팩 파일 안에는pack.mcmeta
라는 파일을 만들어 주면 된다. 이 파일은 JSON 형식으로 되어있는데, 팩 제작 때 필수로 넣어야 하는 것이다. 이 과정에서 오류가 발생하면 팩을 불러오지 못한다. 파일 확장자명이 안 보인다면 윈도우 기준으로 파일 탐색기에서 위에 있는 보기를 눌러준 다음에 파일 확장명을 체크 표시해주면 된다. 이 과정을 정상적으로 끝마치면 다음 코드를 작성하면 된다.#!syntax json
{
"pack": {
"min_format": [82,0],
"max_format": [82,0],
"description": "namuwiki -- 여기는 나무위키를 지우고 자기가 원하는 글을 쓰면 팩의 설명이 된다."
}
}
중요: min_format
값과 max_format
은 데이터 팩을 적용할 마인크래프트 버전에 따라 다르게 설정해야 된다. 값은 하위 문단에서 다룬다.pack.mcmeta의 자세한 정보는 다음과 같다.
- pack < > - 팩 정보.
- description <
> - (필수사항) 팩의 설명. 작성 방법은 마인크래프트/명령어/텍스트 구성 요소 문서를 참고한다. - min_format <
> - (필수사항) 지원되는 최소 버전을 지정한다. - max_format <
> - (필수사항) 지원되는 최대 버전을 지정한다. - pack_format <
> - (선택사항) 구버전을 위한 필드로 그 자체로는 아무런 기능을 하지 않는다. - supported_formats <
> - (선택사항) 구버전을 위한 필드로 그 자체로는 아무런 기능을 하지 않는다. 예:18
,[18,26]
,{"min_inclusive":18,"max_inclusive":26}
- filter < > - 팩 로딩 시 지정된 파일에서 필터를 한다.
- block <
> - 패턴 목록 - overlays < > - (선택사항) 오버레이를 지정한다. 해당 팩의 루트 디렉터리에 저장한다.
- entries <
> - 오버레이 목록 - < > - 오버레이 하나
- min_format <
> - (필수사항) 지원되는 최소 버전을 지정한다. - max_format <
> - (필수사항) 지원되는 최대 버전을 지정한다. - formats <
> - (선택사항) 구버전을 위한 필드로 그 자체로는 아무런 기능을 하지 않는다. 예:18
,[18,26]
,{"min_inclusive":18,"max_inclusive":26}
- directory <
> - 각 버전에 대한 오버레이 디렉토리.a-z
,0-9
,_
,-
만 가능하다. - language < > - 리소스 팩 전용. 언어 메뉴에 추가 메뉴를 추가한다.
- 언어id < > - 언어 하나. 언어 id는
en_us
,ko_kr
와 같은 형식으로 작성해야한다. - name <
> - 언어 전체 이름. - region <
> - 언어 지역 이름. - bidirectional <
> - 만약 true일 경우 지정된 언어는 오른쪽에서 왼쪽으로 읽는다. 비어있다면 false로 설정한다.
예: 데이터 팩 모든 조합법 제거하기:
#!syntax json
{
"pack": {
"min_format": [82,0],
"max_format": [82,0],
"description": "namuwiki!"
},
"filter": {
"block": [
{
"namespace": ".*",
"path": "recipe/.*"
}
]
}
}
2.1.3. pack.png
"리소스 팩 선택" 화면에서 표시할 이미지 파일이다. PNG 이미지 파일 형식이며, 이미지 픽셀 크기는 정확히 128x128 이여야한다.2.1.4. 리소스 팩
#!if (문단 == null) == (앵커 == null)
를
#!if 문단 != null & 앵커 == null
의 [[마인크래프트/팩/리소스 팩#s-|]]번 문단을
#!if 문단 == null & 앵커 != null
의 [[마인크래프트/팩/리소스 팩#|]] 부분을
참고하십시오.2.1.5. 데이터 팩
#!if (문단 == null) == (앵커 == null)
를
#!if 문단 != null & 앵커 == null
의 [[마인크래프트/팩/데이터 팩#s-|]]번 문단을
#!if 문단 == null & 앵커 != null
의 [[마인크래프트/팩/데이터 팩#|]] 부분을
참고하십시오.2.2. 베드락 에디션
2.2.1. 행동 팩
몹이나 블록, 아이템, 바이옴 등을 JSON 파일을 통해 변경하거나 추가할 수 있는 팩이다. 데이터 팩보다 자유도가 높다.2.2.2. 세계(맵) 팩
베드락 에디션에서, 맵 파일을 압축한 뒤 확장자를 .mcworld로 만들고 공유할 수 있다. 번거롭게 압축 해제 하지 않아도 파일을 실행시키면 마인크래프트에서 자동으로 맵 파일을 불러올 수 있다. 베드락 에디션의 스크립트는 세계 팩에 포함된다.2.2.3. 스킨 팩
스킨을 묶어서 공유한 팩으로 주로 게임 내 상점인 마켓플레이스에서 마인코인을 주고 구매할 수 있다.2.2.4. 매시업 팩
세계 팩과 스킨 팩, 리소스 팩 중 2개 이상의 팩을 묶어서 공유한 팩으로 이것도 주로 마켓플레이스에서 접할 수 있다.#!if version2 == null
{{{#!wiki style="border:1px solid gray;border-top:5px solid gray;padding:7px;margin-bottom:0px"
[[크리에이티브 커먼즈 라이선스|[[파일:CC-white.svg|width=22.5px]]]] 이 문서의 내용 중 전체 또는 일부는 {{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/마인크래프트/팩/데이터 팩|마인크래프트/팩/데이터 팩]]}}}{{{#!if external != "o"
[[마인크래프트/팩/데이터 팩]]}}}}}} 문서의 {{{#!if uuid == null
'''uuid not found'''}}}{{{#!if uuid != null
[[https://namu.wiki/w/마인크래프트/팩/데이터 팩?uuid=10a5456b-6889-4c24-96e6-54952187a9d9|r346]]}}} 판{{{#!if paragraph != null
, [[https://namu.wiki/w/마인크래프트/팩/데이터 팩?uuid=10a5456b-6889-4c24-96e6-54952187a9d9#s-2.2|2.2번 문단]]}}}에서 가져왔습니다. [[https://namu.wiki/history/마인크래프트/팩/데이터 팩?from=346|이전 역사 보러 가기]]}}}
#!if version2 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="border:1px solid gray;border-top:5px solid gray;padding:7px;margin-bottom:0px"
[[크리에이티브 커먼즈 라이선스|[[파일:CC-white.svg|width=22.5px]]]] 이 문서의 내용 중 전체 또는 일부는 다른 문서에서 가져왔습니다.
{{{#!wiki style="text-align: center"
{{{#!folding [ 펼치기 · 접기 ]
{{{#!wiki style="text-align: left; padding: 0px 10px"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/마인크래프트/팩/데이터 팩|마인크래프트/팩/데이터 팩]]}}}{{{#!if external != "o"
[[마인크래프트/팩/데이터 팩]]}}}}}} 문서의 {{{#!if uuid == null
'''uuid not found'''}}}{{{#!if uuid != null
[[https://namu.wiki/w/마인크래프트/팩/데이터 팩?uuid=10a5456b-6889-4c24-96e6-54952187a9d9|r346]]}}} 판{{{#!if paragraph != null
, [[https://namu.wiki/w/마인크래프트/팩/데이터 팩?uuid=10a5456b-6889-4c24-96e6-54952187a9d9#s-2.2|2.2번 문단]]}}} ([[https://namu.wiki/history/마인크래프트/팩/데이터 팩?from=346|이전 역사]])
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/마인크래프트/팩/리소스 팩|마인크래프트/팩/리소스 팩]]}}}{{{#!if external != "o"
[[마인크래프트/팩/리소스 팩]]}}}}}} 문서의 {{{#!if uuid2 == null
'''uuid2 not found'''}}}{{{#!if uuid2 != null
[[https://namu.wiki/w/마인크래프트/팩/리소스 팩?uuid=3587f8e6-1286-419b-93fc-b5e597ba872d|r232]]}}} 판{{{#!if paragraph2 != null
, [[https://namu.wiki/w/마인크래프트/팩/리소스 팩?uuid=3587f8e6-1286-419b-93fc-b5e597ba872d#s-5.1.1|5.1.1번 문단]]}}} ([[https://namu.wiki/history/마인크래프트/팩/리소스 팩?from=232|이전 역사]]){{{#!if version3 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid3 == null
'''uuid3 not found'''}}}{{{#!if uuid3 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph3 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version4 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid4 == null
'''uuid4 not found'''}}}{{{#!if uuid4 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph4 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version5 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid5 == null
'''uuid5 not found'''}}}{{{#!if uuid5 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph5 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version6 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid6 == null
'''uuid6 not found'''}}}{{{#!if uuid6 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph6 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version7 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid7 == null
'''uuid7 not found'''}}}{{{#!if uuid7 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph7 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version8 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid8 == null
'''uuid8 not found'''}}}{{{#!if uuid8 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph8 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version9 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid9 == null
'''uuid9 not found'''}}}{{{#!if uuid9 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph9 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version10 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid10 == null
'''uuid10 not found'''}}}{{{#!if uuid10 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph10 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version11 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid11 == null
'''uuid11 not found'''}}}{{{#!if uuid11 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph11 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version12 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid12 == null
'''uuid12 not found'''}}}{{{#!if uuid12 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph12 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version13 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid13 == null
'''uuid13 not found'''}}}{{{#!if uuid13 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph13 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version14 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid14 == null
'''uuid14 not found'''}}}{{{#!if uuid14 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph14 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version15 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid15 == null
'''uuid15 not found'''}}}{{{#!if uuid15 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph15 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version16 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid16 == null
'''uuid16 not found'''}}}{{{#!if uuid16 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph16 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version17 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid17 == null
'''uuid17 not found'''}}}{{{#!if uuid17 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph17 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version18 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid18 == null
'''uuid18 not found'''}}}{{{#!if uuid18 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph18 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version19 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid19 == null
'''uuid19 not found'''}}}{{{#!if uuid19 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph19 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version20 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid20 == null
'''uuid20 not found'''}}}{{{#!if uuid20 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph20 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version21 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid21 == null
'''uuid21 not found'''}}}{{{#!if uuid21 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph21 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version22 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid22 == null
'''uuid22 not found'''}}}{{{#!if uuid22 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph22 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version23 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid23 == null
'''uuid23 not found'''}}}{{{#!if uuid23 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph23 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version24 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid24 == null
'''uuid24 not found'''}}}{{{#!if uuid24 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph24 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version25 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid25 == null
'''uuid25 not found'''}}}{{{#!if uuid25 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph25 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version26 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid26 == null
'''uuid26 not found'''}}}{{{#!if uuid26 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph26 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version27 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid27 == null
'''uuid27 not found'''}}}{{{#!if uuid27 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph27 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version28 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid28 == null
'''uuid28 not found'''}}}{{{#!if uuid28 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph28 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version29 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid29 == null
'''uuid29 not found'''}}}{{{#!if uuid29 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph29 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version30 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid30 == null
'''uuid30 not found'''}}}{{{#!if uuid30 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph30 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version31 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid31 == null
'''uuid31 not found'''}}}{{{#!if uuid31 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph31 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version32 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid32 == null
'''uuid32 not found'''}}}{{{#!if uuid32 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph32 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version33 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid33 == null
'''uuid33 not found'''}}}{{{#!if uuid33 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph33 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version34 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid34 == null
'''uuid34 not found'''}}}{{{#!if uuid34 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph34 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version35 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid35 == null
'''uuid35 not found'''}}}{{{#!if uuid35 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph35 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version36 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid36 == null
'''uuid36 not found'''}}}{{{#!if uuid36 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph36 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version37 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid37 == null
'''uuid37 not found'''}}}{{{#!if uuid37 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph37 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version38 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid38 == null
'''uuid38 not found'''}}}{{{#!if uuid38 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph38 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version39 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid39 == null
'''uuid39 not found'''}}}{{{#!if uuid39 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph39 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version40 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid40 == null
'''uuid40 not found'''}}}{{{#!if uuid40 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph40 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version41 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid41 == null
'''uuid41 not found'''}}}{{{#!if uuid41 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph41 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version42 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid42 == null
'''uuid42 not found'''}}}{{{#!if uuid42 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph42 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version43 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid43 == null
'''uuid43 not found'''}}}{{{#!if uuid43 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph43 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version44 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid44 == null
'''uuid44 not found'''}}}{{{#!if uuid44 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph44 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version45 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid45 == null
'''uuid45 not found'''}}}{{{#!if uuid45 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph45 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version46 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid46 == null
'''uuid46 not found'''}}}{{{#!if uuid46 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph46 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version47 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid47 == null
'''uuid47 not found'''}}}{{{#!if uuid47 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph47 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version48 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid48 == null
'''uuid48 not found'''}}}{{{#!if uuid48 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph48 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version49 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid49 == null
'''uuid49 not found'''}}}{{{#!if uuid49 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph49 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}{{{#!if version50 != null
{{{#!wiki style="display: block;"
{{{#!wiki style="display: inline-block"
{{{#!if external == "o"
[[https://namu.wiki/w/|]]}}}{{{#!if external != "o"
[[]]}}}}}} 문서의 {{{#!if uuid50 == null
'''uuid50 not found'''}}}{{{#!if uuid50 != null
[[https://namu.wiki/w/?uuid=|r]]}}} 판{{{#!if paragraph50 != null
, [[https://namu.wiki/w/?uuid=#s-|번 문단]]}}} ([[https://namu.wiki/history/?from=|이전 역사]])}}}}}}}}}}}}}}}}}}}}}