diff --git a/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py b/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py index 981d0231..6f56ed26 100644 --- a/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py +++ b/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py @@ -212,13 +212,33 @@ def build() -> tuple[ require_code_edition(data["effective_date"], "공종 마스터 빌드 — 표 형태·부모 모양 판정") tables = data["variables"]["pum"]["tables"] - # 원문을 함께 연다 — 밑수가 표 밖(본문)에 있기 때문이다. 못 열면 밑수 없이 간다. - source_lines: list[str] = [] - for entry in data.get("sources") or []: - candidate = ROOT / str(entry.get("path") or "") - if candidate.is_file(): - source_lines = candidate.read_text(encoding="utf-8").splitlines() - break + # 원문을 함께 연다 — 밑수·[주]가 표 밖(본문)에 있기 때문이다. 못 열면 밑수 없이 간다. + # ⚠ **표마다 제 원문 파일을 본다** — 건설은 원문이 장별로 갈려 있고 `line` 도 그 파일 기준이다. + # 첫 파일만 열어 모든 표의 줄 번호를 맞대면 **남의 장 글을 근거로 읽는다** + # (2026-09-18: 그 탓에 건설 밑수 미판독 79 가 헛으로 세어졌다). + _line_cache: dict[str, list[str]] = {} + + def lines_of(table: dict[str, Any]) -> list[str]: + name = str(table.get("source_file") or "") + if name not in _line_cache: + candidate = ROOT / name + if not candidate.is_file(): + candidate = candidate.with_suffix(".md") + if not candidate.is_file(): # 산림처럼 표에 파일이 안 적힌 판 — 첫 원천을 쓴다 + first = next( + ( + ROOT / str(e.get("path") or "") + for e in data.get("sources") or [] + if (ROOT / str(e.get("path") or "")).is_file() + ), + None, + ) + candidate = first or candidate + _line_cache[name] = ( + candidate.read_text(encoding="utf-8").splitlines() if candidate.is_file() else [] + ) + return _line_cache[name] + toc_table = next(t for t in tables if t["table_id"] == "F0001") nodes = parse_toc(toc_table["rows"]) toc_corrections = renumber_from_body(nodes, tables) @@ -247,7 +267,7 @@ def build() -> tuple[ if node is not None and not title_names_node(section, node): node = None # 번호만 겹친 딴 문서 표(부록 사례) — 못 붙인 표 목록으로 entry = table_entry( - table, section, number, chapter, source_lines, node and node["name"], report + table, section, number, chapter, lines_of(table), node and node["name"], report ) if node is None: orphans.append({"pum_table_id": table["table_id"], "section": section}) diff --git a/B08_Quantity/B08_Quantity_Build_WorkItemMaster_FormsConst.py b/B08_Quantity/B08_Quantity_Build_WorkItemMaster_FormsConst.py index 51bc32a0..7523ea77 100644 --- a/B08_Quantity/B08_Quantity_Build_WorkItemMaster_FormsConst.py +++ b/B08_Quantity/B08_Quantity_Build_WorkItemMaster_FormsConst.py @@ -45,6 +45,13 @@ _ASIDE_HEAD_RE = re.compile(r"비고|적용기준|산출근거|산출식|참고" COST_ITEMS = {"재료비", "설치비", "노무비", "경비", "제작비", "운송비", "자재비", "주재료비"} #: 공식 기호 한 글자(아래첨자·숫자 꼬리 포함) — `β` · `E` · `t 1` · `q₀`. _SYMBOL_RE = re.compile(r"[A-Za-zα-ωΑ-Ω][₀-₉0-9]?") +#: 할증·보정 낱말 — 값이 품이 아니라 **다른 값에 곱하는 율**임을 원문이 이름으로 말한 자리. +_RATE_WORD_RE = re.compile(r"할증|할인|가산|감액|경비의|노무비의|재료비의|기계경비의|효\s*율") +#: 능력(작업량·시공량·소요시간) 낱말 — 「한 시간·하루에 얼마」라 품 표가 아니라 능력 표다. +_CAPACITY_RE = re.compile( + r"작업량|시공량|시공능력|작업능력|처리량|산출량|소요시간|작업시간|" + r"㎥/hr|㎡/hr|본/hr|톤/hr|ton/hr|hr/ton|min/|/hr|/일\)" +) def _squeeze(text: Any) -> str: @@ -118,9 +125,78 @@ def judged_const_form(table: dict[str, Any]) -> tuple[str, str] | None: return "coefficient", f"줄 이름이 공식 기호뿐 {sorted(set(named))[:4]}" # ⑧ 값이 모두 백분율 — 품·자재 수량이 아니라 요율(층별 할증 `5% 8% 12%`) + # ⚠ 「0」은 백분율 줄의 첫 칸으로 자주 온다(지하층 0 · 4층 5% …) — 셈에서 빼고 본다. percents = [_squeeze(c) for c in _value_cells(table) if _squeeze(c)] figures = [x for x in percents if _NUMBERS_RE.match(x) or x.endswith("%")] - if figures and all(x.endswith("%") for x in figures) and len(figures) >= 3: + marks = [x for x in figures if x not in ("0", "0.0")] + if marks and all(x.endswith("%") for x in marks) and len(marks) >= 3: return "coefficient", "값이 모두 백분율 — 요율표" + # ⑨ 할증·보정 낱말이 줄 이름·머리에 있고 값이 있음 — 율표(수직고별 할증률 · 기계경비의 %) + if found := next((x for x in headers + first_col if _RATE_WORD_RE.search(x)), None): + return "coefficient", f"'{found}' — 할증·보정 율표" + + # ⑩ 작업량·시공능력·소요시간 표 — 품이 아니라 **능력**이다(한 시간·하루에 얼마) + if found := next((x for x in headers + first_col if _CAPACITY_RE.search(x)), None): + return "productivity", f"'{found}' — 작업량·시공능력 표" + + # ⑪ 기계 기초표 — 가격·손료는 **기계 벌(mach_base_2026.json)이 정본**이라 공종 품이 아님 + if any("가격" in h for h in headers) and any("분류번호" in h for h in headers): + return "reference", "기계 가격표 — 기계 벌이 정본" + if any("시간당" in h for h in headers) and any("분류번호" in h for h in headers): + return "reference", "기계 손료표 — 기계 벌이 정본" + + # ⑫ 머리 칸이 시공능력 공식 기호 — `K`·`E`·`f`·`t(분)` (건설 8-2 기계 시공능력 밑값) + if found := next((h for h in headers if _FORMULA_HEAD_RE.fullmatch(h)), None): + return "coefficient", f"머리가 공식 기호 '{found}' — 시공능력 밑값" + + # ⑬ 줄 이름이 시간 — 「시간(분)」·「사이클타임」은 품이 아니라 **걸리는 시간**이다 + if found := next((x for x in first_col if _TIME_ROW_RE.search(x)), None): + return "productivity", f"줄 이름 '{found}' — 걸리는 시간" + + # ⑭ 줄 이름이 사용량·소요량 — 자재 소요량 표(`사용량(kg) | 6.5 | 8.0`) + if found := next((x for x in first_col if _AMOUNT_ROW_RE.search(x)), None): + return "requirement", f"줄 이름 '{found}' — 자재 소요량" + + # ⑮ 다짐 기준표 — 두께·횟수·규격을 정한 **시방 기준**이지 품이 아님(건설 8-2-9 롤러) + if sum(1 for h in headers if _COMPACT_RE.search(h)) >= 2: + return "reference", "다짐 두께·횟수 기준표 — 시방 기준" + return None + + +#: 머리 한 칸이 공식 기호뿐 — 건설 8-2 시공능력 식의 밑값(`K`·`E`·`f`·`t(분)`·`C(분)`). +_FORMULA_HEAD_RE = re.compile(r"[A-Za-zα-ωΑ-Ω][₀-₉0-9]?(?:\([^)]{1,4}\))?") +#: 줄 이름이 「걸리는 시간」 — 품(사람·날)이 아니라 능력 쪽 값. +_TIME_ROW_RE = re.compile(r"시간\(|\(분\)|사이클|주기\(") +#: 줄 이름이 자재 쓰는 양. +_AMOUNT_ROW_RE = re.compile(r"사용량|소요량|사용수량") +#: 다짐 기준표 머리 — 두께·횟수·규격을 정한 시방 기준. +_COMPACT_RE = re.compile(r"다짐두께|다짐횟수|다짐기계|다짐") + +#: 머리에 구간이 적힌 표 — 「0∼10m」·「10m미만」처럼 **조건으로 갈리는** 표. +_RANGE_RE = re.compile(r"[∼~~]|미만|이상|이하|초과") +#: 규격·치수 단위 — 값이 이것뿐이면 품이 아니라 **규격 배정·기준**이다. +_SPEC_UNIT_RE = re.compile(r"^[\d,.]+\s*(?:㎜|mm|㎝|m|㎡|㎥|inch|인치|kg|㎏|톤|ton|개|주|본)$") + + +def const_undetermined_kind(table: dict[str, Any]) -> str: + """못 가른 까닭을 **갈래로** 적는다(2026-09-18 브레인 — 남은 것을 눈으로 가르기 위해). + + ⚠ 갈래는 「어디를 더 봐야 하나」를 가리킬 뿐, 형태를 짐작해 채우지 않는다. + """ + headers = [_squeeze(h) for h in table.get("headers") or []] + rows = table.get("rows") or [] + first_row = [_squeeze(c) for c in (rows[0] if rows else [])] + values = [_squeeze(c) for c in _value_cells(table) if _squeeze(c)] + + if not _has_number(values): + return "값이 없음 — 설명·서식·이름 목록" + if first_row and not any(_NUMBER_RE.match(c) for c in first_row) and sum(1 for c in first_row if c) >= 2: # fmt: skip + return "머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" + if any(_RANGE_RE.search(h) for h in headers): + return "머리가 구간 — 조건으로 갈리는 표" + figures = [c for c in values if _NUMBERS_RE.match(c) or _SPEC_UNIT_RE.match(c)] + if figures and all(_SPEC_UNIT_RE.match(c) for c in figures): + return "값이 규격·치수뿐 — 기준표(원문이 품을 안 적음)" + return "그 밖 — 사람이 봐야 함" diff --git a/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Table.py b/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Table.py index 9feaa1ae..669401a4 100644 --- a/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Table.py +++ b/B08_Quantity/B08_Quantity_Build_WorkItemMaster_Table.py @@ -15,7 +15,10 @@ from B08_Quantity.B08_Quantity_Build_WorkItemMaster_Forms import ( judged_basis, judged_form, ) -from B08_Quantity.B08_Quantity_Build_WorkItemMaster_FormsConst import judged_const_form +from B08_Quantity.B08_Quantity_Build_WorkItemMaster_FormsConst import ( + const_undetermined_kind, + judged_const_form, +) # ── 형태 판정 ──────────────────────────────────────────────────────────── # 헤더·비고 문자열에서 찾는 표지. 앞의 것이 먼저 걸린다(생산량형이 더 좁은 표현이라 우선). @@ -198,7 +201,8 @@ def detect_form(table: dict[str, Any], chapter: str | None) -> tuple[str, str]: # ⚠ 여기까지 왔다는 것은 산림 판정이 이미 못 가렸다는 뜻이라, 산림 결과는 흔들리지 않는다. if hit := judged_const_form(table): return hit[0], f"건설 꼴 — {hit[1]}" - return "undetermined", "헤더·첫 행에 단위·밑수·직종 표지 없음" + # 못 가른 것은 **갈래를 적어** 남긴다 — 「어디를 더 봐야 하나」가 보여야 줄일 수 있다. + return "undetermined", f"단위·밑수·직종 표지 없음 · {const_undetermined_kind(table)}" BASIS_RE = re.compile(r"(\d[\d,.]*)\s*(㎥|m3|㎡|m2|㏊|ha|km|㎞|m|인|본|개|kg|㎏|톤|ton)\s*당") @@ -218,8 +222,12 @@ SOURCE_BASIS_RATIO_RE = re.compile( #: 밑수 단위 — 건설은 「일·기·조·명·틀」도 씀(2026-09-18 브레인 · 건설 밑수 미판독 162). #: ⚠ 「회」는 넣지 않는다 — 2026-09-17 데스크탑 서브가 원문을 열어 **밑수 단위가 아니라고** 판정(10-4 중기운반). +#: 2026-09-18 건설 미판독 101 을 보고 넓힘 — 원문이 세는 물건이 그대로 밑수인 자리. +#: `(1대당)` · `(층당)` · `(set당)` · `(Joint당)` · `(1발파당)`. +#: ⚠ 「단위당」은 안 넣는다 — 무엇의 단위인지 원문이 안 적었다. _BASIS_UNIT = ( "공㎥|㎥|m3|㎡|m2|㏊|ha|㎞|km|m|매|본|개소|개|인|공|kg|㎏|톤|ton|주|식|대|일|기|조|명|틀" + "|층|set|SET|Joint|joint|발파|구멍|孔|㎢|km2|도엽|ea|EA" ) #: ⚠ **괄호 앞뒤에 글이 붙은 건설 꼴**도 읽는다 — `(용접개소당)` · `(세면기 개당)` · `(절단길이 10m당)` · #: `(m당 : 관길이기준)`. 산림은 괄호 안이 밑수뿐이라 이 넓히기로 값이 달라지지 않는다. @@ -231,6 +239,8 @@ SOURCE_BASIS_RE = re.compile( ) #: 한 괄호 안의 밑수 토막 — 둘 이상이면 못 고른다(`(1ha당, 100본당)`). _BASIS_TOKEN_RE = re.compile(rf"[\d,]*\.?\d*\s*(?:{_BASIS_UNIT})\s*당") +#: 「당」이 안 붙은 단위까지 센다 — `1일 1대당` 처럼 **단위가 둘인 칸**을 가려내는 데 쓴다. +_BASIS_UNIT_TOKEN_RE = re.compile(rf"[\d,]+\s*(?:{_BASIS_UNIT})") #: 표 위로 몇 줄까지 거슬러 볼 것인가. 더 올라가면 **앞 표의 밑수**를 잘못 물어 온다. SOURCE_LOOKBACK = 6 @@ -749,6 +759,21 @@ def table_entry( if not absent and basis_qty is None and basis_unit is None: basis_qty, basis_unit = detect_basis(table) basis_source = "표 안" if basis_unit else None + # ⚠ 원문이 **표 머리 칸에** 밑수를 적어 둔 자리도 읽는다 — 「(단위 : ㎢)」·「(도엽당)」 + # (2026-09-18 건설 미판독 97 을 갈라 보니 이 꼴이 열넷). + if not absent and basis_unit is None: + cells = [*(table.get("headers") or [])] + cells += [c for row in (table.get("rows") or [])[:2] for c in row] + for cell in cells: + text = norm(cell) + # ⚠ 한 칸에 단위가 둘이면(`손료계수 (1일 1대당)`) 어느 쪽이 밑수인지 못 가린다 — + # 한쪽만 집으면 조용히 틀리므로 **안 읽고 넘긴다**. + if len(_BASIS_UNIT_TOKEN_RE.findall(text)) > 1: + continue + qty, unit = basis_from_source([text, "", "|"], 3) + if unit: + basis_qty, basis_unit, basis_source = qty, unit, "표 머리" + break elif basis_source is None: basis_source = "본문" # 본문·표 안에 없을 때만 **절 이름**을 본다(4-2-2 「1,000㎡당」) — 이름 전체가 밑수일 때만. @@ -776,9 +801,14 @@ def table_entry( "line": table.get("line"), # ⚠ 「원문 부재」는 **채울 것이 아니다** — 없는 값을 지어내면 안 된다. # 「미판독」만 진짜 할 일이다(2026-09-18 브레인 · 안티그래비티 3바퀴). + # ⚠ **작업조 표는 밑수가 애초에 표 밖이다** — 하루 편성 인원·장비를 적고 + # 시공량은 [주]·다른 표에 있다. 「미판독」으로 세면 없는 할 일이 생긴다 + # (2026-09-18 건설 미판독 101 가운데 79 가 이 꼴이었다). "why": absent or ( - "미판독 — 원문이 적었는데 우리가 못 읽음" + "원문 부재 — 작업조 표(하루 편성) · 밑수는 표 밖의 시공량" + if crew_table(table) + else "미판독 — 원문이 적었는데 우리가 못 읽음" if source_declares_basis(source_lines, int(table.get("line") or 0), table) else "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" ), diff --git a/resources/data_master_labels/labels_2026-01-01.json b/resources/data_master_labels/labels_2026-01-01.json index ed2b8bc9..45de5be3 100644 --- a/resources/data_master_labels/labels_2026-01-01.json +++ b/resources/data_master_labels/labels_2026-01-01.json @@ -6363,7 +6363,7 @@ "name_ko": "밑수 못 찾은 표", "summary": "기준 수량을 못 읽은 품셈 표. 1 단위당으로 단정하면 곱셈이 틀린다.", "shape": "list", - "rows": 81, + "rows": 79, "columns": [ { "key": "pum_table_id", @@ -7267,7 +7267,7 @@ "name_ko": "형태 미판정 표", "summary": "생산량형인지 소요량형인지 못 정한 표.", "shape": "list", - "rows": 275, + "rows": 196, "columns": [ { "key": "pum_table_id", @@ -7323,7 +7323,7 @@ "name_ko": "밑수 미확보 표", "summary": "기준 수량을 못 찾은 표.", "shape": "list", - "rows": 439, + "rows": 431, "columns": [ { "key": "pum_table_id", diff --git a/resources/data_work_item_master/_manifest.json b/resources/data_work_item_master/_manifest.json index 6f8f5a26..e923dc6f 100644 --- a/resources/data_work_item_master/_manifest.json +++ b/resources/data_work_item_master/_manifest.json @@ -1,7 +1,7 @@ { "schema_version": "1.0", "dataset_id": "data_work_item_master_manifest", - "generated_at": "2026-09-18T12:38:26+09:00", + "generated_at": "2026-09-18T12:53:57+09:00", "built_by": "B08_Quantity/B08_Quantity_Build_WorkItemMaster.py", "source": { "dataset_id": "pum_forest", @@ -12,8 +12,8 @@ "files": [ { "file": "work_item_master_2026-01-01.json", - "sha256": "00bffb68105d4be348c92aa6d7c436eedb85170394d4f35ea68a814ae8fb46c1", - "size_bytes": 1095109 + "sha256": "41a9ebd574ed425ca9cc180f3b9b5cbc3fa603d3e9a94e4731f2db275fb101fe", + "size_bytes": 1095122 }, { "file": "form_undetermined_2026-01-01.json", @@ -22,8 +22,8 @@ }, { "file": "basis_missing_2026-01-01.json", - "sha256": "ab1fef3d606fefb142d1d4c2af6bba82e3ab3a6b03d05f9ab358f67d490a86df", - "size_bytes": 18830 + "sha256": "57c58458ef2a95aa67a5dd2e15989f2613c628e7c697c84d4a944349fa102422", + "size_bytes": 18434 } ] } \ No newline at end of file diff --git a/resources/data_work_item_master/_manifest_const.json b/resources/data_work_item_master/_manifest_const.json index 02d2bf9f..faf93e40 100644 --- a/resources/data_work_item_master/_manifest_const.json +++ b/resources/data_work_item_master/_manifest_const.json @@ -1,29 +1,29 @@ { "schema_version": "1.0", "dataset_id": "data_work_item_master_manifest", - "generated_at": "2026-09-18T12:39:43+09:00", + "generated_at": "2026-09-18T12:54:47+09:00", "built_by": "B08_Quantity/B08_Quantity_Build_WorkItemMaster.py", "source": { "dataset_id": "pum_const", "effective_date": "2026-01-01", - "sha256": "207129f59d95baed23a3a360c262a7250fb17fc44eada0c321d07825c410ee20", + "sha256": "b8c85e6ab5b242d5d82a42ff761ec4e144309a1389bc267ea2f1ceabc3d4b8f1", "file": "pum_const_2026.json" }, "files": [ { "file": "const_work_item_master_2026-01-01.json", - "sha256": "31cf0d289351d45a804d2d2cf0b6c489786eabc69e685b8e413d3a00ec4e1fcc", - "size_bytes": 4708119 + "sha256": "a3862986f252c2c395d765a879cd2e60899f011559268d27539bb051930738d1", + "size_bytes": 4712576 }, { "file": "const_form_undetermined_2026-01-01.json", - "sha256": "5a526986ac85619a3dd0b8b377a39a36ce18ed272641215089ab47cc45834570", - "size_bytes": 152983 + "sha256": "b1b4619532c561bb17e53881e5732548a0f8e666dee7f841d9507f1ba760dddf", + "size_bytes": 115516 }, { "file": "const_basis_missing_2026-01-01.json", - "sha256": "90ef86c25df7e1f7e7b120aeeaec6813bf5b1f690d46e4fd2178d1e22f4497b5", - "size_bytes": 111824 + "sha256": "bdc0720276122659f931f7144cce751aa18ea09d706ca7eb34a438b5e969bf7e", + "size_bytes": 110609 } ] } \ No newline at end of file diff --git a/resources/data_work_item_master/basis_missing_2026-01-01.json b/resources/data_work_item_master/basis_missing_2026-01-01.json index 09cc66a3..63375984 100644 --- a/resources/data_work_item_master/basis_missing_2026-01-01.json +++ b/resources/data_work_item_master/basis_missing_2026-01-01.json @@ -417,20 +417,6 @@ "line": 4373, "why": "미판독 — 원문이 적었는데 우리가 못 읽음" }, - { - "pum_table_id": "F0228", - "section": "8-6-2. 드론방제", - "pum_form": "requirement", - "line": 4541, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "F0229", - "section": "8-6-2. 드론방제", - "pum_form": "requirement", - "line": 4561, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "F0230", "section": "8-6-3. 지상방제", diff --git a/resources/data_work_item_master/const_basis_missing_2026-01-01.json b/resources/data_work_item_master/const_basis_missing_2026-01-01.json index e79721e0..05478db8 100644 --- a/resources/data_work_item_master/const_basis_missing_2026-01-01.json +++ b/resources/data_work_item_master/const_basis_missing_2026-01-01.json @@ -88,13 +88,6 @@ "line": 1109, "why": "미판독 — 원문이 적었는데 우리가 못 읽음" }, - { - "pum_table_id": "C0148", - "section": "2-12-2 마스트 설치 및 해체('23년 신설)(층당)", - "pum_form": "requirement", - "line": 1162, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C0150", "section": "2-12-3 축중계 설치 및 해체('09년 신설, '10년 보완)(회당)", @@ -207,6 +200,13 @@ "line": 118, "why": "미판독 — 원문이 적었는데 우리가 못 읽음" }, + { + "pum_table_id": "C0258", + "section": "2-2-2 주요자재 / 강재류’를 적용한다.5-1-7 어스앵커 공법('20, '26년 보완)", + "pum_form": "productivity", + "line": 142, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C0263", "section": "5-1-9 주열식 현장벽체공법(CIP,Cast In Placed Pile)('26년 신설)", @@ -235,6 +235,13 @@ "line": 271, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C0269", + "section": "5-1-9 주열식 현장벽체공법(CIP,Cast In Placed Pile)('26년 신설)", + "pum_form": "productivity", + "line": 291, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C0271", "section": "5-1-10 차수그라우팅('26년 신설)", @@ -340,6 +347,13 @@ "line": 670, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C0303", + "section": "85-3 말뚝5-3-1 기성말뚝 기초('99년 신설, '15, '16, '20, '26년 보완)", + "pum_form": "productivity", + "line": 698, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C0306", "section": "5-3-2 말뚝박기용 천공('08, '15, '16, '20, '25, '26년 보완)", @@ -389,6 +403,13 @@ "line": 869, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C0322", + "section": "5-3-5 현장타설말뚝('15, '21, '26년 보완)", + "pum_form": "productivity", + "line": 927, + "why": "미판독 — 원문이 적었는데 우리가 못 읽음" + }, { "pum_table_id": "C0324", "section": "5-3-5 현장타설말뚝('15, '21, '26년 보완)", @@ -424,13 +445,6 @@ "line": 487, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C0376", - "section": "6-3-10 신축이음(Expansion Joint) 설치('18년 신설)", - "pum_form": "requirement", - "line": 561, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C0421", "section": "8-1-2 공사규모별 표준건설기계('04, '17, '25년 보완)", @@ -459,6 +473,20 @@ "line": 272, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C0447", + "section": "8-2-6 모터 스크레이퍼Q = ⋅q⋅f⋅E cm여기서Q: 시간당 작업량(㎥/hr)q: 적재함용적×적재계수(k)f: 체적환산계수E: 작업효율cm : 1회 싸이클 시간", + "pum_form": "productivity", + "line": 440, + "why": "미판독 — 원문이 적었는데 우리가 못 읽음" + }, + { + "pum_table_id": "C0449", + "section": "8-2-6 모터 스크레이퍼Q = ⋅q⋅f⋅E cm여기서Q: 시간당 작업량(㎥/hr)q: 적재함용적×적재계수(k)f: 체적환산계수E: 작업효율cm : 1회 싸이클 시간", + "pum_form": "productivity", + "line": 479, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C0450", "section": "8-2-6 모터 스크레이퍼Q = ⋅q⋅f⋅E cm여기서Q: 시간당 작업량(㎥/hr)q: 적재함용적×적재계수(k)f: 체적환산계수E: 작업효율cm : 1회 싸이클 시간", @@ -480,6 +508,27 @@ "line": 861, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C0475", + "section": "8-2-15 법면다짐기", + "pum_form": "productivity", + "line": 894, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, + { + "pum_table_id": "C0484", + "section": "8-2-19 콘크리트 운반", + "pum_form": "productivity", + "line": 1006, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, + { + "pum_table_id": "C0491", + "section": "8-2-19 콘크리트 운반", + "pum_form": "productivity", + "line": 1092, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C0493", "section": "8-2-19 콘크리트 운반", @@ -1033,20 +1082,6 @@ "line": 426, "why": "미판독 — 원문이 적었는데 우리가 못 읽음" }, - { - "pum_table_id": "C0804", - "section": "1-8-2 도로 표지판 설치('08년 신설, '20년 보완)(일당)", - "pum_form": "requirement", - "line": 606, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C0855", - "section": "3-2-5 터널굴착 1발파당 작업인원('07, '20년 보완)(1발파당)", - "pum_form": "requirement", - "line": 149, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C0856", "section": "3-2-5 터널굴착 1발파당 작업인원('07, '20년 보완)(1발파당)", @@ -1110,13 +1145,6 @@ "line": 168, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C0979", - "section": "7-4-3 배송관 진수(set당)", - "pum_form": "requirement", - "line": 303, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C0980", "section": "7-4-3 배송관 진수(set당)", @@ -1544,6 +1572,13 @@ "line": 1844, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C1128", + "section": "9-5-4 수치지도 작성('21, '22, '24, '26년 보완)", + "pum_form": "productivity", + "line": 1851, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C1131", "section": "9-5-4 수치지도 작성('21, '22, '24, '26년 보완)", @@ -1558,6 +1593,13 @@ "line": 1937, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C1138", + "section": "9-5-4 수치지도 작성('21, '22, '24, '26년 보완)", + "pum_form": "productivity", + "line": 1952, + "why": "미판독 — 원문이 적었는데 우리가 못 읽음" + }, { "pum_table_id": "C1139", "section": "9-5-4/2. 수동입력'의 품을 적용한다.", @@ -1705,13 +1747,6 @@ "line": 2889, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C1233", - "section": "9-5-4/2. 수동입력’을적용한다.", - "pum_form": "requirement", - "line": 2922, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C1246", "section": "9-5-4 9. 수치표고모형구축’의 ‘가. 항공레이저측량에 의한 방법(레이저지형자료취득, 자료처리, 수치표고모형제작, 정리 및 점검)’ 공정에 한하여 적용한다.", @@ -1747,48 +1782,6 @@ "line": 3171, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C1260", - "section": "9-5-6 지도제작(기본도)", - "pum_form": "requirement", - "line": 3191, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1263", - "section": "9-5-6 지도제작(기본도)", - "pum_form": "requirement", - "line": 3216, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1266", - "section": "9-5-6 지도제작(기본도)", - "pum_form": "requirement", - "line": 3245, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1267", - "section": "9-5-6 지도제작(기본도)", - "pum_form": "requirement", - "line": 3253, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1270", - "section": "9-5-7 토지이용 현황도 제작", - "pum_form": "requirement", - "line": 3283, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1272", - "section": "9-5-7 토지이용 현황도 제작", - "pum_form": "requirement", - "line": 3300, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C1274", "section": "9-5-9 정밀도로지도 구축('19년 신설, '20년 보완)", @@ -2132,6 +2125,13 @@ "line": 4600, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, + { + "pum_table_id": "C1412", + "section": "1-1 철골 가공 조립(공장생산)1-1-1 기본철골공수('08, '13년 보완)", + "pum_form": "requirement", + "line": 26, + "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" + }, { "pum_table_id": "C1415", "section": "1-1-3 기본용접공수", @@ -2433,13 +2433,6 @@ "line": 541, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C1671", - "section": "13-1-7 장거리 배관('93, '26년 보완)(Joint당)", - "pum_form": "requirement", - "line": 643, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C1674", "section": "13-1-8 이중보온관 설치('26년 보완)", @@ -2468,41 +2461,6 @@ "line": 1149, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C1703", - "section": "13-3 배관 및 기기보온13-3-1 pipe보온('04년 보완)", - "pum_form": "requirement", - "line": 1288, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1704", - "section": "13-3 배관 및 기기보온13-3-1 pipe보온('04년 보완)", - "pum_form": "requirement", - "line": 1319, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1705", - "section": "13-3 배관 및 기기보온13-3-1 pipe보온('04년 보완)", - "pum_form": "requirement", - "line": 1345, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1706", - "section": "13-3 배관 및 기기보온13-3-1 pipe보온('04년 보완)", - "pum_form": "requirement", - "line": 1376, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, - { - "pum_table_id": "C1707", - "section": "13-3 배관 및 기기보온13-3-1 pipe보온('04년 보완)", - "pum_form": "requirement", - "line": 1402, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C1720", "section": "13-4-3 STORAGE TANK", @@ -2552,13 +2510,6 @@ "line": 1726, "why": "원문 부재 — 원문에 밑수가 아예 없음(채우면 지어내는 꼴)" }, - { - "pum_table_id": "C1731", - "section": "13-5-2 보일러 드럼 설치(대당)", - "pum_form": "requirement", - "line": 1739, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C1732", "section": "13-5-2 보일러 드럼 설치(대당)", @@ -3063,13 +3014,6 @@ "line": 162, "why": "미판독 — 원문이 적었는데 우리가 못 읽음" }, - { - "pum_table_id": "C2130", - "section": "2-2-13 도상갱환('11년 신설)", - "pum_form": "requirement", - "line": 1088, - "why": "미판독 — 원문이 적었는데 우리가 못 읽음" - }, { "pum_table_id": "C2268", "section": "3-1-5 석축 헐기(인력)('22년 보완)", diff --git a/resources/data_work_item_master/const_form_undetermined_2026-01-01.json b/resources/data_work_item_master/const_form_undetermined_2026-01-01.json index 00aa86b6..55ca1372 100644 --- a/resources/data_work_item_master/const_form_undetermined_2026-01-01.json +++ b/resources/data_work_item_master/const_form_undetermined_2026-01-01.json @@ -27,30 +27,7 @@ "1인당" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0149", - "section": "2-12-2 마스트 설치 및 해체", - "headers": [ - "지하층 및 1∼3층", - "4∼6층", - "7∼9층", - "10∼12층", - "13∼15층", - "16∼18층" - ], - "first_rows": [ - [ - "0", - "5%", - "8%", - "12%", - "16%", - "20%" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0154", @@ -80,62 +57,7 @@ "10 8 6 4.5" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0179", - "section": "3-3-8 암파쇄(유압식 할암공법)", - "headers": [ - "구 분", - "유압식 크롤러드릴", - "굴착기+대형브레이커" - ], - "first_rows": [ - [ - "기계경비의", - "24%", - "2%" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0199", - "section": "3-7-4 절토사면 녹화", - "headers": [ - "수직고", - "20 ∼ 30m", - "30 ∼ 50m", - "50m 이상" - ], - "first_rows": [ - [ - "할증률(%)", - "18", - "24", - "30" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0203", - "section": "3-7-4 절토사면 녹화", - "headers": [ - "수직고", - "20 ∼ 30m", - "30 ∼ 50m", - "50m 이상" - ], - "first_rows": [ - [ - "할증률(%)", - "18", - "24", - "30" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0216", @@ -166,7 +88,7 @@ "39" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0238", @@ -193,7 +115,7 @@ "1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0250", @@ -212,66 +134,7 @@ "1.0㎥" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0258", - "section": "5-1-7 어스앵커 공법", - "headers": [ - "구 분", - "토사", - "혼합층", - "풍화암", - "연암", - "보통암", - "경암" - ], - "first_rows": [ - [ - "작 업 량", - "타 격 식", - "9.38", - "8.70", - "5.41", - "7.50", - "9.38", - "13.33" - ], - [ - "", - "회 전 식", - "5.36", - "-", - "-", - "-", - "-", - "-" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0269", - "section": "5-1-9 주열식 현장벽체공법(CIP,Cast In Placed Pile)", - "headers": [ - "구분", - "말뚝길이" - ], - "first_rows": [ - [ - "", - "10m미만", - "10~20m", - "20m~30m" - ], - [ - "소요시간(min)", - "3", - "5", - "7" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0270", @@ -307,7 +170,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0284", @@ -337,51 +200,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0285", - "section": "5-2-2 고압분사 주입공법", - "headers": [ - "구 분", - "유효직경(㎜)" - ], - "first_rows": [ - [ - "", - "800", - "1,000", - "1,200", - "1,500", - "2,000" - ], - [ - "분사주입시간 (min/m)", - "3.61", - "5.64", - "8.12", - "12.69", - "22.57" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0287", - "section": "5-2-3 플라스틱 보드 드레인(PBD)", - "headers": [ - "구 분", - "도로/철도", - "항만/매립지" - ], - "first_rows": [ - [ - "효 율", - "0.75", - "0.85" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0302", @@ -403,32 +222,7 @@ "6" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0303", - "section": "5-3-1 기성말뚝 기초", - "headers": [ - "직경(㎜)", - "400", - "450", - "500", - "600", - "700", - "800" - ], - "first_rows": [ - [ - "시간(min)", - "15", - "16", - "18", - "22", - "25", - "29" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표" }, { "pum_table_id": "C0304", @@ -464,7 +258,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0305", @@ -500,7 +294,7 @@ "3.28" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0311", @@ -536,26 +330,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0319", - "section": "5-3-5 현장타설말뚝", - "headers": [ - "구 분", - "R.C.D", - "요동식", - "전회전식" - ], - "first_rows": [ - [ - "소 요 시 간 ( h r )", - "2", - "2", - "2" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0320", @@ -590,7 +365,7 @@ "2.48" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0321", @@ -625,41 +400,7 @@ "1.88" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0322", - "section": "5-3-5 현장타설말뚝", - "headers": [ - "구 분", - "로드연결/해체 (R.C.D)", - "케이싱 연결 (올케이싱)" - ], - "first_rows": [ - [ - "소요시간(hr)", - "0.4", - "0.4" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0327", - "section": "5-3-5 현장타설말뚝", - "headers": [ - "구 분", - "R.C.D", - "올케이싱" - ], - "first_rows": [ - [ - "소요시간(hr)", - "1.0", - "2.0" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0328", @@ -682,49 +423,7 @@ "0.51hr" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0344", - "section": "6-1-5 에폭시(Epoxy) 콘크리트 접착제 바르기", - "headers": [ - "지하층 및 1∼3층", - "4∼6층", - "7∼9층", - "10∼12층", - "13∼15층", - "16∼18층" - ], - "first_rows": [ - [ - "0", - "5%", - "8%", - "12%", - "16%", - "20%" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0351", - "section": "6-2-3 현장조립", - "headers": [ - "구분", - "Type-Ⅰ", - "Type-Ⅱ", - "Type-Ⅲ" - ], - "first_rows": [ - [ - "사용량(kg)", - "6.5", - "8.0", - "9.5" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0357", @@ -752,7 +451,7 @@ "1.43" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0364", @@ -777,7 +476,7 @@ "83" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0422", @@ -806,7 +505,7 @@ "- - 25 15 10" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0425", @@ -836,7 +535,7 @@ "0.55" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0426", @@ -868,7 +567,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0427", @@ -896,7 +595,7 @@ "125" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0429", @@ -925,7 +624,7 @@ "0.85" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0430", @@ -948,26 +647,7 @@ "1,500∼2,000" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0431", - "section": "8-2-3 굴착기", - "headers": [ - "현 장 조 건", - "K" - ], - "first_rows": [ - [ - "용이하게 굴착할 수 있는 연한 토질로서 버킷에 산적으로 가득찰 때가 많은 조건이 좋은 모래, 보통토인 경우", - "1.10" - ], - [ - "위의 토질보다 약간 단단한 토질로서 버킷에 거의 가득 채울 수 있는 모래, 보통토 및 조건이 좋은 점토인 경우", - "0.90" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0432", @@ -997,7 +677,7 @@ "0.60" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0433", @@ -1018,7 +698,7 @@ "0.19" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0436", @@ -1043,7 +723,7 @@ "0.40" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0437", @@ -1069,7 +749,7 @@ "집토하여 담을 때" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0440", @@ -1099,7 +779,7 @@ "0.45" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0442", @@ -1121,7 +801,7 @@ "600" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0443", @@ -1158,26 +838,7 @@ "12" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0444", - "section": "8-2-7 모터 그레이더", - "headers": [ - "작업종류", - "t(분)" - ], - "first_rows": [ - [ - "작업거리가 비교적 짧은 경우", - "2.5" - ], - [ - "도 로 보 수", - "1.5" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0445", @@ -1199,7 +860,7 @@ "2.7" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0446", @@ -1222,28 +883,7 @@ "0.6" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0447", - "section": "8-2-8 덤프트럭", - "headers": [ - "도로상태", - "평균속도" - ], - "first_rows": [ - [ - "", - "적재", - "공차" - ], - [ - "토취장 또는 토사장 등 열악한 조건의 도로", - "7", - "8" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0448", @@ -1266,88 +906,7 @@ "1.1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0449", - "section": "8-2-8 덤프트럭", - "headers": [ - "구 분", - "인력에 의한 경우", - "자동덮개시설의 경우" - ], - "first_rows": [ - [ - "시 간 (분)", - "3.77", - "0.5" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0453", - "section": "8-2-9 롤러", - "headers": [ - "공 종", - "다짐두께 (㎝)", - "다 짐 기 계", - "규 격 (ton)", - "다짐횟수", - "다짐도 (%)" - ], - "first_rows": [ - [ - "노 체", - "30", - "진 동 롤 러 타 이 어 롤 러", - "10 8∼15", - "6 4", - "90이상" - ], - [ - "노 상", - "20", - "진 동 롤 러 타 이 어 롤 러", - "10 8∼15", - "6 4", - "95이상" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0454", - "section": "8-2-9 롤러", - "headers": [ - "공 종", - "다짐두께 (㎝)", - "다 짐 기 계", - "규 격 (ton)", - "다짐횟수", - "다짐도 (%)" - ], - "first_rows": [ - [ - "저 수 지", - "심 벽 ( 점 토 )", - "20", - "양족식롤러( 자주식)", - "19", - "10", - "95이상" - ], - [ - "", - "성 토", - "30", - "〃", - "19", - "8", - "95이상" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0455", @@ -1374,35 +933,7 @@ "0.25" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0456", - "section": "8-2-10 아스팔트 플랜트", - "headers": [ - "혼합재의 종류", - "A", - "B", - "C", - "D" - ], - "first_rows": [ - [ - "플랜트규격(ton)", - "(ton)", - "(ton)", - "(ton)", - "(ton)" - ], - [ - "40", - "32.0", - "28.8", - "25.6", - "19.2" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0457", @@ -1427,7 +958,7 @@ "600" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0458", @@ -1446,7 +977,7 @@ "494" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0459", @@ -1477,7 +1008,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0460", @@ -1508,7 +1039,7 @@ "315∼630" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0461", @@ -1551,7 +1082,7 @@ "40.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0462", @@ -1594,7 +1125,7 @@ "1.7" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0463", @@ -1627,7 +1158,7 @@ "10" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0464", @@ -1672,7 +1203,7 @@ "22.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0465", @@ -1715,7 +1246,7 @@ "80" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0466", @@ -1758,7 +1289,7 @@ "80" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0467", @@ -1780,46 +1311,7 @@ "1.50" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0469", - "section": "8-2-12 크러셔", - "headers": [ - "규격 (ton)", - "출구간격(㎜) 입구간격(㎜)", - "생 산 능 력(ton/hr)", - "출력 (㎾)" - ], - "first_rows": [ - [ - "", - "", - "10", - "13", - "16", - "20", - "25", - "30", - "40", - "50", - "" - ], - [ - "50", - "85× 90", - "20", - "25", - "30", - "38", - "45", - "50", - "(57)", - "", - "93" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0470", @@ -1836,7 +1328,7 @@ "0.36" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0474", @@ -1857,35 +1349,7 @@ "0.03" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0475", - "section": "8-2-15 법면다짐기", - "headers": [ - "구 분", - "다짐력", - "플레이트규격(㎝)", - "작업량(㎡/h)", - "비 고" - ], - "first_rows": [ - [ - "유 압 식 진 동 콤 팩 터", - "6∼9톤", - "76×84", - "77.7", - "최대건조밀도 90%이상 기준" - ], - [ - "법 면 다 짐 판", - "-", - "80×80", - "22.7", - "-" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0476", @@ -1921,7 +1385,7 @@ "2.63㎥" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0477", @@ -1949,7 +1413,7 @@ "0.75" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0482", @@ -1974,28 +1438,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0484", - "section": "8-2-22 디젤 파일 해머", - "headers": [ - "해 머 규 격", - "1.5t 급", - "2.2t 급", - "3.2t 급", - "4.0t 급" - ], - "first_rows": [ - [ - "Te(분)", - "4", - "6", - "8", - "10" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0485", @@ -2015,7 +1458,7 @@ "1.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0486", @@ -2044,7 +1487,7 @@ "30" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0487", @@ -2073,7 +1516,7 @@ "50" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0488", @@ -2098,7 +1541,7 @@ "교류 아크(Arc) 용접기는 20KVA(500A)를 표준으로 한다." ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0489", @@ -2127,7 +1570,7 @@ "2.8" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0490", @@ -2156,24 +1599,7 @@ "17.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0491", - "section": "8-2-22 디젤 파일 해머", - "headers": [ - "해머규격", - "1.5톤 급", - "2.2톤 급" - ], - "first_rows": [ - [ - "Te(분)", - "4", - "6" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0501", @@ -2188,7 +1614,7 @@ "6" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0502", @@ -2210,7 +1636,7 @@ "0.05N+0.6 2 0.80" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0503", @@ -2225,7 +1651,7 @@ "0.9" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0505", @@ -2252,7 +1678,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0508", @@ -2288,7 +1714,7 @@ "K" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0513", @@ -2314,7 +1740,7 @@ "162" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0520", @@ -2343,22 +1769,7 @@ "250A" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0522", - "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "headers": [ - "유압식 압입 인발기 규격", - "k" - ], - "first_rows": [ - [ - "100∼130ton 급", - "1.00" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0527", @@ -2389,7 +1800,7 @@ "발전기" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0528", @@ -2412,7 +1823,7 @@ "3.7㎾" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0529", @@ -2438,7 +1849,7 @@ "0.24" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0530", @@ -2461,26 +1872,7 @@ "1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0532", - "section": "8-2-28 터널전단면 굴착기(TBM)", - "headers": [ - "구 분", - "양 호", - "보 통", - "불 량" - ], - "first_rows": [ - [ - "작 업 효 율", - "0.75", - "0.65", - "0.55" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0538", @@ -2504,7 +1896,7 @@ "전 동 식" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0539", @@ -2531,7 +1923,7 @@ "3,400 3,400 2,800 2,600 2,000 1,800 1,600 1,200" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0547", @@ -2554,7 +1946,7 @@ "1.00 0.95 0.90 0.85 0.85 0.80" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0548", @@ -2583,7 +1975,7 @@ "0.90 1.00 0.80 0.50 (0.50) (0.50)" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0549", @@ -2612,7 +2004,7 @@ "0.40" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0554", @@ -2640,7 +2032,7 @@ "7.5" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0561", @@ -2680,7 +2072,7 @@ "150" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0562", @@ -2705,57 +2097,7 @@ "0.64" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0566", - "section": "8-3-1 [00]토공기계", - "headers": [ - "분류번호", - "규격(ton)", - "내용시간", - "시 간 당(10-7)" - ], - "first_rows": [ - [ - "0103-0016", - "16", - "12,000", - "795" - ], - [ - "0019", - "19", - "12,000", - "795" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0645", - "section": "8-3-6 [50]골재생산기계 등", - "headers": [ - "분류번호", - "규 격", - "내용시간", - "시 간 당(10-7)" - ], - "first_rows": [ - [ - "5210-0010", - "1.0㎥/min", - "3,600", - "2,500" - ], - [ - "0013", - "1.3㎥/min", - "3,600", - "2,500" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0646", @@ -2803,7 +2145,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2195", @@ -2822,80 +2164,7 @@ "2,500" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0710", - "section": "8-3-8 [70]기타기계", - "headers": [ - "분류번호", - "규 격", - "시 간 당(10-7)" - ], - "first_rows": [ - [ - "7991-0050", - "3.73㎾", - "4,677" - ], - [ - "0100", - "7.46㎾", - "4,677" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0711", - "section": "8-3-8 [70]기타기계", - "headers": [ - "분류번호", - "규 격", - "시 간 당(10-7)" - ], - "first_rows": [ - [ - "7992-0001", - "0.3㎥", - "3,708" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0712", - "section": "8-3-8 [70]기타기계", - "headers": [ - "분류번호", - "규 격", - "시 간 당(10-7)" - ], - "first_rows": [ - [ - "7993-0020", - "1.49㎾", - "3,375" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0713", - "section": "8-3-8 [70]기타기계", - "headers": [ - "분류번호", - "규 격", - "시 간 당(10-7)" - ], - "first_rows": [ - [ - "7994-0050", - "3.73㎾", - "5,313" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C2201", @@ -2912,386 +2181,7 @@ "5,000" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0748", - "section": "8-5-1 [00]토공기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "불 도 저 ( 무 한 궤 도 ) 불 도 저 ( 타 이 어 ) 유 압 식 리 퍼 습 지 불 도 저", - "0101-0007 0010 0012 0019 0032 0102-0015 0028 0033 0103-0016 0019 0023 0027 0032 0121-0004 0013", - "76,547 168,668 188,714 198,150 263,682 160,229 296,070 375,317 13,948 17,626 19,537 22,753 27,634 44,766 167,666" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0749", - "section": "8-5-1 [00]토공기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "굴 착 기 ( 무 한 궤 도 ) 굴 착 기 ( 타 이 어 ) 습 지 굴 삭 기 ( 무 한 궤 도 ) 대 형 브 레 이 커 유 압 식 진 동 콤 팩 터 ( 굴 삭 기 부 착 용 ) 압 쇄 기 ( 펄 버 라 이 저 ) 트 랜 처 로 더 ( 무 한 궤 도 ) 로 더 ( 타 이 어 )", - "0201-0012 0020 0040 0060 0070 0080 0100 0120 0200 0211-0018 0060 0080 0100 0221-0040 0070 0230-0002 0004 0006 0007 0008 0010 0240-0007 0250-0080 0100 0260-0355 0301-0057 0076 0095 0115 0134 0153 0172 0287 0302-0025 0057 0095 0134 0172", - "45,070 66,538 84,000 112,342 117,766 129,586 142,069 180,927 310,684 69,333 119,000 141,171 144,360 100,270 161,647 4,559 8,352 14,174 17,289 22,649 28,692 11,706 24,021 28,567 264,015 47,372 61,939 75,898 89,931 102,635 114,736 125,845 199,275 30,197 35,999 46,576 91,620 117,351" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0750", - "section": "8-5-1 [00]토공기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "스 크 레 이 퍼 ( 자 주 식 ) 스 크 레 이 퍼 ( 피 견 인 식 ) 모 터 그 레 이 더 ( 일 반 용 ) 모 터 그 레 이 더 ( 사 리 도 ) 덤 프 트 럭 덤 프 트 럭 자 동 덮 개 시 설", - "0229 0287 0350 0500 0406-0054 0115 0161 0206 0407-0054 0092 0107 0161 0206 0502-0036 0503-0036 0602-0025 0045 0060 0080 0105 0150 0200 0240 0320 0610-0150 0200 0240", - "130,266 152,668 185,595 315,000 100,891 187,686 248,434 314,346 33,526 43,636 58,435 81,197 115,346 310,687 264,846 21,982 25,662 28,043 37,391 52,810 90,653 127,336 147,825 211,060 1,634 1,765 1,896" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0751", - "section": "8-5-2 [10]다짐기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "머 캐 덤 롤 러 ( 자 주 식 ) 탠 덤 롤 러 ( 자 주 식 ) 탠 덤 롤 러 ( 진 동 자 주 식 ) 탠 덤 롤 러 ( 진 동 자 주 식 ) 진 동 롤 러 ( 핸 드 가 이 드 식 ) 진 동 롤 러 ( 자 주 식 ) 타 이 어 롤 러 ( 자 주 식 ) 양 족 식 롤 러 ( 자 주 식 ) 래 머 플 레 이 트 콤 팩 터", - "1106-0010 0012 0015 1206-0008 0010 0014 1209-0001 0002 0004 0006 0007 0008 0013 1305-0007 1306-0025 0044 0060 0100 0120 1406-0008 0015 0025 1506-0011 0012 0015 0019 0025 0030 0032 0037 1630-0080 1730-0015", - "57,150 71,351 80,027 48,513 50,412 58,137 11,005 19,858 45,119 66,255 85,196 89,707 150,735 6,966 18,453 21,592 64,243 94,381 103,333 62,881 98,388 139,803 111,865 126,404 145,548 209,593 264,645 317,558 340,351 397,332 1,418 1,673" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0752", - "section": "8-5-3 [20]운반 및 하역기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "크 레 인 ( 무 한 궤 도 ) 크 레 인 ( 타 이 어 ) 트 럭 탑 재 형 크 레 인", - "2101-0010 0015 0020 0025 0030 0035 0040 0050 0070 0080 0100 0150 0220 0280 0300 2104-0010 0015 0020 0025 0030 0035 0040 0045 0050 0060 0070 0080 0100 0130 0160 0200 0220 0250 0300 2105-0002 0003 0005 0010 0015 0018", - "78,059 128,640 164,175 189,905 246,262 324,250 326,535 442,274 517,703 636,801 700,257 972,574 1,263,295 2,345,513 2,881,407 136,400 187,184 233,376 290,480 332,101 348,670 396,741 439,448 520,694 579,427 674,482 845,345 1,014,818 1,355,834 1,814,733 1,884,000 2,346,636 2,737,743 3,808,346 35,307 39,068 42,791 91,593 120,584 128,286" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0753", - "section": "8-5-3 [20]운반 및 하역기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "고 소 작 업 차 터 널 용 고 소 작 업 차 리 더 ( 고 정 형 ) 리 더 ( 회 전 형 ) 케 이 싱 스 킵 버 킷 타 워 크 레 인 건 설 용 리 프 트 ( 인 화 물 용 ) 디 젤 기 관 차 경 운 기 지 게 차 트 랙 터 ( 타 이 어 ) 트 럭 트 랙 터 및 평 판 트 레 일 러", - "2106-0002 0003 0005 2107-0005 2115-0024 0031 0036 2116-0031 0036 2117-0022 0027 2118-0010 2208-5008 5010 5012 5016 5020 2210-0145 2330-0005 0007 2402-0001 2502-0020 0025 0035 0050 0075 2602-0015 0025 0035 0045 2702-0020 0030 0040 0060", - "41,165 66,960 140,857 88,565 26,044 33,640 39,066 84,616 90,042 1,239 1,517 10,195 291,417 358,000 423,560 507,000 711,700 25,042 13,484 18,884 2,072 24,944 26,989 33,662 47,714 63,706 11,047 16,153 20,025 25,702 67,216 90,571 119,491 167,285" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0754", - "section": "8-5-4 [30]포장기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "아 스 팔 트 믹 싱 플 랜 트 아 스 팔 트 피 니 셔 아 스 팔 트 디 스 트 리 뷰 터 아 스 팔 트 스 프 레 이 어 현 장 가 열 표 층 재 생 기 스 테 이 빌 라 이 저 ( 안 정 기 ) 콘 크 리 트 피 니 셔 ( 포 장 용 ) 콘 크 리 트 피 니 셔 ( 중 앙 분 리 대 용 ) 콘 크 리 트 스 프 레 더 콘 크 리 트 조 면 마 무 리 기 콘 크 리 트 롤 러 페 이 버 슬 러 리 실 기 계", - "3108-0040 0060 0080 0100 0120 3201-0001 0003 3302-0030 0038 0047 0057 3430-0300 0400 3450-0642 3530-0015 0036 3601-0102 0202 0204 0302 0402 3611-0142 3701-0200 3801-0795 0120 3805-0120 3901-0300", - "341,024 449,324 576,186 691,875 778,667 222,833 250,388 51,079 64,113 76,303 86,938 2,321 3,158 4,629,182 118,464 150,724 172,351 298,210 506,167 710,540 807,782 258,567 380,335 78,960 85,540 85,630 272,836" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0755", - "section": "8-5-5 [40]콘크리트기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "콘 크 리 트 배 치 플 랜 트 사 일 로 콘 크 리 트 믹 서 콘 크 리 트 믹 서 트 럭 커 터 콘 크 리 트 펌 프 차 콘 크 리 트 펌 프 초 고 압 펌 프 콘 크 리 트 진 동 기", - "4108-0060 0090 0120 0150 0180 0210 4115-0100 0150 0200 0300 4205-0010 0017 0020 0030 0040 0045 4304-0060 0061 4430-0400 4504-0021 0028 0032 0036 0041 0043 0047 0052 4505-0015 0026 4506-0200 0400 4611-0075 0350", - "204,549 274,436 379,561 448,214 462,857 536,800 31,978 39,612 47,247 54,880 1,869 3,184 3,745 4,506 5,154 5,801 87,812 87,919 3,249 195,829 233,210 275,000 341,000 353,000 447,500 490,833 519,667 51,595 73,468 67,575 286,206 145 267" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0756", - "section": "8-5-6 [50]골재생산기계 등", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "크 러 셔 ( 이 동 식 ) 벨 트 콘 베 이 어 에 이 프 런 피 더 죠 크 러 셔 롤 크 러 셔 콘 크 러 셔", - "5105-0050 0100 0150 0200 5111-0040 0050 0060 0076 0091 5112-0001 0002 0003 0004 0005 5113-0001 0002 0003 0004 0005 0006 0007 0008 0009 0010 0011 5114-0001 0002 0003 0004 0005 0006 0007 0008 5115-0030 0055 0075 0095", - "245,857 341,313 383,979 418,118 6,450 6,761 8,011 9,170 10,827 32,315 35,181 45,546 47,248 63,391 29,729 31,904 37,470 40,164 53,901 81,507 84,425 130,908 158,291 162,763 376,676 23,170 32,534 51,367 68,878 71,080 94,475 132,440 163,662 60,815 93,290 142,693 158,133" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0757", - "section": "8-5-6 [50]골재생산기계 등", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "스 크 린 ( 2 단 식 ) 스 크 린 ( 3 단 식 ) 아 그 리 케 이 트 빈 골 재 세 척 설 비 파 이 프 추 진 기 ( 오 거 부 착 유 압 식 ) 파 이 프 추 진 기 ( 공 압 식 ) 유 압 잭 공 기 압 축 기 ( 이 동 식 )", - "5116-0001 0002 0003 0004 0005 0006 0007 0008 5117-0001 0002 0003 0004 0005 0006 0007 0008 5118-0001 0002 0003 0004 0005 0006 0007 5119-0625 5202-0127 0240 0300 5203-1800 2200 2700 3500 4500 5204-0200 0300 0400 0500 0600 5205-0035 0071", - "18,500 20,239 21,474 21,810 22,258 23,346 38,456 39,798 22,802 23,186 25,289 26,558 28,105 42,552 44,266 50,365 5,834 6,736 9,988 13,271 20,469 27,185 28,872 69,127 166,682 373,323 595,673 40,761 49,172 72,181 103,469 168,435 51,515 56,794 59,872 67,368 77,517 14,224 20,311" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0758", - "section": "8-5-6 [50]골재생산기계 등", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "소 형 브 레 이 커 ( 공 압 식 ) 소 형 브 레 이 커 ( 전 기 식 ) 드 릴 웨 곤 크 로 울 러 드 릴 ( 공 기 식 ) 크 로 울 러 드 릴 ( 탑 승 유 압 식 ) 유 압 식 할 암 기 노 면 파 쇄 기 소 형 노 면 파 쇄 기 점 보 드 릴 코 아 드 릴", - "0103 0170 0210 0255 5210-0010 0013 0019 0027 5220-0015 5330-0074 5401-0015 0017 5405-0110 0150 5501-0080 5701-0010 0020 5702-0095 5805-0002 0003 5901-0006 0010 0016", - "34,228 37,532 46,039 73,964 1,951 1,976 2,576 3,106 1,375 18,294 105,609 52,136 162,382 218,600 17,334 325,000 438,356 29,250 605,472 1,153,045 896 1,265 2,262" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0759", - "section": "8-5-7 [60]기초공사용기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "그 라 우 팅 믹 서 그 라 우 팅 펌 프 디 젤 파 일 해 머 보 링 기 계", - "6105-0190 0390 6202-0060 0125 0200 6330-0015 0022 0032 0040 6408-0015", - "2,900 6,033 4,086 5,949 8,591 35,124 45,361 68,038 85,473 7,539" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0760", - "section": "8-5-7 [60]기초공사용기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "오 거 오 실 레 이 터 로 테 이 터 유 압 파 워 팩 강 연 선 인 장 기 리 버 스 서 큘 레 이 션 드 릴 전 회 전 식 천 공 기 진 동 파 일 해 머 ( 전 동 식 ) 진 동 파 일 해 머 ( 유 압 식 )", - "0020 0030 0040 0050 0085 0100 6410-0080 0100 0120 0150 0200 6510-0100 0150 0200 0250 0300 6515-0090 6516-0060 0120 0250 0300 6517-0100 0150 0200 0250 0300 6518-0100 0150 0200 0250 0300 6530-0030 0040 0045 0060 0090 0120 6532-0220", - "8,472 9,027 15,017 18,470 23,096 25,982 68,667 78,378 93,811 184,636 224,427 338,676 393,664 449,902 562,377 753,585 116,113 7,036 8,536 21,245 22,495 688,412 740,463 815,447 889,181 1,026,988 1,225,642 1,378,222 1,872,969 2,297,037 2,827,123 82,114 102,463 114,210 146,643 232,666 301,677 468,750" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0761", - "section": "8-5-7 [60]기초공사용기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "워 터 젯 트 유 압 식 압 입 인 발 기 유 압 파 일 해 머 P B D 천 공 기 ( 유 압 식 ) 고 압 분 사 전 용 장 비 파 일 천 공 전 용 장 비 다 짐 말 뚝 전 용 장 비 자 동 화 믹 서 플 랜 트", - "6540-0131 6550-0130 6630-0003 0005 0007 0010 0013 6701-0147 -0184 6801-0010 6802-0040 0060 0100 0120 0135 0160 6803-0100 6803-0120 6901-0010", - "216,392 1,074,422 125,886 172,212 190,340 262,851 317,233 499,891 599,869 256,827 128,405 293,608 354,745 520,513 1,069,779 1,956,651 491,891 698,542 93,037" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0762", - "section": "8-5-8 [70]기타기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "고 성 능 착 정 기 하 수 관 천 공 기 ( 수 동 식 ) 상 수 도 관 천 공 기 ( 수 동 식 ) 골 재 살 포 기 진 공 흡 입 준 설 차 버 킷 식 준 설 기 자 동 세 륜 기 ( 롤 타 입 ) 물 탱 크 ( 살 수 차 )", - "7101-0450 7103-0010 7104-0010 7106-0035 7110-0013 0025 7120-0746 7202-0008 7202-0010 7204-0018 0038 0055 0065 0160", - "488,355 970 1,856 60,669 196,754 302,677 43,960 16,828 21,722 35,141 40,753 47,263 51,396 90,649" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0763", - "section": "8-5-8 [70]기타기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "이 동 식 임 목 파 쇄 기 부 착 용 집 게 동 력 분 무 기 라 인 마 커 차 선 제 거 기 윈 치 ( 수 동 ) 윈 치 ( 자 동 ) 발 전 기 용 접 기 ( 교 류 ) 용 접 기 ( 직 류 ) 용 착 기", - "7205-0125 0475 0540 7206-0020 0070 0100 7210-0485 7330-0010 7360-0055 0090 7430-1100 1300 1500 2300 2500 7431-1100 1300 2300 2500 7505-0025 0050 0100 0125 0150 0200 0250 0350 0450 0500 0700 7611-0200 0300 0400 0500 7612-0200 0300 0400 7613-0075 0150", - "150,146 519,479 545,494 4,942 7,783 9,331 922 68,298 13,075 13,445 1,419 2,335 3,113 4,981 6,538 3,862 6,538 10,118 23,349 14,452 19,856 24,124 29,410 30,347 39,471 52,374 63,968 93,167 104,159 156,403 391 506 568 666 1,505 1,715 2,477 3,626 5,448" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0764", - "section": "8-5-8 [70]기타기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "알 곤 용 접 기 절 단 기 프 라 즈 마 절 단 기 건 설 용 펌 프 ( 자 흡 식 ) 수 중 모 터 펌 프 취 부 기 실 사 출 기 엔 진 ( 가 솔 린 ) 엔 진 ( 디 젤 ) 우 레 탄 폼 분 사 용 기 구 모 터", - "0300 0400 0600 0900 7614-0300 7620-0002 0003 7621-0100 7730-0050 0080 0100 0125 0150 7740-0080 0100 0150 7750-0016 0025 7770-0004 7811-0025 0030 0040 0045 0070 0120 7812-0005 0007 0009 0015 0018 0020 0035 0070 0100 0150 0200 7830-0081 7930-0001 0002", - "7,472 10,118 12,920 34,097 1,958 644 2,010 3,470 259 319 367 882 1,155 863 1,010 1,938 46,603 71,951 18,306 201 219 290 390 510 1,144 309 359 454 1,188 2,411 3,227 3,763 4,831 5,747 7,274 13,796 28,434 168 194" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0765", - "section": "8-5-8 [70]기타기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "모 터 ( 쉴 드 T B M 용 ) 레 일 천 공 기 파 워 렌 치 침 목 천 공 기 타 이 템 퍼 양 로 기 모 르 타 르 펌 프 모 르 타 르 믹 서 양 수 기 P o w e r T r o w e l 배 관 파 이 프", - "0003 0005 0007 0010 0015 0020 0025 0030 0040 0050 0075 0100 7935-0180 7950-0149 7951-0066 7952-0246 7953-3400 7954-1119 7991-0050 0100 0500 7992-0001 7993-0020 7994-0050 7995-0050", - "232 295 376 497 607 872 1,144 1,571 1,910 2,189 3,785 6,575 252,362 3,128 7,507 997 18,768 33,032 16,913 21,887 40,769 5,696 38 2,680 17" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0766", - "section": "8-5-9 [80]스마트 건설장비", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "3D GNSS 머신 가이던스(굴착기용)", - "8201-0100", - "55,000" - ], - [ - "3D GNSS 머신 컨트롤(굴착기용)", - "8202-0100", - "70,000" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0767", - "section": "8-5-10 [90]해상기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "펌 프 준 설 선", - "9010-0003 0006 0010", - "729,965 1,389,207 2,244,831" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0768", - "section": "8-5-10 [90]해상기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "그 래 브 준 설 선 예 선 양 묘 선", - "0012 0020 0022 0033 0040 0044 0060 0080 0120 0200 9020-0010 0015 0016 0022 0035 0050 0072 0160 0180 0200 9030-0016 0018 0025 0035 0045 0050 0080 0100 0240 9040-0010 0030 0050 0060 0100 0120 0200 0250 0300 0380", - "2,693,800 4,622,275 5,186,166 7,944,375 9,724,459 10,696,903 14,650,006 19,621,816 29,706,290 52,076,577 202,333 314,743 431,650 724,319 886,911 1,227,141 1,948,080 3,672,033 4,131,037 4,623,165 180,790 187,027 246,875 314,205 389,017 426,423 613,450 773,044 1,743,584 26,181 41,145 67,328 80,421 168,323 202,119 336,865 421,083 506,890 644,244" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0769", - "section": "8-5-10 [90]해상기계", - "headers": [ - "기 종", - "분류번호", - "가격(₩)" - ], - "first_rows": [ - [ - "기 중 기 선 ( 비 자 항 ) 토 운 선 이 우 선 ( 비 자 항 ) 대 선 하 천 골 재 채 취 선", - "0680 9050-0075 0150 0450 0750 0850 9060-0060 0100 0200 0300 0500 0600 9070-0015 0020 9080-0050 0080 0100 0120 0150 0200 0300 0500 0700 1000 1100 1400 1500 1750 2000 3000 9090-0800 1000 1200 1300 1400 1500 1600", - "1,159,145 172,358 277,274 503,341 761,706 846,289 66,826 96,966 184,105 247,658 393,035 469,667 32,105 42,311 33,597 41,853 47,357 56,400 69,528 89,462 122,525 162,880 207,125 287,835 293,565 361,641 420,085 441,063 544,553 669,022 650,121 870,425 919,623 997,475 1,074,203 1,150,932 1,227,661" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0847", @@ -3319,7 +2209,7 @@ "65% 65% 공사물량 65% 100%" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0851", @@ -3356,43 +2246,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C0870", - "section": "4-4-1 분기기 부설", - "headers": [ - "구 분", - "#8", - "#10", - "#12", - "#15", - "#18.5", - "#26" - ], - "first_rows": [ - [ - "할증률", - "50㎏", - "0.70", - "0.82", - "0.92", - "1.15", - "1.33", - "1.56" - ], - [ - "", - "60㎏", - "0.75", - "0.90", - "1.00", - "1.20", - "1.39", - "1.62" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0891", @@ -3423,7 +2277,7 @@ "-0.05" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0892", @@ -3451,7 +2305,7 @@ "0.03" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표" }, { "pum_table_id": "C0893", @@ -3479,7 +2333,7 @@ "0.29" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0900", @@ -3498,7 +2352,7 @@ "50" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0901", @@ -3524,7 +2378,7 @@ "40" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0905", @@ -3541,7 +2395,7 @@ "1.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0907", @@ -3567,7 +2421,7 @@ "4" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0943", @@ -3604,7 +2458,7 @@ "70" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0954", @@ -3647,7 +2501,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C0962", @@ -3672,7 +2526,7 @@ "29.8" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0963", @@ -3699,7 +2553,7 @@ "29.8" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0966", @@ -3722,7 +2576,7 @@ "0.7" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C0969", @@ -3745,7 +2599,7 @@ "수심 0∼15m" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1042", @@ -3785,7 +2639,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1045", @@ -3825,7 +2679,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1059", @@ -3856,7 +2710,7 @@ "10㎞당 일수" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1065", @@ -3890,7 +2744,7 @@ "8.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1071", @@ -3920,7 +2774,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1082", @@ -3974,7 +2828,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1087", @@ -4020,7 +2874,7 @@ "8.3" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1088", @@ -4057,7 +2911,7 @@ "1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1089", @@ -4091,7 +2945,7 @@ "1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1090", @@ -4164,7 +3018,7 @@ "8.3" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1091", @@ -4195,7 +3049,7 @@ "2.0일" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1092", @@ -4222,7 +3076,7 @@ "- - 1 2" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1093", @@ -4247,7 +3101,7 @@ "1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1095", @@ -4275,7 +3129,7 @@ "( )내는 내업을 표시함" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2231", @@ -4303,7 +3157,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1106", @@ -4331,7 +3185,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1113", @@ -4386,7 +3240,7 @@ "55" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1114", @@ -4441,7 +3295,7 @@ "37" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1118", @@ -4475,7 +3329,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1120", @@ -4507,7 +3361,7 @@ "중급 기능사 (항공사진)" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1126", @@ -4533,51 +3387,7 @@ "- 1 1 1 - 10" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1128", - "section": "9-5-4 수치지도 작성", - "headers": [ - "사진축적", - "1:3,000", - "1:5,000", - "1:10,000", - "1:20,000", - "1:37,500" - ], - "first_rows": [ - [ - "1시간당 작업량", - "0.0018", - "0.0055", - "0.0165", - "0.0482", - "0.3287" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1133", - "section": "9-5-4 수치지도 작성", - "headers": [ - "축척", - "1:500", - "1:1,200", - "1:5,000", - "비고" - ], - "first_rows": [ - [ - "1시간당 작업량(㎢)", - "0.004", - "0.0064", - "0.0442", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1135", @@ -4611,29 +3421,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1138", - "section": "9-5-4 수치지도 작성", - "headers": [ - "작업구분", - "소요시간", - "비 고" - ], - "first_rows": [ - [ - "독 취 ( S c a n n i n g )", - "20", - "" - ], - [ - "잡 음 ( 노 이 즈 ) 제 거", - "20", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1142", @@ -4667,30 +3455,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1145", - "section": "9-5-4 수치지도 작성", - "headers": [ - "축척", - "1:500", - "1:1,000", - "1:2,500", - "1:5,000", - "1:25,000" - ], - "first_rows": [ - [ - "1 시간당 작업량", - "0.0048", - "0.0065", - "0.0365", - "0.076", - "0.755" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1146", @@ -4724,30 +3489,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1153", - "section": "9-5-4 수치지도 작성", - "headers": [ - "축척", - "1:500", - "1:1,000", - "1:5,000", - "1:25,000", - "비 고" - ], - "first_rows": [ - [ - "1 시간당 작업량", - "0.0056", - "0.0191", - "0.0998", - "0.886", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1160", @@ -4768,58 +3510,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1166", - "section": "9-5-4 수치지도 작성", - "headers": [ - "축척", - "1:5,000", - "비고" - ], - "first_rows": [ - [ - "1 시 간 당 작 업 량", - "1.27", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1183", - "section": "9-5-4 수치지도 작성", - "headers": [ - "구 분", - "1/1,000", - "비 고" - ], - "first_rows": [ - [ - "시간당작업량", - "0.10", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1185", - "section": "9-5-4 수치지도 작성", - "headers": [ - "구 분", - "1/1,000", - "비 고" - ], - "first_rows": [ - [ - "시간당작업량", - "0.14", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1186", @@ -4856,7 +3547,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1193", @@ -4893,55 +3584,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1200", - "section": "9-5-4 수치지도 작성", - "headers": [ - "구 분", - "축척별 1시간당 작업량", - "비 고" - ], - "first_rows": [ - [ - "", - "1/25,000", - "1/5,000", - "" - ], - [ - "토 지 이 용 현 황 도", - "2.108", - "-", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1201", - "section": "9-5-4 수치지도 작성", - "headers": [ - "구 분", - "축척별 1시간당 작업량", - "비 고" - ], - "first_rows": [ - [ - "", - "1/25,000", - "1/5,000", - "" - ], - [ - "토 지 이 용 현 황 도", - "10.7509", - "-", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1208", @@ -4989,7 +3632,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1213", @@ -5025,7 +3668,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1217", @@ -5057,7 +3700,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1221", @@ -5093,7 +3736,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1225", @@ -5142,7 +3785,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1229", @@ -5164,7 +3807,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1253", @@ -5191,7 +3834,7 @@ "0.09" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1255", @@ -5220,7 +3863,7 @@ "(측량)" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1265", @@ -5251,7 +3894,7 @@ "0.85" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1273", @@ -5294,7 +3937,7 @@ "118.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1279", @@ -5325,29 +3968,7 @@ "6.67" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1284", - "section": "9-6-1 지적삼각측량", - "headers": [ - "표고명", - "가 산 범 위", - "비 고" - ], - "first_rows": [ - [ - "500m∼1,000m", - "20%", - "" - ], - [ - "1,000m초과", - "40%", - "" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1378", @@ -5375,7 +3996,7 @@ "( )는 내업임" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1379", @@ -5403,7 +4024,7 @@ "( )는 내업임" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1380", @@ -5431,7 +4052,7 @@ "( )는 내업임" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1381", @@ -5459,7 +4080,7 @@ "( )는 내업임" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1382", @@ -5487,7 +4108,7 @@ "( )는 내업임" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1391", @@ -5504,64 +4125,7 @@ "2%" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1394", - "section": "11-1-1 콘크리트・모르타르면 바탕만들기", - "headers": [ - "지하층 및 1∼3층", - "4∼6층", - "7∼9층", - "10∼12층", - "13∼15층", - "16∼18층" - ], - "first_rows": [ - [ - "0", - "5%", - "8%", - "12%", - "16%", - "20%" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1412", - "section": "1-1-1 기본철골공수", - "headers": [ - "강재", - "60", - "60", - "100", - "300", - "1,000", - "2,000" - ], - "first_rows": [ - [ - "총사용량(t)", - "미만", - "이상", - "이상", - "이상", - "이상", - "이상" - ], - [ - "기 본 철 골 공 수 ( 인 ・ 일 / t )", - "2.48", - "2.31", - "2.20", - "1.97", - "1.75", - "1.63" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1413", @@ -5580,7 +4144,7 @@ "1.05∼1.2" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1423", @@ -5614,7 +4178,7 @@ "1.1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1424", @@ -5648,7 +4212,7 @@ "0.77" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1426", @@ -5683,73 +4247,7 @@ "0.89" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1427", - "section": "1-2-1 현장 세우기", - "headers": [ - "T(ton)", - "40 이하", - "50", - "60", - "70", - "80", - "90", - "100", - "200", - "300", - "400" - ], - "first_rows": [ - [ - "보정치(b)", - "1.3", - "1.26", - "1.24", - "1.22", - "1.21", - "1.20", - "1.19", - "1.045", - "1.02", - "1.008" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1428", - "section": "1-2-1 현장 세우기", - "headers": [ - "T(ton)", - "500", - "600", - "700", - "800", - "900", - "1,000", - "1,100", - "1,200", - "1,300", - "1,400" - ], - "first_rows": [ - [ - "보정치(b)", - "1.00", - "0.995", - "0.991", - "0.989", - "0.987", - "0.985", - "0.984", - "0.983", - "0.982", - "0.981" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표" }, { "pum_table_id": "C1429", @@ -5782,7 +4280,7 @@ "0.978" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1430", @@ -5819,7 +4317,7 @@ "0.74" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1432", @@ -5841,7 +4339,7 @@ "25" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1434", @@ -5866,7 +4364,7 @@ "0.89" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표" }, { "pum_table_id": "C1464", @@ -5883,7 +4381,7 @@ "0.001" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1466", @@ -5902,32 +4400,7 @@ "0.017" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1541", - "section": "6-5-2 액상형 흡수방지방수 도포", - "headers": [ - "외벽층 구 분", - "1,2,3층", - "4,5,6층", - "7,8,9층", - "10,11,12층", - "13,14,15층", - "16,17,18층" - ], - "first_rows": [ - [ - "인력품", - "0", - "5%", - "8%", - "12%", - "16%", - "20%" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1543", @@ -5959,7 +4432,7 @@ "1.20 0.42 0.80 0.8 10.5 10.5 10.5 1.1" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1566", @@ -5976,24 +4449,7 @@ "4%" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1589", - "section": "9-1-4 표면 마무리", - "headers": [ - "구 분", - "인력마감", - "기계마감" - ], - "first_rows": [ - [ - "할 증", - "55%", - "75%" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1619", @@ -6008,7 +4464,7 @@ "3%" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1621", @@ -6032,7 +4488,7 @@ "4.2" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1635", @@ -6057,7 +4513,7 @@ "0.21 0.26 0.29 0.43 0.58" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1641", @@ -6091,7 +4547,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1642", @@ -6125,7 +4581,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1645", @@ -6159,7 +4615,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1647", @@ -6193,7 +4649,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1648", @@ -6227,7 +4683,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1651", @@ -6261,7 +4717,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1653", @@ -6295,7 +4751,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1654", @@ -6329,7 +4785,7 @@ "인/ ton" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1655", @@ -6387,7 +4843,7 @@ "98.0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표" }, { "pum_table_id": "C1660", @@ -6442,7 +4898,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1661", @@ -6479,7 +4935,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1662", @@ -6516,7 +4972,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1663", @@ -6557,7 +5013,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1665", @@ -6598,7 +5054,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1668", @@ -6639,7 +5095,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1677", @@ -6673,7 +5129,7 @@ "0.005" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1678", @@ -6707,7 +5163,7 @@ "0.041" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1683", @@ -6750,7 +5206,7 @@ "(kg)" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1684", @@ -6793,43 +5249,7 @@ "(kg)" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1693", - "section": "13-2-4 강판 전기아크용접", - "headers": [ - "Carbon Rod", - "구분", - "Gouging량 (m/분)", - "작업 속도 (m/hr)", - "Gouging형상", - "사용전압 (A)", - "전압 (V)" - ], - "first_rows": [ - [ - "", - "", - "", - "", - "Depth", - "Width", - "", - "" - ], - [ - "6.5ø×305m/m", - "AC DC", - "1.8 2.2", - "36 45", - "3(m/m) 3", - "8(m/m) 8", - "290 240", - "35 40" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1694", @@ -6866,7 +5286,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1695", @@ -6903,7 +5323,7 @@ "2.708 3.292 3.792 4.125 4.417" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1696", @@ -6931,7 +5351,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1697", @@ -6965,7 +5385,7 @@ "1.22" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1698", @@ -6999,7 +5419,7 @@ "1.34 1.72" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1699", @@ -7027,7 +5447,7 @@ "-" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1700", @@ -7064,7 +5484,7 @@ "1.56" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1701", @@ -7101,7 +5521,7 @@ "1.65 1.76 1.88 2.00 2.18 2.40 2.51" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1702", @@ -7156,51 +5576,7 @@ "66" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1708", - "section": "13-3-1 pipe보온", - "headers": [ - "ipe Size(㎜)", - "C", - "K" - ], - "first_rows": [ - [ - "ø50이하", - "102", - "1.13" - ], - [ - "65 80 90 100 125 150", - "92 90 90 95 99 107", - "1.17" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1709", - "section": "13-3-1 pipe보온", - "headers": [ - "ipe Size(㎜)", - "C", - "K" - ], - "first_rows": [ - [ - "200 250 300", - "104 110 112", - "1.21" - ], - [ - "350 400 450 500 600 650 700", - "106 109 111 107 109 113 114", - "1.28" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표" }, { "pum_table_id": "C1713", @@ -7219,7 +5595,7 @@ "10" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1719", @@ -7250,41 +5626,7 @@ "295 149 17 17 17 17 17 - - - 11,280 - 14,620 2,350 1,040 12,834 18,176 4,826 206 200 225 258 73 80,997 42,427 73" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1771", - "section": "13-6-3 수문 제작", - "headers": [ - "장 비 명", - "규 격", - "시간(hr/ton)" - ], - "first_rows": [ - [ - "Lathe Planer Boring machine Union melt welder A.C Welder Gouging machine Gas cutting machine Gas cutting machine Gas heating touch Over head crane 〃 Hydro Press Bending roller Edge bending roller Shearing machine Drilling machine 〃 Compressor Portable drill Tuck crane Trailer Fork lift", - "365.76㎝×5.60㎾ 121.92㎝×243.84㎝ Horizontal Type 2.24㎾ 5.5KVA 10〃 중형 Auto형 Mannual 중형 30ton 20ton 300ton 701.04㎝ 701.04㎝ 2.24㎾ Radial 3.73㎾ 5.9㎥/min 0.73㎾ 30ton 30ton 5ton", - "0.64 0.72 1.72 2.856 8.568 3.06 1.24 1.8 3.984 0.759 0.759 1.771 1.48 1.38 0.64 0.368 0.184 3.790 1.532 0.506 0.506 0.506" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1774", - "section": "13-6-3 수문 제작", - "headers": [ - "장 비 명", - "규 격", - "시간(hr/ton)" - ], - "first_rows": [ - [ - "Lathe Planer Boring machine Union melt welder A.C Welder Gouging machine Gas cutting machine Gas cutting machine Gas heating touch over head crane Hydro Press Bending roller Shearing machine Drilling machine 〃 Compressor Portable drill Truck crane Trailor Fork lift", - "365.76㎝×5.60㎾ 121.92㎝×243.84㎝ Horizontal Type 2.24㎾ 5.5KVA 10KVA 중형 Auto 중형 Mannual 중형 30 ton 100 ton 701.04㎝ 2.24㎾ Radial 3.73㎾ 5.9㎥/min 0.373㎾ 30 ton 30 ton 5 ton", - "0.536 0.076 1.436 2.72 8.16 1.7 1.016 1.016 3.328 1.269 1.48 1.088 0.256 1.632 0.816 3.17 1.221 0.423 0.423 0.423" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1775", @@ -7311,7 +5653,7 @@ "3.0 2.58 0.62 20.0 0.242 0.5 2.2 310" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1781", @@ -7332,24 +5674,7 @@ "0.46 0.39 5.4 27 2.2 4.4" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" - }, - { - "pum_table_id": "C1784", - "section": "13-6-5 Stop-Log 제작", - "headers": [ - "장 비 명", - "규 격", - "시간(hr/ton)" - ], - "first_rows": [ - [ - "Lathe Planer Boring machine Union melt welder A.C Welder Gouging machine Gas cutting machine 〃 Gas heating touch Over Head Crane 〃 Hydro Press Shearing machine Drilling machine 〃 Compressor Portable Drill Truck Crane Trailer Fork Lift", - "365.76㎝×5.60㎾ 121.92㎝×243.84㎝ Horizontal Type 2.24㎾ 5.5KVA 10〃 중형 Auto 중형 Mannual 중형 중형 30 ton 20 ton 10 ton Radial 3.73㎾ 2.24㎾ 5.9㎥/min 0.37㎾ 30 ton 30 ton 5 ton", - "0.416 0.076 0.248 3.224 9.976 3.56 1.328 1.984 3.872 0.88 0.88 1.72 2.0 0.488 0.488 3.32 1.564 0.65 0.65 0.65" - ] - ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1862", @@ -7375,7 +5700,7 @@ "4" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1864", @@ -7397,7 +5722,7 @@ "7.6" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1866", @@ -7424,7 +5749,7 @@ "0.285" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C1868", @@ -7449,7 +5774,7 @@ "12" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1890", @@ -7468,7 +5793,7 @@ "내용년수 2년 1.5년 1년 2.7년 1.5년 2.7년 1.5년" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1932", @@ -7485,7 +5810,7 @@ "0.110" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함" }, { "pum_table_id": "C1985", @@ -7541,7 +5866,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2097", @@ -7562,7 +5887,7 @@ "0.8" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2137", @@ -7584,7 +5909,7 @@ "5,500ℓ" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2139", @@ -7606,7 +5931,7 @@ "0" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2145", @@ -7627,7 +5952,7 @@ "13톤(3.00㎥적)" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2188", @@ -7651,7 +5976,7 @@ "" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" }, { "pum_table_id": "C2192", @@ -7679,7 +6004,7 @@ "6대" ] ], - "reason": "헤더·첫 행에 단위·밑수·직종 표지 없음" + "reason": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)" } ] } \ No newline at end of file diff --git a/resources/data_work_item_master/const_work_item_master_2026-01-01.json b/resources/data_work_item_master/const_work_item_master_2026-01-01.json index 3dee6fcd..179dd74d 100644 --- a/resources/data_work_item_master/const_work_item_master_2026-01-01.json +++ b/resources/data_work_item_master/const_work_item_master_2026-01-01.json @@ -4,11 +4,11 @@ "effective_date": "2026-01-01", "pum_edition": "2026-01-01", "toc_edition": "2026-01-01", - "generated_at": "2026-09-18T12:39:43+09:00", + "generated_at": "2026-09-18T12:54:47+09:00", "dataset_version": { "dataset_id": "pum_const", "effective_date": "2026-01-01", - "sha256": "207129f59d95baed23a3a360c262a7250fb17fc44eada0c321d07825c410ee20", + "sha256": "b8c85e6ab5b242d5d82a42ff761ec4e144309a1389bc267ea2f1ceabc3d4b8f1", "file": "pum_const_2026.json" }, "policy": { @@ -35,15 +35,15 @@ }, "stats": { "toc_nodes": 1367, - "tables_total": 2273, - "tables_attached": 2273, + "tables_total": 2272, + "tables_attached": 2272, "tables_orphan": 0, - "form_undetermined": 275, - "basis_found": 676, - "basis_missing": 439, - "basis_absent_in_source": 347, - "basis_unparsed": 92, - "basis_grouped": 66, + "form_undetermined": 196, + "basis_found": 710, + "basis_missing": 431, + "basis_absent_in_source": 356, + "basis_unparsed": 75, + "basis_grouped": 69, "axis_roles": { "group": 258, "general_provision": 112, @@ -4954,7 +4954,7 @@ "section": "2-1-2 현장사무소 등의 규모(건축 및 기계설비)", "source_line": 61, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "인", "basis_source": "표 안", @@ -12000,9 +12000,9 @@ "source_line": 1162, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "층", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -12042,8 +12042,8 @@ "pum_table_id": "C0149", "section": "2-12-2 마스트 설치 및 해체", "source_line": 1172, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 값이 모두 백분율 — 요율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -12322,7 +12322,7 @@ "section": "2-12-4 파이프 루프공", "source_line": 1214, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -14089,8 +14089,8 @@ "pum_table_id": "C0179", "section": "3-3-8 암파쇄(유압식 할암공법)", "source_line": 276, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '기계경비의' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -15789,8 +15789,8 @@ "pum_table_id": "C0199", "section": "3-7-4 절토사면 녹화", "source_line": 529, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '할증률(%)' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -16046,8 +16046,8 @@ "pum_table_id": "C0203", "section": "3-7-4 절토사면 녹화", "source_line": 578, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '할증률(%)' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -16941,7 +16941,7 @@ "section": "3-9-2 뿌리뽑기", "source_line": 738, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 992.0, "basis_unit": "㎡", "basis_source": "본문", @@ -18572,7 +18572,7 @@ "section": "4-2-3 식재(군식(群植))", "source_line": 117, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -19774,7 +19774,7 @@ "section": "5-1-1 P.P마대 및 톤마대 쌓기・헐기", "source_line": 20, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -20430,8 +20430,8 @@ "pum_table_id": "C0258", "section": "5-1-7 어스앵커 공법", "source_line": 142, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '작업량' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -21231,8 +21231,8 @@ "pum_table_id": "C0269", "section": "5-1-9 주열식 현장벽체공법(CIP,Cast In Placed Pile)", "source_line": 291, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '소요시간(min)' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -21272,7 +21272,7 @@ "section": "5-1-9 주열식 현장벽체공법(CIP,Cast In Placed Pile)", "source_line": 298, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -22184,7 +22184,7 @@ "section": "5-2-2 고압분사 주입공법", "source_line": 472, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -22236,8 +22236,8 @@ "pum_table_id": "C0285", "section": "5-2-2 고압분사 주입공법", "source_line": 480, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '분사주입시간(min/m)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "개소", "basis_source": "본문", @@ -22452,8 +22452,8 @@ "pum_table_id": "C0287", "section": "5-2-3 플라스틱 보드 드레인(PBD)", "source_line": 526, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '효율' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -23408,7 +23408,7 @@ "section": "5-3-1 기성말뚝 기초", "source_line": 692, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -23451,8 +23451,8 @@ "pum_table_id": "C0303", "section": "5-3-1 기성말뚝 기초", "source_line": 698, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — 줄 이름 '시간(min)' — 걸리는 시간", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -23492,7 +23492,7 @@ "section": "5-3-1 기성말뚝 기초", "source_line": 704, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -23565,7 +23565,7 @@ "section": "5-3-1 기성말뚝 기초", "source_line": 713, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -24025,7 +24025,7 @@ "section": "5-3-2 말뚝박기용 천공", "source_line": 793, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "본문", @@ -24621,8 +24621,8 @@ "pum_table_id": "C0319", "section": "5-3-5 현장타설말뚝", "source_line": 893, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '소요시간(hr)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "본", "basis_source": "본문", @@ -24658,7 +24658,7 @@ "section": "5-3-5 현장타설말뚝", "source_line": 899, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -24798,7 +24798,7 @@ "section": "5-3-5 현장타설말뚝", "source_line": 915, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -24897,8 +24897,8 @@ "pum_table_id": "C0322", "section": "5-3-5 현장타설말뚝", "source_line": 927, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '소요시간(hr)' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -25138,8 +25138,8 @@ "pum_table_id": "C0327", "section": "5-3-5 현장타설말뚝", "source_line": 973, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '소요시간(hr)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "본", "basis_source": "본문", @@ -25171,7 +25171,7 @@ "section": "5-3-5 현장타설말뚝", "source_line": 979, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -26196,8 +26196,8 @@ "pum_table_id": "C0344", "section": "6-1-5 에폭시(Epoxy) 콘크리트 접착제 바르기", "source_line": 144, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 값이 모두 백분율 — 요율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -26681,8 +26681,8 @@ "pum_table_id": "C0351", "section": "6-2-3 현장조립", "source_line": 233, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "requirement", + "form_basis": "건설 꼴 — 줄 이름 '사용량(kg)' — 자재 소요량", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "본문", @@ -27068,7 +27068,7 @@ "section": "6-3-1 합판거푸집 설치 및 해체", "source_line": 298, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "㎡", "basis_source": "본문", @@ -27503,7 +27503,7 @@ "section": "6-3-3 유로폼 설치 및 해체", "source_line": 380, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -28326,9 +28326,9 @@ "source_line": 561, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "ea", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -32475,7 +32475,7 @@ "section": "8-1-3 운반 및 수송", "source_line": 54, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -32711,7 +32711,7 @@ "section": "8-2-1 불도저", "source_line": 138, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -32782,7 +32782,7 @@ "section": "8-2-1 불도저", "source_line": 155, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -32896,7 +32896,7 @@ "section": "8-2-1 불도저", "source_line": 175, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33024,7 +33024,7 @@ "section": "8-2-2 리퍼(유압식)", "source_line": 202, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33136,7 +33136,7 @@ "section": "8-2-2 리퍼(유압식)", "source_line": 217, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33218,8 +33218,8 @@ "pum_table_id": "C0431", "section": "8-2-3 굴착기", "source_line": 230, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'K' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33265,7 +33265,7 @@ "section": "8-2-3 굴착기", "source_line": 243, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33336,7 +33336,7 @@ "section": "8-2-3 굴착기", "source_line": 262, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33501,7 +33501,7 @@ "section": "8-2-4 트랜처", "source_line": 292, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33560,7 +33560,7 @@ "section": "8-2-5 로더", "source_line": 310, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33709,7 +33709,7 @@ "section": "8-2-5 로더", "source_line": 340, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33852,7 +33852,7 @@ "section": "8-2-6 모터 스크레이퍼", "source_line": 382, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33933,7 +33933,7 @@ "section": "8-2-7 모터 그레이더", "source_line": 399, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -33967,97 +33967,25 @@ "불량" ], [ - "토 사 도 보 수", - "10", - "7", - "4", + "토 사 도 보 수 측 구 굴 착 비 탈 면 의 마 무 리 흙 고 르 기 마 무 리 혼 합 재 설", + "10 4 3 8 8 10 10", + "7 3 2.5 6 6 7 8", + "4 2 2 4 4 4 6", "9", "6.5", "4", "24", "18", "12" - ], - [ - "측 구 굴 착", - "4", - "3", - "2", - "", - "", - "", - "", - "", - "" - ], - [ - "비 탈 면 의 마 무 리", - "3", - "2.5", - "2", - "", - "", - "", - "", - "", - "" - ], - [ - "흙 고 르 기", - "8", - "6", - "4", - "", - "", - "", - "", - "", - "" - ], - [ - "마 무 리", - "8", - "6", - "4", - "", - "", - "", - "", - "", - "" - ], - [ - "혼 합", - "10", - "7", - "4", - "", - "", - "", - "", - "", - "" - ], - [ - "재 설", - "10", - "8", - "6", - "", - "", - "", - "", - "", - "" ] ] }, { "pum_table_id": "C0444", "section": "8-2-7 모터 그레이더", - "source_line": 414, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 408, + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 't(분)' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34093,9 +34021,9 @@ { "pum_table_id": "C0445", "section": "8-2-7 모터 그레이더", - "source_line": 422, + "source_line": 416, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34140,9 +34068,9 @@ { "pum_table_id": "C0446", "section": "8-2-7 모터 그레이더", - "source_line": 431, + "source_line": 425, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34209,9 +34137,9 @@ { "pum_table_id": "C0447", "section": "8-2-8 덤프트럭", - "source_line": 446, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 440, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '2차로시가지포장도로(7,000∼2,000대/일)' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34320,9 +34248,9 @@ { "pum_table_id": "C0448", "section": "8-2-8 덤프트럭", - "source_line": 469, + "source_line": 463, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34372,9 +34300,9 @@ { "pum_table_id": "C0449", "section": "8-2-8 덤프트럭", - "source_line": 485, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 479, + "pum_form": "productivity", + "form_basis": "건설 꼴 — 줄 이름 '시간(분)' — 걸리는 시간", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34404,7 +34332,7 @@ { "pum_table_id": "C0450", "section": "8-2-8 덤프트럭", - "source_line": 493, + "source_line": 487, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -34460,7 +34388,7 @@ { "pum_table_id": "C0451", "section": "8-2-9 롤러", - "source_line": 501, + "source_line": 495, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -34581,7 +34509,7 @@ { "pum_table_id": "C0452", "section": "8-2-9 롤러", - "source_line": 516, + "source_line": 510, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -34667,9 +34595,9 @@ { "pum_table_id": "C0453", "section": "8-2-9 롤러", - "source_line": 528, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 522, + "pum_form": "reference", + "form_basis": "건설 꼴 — 다짐 두께·횟수 기준표 — 시방 기준", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34755,9 +34683,9 @@ { "pum_table_id": "C0454", "section": "8-2-9 롤러", - "source_line": 540, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 534, + "pum_form": "reference", + "form_basis": "건설 꼴 — 다짐 두께·횟수 기준표 — 시방 기준", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34831,9 +34759,9 @@ { "pum_table_id": "C0455", "section": "8-2-9 롤러", - "source_line": 557, + "source_line": 551, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -34933,9 +34861,9 @@ { "pum_table_id": "C0456", "section": "8-2-10 아스팔트 플랜트", - "source_line": 579, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 573, + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'A' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35044,9 +34972,9 @@ { "pum_table_id": "C0457", "section": "8-2-12 크러셔", - "source_line": 603, + "source_line": 597, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35092,9 +35020,9 @@ { "pum_table_id": "C0458", "section": "8-2-12 크러셔", - "source_line": 613, + "source_line": 607, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35128,9 +35056,9 @@ { "pum_table_id": "C0459", "section": "8-2-12 크러셔", - "source_line": 621, + "source_line": 615, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35232,9 +35160,9 @@ { "pum_table_id": "C0460", "section": "8-2-12 크러셔", - "source_line": 635, + "source_line": 629, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35307,9 +35235,9 @@ { "pum_table_id": "C0461", "section": "8-2-12 크러셔", - "source_line": 657, + "source_line": 651, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35607,9 +35535,9 @@ { "pum_table_id": "C0462", "section": "8-2-12 크러셔", - "source_line": 679, + "source_line": 673, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -35843,9 +35771,9 @@ { "pum_table_id": "C0463", "section": "8-2-12 크러셔", - "source_line": 697, + "source_line": 691, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -36113,9 +36041,9 @@ { "pum_table_id": "C0464", "section": "8-2-12 크러셔", - "source_line": 724, + "source_line": 718, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -36549,9 +36477,9 @@ { "pum_table_id": "C0465", "section": "8-2-12 크러셔", - "source_line": 753, + "source_line": 747, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -36691,9 +36619,9 @@ { "pum_table_id": "C0466", "section": "8-2-12 크러셔", - "source_line": 767, + "source_line": 761, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -36826,9 +36754,9 @@ { "pum_table_id": "C0467", "section": "8-2-12 크러셔", - "source_line": 785, + "source_line": 779, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -36938,7 +36866,7 @@ { "pum_table_id": "C0468", "section": "8-2-12 크러셔", - "source_line": 812, + "source_line": 806, "pum_form": "coefficient", "form_basis": "건설 꼴 — '계수A' — 비율·계수표", "basis_quantity": null, @@ -37003,9 +36931,9 @@ { "pum_table_id": "C0469", "section": "8-2-12 크러셔", - "source_line": 822, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 816, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '생산능력(ton/hr)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "hr", "basis_source": "표 안", @@ -37107,9 +37035,9 @@ { "pum_table_id": "C0470", "section": "8-2-12 크러셔", - "source_line": 835, + "source_line": 829, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -37158,7 +37086,7 @@ { "pum_table_id": "C0471", "section": "8-2-13 대형브레이커", - "source_line": 845, + "source_line": 839, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -37200,7 +37128,7 @@ { "pum_table_id": "C0472", "section": "8-2-13 대형브레이커", - "source_line": 861, + "source_line": 855, "pum_form": "productivity", "form_basis": "본문 '㎥/hr'", "basis_quantity": null, @@ -37236,7 +37164,7 @@ { "pum_table_id": "C0473", "section": "8-2-13 대형브레이커", - "source_line": 869, + "source_line": 863, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -37285,9 +37213,9 @@ { "pum_table_id": "C0474", "section": "8-2-13 대형브레이커", - "source_line": 886, + "source_line": 880, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -37358,9 +37286,9 @@ { "pum_table_id": "C0475", "section": "8-2-15 법면다짐기", - "source_line": 900, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 894, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '작업량(㎡/h)' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -37467,9 +37395,9 @@ { "pum_table_id": "C0476", "section": "8-2-18 콘크리트 배치플랜트(강제 혼합식)", - "source_line": 918, + "source_line": 912, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -37518,9 +37446,9 @@ { "pum_table_id": "C0477", "section": "8-2-18 콘크리트 배치플랜트(강제 혼합식)", - "source_line": 925, + "source_line": 919, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -37592,7 +37520,7 @@ { "pum_table_id": "C0478", "section": "8-2-19 콘크리트 운반", - "source_line": 939, + "source_line": 933, "pum_form": "coefficient", "form_basis": "행 키가 기호뿐 ['W']", "basis_quantity": null, @@ -37626,7 +37554,7 @@ { "pum_table_id": "C0479", "section": "8-2-19 콘크리트 운반", - "source_line": 945, + "source_line": 939, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -37695,7 +37623,7 @@ { "pum_table_id": "C0480", "section": "8-2-21 경운기", - "source_line": 960, + "source_line": 954, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -37776,7 +37704,7 @@ { "pum_table_id": "C0481", "section": "8-2-22 디젤 파일 해머", - "source_line": 976, + "source_line": 970, "pum_form": "coefficient", "form_basis": "건설 꼴 — '토질계수' — 비율·계수표", "basis_quantity": null, @@ -37812,9 +37740,9 @@ { "pum_table_id": "C0482", "section": "8-2-22 디젤 파일 해머", - "source_line": 984, + "source_line": 978, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "표 안", @@ -37887,7 +37815,7 @@ { "pum_table_id": "C0483", "section": "8-2-22 디젤 파일 해머", - "source_line": 998, + "source_line": 992, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -37944,9 +37872,9 @@ { "pum_table_id": "C0484", "section": "8-2-22 디젤 파일 해머", - "source_line": 1012, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 1006, + "pum_form": "productivity", + "form_basis": "건설 꼴 — 줄 이름 'Te(분)' — 걸리는 시간", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -37980,9 +37908,9 @@ { "pum_table_id": "C0485", "section": "8-2-22 디젤 파일 해머", - "source_line": 1020, + "source_line": 1014, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -38036,9 +37964,9 @@ { "pum_table_id": "C0486", "section": "8-2-22 디젤 파일 해머", - "source_line": 1035, + "source_line": 1029, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "표 안", @@ -38127,9 +38055,9 @@ { "pum_table_id": "C0487", "section": "8-2-22 디젤 파일 해머", - "source_line": 1049, + "source_line": 1043, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "표 안", @@ -38218,9 +38146,9 @@ { "pum_table_id": "C0488", "section": "8-2-22 디젤 파일 해머", - "source_line": 1063, + "source_line": 1057, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -38258,9 +38186,9 @@ { "pum_table_id": "C0489", "section": "8-2-22 디젤 파일 해머", - "source_line": 1070, + "source_line": 1064, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "표 안", @@ -38347,9 +38275,9 @@ { "pum_table_id": "C0490", "section": "8-2-22 디젤 파일 해머", - "source_line": 1082, + "source_line": 1076, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -38436,9 +38364,9 @@ { "pum_table_id": "C0491", "section": "8-2-22 디젤 파일 해머", - "source_line": 1098, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 1092, + "pum_form": "productivity", + "form_basis": "건설 꼴 — 줄 이름 'Te(분)' — 걸리는 시간", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -38468,7 +38396,7 @@ { "pum_table_id": "C0492", "section": "8-2-22 디젤 파일 해머", - "source_line": 1104, + "source_line": 1098, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -38507,7 +38435,7 @@ { "pum_table_id": "C0493", "section": "8-2-22 디젤 파일 해머", - "source_line": 1113, + "source_line": 1107, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -38561,7 +38489,7 @@ { "pum_table_id": "C0494", "section": "8-2-23 유압 파일 해머", - "source_line": 1129, + "source_line": 1123, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -38624,7 +38552,7 @@ { "pum_table_id": "C0495", "section": "8-2-23 유압 파일 해머", - "source_line": 1139, + "source_line": 1133, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -38688,7 +38616,7 @@ { "pum_table_id": "C0496", "section": "8-2-23 유압 파일 해머", - "source_line": 1155, + "source_line": 1149, "pum_form": "coefficient", "form_basis": "건설 꼴 — 'N치의범위계수' — 비율·계수표", "basis_quantity": null, @@ -38722,7 +38650,7 @@ { "pum_table_id": "C0497", "section": "8-2-23 유압 파일 해머", - "source_line": 1170, + "source_line": 1164, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -38780,7 +38708,7 @@ { "pum_table_id": "C0498", "section": "8-2-23 유압 파일 해머", - "source_line": 1205, + "source_line": 1199, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -38821,7 +38749,7 @@ { "pum_table_id": "C0499", "section": "8-2-23 유압 파일 해머", - "source_line": 1214, + "source_line": 1208, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -38857,7 +38785,7 @@ { "pum_table_id": "C0500", "section": "8-2-23 유압 파일 해머", - "source_line": 1224, + "source_line": 1218, "pum_form": "requirement", "form_basis": "'수량'", "basis_quantity": null, @@ -38914,9 +38842,9 @@ { "pum_table_id": "C0501", "section": "8-2-24 진동파일 해머", - "source_line": 1233, + "source_line": 1227, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -38944,9 +38872,9 @@ { "pum_table_id": "C0502", "section": "8-2-24 진동파일 해머", - "source_line": 1240, + "source_line": 1234, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -38986,9 +38914,9 @@ { "pum_table_id": "C0503", "section": "8-2-24 진동파일 해머", - "source_line": 1255, + "source_line": 1249, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -39016,7 +38944,7 @@ { "pum_table_id": "C0504", "section": "8-2-24 진동파일 해머", - "source_line": 1261, + "source_line": 1255, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['f1', 'f2', 'f3', 'f4']", "basis_quantity": null, @@ -39079,9 +39007,9 @@ { "pum_table_id": "C0505", "section": "8-2-24 진동파일 해머", - "source_line": 1270, + "source_line": 1264, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -39140,7 +39068,7 @@ { "pum_table_id": "C0506", "section": "8-2-24 진동파일 해머", - "source_line": 1282, + "source_line": 1276, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -39182,7 +39110,7 @@ { "pum_table_id": "C0507", "section": "8-2-24 진동파일 해머", - "source_line": 1290, + "source_line": 1284, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -39216,9 +39144,9 @@ { "pum_table_id": "C0508", "section": "8-2-24 진동파일 해머", - "source_line": 1299, + "source_line": 1293, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -39367,7 +39295,7 @@ { "pum_table_id": "C0509", "section": "8-2-24 진동파일 해머", - "source_line": 1316, + "source_line": 1310, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['f1', 'f2', 'f3']", "basis_quantity": null, @@ -39420,7 +39348,7 @@ { "pum_table_id": "C0510", "section": "8-2-24 진동파일 해머", - "source_line": 1324, + "source_line": 1318, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -39481,7 +39409,7 @@ { "pum_table_id": "C0511", "section": "8-2-24 진동파일 해머", - "source_line": 1341, + "source_line": 1335, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -39523,7 +39451,7 @@ { "pum_table_id": "C0512", "section": "8-2-24 진동파일 해머", - "source_line": 1350, + "source_line": 1344, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -39563,9 +39491,9 @@ { "pum_table_id": "C0513", "section": "8-2-24 진동파일 해머", - "source_line": 1357, + "source_line": 1351, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -39618,7 +39546,7 @@ { "pum_table_id": "C0514", "section": "8-2-24 진동파일 해머", - "source_line": 1366, + "source_line": 1360, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -39685,7 +39613,7 @@ { "pum_table_id": "C0515", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1383, + "source_line": 1377, "pum_form": "coefficient", "form_basis": "건설 꼴 — '토질계수(α)' — 비율·계수표", "basis_quantity": 1.0, @@ -39734,7 +39662,7 @@ { "pum_table_id": "C0516", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1396, + "source_line": 1390, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['F0']", "basis_quantity": null, @@ -39764,7 +39692,7 @@ { "pum_table_id": "C0517", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1404, + "source_line": 1398, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['f1', 'f2', 'f3', 'f4']", "basis_quantity": null, @@ -39827,7 +39755,7 @@ { "pum_table_id": "C0518", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1414, + "source_line": 1408, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -39893,7 +39821,7 @@ { "pum_table_id": "C0519", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1426, + "source_line": 1420, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -39959,9 +39887,9 @@ { "pum_table_id": "C0520", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1440, + "source_line": 1434, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40007,7 +39935,7 @@ { "pum_table_id": "C0521", "section": "8-2-25 진동파일해머(워터제트 병용 압입공)", - "source_line": 1451, + "source_line": 1445, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -40072,9 +40000,9 @@ { "pum_table_id": "C0522", "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "source_line": 1472, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 1466, + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'k' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40104,7 +40032,7 @@ { "pum_table_id": "C0523", "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "source_line": 1478, + "source_line": 1472, "pum_form": "coefficient", "form_basis": "건설 꼴 — '보정계수조건' — 비율·계수표", "basis_quantity": null, @@ -40157,7 +40085,7 @@ { "pum_table_id": "C0524", "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "source_line": 1486, + "source_line": 1480, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -40200,7 +40128,7 @@ { "pum_table_id": "C0525", "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "source_line": 1497, + "source_line": 1491, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -40234,7 +40162,7 @@ { "pum_table_id": "C0526", "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "source_line": 1503, + "source_line": 1497, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -40273,9 +40201,9 @@ { "pum_table_id": "C0527", "section": "8-2-26 유압식 압입 인발기(유압식 압입 인발공)", - "source_line": 1513, + "source_line": 1507, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40377,9 +40305,9 @@ { "pum_table_id": "C0528", "section": "8-2-27 수중펌프", - "source_line": 1528, + "source_line": 1522, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40428,9 +40356,9 @@ { "pum_table_id": "C0529", "section": "8-2-27 수중펌프", - "source_line": 1544, + "source_line": 1538, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40473,9 +40401,9 @@ { "pum_table_id": "C0530", "section": "8-2-27 수중펌프", - "source_line": 1556, + "source_line": 1550, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40513,7 +40441,7 @@ { "pum_table_id": "C0531", "section": "8-2-27 수중펌프", - "source_line": 1565, + "source_line": 1559, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -40577,9 +40505,9 @@ { "pum_table_id": "C0532", "section": "8-2-28 터널전단면 굴착기(TBM)", - "source_line": 1578, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 1572, + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '작업효율' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -40639,7 +40567,7 @@ { "pum_table_id": "C0533", "section": "8-2-29 펌프식 준설선", - "source_line": 1596, + "source_line": 1590, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -40765,7 +40693,7 @@ { "pum_table_id": "C0534", "section": "8-2-29 펌프식 준설선", - "source_line": 1618, + "source_line": 1612, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -40816,7 +40744,7 @@ { "pum_table_id": "C0535", "section": "8-2-29 펌프식 준설선", - "source_line": 1625, + "source_line": 1619, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -40942,7 +40870,7 @@ { "pum_table_id": "C0536", "section": "8-2-29 펌프식 준설선", - "source_line": 1639, + "source_line": 1633, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -41035,7 +40963,7 @@ { "pum_table_id": "C0537", "section": "8-2-29 펌프식 준설선", - "source_line": 1663, + "source_line": 1657, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -41136,9 +41064,9 @@ { "pum_table_id": "C0538", "section": "8-2-29 펌프식 준설선", - "source_line": 1674, + "source_line": 1668, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -41205,9 +41133,9 @@ { "pum_table_id": "C0539", "section": "8-2-29 펌프식 준설선", - "source_line": 1690, + "source_line": 1684, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -41255,7 +41183,7 @@ { "pum_table_id": "C0540", "section": "8-2-29 펌프식 준설선", - "source_line": 1698, + "source_line": 1692, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41289,7 +41217,7 @@ { "pum_table_id": "C0541", "section": "8-2-29 펌프식 준설선", - "source_line": 1705, + "source_line": 1699, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['E1']", "basis_quantity": null, @@ -41323,7 +41251,7 @@ { "pum_table_id": "C0542", "section": "8-2-29 펌프식 준설선", - "source_line": 1711, + "source_line": 1705, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41361,7 +41289,7 @@ { "pum_table_id": "C0543", "section": "8-2-29 펌프식 준설선", - "source_line": 1721, + "source_line": 1715, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41399,7 +41327,7 @@ { "pum_table_id": "C0544", "section": "8-2-29 펌프식 준설선", - "source_line": 1729, + "source_line": 1723, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41437,7 +41365,7 @@ { "pum_table_id": "C0545", "section": "8-2-29 펌프식 준설선", - "source_line": 1737, + "source_line": 1731, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['E4']", "basis_quantity": null, @@ -41471,7 +41399,7 @@ { "pum_table_id": "C0546", "section": "8-2-29 펌프식 준설선", - "source_line": 1743, + "source_line": 1737, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41528,9 +41456,9 @@ { "pum_table_id": "C0547", "section": "8-2-30 그래브 준설선", - "source_line": 1753, + "source_line": 1747, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -41612,9 +41540,9 @@ { "pum_table_id": "C0548", "section": "8-2-30 그래브 준설선", - "source_line": 1769, + "source_line": 1763, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -41667,9 +41595,9 @@ { "pum_table_id": "C0549", "section": "8-2-30 그래브 준설선", - "source_line": 1777, + "source_line": 1771, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -41763,7 +41691,7 @@ { "pum_table_id": "C0550", "section": "8-2-30 그래브 준설선", - "source_line": 1794, + "source_line": 1788, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -41818,7 +41746,7 @@ { "pum_table_id": "C0551", "section": "8-2-30 그래브 준설선", - "source_line": 1804, + "source_line": 1798, "pum_form": "coefficient", "form_basis": "건설 꼴 — 줄 이름이 공식 기호뿐 ['E1']", "basis_quantity": null, @@ -41854,7 +41782,7 @@ { "pum_table_id": "C0552", "section": "8-2-30 그래브 준설선", - "source_line": 1810, + "source_line": 1804, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41898,7 +41826,7 @@ { "pum_table_id": "C0553", "section": "8-2-30 그래브 준설선", - "source_line": 1821, + "source_line": 1815, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -41955,9 +41883,9 @@ { "pum_table_id": "C0554", "section": "8-2-31 쇄암선(중추식)", - "source_line": 1831, + "source_line": 1825, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -42006,7 +41934,7 @@ { "pum_table_id": "C0555", "section": "8-2-31 쇄암선(중추식)", - "source_line": 1839, + "source_line": 1833, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -42080,7 +42008,7 @@ { "pum_table_id": "C0556", "section": "8-2-32 이동식 임목파쇄기", - "source_line": 1857, + "source_line": 1851, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -42112,7 +42040,7 @@ { "pum_table_id": "C0557", "section": "8-2-32 이동식 임목파쇄기", - "source_line": 1869, + "source_line": 1863, "pum_form": "coefficient", "form_basis": "행 키가 시공능력 공식 기호뿐 ['K']", "basis_quantity": null, @@ -42146,7 +42074,7 @@ { "pum_table_id": "C0558", "section": "8-2-32 이동식 임목파쇄기", - "source_line": 1877, + "source_line": 1871, "pum_form": "coefficient", "form_basis": "행 키가 기호뿐 ['S']", "basis_quantity": null, @@ -42182,7 +42110,7 @@ { "pum_table_id": "C0559", "section": "8-2-32 이동식 임목파쇄기", - "source_line": 1883, + "source_line": 1877, "pum_form": "coefficient", "form_basis": "행 키가 시공능력 공식 기호뿐 ['E']", "basis_quantity": null, @@ -42218,7 +42146,7 @@ { "pum_table_id": "C0560", "section": "8-2-32 이동식 임목파쇄기", - "source_line": 1891, + "source_line": 1885, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -42285,9 +42213,9 @@ { "pum_table_id": "C0561", "section": "8-2-33 하천골재채취선", - "source_line": 1902, + "source_line": 1896, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -42353,9 +42281,9 @@ { "pum_table_id": "C0562", "section": "8-2-33 하천골재채취선", - "source_line": 1910, + "source_line": 1904, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -42399,7 +42327,7 @@ { "pum_table_id": "C0563", "section": "8-2-33 하천골재채취선", - "source_line": 1920, + "source_line": 1914, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -42491,7 +42419,7 @@ { "pum_table_id": "C0564", "section": "8-3-1 [00]토공기계", - "source_line": 1929, + "source_line": 1923, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -42604,7 +42532,7 @@ { "pum_table_id": "C0565", "section": "8-3-1 [00]토공기계", - "source_line": 1942, + "source_line": 1936, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -42691,9 +42619,9 @@ { "pum_table_id": "C0566", "section": "8-3-1 [00]토공기계", - "source_line": 1953, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 1947, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 손료표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -42752,7 +42680,7 @@ { "pum_table_id": "C0567", "section": "8-3-1 [00]토공기계", - "source_line": 1965, + "source_line": 1959, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -42826,7 +42754,7 @@ { "pum_table_id": "C0568", "section": "8-3-1 [00]토공기계", - "source_line": 1975, + "source_line": 1969, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -42988,7 +42916,7 @@ { "pum_table_id": "C0569", "section": "8-3-1 [00]토공기계", - "source_line": 1990, + "source_line": 1984, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43085,7 +43013,7 @@ { "pum_table_id": "C0570", "section": "8-3-1 [00]토공기계", - "source_line": 2000, + "source_line": 1994, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43156,7 +43084,7 @@ { "pum_table_id": "C2193", "section": "8-3-1 [00]토공기계", - "source_line": 2008, + "source_line": 2002, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -43279,7 +43207,7 @@ { "pum_table_id": "C0571", "section": "8-3-1 [00]토공기계", - "source_line": 2020, + "source_line": 2014, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43337,7 +43265,7 @@ { "pum_table_id": "C0572", "section": "8-3-1 [00]토공기계", - "source_line": 2027, + "source_line": 2021, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43410,7 +43338,7 @@ { "pum_table_id": "C0573", "section": "8-3-1 [00]토공기계", - "source_line": 2035, + "source_line": 2029, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -43468,7 +43396,7 @@ { "pum_table_id": "C0574", "section": "8-3-1 [00]토공기계", - "source_line": 2042, + "source_line": 2036, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43620,7 +43548,7 @@ { "pum_table_id": "C0575", "section": "8-3-1 [00]토공기계", - "source_line": 2058, + "source_line": 2052, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43785,7 +43713,7 @@ { "pum_table_id": "C0576", "section": "8-3-1 [00]토공기계", - "source_line": 2075, + "source_line": 2069, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43885,7 +43813,7 @@ { "pum_table_id": "C0577", "section": "8-3-1 [00]토공기계", - "source_line": 2089, + "source_line": 2083, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -43998,7 +43926,7 @@ { "pum_table_id": "C0578", "section": "8-3-1 [00]토공기계", - "source_line": 2102, + "source_line": 2096, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -44059,7 +43987,7 @@ { "pum_table_id": "C0579", "section": "8-3-1 [00]토공기계", - "source_line": 2111, + "source_line": 2105, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -44117,7 +44045,7 @@ { "pum_table_id": "C0580", "section": "8-3-1 [00]토공기계", - "source_line": 2118, + "source_line": 2112, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44282,7 +44210,7 @@ { "pum_table_id": "C0581", "section": "8-3-1 [00]토공기계", - "source_line": 2135, + "source_line": 2129, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44385,7 +44313,7 @@ { "pum_table_id": "C0582", "section": "8-3-2 [10]다짐기계", - "source_line": 2144, + "source_line": 2138, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44473,7 +44401,7 @@ { "pum_table_id": "C0583", "section": "8-3-2 [10]다짐기계", - "source_line": 2153, + "source_line": 2147, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44561,7 +44489,7 @@ { "pum_table_id": "C0584", "section": "8-3-2 [10]다짐기계", - "source_line": 2162, + "source_line": 2156, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44697,7 +44625,7 @@ { "pum_table_id": "C0585", "section": "8-3-2 [10]다짐기계", - "source_line": 2175, + "source_line": 2169, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44755,7 +44683,7 @@ { "pum_table_id": "C0586", "section": "8-3-2 [10]다짐기계", - "source_line": 2182, + "source_line": 2176, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44865,7 +44793,7 @@ { "pum_table_id": "C0587", "section": "8-3-2 [10]다짐기계", - "source_line": 2193, + "source_line": 2187, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -44954,7 +44882,7 @@ { "pum_table_id": "C0588", "section": "8-3-2 [10]다짐기계", - "source_line": 2204, + "source_line": 2198, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -45105,7 +45033,7 @@ { "pum_table_id": "C0589", "section": "8-3-2 [10]다짐기계", - "source_line": 2218, + "source_line": 2212, "pum_form": "requirement", "form_basis": "값 단위 '(㎏)'", "basis_quantity": null, @@ -45163,7 +45091,7 @@ { "pum_table_id": "C0590", "section": "8-3-2 [10]다짐기계", - "source_line": 2225, + "source_line": 2219, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -45243,7 +45171,7 @@ { "pum_table_id": "C0591", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2234, + "source_line": 2228, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -45483,7 +45411,7 @@ { "pum_table_id": "C0592", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2257, + "source_line": 2251, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -45779,7 +45707,7 @@ { "pum_table_id": "C0593", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2285, + "source_line": 2279, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -45902,7 +45830,7 @@ { "pum_table_id": "C0594", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2297, + "source_line": 2291, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -45986,7 +45914,7 @@ { "pum_table_id": "C0595", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2306, + "source_line": 2300, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46044,7 +45972,7 @@ { "pum_table_id": "C0596", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2313, + "source_line": 2307, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -46128,7 +46056,7 @@ { "pum_table_id": "C0597", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2322, + "source_line": 2316, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -46199,7 +46127,7 @@ { "pum_table_id": "C0598", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2330, + "source_line": 2324, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -46270,7 +46198,7 @@ { "pum_table_id": "C0599", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2338, + "source_line": 2332, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -46328,7 +46256,7 @@ { "pum_table_id": "C0600", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2345, + "source_line": 2339, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46450,7 +46378,7 @@ { "pum_table_id": "C0601", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2359, + "source_line": 2353, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46516,7 +46444,7 @@ { "pum_table_id": "C0602", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2369, + "source_line": 2363, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46587,7 +46515,7 @@ { "pum_table_id": "C0603", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2377, + "source_line": 2371, "pum_form": "requirement", "form_basis": "값 단위 '(㎏)'", "basis_quantity": null, @@ -46645,7 +46573,7 @@ { "pum_table_id": "C0604", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2384, + "source_line": 2378, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46757,7 +46685,7 @@ { "pum_table_id": "C0605", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2395, + "source_line": 2389, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46856,7 +46784,7 @@ { "pum_table_id": "C0606", "section": "8-3-3 [20]운반 및 하역기계", - "source_line": 2405, + "source_line": 2399, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -46974,7 +46902,7 @@ { "pum_table_id": "C0607", "section": "8-3-4 [30]포장기계", - "source_line": 2415, + "source_line": 2409, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": 1.0, @@ -47087,7 +47015,7 @@ { "pum_table_id": "C0608", "section": "8-3-4 [30]포장기계", - "source_line": 2430, + "source_line": 2424, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -47158,7 +47086,7 @@ { "pum_table_id": "C0609", "section": "8-3-4 [30]포장기계", - "source_line": 2438, + "source_line": 2432, "pum_form": "requirement", "form_basis": "값 단위 '(ℓ)'", "basis_quantity": null, @@ -47258,7 +47186,7 @@ { "pum_table_id": "C0610", "section": "8-3-4 [30]포장기계", - "source_line": 2450, + "source_line": 2444, "pum_form": "requirement", "form_basis": "값 단위 '(ℓ)'", "basis_quantity": null, @@ -47332,7 +47260,7 @@ { "pum_table_id": "C0611", "section": "8-3-4 [30]포장기계", - "source_line": 2460, + "source_line": 2454, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -47390,7 +47318,7 @@ { "pum_table_id": "C0612", "section": "8-3-4 [30]포장기계", - "source_line": 2467, + "source_line": 2461, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -47463,7 +47391,7 @@ { "pum_table_id": "C2194", "section": "8-3-4 [30]포장기계", - "source_line": 2477, + "source_line": 2471, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -47573,7 +47501,7 @@ { "pum_table_id": "C0613", "section": "8-3-4 [30]포장기계", - "source_line": 2488, + "source_line": 2482, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -47631,7 +47559,7 @@ { "pum_table_id": "C0614", "section": "8-3-4 [30]포장기계", - "source_line": 2495, + "source_line": 2489, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -47689,7 +47617,7 @@ { "pum_table_id": "C0615", "section": "8-3-4 [30]포장기계", - "source_line": 2502, + "source_line": 2496, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -47760,7 +47688,7 @@ { "pum_table_id": "C0616", "section": "8-3-4 [30]포장기계", - "source_line": 2510, + "source_line": 2504, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -47818,7 +47746,7 @@ { "pum_table_id": "C0617", "section": "8-3-4 [30]포장기계", - "source_line": 2517, + "source_line": 2511, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -47897,7 +47825,7 @@ { "pum_table_id": "C0618", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2524, + "source_line": 2518, "pum_form": "productivity", "form_basis": "헤더 '㎥/hr'", "basis_quantity": 1.0, @@ -48023,7 +47951,7 @@ { "pum_table_id": "C0619", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2538, + "source_line": 2532, "pum_form": "productivity", "form_basis": "헤더 '㎥/hr'", "basis_quantity": 1.0, @@ -48123,7 +48051,7 @@ { "pum_table_id": "C0620", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2550, + "source_line": 2544, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -48249,7 +48177,7 @@ { "pum_table_id": "C0621", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2564, + "source_line": 2558, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -48324,7 +48252,7 @@ { "pum_table_id": "C0622", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2575, + "source_line": 2569, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -48384,7 +48312,7 @@ { "pum_table_id": "C0623", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2582, + "source_line": 2576, "pum_form": "productivity", "form_basis": "헤더 '㎥/hr'", "basis_quantity": null, @@ -48483,7 +48411,7 @@ { "pum_table_id": "C0624", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2592, + "source_line": 2586, "pum_form": "productivity", "form_basis": "헤더 '㎥/hr'", "basis_quantity": null, @@ -48584,7 +48512,7 @@ { "pum_table_id": "C0625", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2602, + "source_line": 2596, "pum_form": "productivity", "form_basis": "헤더 '㎥/hr'", "basis_quantity": 1.0, @@ -48646,7 +48574,7 @@ { "pum_table_id": "C0626", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2609, + "source_line": 2603, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -48717,7 +48645,7 @@ { "pum_table_id": "C0627", "section": "8-3-5 [40]콘크리트기계", - "source_line": 2617, + "source_line": 2611, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": 1.0, @@ -48807,7 +48735,7 @@ { "pum_table_id": "C0628", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2625, + "source_line": 2619, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": 1.0, @@ -48908,7 +48836,7 @@ { "pum_table_id": "C0629", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2638, + "source_line": 2632, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49023,7 +48951,7 @@ { "pum_table_id": "C0630", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2651, + "source_line": 2645, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49083,7 +49011,7 @@ { "pum_table_id": "C0631", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2658, + "source_line": 2652, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49185,7 +49113,7 @@ { "pum_table_id": "C0632", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2670, + "source_line": 2664, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49323,7 +49251,7 @@ { "pum_table_id": "C0633", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2683, + "source_line": 2677, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49425,7 +49353,7 @@ { "pum_table_id": "C0634", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2695, + "source_line": 2689, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49576,7 +49504,7 @@ { "pum_table_id": "C0635", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2711, + "source_line": 2705, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49675,7 +49603,7 @@ { "pum_table_id": "C0636", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2721, + "source_line": 2715, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49828,7 +49756,7 @@ { "pum_table_id": "C0637", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2735, + "source_line": 2729, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -49981,7 +49909,7 @@ { "pum_table_id": "C0638", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2749, + "source_line": 2743, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50065,7 +49993,7 @@ { "pum_table_id": "C0639", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2758, + "source_line": 2752, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50164,7 +50092,7 @@ { "pum_table_id": "C0640", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2768, + "source_line": 2762, "pum_form": "productivity", "form_basis": "본문 '㎥/hr'", "basis_quantity": null, @@ -50227,7 +50155,7 @@ { "pum_table_id": "C0641", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2779, + "source_line": 2773, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50315,7 +50243,7 @@ { "pum_table_id": "C0642", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2788, + "source_line": 2782, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50437,7 +50365,7 @@ { "pum_table_id": "C0643", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2799, + "source_line": 2793, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50549,7 +50477,7 @@ { "pum_table_id": "C0644", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2810, + "source_line": 2804, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50675,9 +50603,9 @@ { "pum_table_id": "C0645", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2824, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 2818, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 손료표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -50730,9 +50658,9 @@ { "pum_table_id": "C0646", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2835, + "source_line": 2829, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -50873,9 +50801,9 @@ { "pum_table_id": "C2195", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2851, + "source_line": 2845, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -50907,7 +50835,7 @@ { "pum_table_id": "C0647", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2857, + "source_line": 2851, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -50969,7 +50897,7 @@ { "pum_table_id": "C0648", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2867, + "source_line": 2861, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51044,7 +50972,7 @@ { "pum_table_id": "C0649", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2878, + "source_line": 2872, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51117,7 +51045,7 @@ { "pum_table_id": "C0650", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2886, + "source_line": 2880, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51178,7 +51106,7 @@ { "pum_table_id": "C0651", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2895, + "source_line": 2889, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -51249,7 +51177,7 @@ { "pum_table_id": "C0652", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2903, + "source_line": 2897, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -51307,7 +51235,7 @@ { "pum_table_id": "C0653", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2910, + "source_line": 2904, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -51408,7 +51336,7 @@ { "pum_table_id": "C0654", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2923, + "source_line": 2917, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51479,7 +51407,7 @@ { "pum_table_id": "C0655", "section": "8-3-6 [50]골재생산기계 등", - "source_line": 2931, + "source_line": 2925, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51585,7 +51513,7 @@ { "pum_table_id": "C0656", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 2944, + "source_line": 2938, "pum_form": "requirement", "form_basis": "값 단위 '(ℓ)'", "basis_quantity": null, @@ -51661,7 +51589,7 @@ { "pum_table_id": "C0657", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 2954, + "source_line": 2948, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51752,7 +51680,7 @@ { "pum_table_id": "C0658", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 2967, + "source_line": 2961, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51849,7 +51777,7 @@ { "pum_table_id": "C0659", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 2977, + "source_line": 2971, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -51925,7 +51853,7 @@ { "pum_table_id": "C0660", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 2985, + "source_line": 2979, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52047,7 +51975,7 @@ { "pum_table_id": "C0661", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 2999, + "source_line": 2993, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52157,7 +52085,7 @@ { "pum_table_id": "C0662", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3010, + "source_line": 3004, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52269,7 +52197,7 @@ { "pum_table_id": "C0663", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3021, + "source_line": 3015, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52327,7 +52255,7 @@ { "pum_table_id": "C0664", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3028, + "source_line": 3022, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52426,7 +52354,7 @@ { "pum_table_id": "C0665", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3038, + "source_line": 3032, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52536,7 +52464,7 @@ { "pum_table_id": "C0666", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3049, + "source_line": 3043, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52646,7 +52574,7 @@ { "pum_table_id": "C0667", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3060, + "source_line": 3054, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52769,7 +52697,7 @@ { "pum_table_id": "C2196", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3072, + "source_line": 3066, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52827,7 +52755,7 @@ { "pum_table_id": "C0668", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3079, + "source_line": 3073, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52885,7 +52813,7 @@ { "pum_table_id": "C0669", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3086, + "source_line": 3080, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -52945,7 +52873,7 @@ { "pum_table_id": "C0670", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3093, + "source_line": 3087, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53057,7 +52985,7 @@ { "pum_table_id": "C0671", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3104, + "source_line": 3098, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53130,7 +53058,7 @@ { "pum_table_id": "C2197", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3114, + "source_line": 3108, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53188,7 +53116,7 @@ { "pum_table_id": "C0672", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3121, + "source_line": 3115, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53314,7 +53242,7 @@ { "pum_table_id": "C0673", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3135, + "source_line": 3129, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53385,7 +53313,7 @@ { "pum_table_id": "C0674", "section": "8-3-7 [60]기초공사용 기계", - "source_line": 3143, + "source_line": 3137, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53464,7 +53392,7 @@ { "pum_table_id": "C2198", "section": "8-3-8 [70]기타기계", - "source_line": 3154, + "source_line": 3148, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53526,7 +53454,7 @@ { "pum_table_id": "C0675", "section": "8-3-8 [70]기타기계", - "source_line": 3164, + "source_line": 3158, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53586,7 +53514,7 @@ { "pum_table_id": "C0676", "section": "8-3-8 [70]기타기계", - "source_line": 3171, + "source_line": 3165, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53646,7 +53574,7 @@ { "pum_table_id": "C0677", "section": "8-3-8 [70]기타기계", - "source_line": 3178, + "source_line": 3172, "pum_form": "requirement", "form_basis": "값 단위 '(m)'", "basis_quantity": null, @@ -53704,7 +53632,7 @@ { "pum_table_id": "C0678", "section": "8-3-8 [70]기타기계", - "source_line": 3185, + "source_line": 3179, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53775,7 +53703,7 @@ { "pum_table_id": "C2199", "section": "8-3-8 [70]기타기계", - "source_line": 3193, + "source_line": 3187, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53835,7 +53763,7 @@ { "pum_table_id": "C0679", "section": "8-3-8 [70]기타기계", - "source_line": 3202, + "source_line": 3196, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -53913,7 +53841,7 @@ { "pum_table_id": "C0680", "section": "8-3-8 [70]기타기계", - "source_line": 3210, + "source_line": 3204, "pum_form": "requirement", "form_basis": "값 단위 '(ℓ)'", "basis_quantity": null, @@ -54026,7 +53954,7 @@ { "pum_table_id": "C0681", "section": "8-3-8 [70]기타기계", - "source_line": 3223, + "source_line": 3217, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54110,7 +54038,7 @@ { "pum_table_id": "C0682", "section": "8-3-8 [70]기타기계", - "source_line": 3232, + "source_line": 3226, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -54196,7 +54124,7 @@ { "pum_table_id": "C0683", "section": "8-3-8 [70]기타기계", - "source_line": 3241, + "source_line": 3235, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54254,7 +54182,7 @@ { "pum_table_id": "C0684", "section": "8-3-8 [70]기타기계", - "source_line": 3248, + "source_line": 3242, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54315,7 +54243,7 @@ { "pum_table_id": "C0685", "section": "8-3-8 [70]기타기계", - "source_line": 3257, + "source_line": 3251, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54386,7 +54314,7 @@ { "pum_table_id": "C0686", "section": "8-3-8 [70]기타기계", - "source_line": 3265, + "source_line": 3259, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54475,7 +54403,7 @@ { "pum_table_id": "C0687", "section": "8-3-8 [70]기타기계", - "source_line": 3274, + "source_line": 3268, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54596,7 +54524,7 @@ { "pum_table_id": "C0688", "section": "8-3-8 [70]기타기계", - "source_line": 3288, + "source_line": 3282, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54703,7 +54631,7 @@ { "pum_table_id": "C0689", "section": "8-3-8 [70]기타기계", - "source_line": 3301, + "source_line": 3295, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54787,7 +54715,7 @@ { "pum_table_id": "C0690", "section": "8-3-8 [70]기타기계", - "source_line": 3310, + "source_line": 3304, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -54939,7 +54867,7 @@ { "pum_table_id": "C0691", "section": "8-3-8 [70]기타기계", - "source_line": 3326, + "source_line": 3320, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55038,7 +54966,7 @@ { "pum_table_id": "C0692", "section": "8-3-8 [70]기타기계", - "source_line": 3336, + "source_line": 3330, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55124,7 +55052,7 @@ { "pum_table_id": "C0693", "section": "8-3-8 [70]기타기계", - "source_line": 3345, + "source_line": 3339, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55249,7 +55177,7 @@ { "pum_table_id": "C0694", "section": "8-3-8 [70]기타기계", - "source_line": 3357, + "source_line": 3351, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55309,7 +55237,7 @@ { "pum_table_id": "C0695", "section": "8-3-8 [70]기타기계", - "source_line": 3364, + "source_line": 3358, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55382,7 +55310,7 @@ { "pum_table_id": "C0696", "section": "8-3-8 [70]기타기계", - "source_line": 3372, + "source_line": 3366, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55442,7 +55370,7 @@ { "pum_table_id": "C0697", "section": "8-3-8 [70]기타기계", - "source_line": 3379, + "source_line": 3373, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55564,7 +55492,7 @@ { "pum_table_id": "C0698", "section": "8-3-8 [70]기타기계", - "source_line": 3393, + "source_line": 3387, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55648,7 +55576,7 @@ { "pum_table_id": "C0699", "section": "8-3-8 [70]기타기계", - "source_line": 3404, + "source_line": 3398, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55719,7 +55647,7 @@ { "pum_table_id": "C0700", "section": "8-3-8 [70]기타기계", - "source_line": 3412, + "source_line": 3406, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55777,7 +55705,7 @@ { "pum_table_id": "C0701", "section": "8-3-8 [70]기타기계", - "source_line": 3419, + "source_line": 3413, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -55908,7 +55836,7 @@ { "pum_table_id": "C0702", "section": "8-3-8 [70]기타기계", - "source_line": 3431, + "source_line": 3425, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56109,7 +56037,7 @@ { "pum_table_id": "C2200", "section": "8-3-8 [70]기타기계", - "source_line": 3448, + "source_line": 3442, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56169,7 +56097,7 @@ { "pum_table_id": "C0703", "section": "8-3-8 [70]기타기계", - "source_line": 3457, + "source_line": 3451, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56396,7 +56324,7 @@ { "pum_table_id": "C0704", "section": "8-3-8 [70]기타기계", - "source_line": 3477, + "source_line": 3471, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56454,7 +56382,7 @@ { "pum_table_id": "C0705", "section": "8-3-8 [70]기타기계", - "source_line": 3484, + "source_line": 3478, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56512,7 +56440,7 @@ { "pum_table_id": "C0706", "section": "8-3-8 [70]기타기계", - "source_line": 3491, + "source_line": 3485, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56570,7 +56498,7 @@ { "pum_table_id": "C0707", "section": "8-3-8 [70]기타기계", - "source_line": 3498, + "source_line": 3492, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56628,7 +56556,7 @@ { "pum_table_id": "C0708", "section": "8-3-8 [70]기타기계", - "source_line": 3505, + "source_line": 3499, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56686,7 +56614,7 @@ { "pum_table_id": "C0709", "section": "8-3-8 [70]기타기계", - "source_line": 3512, + "source_line": 3506, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56744,9 +56672,9 @@ { "pum_table_id": "C0710", "section": "8-3-8 [70]기타기계", - "source_line": 3519, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 3513, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 손료표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -56786,9 +56714,9 @@ { "pum_table_id": "C0711", "section": "8-3-8 [70]기타기계", - "source_line": 3527, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 3521, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 손료표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -56818,9 +56746,9 @@ { "pum_table_id": "C0712", "section": "8-3-8 [70]기타기계", - "source_line": 3533, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 3527, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 손료표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -56850,9 +56778,9 @@ { "pum_table_id": "C0713", "section": "8-3-8 [70]기타기계", - "source_line": 3539, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 3533, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 손료표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -56882,9 +56810,9 @@ { "pum_table_id": "C2201", "section": "8-3-8 [70]기타기계", - "source_line": 3547, + "source_line": 3541, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -56933,7 +56861,7 @@ { "pum_table_id": "C0714", "section": "8-3-9 [80]스마트 건설장비", - "source_line": 3555, + "source_line": 3549, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -56993,7 +56921,7 @@ { "pum_table_id": "C0715", "section": "8-3-9 [80]스마트 건설장비", - "source_line": 3562, + "source_line": 3556, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -57053,7 +56981,7 @@ { "pum_table_id": "C0716", "section": "8-3-9 [80]스마트 건설장비", - "source_line": 3569, + "source_line": 3563, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -57113,7 +57041,7 @@ { "pum_table_id": "C0717", "section": "8-3-9 [80]스마트 건설장비", - "source_line": 3576, + "source_line": 3570, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -57173,7 +57101,7 @@ { "pum_table_id": "C0718", "section": "8-3-9 [80]스마트 건설장비", - "source_line": 3583, + "source_line": 3577, "pum_form": "requirement", "form_basis": "값 단위 '(㎥)'", "basis_quantity": null, @@ -57252,7 +57180,7 @@ { "pum_table_id": "C0719", "section": "8-3-10 [90]해상장비", - "source_line": 3590, + "source_line": 3584, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -57480,7 +57408,7 @@ { "pum_table_id": "C0720", "section": "8-3-10 [90]해상장비", - "source_line": 3609, + "source_line": 3603, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -57584,7 +57512,7 @@ { "pum_table_id": "C0721", "section": "8-3-10 [90]해상장비", - "source_line": 3629, + "source_line": 3623, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -57770,7 +57698,7 @@ { "pum_table_id": "C0722", "section": "8-3-10 [90]해상장비", - "source_line": 3645, + "source_line": 3639, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -57984,7 +57912,7 @@ { "pum_table_id": "C0723", "section": "8-3-10 [90]해상장비", - "source_line": 3663, + "source_line": 3657, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -58114,7 +58042,7 @@ { "pum_table_id": "C2202", "section": "8-3-10 [90]해상장비", - "source_line": 3675, + "source_line": 3669, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -58258,7 +58186,7 @@ { "pum_table_id": "C0724", "section": "8-3-10 [90]해상장비", - "source_line": 3688, + "source_line": 3682, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -58346,7 +58274,7 @@ { "pum_table_id": "C0725", "section": "8-3-10 [90]해상장비", - "source_line": 3697, + "source_line": 3691, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -58630,7 +58558,7 @@ { "pum_table_id": "C0726", "section": "8-3-10 [90]해상장비", - "source_line": 3720, + "source_line": 3714, "pum_form": "coefficient", "form_basis": "건설 꼴 — 머리 '분류번호'+'상각 비율' — 기계 손료 계수표", "basis_quantity": null, @@ -58826,7 +58754,7 @@ { "pum_table_id": "C0727", "section": "8-4-1 [00]토공기계", - "source_line": 3735, + "source_line": 3729, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -59104,7 +59032,7 @@ { "pum_table_id": "C0728", "section": "8-4-1 [00]토공기계", - "source_line": 3771, + "source_line": 3765, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -59369,7 +59297,7 @@ { "pum_table_id": "C0729", "section": "8-4-2 [10]다짐기계", - "source_line": 3803, + "source_line": 3797, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -59676,7 +59604,7 @@ { "pum_table_id": "C0730", "section": "8-4-3 [20]운반 및 하역기계", - "source_line": 3840, + "source_line": 3834, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -59914,7 +59842,7 @@ { "pum_table_id": "C0731", "section": "8-4-3 [20]운반 및 하역기계", - "source_line": 3871, + "source_line": 3865, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -60283,7 +60211,7 @@ { "pum_table_id": "C0732", "section": "8-4-4 [30]포장기계", - "source_line": 3915, + "source_line": 3909, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -60550,7 +60478,7 @@ { "pum_table_id": "C0733", "section": "8-4-5 [40]콘크리트기계", - "source_line": 3947, + "source_line": 3941, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -60620,7 +60548,7 @@ { "pum_table_id": "C0734", "section": "8-4-5 [40]콘크리트기계", - "source_line": 3957, + "source_line": 3951, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -60839,7 +60767,7 @@ { "pum_table_id": "C0735", "section": "8-4-6 [50]골재생산기계 등", - "source_line": 3983, + "source_line": 3977, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -60957,7 +60885,7 @@ { "pum_table_id": "C0736", "section": "8-4-6 [50]골재생산기계 등", - "source_line": 3999, + "source_line": 3993, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -61078,7 +61006,7 @@ { "pum_table_id": "C0737", "section": "8-4-7 [60]기초공사용 기계", - "source_line": 4013, + "source_line": 4007, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -61295,7 +61223,7 @@ { "pum_table_id": "C0738", "section": "8-4-8 [70]기타기계", - "source_line": 4039, + "source_line": 4033, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -61618,7 +61546,7 @@ { "pum_table_id": "C0739", "section": "8-4-8 [70]기타기계", - "source_line": 4080, + "source_line": 4074, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -61818,7 +61746,7 @@ { "pum_table_id": "C0740", "section": "8-4-9 [90]해상기계", - "source_line": 4111, + "source_line": 4105, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -61994,7 +61922,7 @@ { "pum_table_id": "C0741", "section": "8-4-9 [90]해상기계", - "source_line": 4124, + "source_line": 4118, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62157,7 +62085,7 @@ { "pum_table_id": "C0742", "section": "8-4-9 [90]해상기계", - "source_line": 4137, + "source_line": 4131, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62259,7 +62187,7 @@ { "pum_table_id": "C0743", "section": "8-4-9 [90]해상기계", - "source_line": 4147, + "source_line": 4141, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62355,7 +62283,7 @@ { "pum_table_id": "C0744", "section": "8-4-9 [90]해상기계", - "source_line": 4158, + "source_line": 4152, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62449,7 +62377,7 @@ { "pum_table_id": "C0745", "section": "8-4-9 [90]해상기계", - "source_line": 4168, + "source_line": 4162, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62517,7 +62445,7 @@ { "pum_table_id": "C0746", "section": "8-4-9 [90]해상기계", - "source_line": 4178, + "source_line": 4172, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62692,7 +62620,7 @@ { "pum_table_id": "C0747", "section": "8-4-9 [90]해상기계", - "source_line": 4190, + "source_line": 4184, "pum_form": "requirement", "form_basis": "분류 딱지 ['잡재료']", "basis_quantity": null, @@ -62992,9 +62920,9 @@ { "pum_table_id": "C0748", "section": "8-5-1 [00]토공기계", - "source_line": 4203, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4197, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63024,9 +62952,9 @@ { "pum_table_id": "C0749", "section": "8-5-1 [00]토공기계", - "source_line": 4209, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4203, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63056,9 +62984,9 @@ { "pum_table_id": "C0750", "section": "8-5-1 [00]토공기계", - "source_line": 4215, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4209, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63107,9 +63035,9 @@ { "pum_table_id": "C0751", "section": "8-5-2 [10]다짐기계", - "source_line": 4221, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4215, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63158,9 +63086,9 @@ { "pum_table_id": "C0752", "section": "8-5-3 [20]운반 및 하역기계", - "source_line": 4227, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4221, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63190,9 +63118,9 @@ { "pum_table_id": "C0753", "section": "8-5-3 [20]운반 및 하역기계", - "source_line": 4233, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4227, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63241,9 +63169,9 @@ { "pum_table_id": "C0754", "section": "8-5-4 [30]포장기계", - "source_line": 4239, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4233, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63292,9 +63220,9 @@ { "pum_table_id": "C0755", "section": "8-5-5 [40]콘크리트기계", - "source_line": 4245, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4239, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63343,9 +63271,9 @@ { "pum_table_id": "C0756", "section": "8-5-6 [50]골재생산기계 등", - "source_line": 4251, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4245, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63375,9 +63303,9 @@ { "pum_table_id": "C0757", "section": "8-5-6 [50]골재생산기계 등", - "source_line": 4257, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4251, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63407,9 +63335,9 @@ { "pum_table_id": "C0758", "section": "8-5-6 [50]골재생산기계 등", - "source_line": 4263, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4257, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63458,9 +63386,9 @@ { "pum_table_id": "C0759", "section": "8-5-7 [60]기초공사용기계", - "source_line": 4269, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4263, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63490,9 +63418,9 @@ { "pum_table_id": "C0760", "section": "8-5-7 [60]기초공사용기계", - "source_line": 4275, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4269, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63522,9 +63450,9 @@ { "pum_table_id": "C0761", "section": "8-5-7 [60]기초공사용기계", - "source_line": 4281, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4275, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63573,9 +63501,9 @@ { "pum_table_id": "C0762", "section": "8-5-8 [70]기타기계", - "source_line": 4287, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4281, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63605,9 +63533,9 @@ { "pum_table_id": "C0763", "section": "8-5-8 [70]기타기계", - "source_line": 4293, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4287, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63637,9 +63565,9 @@ { "pum_table_id": "C0764", "section": "8-5-8 [70]기타기계", - "source_line": 4299, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4293, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63669,9 +63597,9 @@ { "pum_table_id": "C0765", "section": "8-5-8 [70]기타기계", - "source_line": 4305, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4299, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63720,9 +63648,9 @@ { "pum_table_id": "C0766", "section": "8-5-9 [80]스마트 건설장비", - "source_line": 4311, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4305, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63791,9 +63719,9 @@ { "pum_table_id": "C0767", "section": "8-5-10 [90]해상기계", - "source_line": 4321, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4315, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63823,9 +63751,9 @@ { "pum_table_id": "C0768", "section": "8-5-10 [90]해상기계", - "source_line": 4327, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4321, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -63855,9 +63783,9 @@ { "pum_table_id": "C0769", "section": "8-5-10 [90]해상기계", - "source_line": 4333, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 4327, + "pum_form": "reference", + "form_basis": "건설 꼴 — 기계 가격표 — 기계 벌이 정본", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -67567,9 +67495,9 @@ "source_line": 606, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "개소", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -71315,7 +71243,7 @@ "section": "3-2-1 터널굴착 1발파당 싸이클 시간(Cycle Time)", "source_line": 49, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -71600,7 +71528,7 @@ "section": "3-2-3 천공기계의 천공속도", "source_line": 108, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -71880,9 +71808,9 @@ "source_line": 149, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '작업반장'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "발파", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -73385,8 +73313,8 @@ "pum_table_id": "C0870", "section": "4-4-1 분기기 부설", "source_line": 131, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '할증률' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -75029,7 +74957,7 @@ "section": "5-1-2 강교 제작공수 산정방법", "source_line": 41, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -75083,7 +75011,7 @@ "section": "5-1-2 강교 제작공수 산정방법", "source_line": 51, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -75126,7 +75054,7 @@ "section": "5-1-2 강교 제작공수 산정방법", "source_line": 60, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -75528,7 +75456,7 @@ "section": "5-2-3 도장재료 사용량", "source_line": 124, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -75586,7 +75514,7 @@ "section": "5-2-3 도장재료 사용량", "source_line": 137, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -75859,7 +75787,7 @@ "section": "5-3-1 강재거더 지조립", "source_line": 183, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -76019,7 +75947,7 @@ "section": "5-3-2 강재거더 가설", "source_line": 216, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -79756,7 +79684,7 @@ "section": "6-7-5 강관압입추진공", "source_line": 430, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -80960,7 +80888,7 @@ "section": "6-8-4 부단수 할정자관 부설 및 접합", "source_line": 630, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "㎏", "basis_source": "본문", @@ -81930,7 +81858,7 @@ "section": "7-1-3 준설선 선단 조합", "source_line": 41, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -82044,7 +81972,7 @@ "section": "7-1-3 준설선 선단 조합", "source_line": 60, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -82327,7 +82255,7 @@ "section": "7-2-1 적재 및 운반", "source_line": 105, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -82726,7 +82654,7 @@ "section": "7-2-5 수중고르기", "source_line": 162, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -83761,9 +83689,9 @@ "source_line": 303, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "set", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -90384,7 +90312,7 @@ "section": "9-2-6 3급 GNSS 높이측량", "source_line": 565, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -90644,7 +90572,7 @@ "section": "9-2-7 4급 GNSS 높이측량", "source_line": 609, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -92114,7 +92042,7 @@ "section": "9-3-2 하천측량", "source_line": 841, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 10.0, "basis_unit": "㎞", "basis_source": "표 안", @@ -92718,7 +92646,7 @@ "section": "9-3-3 택지조성측량", "source_line": 927, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -93182,7 +93110,7 @@ "section": "9-3-4 구획정리 확정측량", "source_line": 1007, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -94835,7 +94763,7 @@ "section": "9-3-5 용지측량", "source_line": 1187, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -95373,7 +95301,7 @@ "section": "9-4-1 노선측량(철도, 도로 신설)", "source_line": 1254, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -95494,7 +95422,7 @@ "section": "9-4-1 노선측량(철도, 도로 신설)", "source_line": 1267, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -95606,7 +95534,7 @@ "section": "9-4-1 노선측량(철도, 도로 신설)", "source_line": 1280, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -95689,7 +95617,7 @@ "section": "9-4-1 노선측량(철도, 도로 신설)", "source_line": 1307, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "㎞", "basis_source": "본문", @@ -95950,7 +95878,7 @@ "section": "9-4-2 수도노선측량", "source_line": 1323, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -96014,7 +95942,7 @@ "section": "9-4-2 수도노선측량", "source_line": 1334, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -96063,7 +95991,7 @@ "section": "9-4-2 수도노선측량", "source_line": 1342, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -96195,7 +96123,7 @@ "section": "9-4-3 디지털 도로대장 작성", "source_line": 1371, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 10.0, "basis_unit": "㎞", "basis_source": "본문", @@ -96702,7 +96630,7 @@ "section": "9-4-3 디지털 도로대장 작성", "source_line": 1472, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 10.0, "basis_unit": "㎞", "basis_source": "본문", @@ -96921,7 +96849,7 @@ "section": "9-4-3 디지털 도로대장 작성", "source_line": 1515, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 10.0, "basis_unit": "㎞", "basis_source": "본문", @@ -97530,7 +97458,7 @@ "section": "9-5-1 항공사진촬영", "source_line": 1617, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -97712,7 +97640,7 @@ "section": "9-5-1 항공사진촬영", "source_line": 1631, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -98195,7 +98123,7 @@ "section": "9-5-1 항공사진촬영", "source_line": 1713, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -98336,7 +98264,7 @@ "section": "9-5-1 항공사진촬영", "source_line": 1756, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 500.0, "basis_unit": "매", "basis_source": "본문", @@ -98805,7 +98733,7 @@ "section": "9-5-3 사진 기준점 측량", "source_line": 1828, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -98922,8 +98850,8 @@ "pum_table_id": "C1128", "section": "9-5-4 수치지도 작성", "source_line": 1851, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '1시간당작업량' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -99145,11 +99073,11 @@ "pum_table_id": "C1133", "section": "9-5-4 수치지도 작성", "source_line": 1899, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '1시간당작업량(㎢)' — 작업량·시공능력 표", + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -99226,7 +99154,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 1917, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -99398,8 +99326,8 @@ "pum_table_id": "C1138", "section": "9-5-4 수치지도 작성", "source_line": 1952, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '소요시간' — 작업량·시공능력 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -99550,9 +99478,9 @@ "source_line": 1990, "pum_form": "coefficient", "form_basis": "건설 꼴 — '계수' — 비율·계수표", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -99589,7 +99517,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 1996, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -99768,11 +99696,11 @@ "pum_table_id": "C1145", "section": "9-5-4 수치지도 작성", "source_line": 2032, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '1시간당작업량' — 작업량·시공능력 표", + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -99811,7 +99739,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 2041, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -100103,11 +100031,11 @@ "pum_table_id": "C1153", "section": "9-5-4 수치지도 작성", "source_line": 2099, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '1시간당작업량' — 작업량·시공능력 표", + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -100388,10 +100316,10 @@ "section": "9-5-4 수치지도 작성", "source_line": 2162, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -100631,11 +100559,11 @@ "pum_table_id": "C1166", "section": "9-5-4 수치지도 작성", "source_line": 2220, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '1시간당작업량' — 작업량·시공능력 표", + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -100792,9 +100720,9 @@ "source_line": 2262, "pum_form": "coefficient", "form_basis": "건설 꼴 — '계수' — 비율·계수표", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -100940,9 +100868,9 @@ "source_line": 2296, "pum_form": "coefficient", "form_basis": "건설 꼴 — '지형계수' — 비율·계수표", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -101396,8 +101324,8 @@ "pum_table_id": "C1183", "section": "9-5-4 수치지도 작성", "source_line": 2389, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '시간당작업량' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "㎞", "basis_source": "본문", @@ -101464,8 +101392,8 @@ "pum_table_id": "C1185", "section": "9-5-4 수치지도 작성", "source_line": 2408, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '시간당작업량' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "㎞", "basis_source": "본문", @@ -101497,7 +101425,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 2417, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -101881,7 +101809,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 2476, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -102264,11 +102192,11 @@ "pum_table_id": "C1200", "section": "9-5-4 수치지도 작성", "source_line": 2535, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '축척별1시간당작업량' — 작업량·시공능력 표", + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [ @@ -102318,11 +102246,11 @@ "pum_table_id": "C1201", "section": "9-5-4 수치지도 작성", "source_line": 2544, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '축척별1시간당작업량' — 작업량·시공능력 표", + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [ @@ -102604,10 +102532,10 @@ "section": "9-5-4 수치지도 작성", "source_line": 2609, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", + "basis_quantity": 50.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -102988,10 +102916,10 @@ "section": "9-5-4 수치지도 작성", "source_line": 2664, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -103238,10 +103166,10 @@ "section": "9-5-4 수치지도 작성", "source_line": 2706, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -103487,10 +103415,10 @@ "section": "9-5-4 수치지도 작성", "source_line": 2752, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -103793,7 +103721,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 2801, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -104185,7 +104113,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 2843, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -104675,9 +104603,9 @@ "source_line": 2922, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '측량기술자'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "㎢", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -105887,10 +105815,10 @@ "section": "9-5-4 수치지도 작성", "source_line": 3110, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106028,7 +105956,7 @@ "section": "9-5-4 수치지도 작성", "source_line": 3136, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "㎞", "basis_source": "본문", @@ -106325,9 +106253,9 @@ "source_line": 3191, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '중급기술자'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106446,9 +106374,9 @@ "source_line": 3216, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '중급기술자'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106526,7 +106454,7 @@ "section": "9-5-6 지도제작(기본도)", "source_line": 3233, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -106573,9 +106501,9 @@ "source_line": 3245, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '중급기능사'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106631,9 +106559,9 @@ "source_line": 3253, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '중급기술자'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106774,9 +106702,9 @@ "source_line": 3283, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '고급기술자'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 25000.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106850,9 +106778,9 @@ "source_line": 3300, "pum_form": "requirement", "form_basis": "건설 꼴 — 건설 직종 '중급기술자'", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 25000.0, + "basis_unit": "도엽", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -106924,7 +106852,7 @@ "section": "9-5-8 상각비 산정", "source_line": 3311, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -107769,7 +107697,7 @@ "section": "9-5-10 무인비행장치 측량", "source_line": 3409, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -108317,8 +108245,8 @@ "pum_table_id": "C1284", "section": "9-6-1 지적삼각측량", "source_line": 3471, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '가산범위' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -116247,7 +116175,7 @@ "section": "9-18-1 개별지적(전산)자료정비(토지·수치)", "source_line": 4616, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -116373,7 +116301,7 @@ "section": "9-18-2 개별지적(전산)자료정비(임야)", "source_line": 4635, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -116503,7 +116431,7 @@ "section": "9-18-3 연속지적도 작성(도해·수치)", "source_line": 4654, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -116625,7 +116553,7 @@ "section": "9-18-4 연속지적도 품질개선(토지)", "source_line": 4672, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -116755,7 +116683,7 @@ "section": "9-18-5 연속지적도 품질개선(임야)", "source_line": 4694, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -116961,8 +116889,8 @@ "pum_table_id": "C1412", "section": "1-1-1 기본철골공수", "source_line": 26, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "requirement", + "form_basis": "건설 꼴 — 줄 이름 '총사용량(t)' — 자재 소요량", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -117046,7 +116974,7 @@ "section": "1-1-2 철골공수 산정방법", "source_line": 39, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -117740,7 +117668,7 @@ "section": "1-2-1 현장 세우기", "source_line": 126, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "㎡", "basis_source": "본문", @@ -117789,7 +117717,7 @@ "section": "1-2-1 현장 세우기", "source_line": 131, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -117886,7 +117814,7 @@ "section": "1-2-1 현장 세우기", "source_line": 144, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -117935,8 +117863,8 @@ "pum_table_id": "C1427", "section": "1-2-1 현장 세우기", "source_line": 150, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'T(ton)' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -117983,8 +117911,8 @@ "pum_table_id": "C1428", "section": "1-2-1 현장 세우기", "source_line": 154, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'T(ton)' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -118032,7 +117960,7 @@ "section": "1-2-1 현장 세우기", "source_line": 160, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -118080,7 +118008,7 @@ "section": "1-2-1 현장 세우기", "source_line": 166, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -118234,7 +118162,7 @@ "section": "1-2-3 철골세우기 장비의 작업능력", "source_line": 190, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -118374,7 +118302,7 @@ "section": "1-2-4 고장력 볼트 본조임", "source_line": 216, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "표 안", @@ -120833,7 +120761,7 @@ "section": "3-1-2 타일줄눈 설치", "source_line": 32, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "㎡", "basis_source": "본문", @@ -120948,7 +120876,7 @@ "section": "3-2-1 떠붙이기", "source_line": 52, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "㎡", "basis_source": "본문", @@ -126066,8 +125994,8 @@ "pum_table_id": "C1541", "section": "6-5-2 액상형 흡수방지방수 도포", "source_line": 213, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 값이 모두 백분율 — 요율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -126203,7 +126131,7 @@ "section": "6-5-3 벤토나이트방수 붙임", "source_line": 236, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "㎡", "basis_source": "본문", @@ -127859,7 +127787,7 @@ "section": "8-1-4 인서트(Insert) 설치", "source_line": 53, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -129389,8 +129317,8 @@ "pum_table_id": "C1589", "section": "9-1-4 표면 마무리", "source_line": 77, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — '할증' — 할증·보정 율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -131237,7 +131165,7 @@ "section": "10-2-3 도어록 설치", "source_line": 112, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -131799,8 +131727,8 @@ "pum_table_id": "C1394", "section": "11-1-1 콘크리트・모르타르면 바탕만들기", "source_line": 21, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 값이 모두 백분율 — 요율표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -136265,7 +136193,7 @@ "section": "2-2-4 일반댐퍼(사각) 설치", "source_line": 159, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -142917,7 +142845,7 @@ "section": "8-2-2 패키지형 공기조화기 설치", "source_line": 143, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -147797,7 +147725,7 @@ "section": "11-1-2 용접식 부설", "source_line": 13, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -147909,7 +147837,7 @@ "section": "11-1-3 나사식 접합 및 배관", "source_line": 34, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "개소", "basis_source": "본문", @@ -150024,7 +149952,7 @@ "section": "12-2-4 Control Air 배관", "source_line": 86, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "본문", @@ -150566,7 +150494,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 163, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -150687,7 +150615,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 8, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -151320,7 +151248,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 67, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -151962,7 +151890,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 126, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -152119,7 +152047,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 142, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -152740,7 +152668,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 200, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -153349,7 +153277,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 256, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -153542,7 +153470,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 275, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -153738,7 +153666,7 @@ "section": "13-1-1 플랜트 배관 설치", "source_line": 309, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -154820,7 +154748,7 @@ "section": "13-1-2 관만곡(Pipe Bending) 설치", "source_line": 408, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -154909,7 +154837,7 @@ "section": "13-1-3 밸브 취부", "source_line": 417, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "개", "basis_source": "본문", @@ -155093,7 +155021,7 @@ "section": "13-1-3 밸브 취부", "source_line": 434, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "개", "basis_source": "본문", @@ -155277,7 +155205,7 @@ "section": "13-1-3 밸브 취부", "source_line": 453, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "개", "basis_source": "본문", @@ -155731,7 +155659,7 @@ "section": "13-1-4 Fitting 취부", "source_line": 500, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "개", "basis_source": "본문", @@ -156266,7 +156194,7 @@ "section": "13-1-5 Flange 취부", "source_line": 563, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "조", "basis_source": "본문", @@ -157114,9 +157042,9 @@ "source_line": 643, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "Joint", + "basis_source": "본문", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -158246,7 +158174,7 @@ "section": "13-2-1 강관절단", "source_line": 811, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "개소", "basis_source": "본문", @@ -158345,7 +158273,7 @@ "section": "13-2-1 강관절단", "source_line": 823, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -159161,7 +159089,7 @@ "section": "13-2-3 강관용접", "source_line": 934, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "개소", "basis_source": "본문", @@ -159375,7 +159303,7 @@ "section": "13-2-3 강관용접", "source_line": 954, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -161458,8 +161386,8 @@ "pum_table_id": "C1693", "section": "13-2-4 강판 전기아크용접", "source_line": 1167, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '작업속도(m/hr)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "hr", "basis_source": "표 안", @@ -161697,7 +161625,7 @@ "section": "13-2-5 예열(Electric Resistance Heating)", "source_line": 1177, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -161762,7 +161690,7 @@ "section": "13-2-5 예열(Electric Resistance Heating)", "source_line": 1185, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -161820,7 +161748,7 @@ "section": "13-2-5 예열(Electric Resistance Heating)", "source_line": 1197, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -161924,7 +161852,7 @@ "section": "13-2-6 응력제거", "source_line": 1212, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -162008,7 +161936,7 @@ "section": "13-2-6 응력제거", "source_line": 1222, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -162077,7 +162005,7 @@ "section": "13-2-6 응력제거", "source_line": 1236, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -162150,7 +162078,7 @@ "section": "13-2-6 응력제거", "source_line": 1247, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -162202,7 +162130,7 @@ "section": "13-2-6 응력제거", "source_line": 1254, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -162262,7 +162190,7 @@ "section": "13-2-6 응력제거", "source_line": 1268, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 구간 — 조건으로 갈리는 표", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -162501,9 +162429,9 @@ "source_line": 1288, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "m", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -162816,9 +162744,9 @@ "source_line": 1319, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "m", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -163131,9 +163059,9 @@ "source_line": 1345, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "m", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -163446,9 +163374,9 @@ "source_line": 1376, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "m", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -163761,9 +163689,9 @@ "source_line": 1402, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "m", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -164074,8 +164002,8 @@ "pum_table_id": "C1708", "section": "13-3-1 pipe보온", "source_line": 1438, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'C' — 시공능력 밑값", "basis_quantity": 1.0, "basis_unit": "m", "basis_source": "본문", @@ -164111,8 +164039,8 @@ "pum_table_id": "C1709", "section": "13-3-1 pipe보온", "source_line": 1445, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "coefficient", + "form_basis": "건설 꼴 — 머리가 공식 기호 'C' — 시공능력 밑값", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -164467,7 +164395,7 @@ "section": "13-4-1 보통 철골재", "source_line": 1498, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -165016,7 +164944,7 @@ "section": "13-4-3 STORAGE TANK", "source_line": 1592, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "대", "basis_source": "본문", @@ -166016,9 +165944,9 @@ "source_line": 1739, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "ton", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -169985,8 +169913,8 @@ "pum_table_id": "C1771", "section": "13-6-3 수문 제작", "source_line": 2320, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '시간(hr/ton)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "표 안", @@ -170111,8 +170039,8 @@ "pum_table_id": "C1774", "section": "13-6-3 수문 제작", "source_line": 2347, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "pum_form": "productivity", + "form_basis": "건설 꼴 — '시간(hr/ton)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "표 안", @@ -170146,7 +170074,7 @@ "section": "13-6-3 수문 제작", "source_line": 2353, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "본문", @@ -170275,7 +170203,7 @@ "section": "13-6-4 수문 설치", "source_line": 2380, "pum_form": "requirement", - "form_basis": "'수 량'", + "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "본문", @@ -170296,76 +170224,16 @@ ], "raw_row": [ [ - "기 술 관 리", - "기 계 기 사", - "0.500" - ], - [ - "현 장 교 정", - "플 랜 트 제 관 공", - "1.034" - ], - [ - "", - "비 계 공", - "0.517" - ], - [ - "소 업", - "비 계 공", - "2.3" - ], - [ - "", - "플 랜 트 기 계 설 치 공", - "0.91" - ], - [ - "조 립 조 정", - "비 계 공", - "1.46" - ], - [ - "", - "플 랜 트 제 관 공", - "4.92" - ], - [ - "", - "측 량 사", - "0.41" - ], - [ - "용 접", - "플 랜 트 용 접 공", - "0.81" - ], - [ - "", - "플 랜 트 제 관 공", - "0.215" - ], - [ - "도 장", - "도 장 공", - "0.635" - ], - [ - "전 원 배 선", - "플 랜 트 전 공", - "0.31" - ], - [ - "검 사 및 교 정 (기술관리, 도장, 전원배선을 제외한 모든 품의 10%)", - "", - "1.257" + "기 술 관 리 현 장 교 정 소 업 조 립 조 정 용 접 도 장 전 원 배 선 검 사 및 교 정 (기술관리, 도장, 전원배선을 제외한 모든 품의 10%)", + "기 계 기 사 플 랜 트 제 관 공 비 계 공 비 계 공 플 랜 트 기 계 설 치 공 비 계 공 플 랜 트 제 관 공 측 량 사 플 랜 트 용 접 공 플 랜 트 제 관 공 도 장 공 플 랜 트 전 공", + "0.500 1.034 0.517 2.3 0.91 1.46 4.92 0.41 0.81 0.215 0.635 0.31 1.257" ] ] }, { "pum_table_id": "C1778", "section": "13-6-4 수문 설치", - "source_line": 2398, + "source_line": 2386, "pum_form": "requirement", "form_basis": "'수량'", "basis_quantity": 1.0, @@ -170469,76 +170337,12 @@ ] ] }, - { - "pum_table_id": "C2275", - "section": "13-6-4 수문 설치", - "source_line": 2422, - "pum_form": "requirement", - "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": 1.0, - "basis_unit": "ton", - "basis_source": "본문", - "resource_shares": {}, - "partial_ratio": false, - "expression_cells": [], - "crew_table": false, - "spaced_names": [], - "formula_rows": [], - "special_glyphs": [], - "capacity_formula_here": false, - "variant_key": [], - "notes": [], - "condition_note": [ - "직 종", - "공 량", - "직 종", - "수 량" - ], - "raw_row": [ - [ - "기 계 기 사", - "0.50", - "플 랜 트 용 접 공", - "0.705" - ], - [ - "제 관 공", - "3.038", - "도 장 공", - "0.552" - ], - [ - "비 계 공", - "4.568", - "플 랜 트 전 공", - "0.187" - ], - [ - "플 랜 트 기 계 설 치 공", - "1.318", - "검 사 및 교 정", - "1.188" - ], - [ - "측 량 사", - "0.812", - "", - "" - ], - [ - "리 베 팅 공", - "1.447", - "계", - "14.315" - ] - ] - }, { "pum_table_id": "C1779", "section": "13-6-4 수문 설치", - "source_line": 2433, + "source_line": 2411, "pum_form": "requirement", - "form_basis": "'수 량'", + "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "본문", @@ -170559,86 +170363,16 @@ ], "raw_row": [ [ - "기 술 관 리", - "기 계 기 사", - "0.50" - ], - [ - "현 장 교 정", - "플 랜 트 제 관 공", - "0.816" - ], - [ - "", - "비 계 공", - "0.146" - ], - [ - "소 운 반 제 작", - "비 계 공", - "1.992" - ], - [ - "", - "플 랜 트 기 계 설 치 공", - "0.791" - ], - [ - "소 립 조 정", - "비 계 공", - "2.43" - ], - [ - "", - "플 랜 트 제 관 공", - "2.035" - ], - [ - "", - "측 량 사", - "0.812" - ], - [ - "리 베 팅", - "리 베 팅 공", - "1.447" - ], - [ - "", - "플 랜 트 기 계 설 치 공", - "0.527" - ], - [ - "용 접", - "플 랜 트 용 접 공", - "0.705" - ], - [ - "", - "플 랜 트 제 관 공", - "0.187" - ], - [ - "도 장", - "도 장 공", - "0.552" - ], - [ - "전 원 배 선", - "플 랜 트 전 공", - "0.187" - ], - [ - "검 사 및 교 정 (기술관리, 도장, 전원배선을 제외한 모든 품의 10%)", - "", - "1.188" + "기 술 관 리 현 장 교 정 소 운 반 제 작 소 립 조 정 리 베 팅 용 접 도 장 전 원 배 선 검 사 및 교 정 (기술관리, 도장, 전원배선을 제외한 모 든 품의 10%)", + "기 계 기 사 플 랜 트 제 관 공 비 계 공 비 계 공 플 랜 트 기 계 설 치 공 비 계 공 플 랜 트 제 관 공 측 량 사 리 베 팅 공 플 랜 트 기 계 설 치 공 플 랜 트 용 접 공 플 랜 트 제 관 공 도 장 공 플 랜 트 전 공", + "0.50 0.816 0.146 1.992 0.791 2.43 2.035 0.812 1.447 0.527 0.705 0.187 0.552 0.187 1.188" ] ] }, { "pum_table_id": "C1780", "section": "13-6-4 수문 설치", - "source_line": 2453, + "source_line": 2417, "pum_form": "requirement", "form_basis": "'수량'", "basis_quantity": 1.0, @@ -170670,9 +170404,9 @@ { "pum_table_id": "C1781", "section": "13-6-4 수문 설치", - "source_line": 2459, + "source_line": 2423, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "본문", @@ -170727,7 +170461,7 @@ { "pum_table_id": "C1782", "section": "13-6-5 Stop-Log 제작", - "source_line": 2467, + "source_line": 2431, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -170785,7 +170519,7 @@ { "pum_table_id": "C1783", "section": "13-6-5 Stop-Log 제작", - "source_line": 2482, + "source_line": 2446, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -170817,9 +170551,9 @@ { "pum_table_id": "C1784", "section": "13-6-5 Stop-Log 제작", - "source_line": 2488, - "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "source_line": 2452, + "pum_form": "productivity", + "form_basis": "건설 꼴 — '시간(hr/ton)' — 작업량·시공능력 표", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "표 안", @@ -170853,7 +170587,7 @@ { "pum_table_id": "C1785", "section": "13-6-5 Stop-Log 제작", - "source_line": 2494, + "source_line": 2458, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -170908,7 +170642,7 @@ { "pum_table_id": "C1786", "section": "13-6-6 Stop-Log 설치", - "source_line": 2502, + "source_line": 2466, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -170942,7 +170676,7 @@ { "pum_table_id": "C1787", "section": "13-6-6 Stop-Log 설치", - "source_line": 2508, + "source_line": 2472, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -170974,7 +170708,7 @@ { "pum_table_id": "C1788", "section": "13-6-6 Stop-Log 설치", - "source_line": 2514, + "source_line": 2478, "pum_form": "requirement", "form_basis": "'수량'", "basis_quantity": 1.0, @@ -171076,7 +170810,7 @@ { "pum_table_id": "C1789", "section": "13-6-6 Stop-Log 설치", - "source_line": 2534, + "source_line": 2498, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -171131,7 +170865,7 @@ { "pum_table_id": "C1790", "section": "13-6-7 수문 Hoist 설치", - "source_line": 2542, + "source_line": 2506, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171183,7 +170917,7 @@ { "pum_table_id": "C1791", "section": "13-6-7 수문 Hoist 설치", - "source_line": 2553, + "source_line": 2517, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171215,7 +170949,7 @@ { "pum_table_id": "C1792", "section": "13-6-7 수문 Hoist 설치", - "source_line": 2559, + "source_line": 2523, "pum_form": "requirement", "form_basis": "'수량'", "basis_quantity": 1.0, @@ -171292,7 +171026,7 @@ { "pum_table_id": "C1793", "section": "13-6-7 수문 Hoist 설치", - "source_line": 2574, + "source_line": 2538, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171347,7 +171081,7 @@ { "pum_table_id": "C1794", "section": "13-6-8 Spiral Casing 설치", - "source_line": 2582, + "source_line": 2546, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171379,7 +171113,7 @@ { "pum_table_id": "C1795", "section": "13-6-8 Spiral Casing 설치", - "source_line": 2588, + "source_line": 2552, "pum_form": "reference", "form_basis": "'별도계상' — 값이 아니라 참조 지시", "basis_quantity": null, @@ -171411,7 +171145,7 @@ { "pum_table_id": "C1796", "section": "13-6-8 Spiral Casing 설치", - "source_line": 2594, + "source_line": 2558, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -171443,7 +171177,7 @@ { "pum_table_id": "C1797", "section": "13-6-8 Spiral Casing 설치", - "source_line": 2600, + "source_line": 2564, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171499,7 +171233,7 @@ { "pum_table_id": "C1798", "section": "13-6-9 Steel Penstock 제작", - "source_line": 2609, + "source_line": 2573, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171531,7 +171265,7 @@ { "pum_table_id": "C1799", "section": "13-6-9 Steel Penstock 제작", - "source_line": 2615, + "source_line": 2579, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171567,7 +171301,7 @@ { "pum_table_id": "C1800", "section": "13-6-9 Steel Penstock 제작", - "source_line": 2624, + "source_line": 2588, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171599,7 +171333,7 @@ { "pum_table_id": "C1801", "section": "13-6-9 Steel Penstock 제작", - "source_line": 2632, + "source_line": 2596, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171654,7 +171388,7 @@ { "pum_table_id": "C1802", "section": "13-6-10 Steel Penstock 현장설치", - "source_line": 2640, + "source_line": 2604, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171686,7 +171420,7 @@ { "pum_table_id": "C1803", "section": "13-6-10 Steel Penstock 현장설치", - "source_line": 2648, + "source_line": 2612, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171742,7 +171476,7 @@ { "pum_table_id": "C1804", "section": "13-6-11 Roller Gate Guide Metal 제작", - "source_line": 2656, + "source_line": 2620, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171774,7 +171508,7 @@ { "pum_table_id": "C1805", "section": "13-6-11 Roller Gate Guide Metal 제작", - "source_line": 2662, + "source_line": 2626, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -171806,7 +171540,7 @@ { "pum_table_id": "C1806", "section": "13-6-11 Roller Gate Guide Metal 제작", - "source_line": 2670, + "source_line": 2634, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171862,7 +171596,7 @@ { "pum_table_id": "C1807", "section": "13-6-12 Roller Gate Guide Metal 설치", - "source_line": 2679, + "source_line": 2643, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -171894,7 +171628,7 @@ { "pum_table_id": "C1808", "section": "13-6-12 Roller Gate Guide Metal 설치", - "source_line": 2685, + "source_line": 2649, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -171926,7 +171660,7 @@ { "pum_table_id": "C1809", "section": "13-6-12 Roller Gate Guide Metal 설치", - "source_line": 2693, + "source_line": 2657, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -171981,7 +171715,7 @@ { "pum_table_id": "C1810", "section": "13-6-13 Tainter Gate Guide Metal 제작", - "source_line": 2701, + "source_line": 2665, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -172013,7 +171747,7 @@ { "pum_table_id": "C1811", "section": "13-6-13 Tainter Gate Guide Metal 제작", - "source_line": 2709, + "source_line": 2673, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172068,7 +171802,7 @@ { "pum_table_id": "C1812", "section": "13-6-14 Tainter Gate Guide Metal 설치", - "source_line": 2717, + "source_line": 2681, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -172207,7 +171941,7 @@ { "pum_table_id": "C1813", "section": "13-6-14 Tainter Gate Guide Metal 설치", - "source_line": 2744, + "source_line": 2708, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -172239,7 +171973,7 @@ { "pum_table_id": "C1814", "section": "13-6-14 Tainter Gate Guide Metal 설치", - "source_line": 2752, + "source_line": 2716, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172292,7 +172026,7 @@ { "pum_table_id": "C1815", "section": "13-6-15 Trash Rack 제작", - "source_line": 2760, + "source_line": 2724, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172324,7 +172058,7 @@ { "pum_table_id": "C1816", "section": "13-6-15 Trash Rack 제작", - "source_line": 2766, + "source_line": 2730, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -172376,7 +172110,7 @@ { "pum_table_id": "C1817", "section": "13-6-15 Trash Rack 제작", - "source_line": 2778, + "source_line": 2742, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172431,7 +172165,7 @@ { "pum_table_id": "C1818", "section": "13-6-16 Trash Rack 설치", - "source_line": 2786, + "source_line": 2750, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -172463,7 +172197,7 @@ { "pum_table_id": "C1819", "section": "13-6-16 Trash Rack 설치", - "source_line": 2792, + "source_line": 2756, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -172495,7 +172229,7 @@ { "pum_table_id": "C1820", "section": "13-6-16 Trash Rack 설치", - "source_line": 2800, + "source_line": 2764, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172550,7 +172284,7 @@ { "pum_table_id": "C1821", "section": "13-6-17 Tainter Gate Anchorage 제관", - "source_line": 2808, + "source_line": 2772, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -172582,7 +172316,7 @@ { "pum_table_id": "C1822", "section": "13-6-17 Tainter Gate Anchorage 제관", - "source_line": 2816, + "source_line": 2780, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172618,7 +172352,7 @@ { "pum_table_id": "C1823", "section": "13-6-17 Tainter Gate Anchorage 제관", - "source_line": 2822, + "source_line": 2786, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -172692,7 +172426,7 @@ { "pum_table_id": "C1824", "section": "13-7-1 고로본체 및 부속기기 설치", - "source_line": 2828, + "source_line": 2792, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172777,7 +172511,7 @@ { "pum_table_id": "C1825", "section": "13-7-2 노정장입 장치 기기 설치", - "source_line": 2848, + "source_line": 2812, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172864,7 +172598,7 @@ { "pum_table_id": "C1826", "section": "13-7-3 노체 4본주 및 DECK 설치", - "source_line": 2868, + "source_line": 2832, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -172946,7 +172680,7 @@ { "pum_table_id": "C1827", "section": "13-7-4 열풍로 본체 및 부속설비 설치", - "source_line": 2885, + "source_line": 2849, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -173036,7 +172770,7 @@ { "pum_table_id": "C1828", "section": "13-7-5 열풍로 DECK 설치", - "source_line": 2908, + "source_line": 2872, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -173113,7 +172847,7 @@ { "pum_table_id": "C1829", "section": "13-7-6 주선기 본체 및 부속기기 설치", - "source_line": 2923, + "source_line": 2887, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -173196,7 +172930,7 @@ { "pum_table_id": "C1830", "section": "13-7-7 Edge Mill 설치", - "source_line": 2942, + "source_line": 2906, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -173279,7 +173013,7 @@ { "pum_table_id": "C1831", "section": "13-7-8 제진기 본체 및 부속설비 설치", - "source_line": 2960, + "source_line": 2924, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -173362,7 +173096,7 @@ { "pum_table_id": "C1832", "section": "13-7-9 Ventri Scrubber 본체 및 부속설비 설치", - "source_line": 2979, + "source_line": 2943, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -173445,7 +173179,7 @@ { "pum_table_id": "C1833", "section": "13-7-10 전등 Mud Gun 설치", - "source_line": 2997, + "source_line": 2961, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -173520,7 +173254,7 @@ { "pum_table_id": "C1834", "section": "13-7-11 내화물(제철축로) 쌓기", - "source_line": 3014, + "source_line": 2978, "pum_form": "reference", "form_basis": "'적용한다' — 값이 아니라 참조 지시", "basis_quantity": 1.0, @@ -173590,7 +173324,7 @@ { "pum_table_id": "C1835", "section": "13-7-12 Craft 및 Tomlex Spray 공사", - "source_line": 3028, + "source_line": 2992, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -173661,7 +173395,7 @@ { "pum_table_id": "C1836", "section": "13-7-13 Castable Spray 공사", - "source_line": 3035, + "source_line": 2999, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -173747,7 +173481,7 @@ { "pum_table_id": "C1837", "section": "13-7-14 혼선로 및 전로 본체 조립 설치", - "source_line": 3046, + "source_line": 3010, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -173808,7 +173542,7 @@ { "pum_table_id": "C1838", "section": "13-7-15 O2, N2 Spherical Gas Holder 조립설치", - "source_line": 3057, + "source_line": 3021, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -173877,7 +173611,7 @@ { "pum_table_id": "C1839", "section": "13-7-16 가열로 본체 및 Recuperator실 조립설치", - "source_line": 3074, + "source_line": 3038, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -173946,7 +173680,7 @@ { "pum_table_id": "C1840", "section": "13-7-17 균열로 본체 및 Recuperator실 조립설치", - "source_line": 3087, + "source_line": 3051, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -174015,7 +173749,7 @@ { "pum_table_id": "C1841", "section": "13-7-18 가열로 및 균열로 부속기기 조립설치", - "source_line": 3101, + "source_line": 3065, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -174083,7 +173817,7 @@ { "pum_table_id": "C1842", "section": "13-7-19 Mill Line 기기류 조립설치", - "source_line": 3113, + "source_line": 3077, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -174149,7 +173883,7 @@ { "pum_table_id": "C1843", "section": "13-7-20 Roller Table 조립설치", - "source_line": 3127, + "source_line": 3091, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -174233,7 +173967,7 @@ { "pum_table_id": "C1844", "section": "13-7-21 전기집진기 설치(Electric Precipitator)", - "source_line": 3144, + "source_line": 3108, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -174309,7 +174043,7 @@ { "pum_table_id": "C1845", "section": "13-7-22 노 기밀 시험", - "source_line": 3163, + "source_line": 3127, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -174370,7 +174104,7 @@ { "pum_table_id": "C1846", "section": "13-8 쓰레기소각 기계설비", - "source_line": 3175, + "source_line": 3139, "pum_form": "reference", "form_basis": "건설 꼴 — 값(숫자) 칸이 없음 — 설명·서식 표", "basis_quantity": null, @@ -174496,7 +174230,7 @@ { "pum_table_id": "C1847", "section": "13-8-1 소각로 설치", - "source_line": 3198, + "source_line": 3162, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -174566,7 +174300,7 @@ { "pum_table_id": "C1848", "section": "13-8-1 소각로 설치", - "source_line": 3210, + "source_line": 3174, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -174638,7 +174372,7 @@ { "pum_table_id": "C1849", "section": "13-8-2 폐열보일러 설치", - "source_line": 3225, + "source_line": 3189, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -174736,7 +174470,7 @@ { "pum_table_id": "C1850", "section": "13-8-2 폐열보일러 설치", - "source_line": 3245, + "source_line": 3209, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -174853,7 +174587,7 @@ { "pum_table_id": "C1851", "section": "13-8-4 반건식 반응탑 설치", - "source_line": 3262, + "source_line": 3226, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -174929,7 +174663,7 @@ { "pum_table_id": "C1852", "section": "13-8-4 반건식 반응탑 설치", - "source_line": 3275, + "source_line": 3239, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -174980,7 +174714,7 @@ { "pum_table_id": "C1853", "section": "13-8-4 반건식 반응탑 설치", - "source_line": 3288, + "source_line": 3252, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -175058,7 +174792,7 @@ { "pum_table_id": "C1854", "section": "13-8-5 탈질설비 설치", - "source_line": 3300, + "source_line": 3264, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -175122,7 +174856,7 @@ { "pum_table_id": "C1855", "section": "13-8-5 탈질설비 설치", - "source_line": 3311, + "source_line": 3275, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -175197,7 +174931,7 @@ { "pum_table_id": "C1856", "section": "13-8-5 탈질설비 설치", - "source_line": 3328, + "source_line": 3292, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -175268,7 +175002,7 @@ { "pum_table_id": "C1857", "section": "13-8-6 여과집진기 설치(Bag filter)", - "source_line": 3338, + "source_line": 3302, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -175342,7 +175076,7 @@ { "pum_table_id": "C1858", "section": "13-8-6 여과집진기 설치(Bag filter)", - "source_line": 3354, + "source_line": 3318, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -175432,7 +175166,7 @@ { "pum_table_id": "C1859", "section": "13-8-7 활성탄・반응조제 및 소석회 공급설비 설치", - "source_line": 3367, + "source_line": 3331, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -175506,7 +175240,7 @@ { "pum_table_id": "C1860", "section": "13-8-7 활성탄・반응조제 및 소석회 공급설비 설치", - "source_line": 3383, + "source_line": 3347, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -175596,7 +175330,7 @@ { "pum_table_id": "C1861", "section": "13-9-1 수중펌프 설치", - "source_line": 3393, + "source_line": 3357, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -175648,9 +175382,9 @@ { "pum_table_id": "C1862", "section": "13-9-1 수중펌프 설치", - "source_line": 3403, + "source_line": 3367, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 1.0, "basis_unit": "대", "basis_source": "본문", @@ -175744,7 +175478,7 @@ { "pum_table_id": "C1863", "section": "13-9-2 모노레일 설치", - "source_line": 3415, + "source_line": 3379, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -175788,9 +175522,9 @@ { "pum_table_id": "C1864", "section": "13-9-2 모노레일 설치", - "source_line": 3425, + "source_line": 3389, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": 1.0, "basis_unit": "ton", "basis_source": "본문", @@ -175854,7 +175588,7 @@ { "pum_table_id": "C1865", "section": "13-9-3 산기장치 설치", - "source_line": 3434, + "source_line": 3398, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -175905,9 +175639,9 @@ { "pum_table_id": "C1866", "section": "13-9-3 산기장치 설치", - "source_line": 3446, + "source_line": 3410, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -175996,7 +175730,7 @@ { "pum_table_id": "C1867", "section": "13-9-4 오수처리시설 설치", - "source_line": 3458, + "source_line": 3422, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -176048,9 +175782,9 @@ { "pum_table_id": "C1868", "section": "13-9-4 오수처리시설 설치", - "source_line": 3471, + "source_line": 3435, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -176128,7 +175862,7 @@ { "pum_table_id": "C1869", "section": "13-10-1 OPEN BELT CONVEYOR 설치", - "source_line": 3486, + "source_line": 3450, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -176168,7 +175902,7 @@ { "pum_table_id": "C1870", "section": "13-10-1 OPEN BELT CONVEYOR 설치", - "source_line": 3502, + "source_line": 3466, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -176262,7 +175996,7 @@ { "pum_table_id": "C1871", "section": "13-10-1 OPEN BELT CONVEYOR 설치", - "source_line": 3514, + "source_line": 3478, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -176357,7 +176091,7 @@ { "pum_table_id": "C1872", "section": "13-10-2 OVER HEAD CRANE 설치", - "source_line": 3526, + "source_line": 3490, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -176411,7 +176145,7 @@ { "pum_table_id": "C1873", "section": "13-10-2 OVER HEAD CRANE 설치", - "source_line": 3538, + "source_line": 3502, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -176443,7 +176177,7 @@ { "pum_table_id": "C1874", "section": "13-10-2 OVER HEAD CRANE 설치", - "source_line": 3547, + "source_line": 3511, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -176481,7 +176215,7 @@ { "pum_table_id": "C1875", "section": "13-10-2 OVER HEAD CRANE 설치", - "source_line": 3553, + "source_line": 3517, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -176536,7 +176270,7 @@ { "pum_table_id": "C1876", "section": "13-10-3 GANTRY CRANE 설치", - "source_line": 3561, + "source_line": 3525, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -176582,7 +176316,7 @@ { "pum_table_id": "C1877", "section": "13-10-3 GANTRY CRANE 설치", - "source_line": 3571, + "source_line": 3535, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": null, @@ -176628,7 +176362,7 @@ { "pum_table_id": "C1878", "section": "13-10-3 GANTRY CRANE 설치", - "source_line": 3581, + "source_line": 3545, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -176663,7 +176397,7 @@ { "pum_table_id": "C1879", "section": "13-10-3 GANTRY CRANE 설치", - "source_line": 3589, + "source_line": 3553, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -176739,7 +176473,7 @@ { "pum_table_id": "C1880", "section": "13-10-3 GANTRY CRANE 설치", - "source_line": 3602, + "source_line": 3566, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -176803,7 +176537,7 @@ { "pum_table_id": "C1881", "section": "13-10-3 GANTRY CRANE 설치", - "source_line": 3613, + "source_line": 3577, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -176858,7 +176592,7 @@ { "pum_table_id": "C1882", "section": "13-10-4 천장크레인 레일설치", - "source_line": 3619, + "source_line": 3583, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -176940,7 +176674,7 @@ { "pum_table_id": "C1883", "section": "13-11-1 일반기기 설치", - "source_line": 3629, + "source_line": 3593, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": 1.0, @@ -177019,7 +176753,7 @@ { "pum_table_id": "C1884", "section": "13-11-2 Cooling Tower 설치", - "source_line": 3645, + "source_line": 3609, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -177149,7 +176883,7 @@ { "pum_table_id": "C1885", "section": "13-11-3 Batcher Plant 설치", - "source_line": 3666, + "source_line": 3630, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -177201,7 +176935,7 @@ { "pum_table_id": "C1886", "section": "13-11-3 Batcher Plant 설치", - "source_line": 3675, + "source_line": 3639, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -177238,7 +176972,7 @@ { "pum_table_id": "C1887", "section": "13-11-3 Batcher Plant 설치", - "source_line": 3682, + "source_line": 3646, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -177288,7 +177022,7 @@ { "pum_table_id": "C1888", "section": "13-11-3 Batcher Plant 설치", - "source_line": 3695, + "source_line": 3659, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", "basis_quantity": 1.0, @@ -177324,7 +177058,7 @@ { "pum_table_id": "C1889", "section": "13-11-3 Batcher Plant 설치", - "source_line": 3704, + "source_line": 3668, "pum_form": "requirement", "form_basis": "'수 량'", "basis_quantity": null, @@ -177377,9 +177111,9 @@ { "pum_table_id": "C1890", "section": "13-11-4 가설자재 손료율", - "source_line": 3710, + "source_line": 3674, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 그 밖 — 사람이 봐야 함", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -177432,7 +177166,7 @@ { "pum_table_id": "C1891", "section": "13-11-5 공사별 설치 소모자재[참고]", - "source_line": 3717, + "source_line": 3681, "pum_form": "requirement", "form_basis": "건설 꼴 — 줄에 단위 칸 '㎏' + 값", "basis_quantity": 1.0, @@ -185351,7 +185085,7 @@ "section": "2-1-20 재래난간 철거공", "source_line": 580, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": 10.0, "basis_unit": "m", "basis_source": "표 안", @@ -188706,9 +188440,9 @@ "source_line": 1088, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "개", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -189502,7 +189236,7 @@ "section": "2-4-2 하수관 세정", "source_line": 1228, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -189687,7 +189421,7 @@ "section": "2-4-3 관세관(스크레이퍼+워터젯트 병행 방법)", "source_line": 1246, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -190130,7 +189864,7 @@ "section": "2-4-7 하수관 준설(흡입식)", "source_line": 1321, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -193709,7 +193443,7 @@ "section": "4-1-7 일반기계설비 철거 및 이설", "source_line": 113, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, @@ -194147,7 +193881,7 @@ "section": "4-3-2 관갱생공", "source_line": 184, "pum_form": "undetermined", - "form_basis": "헤더·첫 행에 단위·밑수·직종 표지 없음", + "form_basis": "단위·밑수·직종 표지 없음 · 머리가 두 단 — 아래 단이 하위 구분(잣대가 못 폄)", "basis_quantity": null, "basis_unit": null, "basis_source": null, diff --git a/resources/data_work_item_master/work_item_master_2026-01-01.json b/resources/data_work_item_master/work_item_master_2026-01-01.json index 27a3380c..1108bdfc 100644 --- a/resources/data_work_item_master/work_item_master_2026-01-01.json +++ b/resources/data_work_item_master/work_item_master_2026-01-01.json @@ -4,7 +4,7 @@ "effective_date": "2026-01-01", "pum_edition": "2026-01-01", "toc_edition": "산림청고시제2025-82호", - "generated_at": "2026-09-18T12:38:26+09:00", + "generated_at": "2026-09-18T12:53:57+09:00", "dataset_version": { "dataset_id": "pum_forest", "effective_date": "2026-01-01", @@ -25,10 +25,10 @@ "tables_attached": 453, "tables_orphan": 22, "form_undetermined": 0, - "basis_found": 251, - "basis_missing": 81, + "basis_found": 253, + "basis_missing": 79, "basis_absent_in_source": 71, - "basis_unparsed": 10, + "basis_unparsed": 8, "basis_grouped": 59, "axis_roles": { "general_provision": 78, @@ -21171,9 +21171,9 @@ "source_line": 4541, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "ha", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], @@ -21262,9 +21262,9 @@ "source_line": 4561, "pum_form": "requirement", "form_basis": "직종 표기((인)·인부·공)", - "basis_quantity": null, - "basis_unit": null, - "basis_source": null, + "basis_quantity": 1.0, + "basis_unit": "ha", + "basis_source": "표 머리", "resource_shares": {}, "partial_ratio": false, "expression_cells": [], diff --git a/resources/tester/fixtures/work_item_master_source_known.json b/resources/tester/fixtures/work_item_master_source_known.json index bda4d99c..94edaf2a 100644 --- a/resources/tester/fixtures/work_item_master_source_known.json +++ b/resources/tester/fixtures/work_item_master_source_known.json @@ -56,26 +56,6 @@ "class": "㉰ 사용자 판단 필요", "class_why": "⚠ 마스터 「1km」는 반쪽 — 원문은 「인/1일 1km당」으로 분모가 둘(일·km)" }, - "F0228": { - "section": "8-6-2", - "md": [ - 1.0, - "ha" - ], - "md_evidence": "표·머리 무인헬기 (ha당)", - "master": null, - "why": "원문 줄 칸 「무인헬기 (ha당)」 — 마스터가 아직 안 읽음(2026-09-09 「인」 오독 판정과 같은 자리, 밑수는 ha)" - }, - "F0229": { - "section": "8-6-2", - "md": [ - 1.0, - "ha" - ], - "md_evidence": "표·머리 멀티콥터 (ha당)", - "master": null, - "why": "위와 같음(멀티콥터)" - }, "F0322": { "section": "10-13-1", "md": null, diff --git a/resources/tester/test_work_item_key_registry.py b/resources/tester/test_work_item_key_registry.py index 2d6677fe..ff7a80e7 100644 --- a/resources/tester/test_work_item_key_registry.py +++ b/resources/tester/test_work_item_key_registry.py @@ -68,7 +68,7 @@ MASTER = OUT_DIR / "work_item_master_2026-01-01.json" #: 2026-09-18 합침(랩탑 메인 · 데스크탑 서브 9f27d619 와 한 점) — 위 넓힘 + 데스크탑 서브의 #: F0046·F0068 밑수 되돌림·F0076 형태 판정·원천 벌 재추출을 한 벌로 다시 뽑아 지문이 또 뜸 #: (옛 837eb8aa… · 옛 6f223c69…). 양쪽 다 **원문을 더 읽은 것**이고 금액은 그대로다. -BASELINE_WORK_ITEMS_SHA = "645798a58bcd8d283653192d4da8b5be40e0b88474b8e8c3bbab77174b83eb7d" +BASELINE_WORK_ITEMS_SHA = "7919a44eab4ecf9a09edb39f0c4b48f5576caa8c5d491fe6d3e5fb89ba655436" #: 열쇠 작업이 새로 얹은 칸. 지문을 잴 때만 떼어낸다. ADDED_FIELDS = ( @@ -482,14 +482,15 @@ def test_밑수_미확보를_둘로_가른다(master: dict) -> None: from pathlib import Path as _Path stats = master["stats"] - assert stats["basis_missing"] == 81 + assert stats["basis_missing"] == 79 # 2026-09-18 합침 70 → 71 — 원문 md 가 풀리며 밑수를 안 적은 표가 하나 더 드러남 assert stats["basis_absent_in_source"] == 71 # 2026-09-18 「당」 없이 몫으로만 적힌 자리(「(인/100㎡)」·「(대/ton)」)를 가리게 해 다섯을 더 채움. # 미판독 12 → 9 → 10(가림이 넓어져 새로 드러난 것 포함) · 확보 243 → 251. # ⚠ 남은 아홉은 **거절 자리**다 — 「(단위 : 인)」 셋(2026-09-09 오독 판정) · # 「㎥/1인/1일」·「1ha당, 100본당」·「1대 1조, 시간당」·「인 당」은 분모가 둘 이상이다. - assert stats["basis_unparsed"] == 10 + # 2026-09-18 10 → 8 — **표 머리 칸까지 읽게 하자** 8-6-2·8-6-3 드론방제 「ha당」 둘이 채워짐 + assert stats["basis_unparsed"] == 8 assert stats["basis_absent_in_source"] + stats["basis_unparsed"] == stats["basis_missing"] items = _json.loads( _Path("resources/data_work_item_master/basis_missing_2026-01-01.json").read_text(