diff --git a/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py b/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py index 736e7025..017fa63f 100644 --- a/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py +++ b/B08_Quantity/B08_Quantity_Build_WorkItemMaster.py @@ -407,6 +407,29 @@ def formula_rows(table: dict[str, Any]) -> list[str]: return found +# ⚠ **규격 표기에 쓰이는 특수문자** — 원문이 한 종류로 안 쓴다(2026-09-07 실측). +# 물결표만 셋이다: `∼`(U+223C) 662회 · `~`(U+FF5E) 459회 · `~`(U+007E) 2회. +# 곱셈표도 `×`(U+00D7) 97회 · `x`(U+0078) 4회로 갈린다. +# **두 창이 각자 갈래 키를 조립하면 글자 하나로 영영 안 맞는다** — 그래서 우리는 +# 키를 조립하지 않고 **저장 원본값만** 보낸다(인계 계약). 여기서는 **표시만** 한다. +# ⚠ 값을 고치지 않는다 — 원문 표기를 흡수하는 것은 **원문을 읽는 쪽**의 몫이다. +SPECIAL_GLYPHS = { + "∼": "∼(U+223C)", + "~": "~(U+FF5E)", + "~": "~(U+007E)", + "×": "×(U+00D7)", + "x": "x(U+0078)", + "–": "–(U+2013)", + "‐": "‐(U+2010)", +} + + +def special_glyphs(table: dict[str, Any]) -> list[str]: + """규격 표기에 쓰인 특수문자 종류. 갈래 키를 맞출 때 대조할 자리.""" + text = " ".join(norm(cell) for row in table.get("rows", []) for cell in row) + return sorted({SPECIAL_GLYPHS[ch] for ch in text if ch in SPECIAL_GLYPHS}) + + def crew_table(table: dict[str, Any]) -> bool: """작업조 + 시공량으로 적힌 표인가.""" hay = " ".join(norm(h) for h in table.get("headers", [])) @@ -532,6 +555,8 @@ def build() -> dict[str, Any]: "spaced_names": spaced_names(table), # ⚠ 공식 기호 줄 — 소요량이 아니다. 자원으로 세면 이중계상. "formula_rows": formula_rows(table), + # ⚠ 규격 표기 특수문자 — 갈래 키를 맞출 때 대조할 자리(값은 안 고침). + "special_glyphs": special_glyphs(table), # 공식 기호가 이 표에 직접 있는가 — 없으면 앞 표에서 물려받는 모양이다. "capacity_formula_here": capacity_formula_pending(table), "variant_key": variant_axis(table), diff --git a/B08_Quantity/B08_Quantity_Engine_Handoff.py b/B08_Quantity/B08_Quantity_Engine_Handoff.py index 87aefef8..94d6e298 100644 --- a/B08_Quantity/B08_Quantity_Engine_Handoff.py +++ b/B08_Quantity/B08_Quantity_Engine_Handoff.py @@ -499,6 +499,9 @@ def _earthwork_rows( "spec_detail": "", "composite_parts": None, "structure_kind": None, + # 토공·운반 줄에는 갈래 축이 없다 — 그래도 **칸은 둔다**(계약이 한 모양). + "variant_axis": None, + "variant_value": None, "spec_class": None, "spec_class_basis": "", # 토공 줄은 막힐 자리가 없다 — 그래도 **칸은 둔다**(계약이 한 모양이어야 한다). @@ -551,6 +554,9 @@ def _haul_rows( "spec_detail": "", "composite_parts": None, "structure_kind": None, + # 토공·운반 줄에는 갈래 축이 없다 — 그래도 **칸은 둔다**(계약이 한 모양). + "variant_axis": None, + "variant_value": None, "spec_class": None, "spec_class_basis": "", "blocked_kind": None, @@ -610,6 +616,7 @@ def _structure_rows( bond = str((structure.get("options") or {}).get("bond") or "").strip() bond_codes = entry.get("bond_codes") or {} if bond in bond_codes: + # 메/찰은 **의미 판정**이라 우리 몫이다 — 공종 자체가 갈린다. code = bond_codes[bond] class_key = bond class_basis = f"쌓기 방식 「{bond}」 → 품셈 13-6 {code.split('-')[-1]}" @@ -620,8 +627,7 @@ def _structure_rows( ) if code and entry.get("class_from") == "back_length": class_key, class_basis = masonry_class(structure.get("options") or {}) - if class_key: - code = f"{code}#{normalize_kind_key(class_key)}" + composite = mapping.composite_for(type_id) if code is None else None kind = structure_kind(structure) if composite else None parts: list[dict[str, Any]] | None = None @@ -629,6 +635,9 @@ def _structure_rows( if composite: parts, parts_missing = composite_quantities(structure, composite, mapping) blocked_kind, blocked_reason = blocked_of(structure, class_basis) + # 갈래 축과 **저장 제원 원본값**. 가공하지 않는다. + variant_axis = str(entry.get("variant_axis") or "") or None + variant_value = (structure.get("options") or {}).get(variant_axis) if variant_axis else None if code is None and composite is None: unmatched.append(f"{wording_type_label(type_id)} — 품셈 공종을 아직 못 이었습니다") elif entry.get("class_from") in ("back_length", "bond") and class_key is None: @@ -660,6 +669,12 @@ def _structure_rows( "blocked_kind": blocked_kind, "blocked_reason": blocked_reason, # 규격 갈래(뒷길이 …㎝ 이하) — 못 고르면 사유가 남는다. + # ⚠ **갈래 키 문자열을 우리가 조립하지 않는다** (2026-09-07 계약 변경). + # 품셈 원문이 물결표를 섞어 쓴다(`∼` U+223C / `~` U+FF5E). 두 창이 각자 + # 키를 조립하면 **글자 하나로 영영 안 맞는다.** 우리는 **어느 축인지와 + # 저장 원본값**만 보내고, 원문을 읽는 쪽이 그 표기를 흡수한다. + "variant_axis": variant_axis, + "variant_value": variant_value, "spec_class": class_key, "spec_class_basis": class_basis, # ⚠ 물량을 못 채운 조각 — 0 으로 적지 않고 사유와 함께 드러낸다. diff --git a/resources/data_work_item_mapping/work_item_mapping_2026-01-01.json b/resources/data_work_item_mapping/work_item_mapping_2026-01-01.json index 46d8d9b1..7481524e 100644 --- a/resources/data_work_item_mapping/work_item_mapping_2026-01-01.json +++ b/resources/data_work_item_mapping/work_item_mapping_2026-01-01.json @@ -119,16 +119,16 @@ "work_item_code": "FP-13-04-05", "master_name": "돌쌓기 > 찰쌓기(장비)", "note": "인력 시공이면 FP-13-04-04", - "class_from": "back_length", - "class_note": "저장 제원 `back_len_cm` 으로 「…㎝ 이하」 구간을 고름 — 자동 판정" + "class_note": "⚠ 갈래 키 문자열을 여기서 만들지 않는다 — `variant_axis`+`variant_value`(저장 원본값)만 보내고 「…㎝ 이하」 구간 나누기는 **품셈 원문을 읽는 쪽**이 한다(2026-09-07 계약).", + "variant_axis": "back_len_cm" }, { "type_id": "masonry_dry", "work_item_code": "FP-13-04-02", "master_name": "돌쌓기 > 메쌓기(장비)", "note": "인력 시공이면 FP-13-04-01", - "class_from": "back_length", - "class_note": "저장 제원 `back_len_cm` 으로 「…㎝ 이하」 구간을 고름 — 자동 판정" + "class_note": "⚠ 갈래 키 문자열을 여기서 만들지 않는다 — `variant_axis`+`variant_value`(저장 원본값)만 보내고 「…㎝ 이하」 구간 나누기는 **품셈 원문을 읽는 쪽**이 한다(2026-09-07 계약).", + "variant_axis": "back_len_cm" }, { "type_id": "pipe_inlet_basin", @@ -148,7 +148,8 @@ "메쌓기": "FP-13-06-01", "찰쌓기": "FP-13-06-02" }, - "class_note": "저장 제원 `bond`(메쌓기/찰쌓기)로 품셈 13-6-1·13-6-2 를 고름 — 자동 판정" + "class_note": "메/찰(`bond`)은 **공종 자체가 갈리는 의미 판정**이라 여기서 고른다. 직경 갈래는 `variant_value` 로 원본값만 보낸다 — 원문이 물결표를 섞어 써서.", + "variant_axis": "stone_cm" } ], "pending_user": { @@ -264,5 +265,17 @@ "hand_mixed": 408327 } } - } + }, + "variant_contract": { + "note": "갈래 계약(2026-09-07 3자) — **키 문자열을 두 창이 각자 조립하지 않는다.**", + "why": "품셈 원문이 물결표를 섞어 쓴다: 13-06-01·02 는 `∼`(U+223C), 13-06-03 은 `~`(U+FF5E). 각자 조립하면 글자 하나로 영영 안 맞는다.", + "b08_sends": [ + "work_item_code", + "variant_axis", + "variant_value", + "kind_basis" + ], + "b09_does": "원문 표기(물결표·공백·괄호)를 흡수해 자기 키로 옮긴다. 「…㎝ 이하」 구간 나누기도 그쪽 몫 — 그 구간이 **품셈 표의 구조**이기 때문." + }, + "masonry_class_reference": "resources/data_masonry/masonry_class_2026-01-01.json — ⚠ 이제 **참고용**이다. 서브 판정과 어긋나면 그것이 곧 신호다." } diff --git a/resources/data_work_item_master/_manifest.json b/resources/data_work_item_master/_manifest.json index 4c6fc350..dd120b46 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-08T01:52:34+09:00", + "generated_at": "2026-09-08T04:57:04+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": "08b0c7c26c4aa569ace3b13490b8cbd00606254abb1439894eac750d387bfb03", - "size_bytes": 839464 + "sha256": "1c49012f9f50d721676ad8def15c87c96b77aad83123286dd6981b7d9cefcd81", + "size_bytes": 856450 }, { "file": "form_undetermined_2026-01-01.json", 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 cc9c3e9d..741b4fad 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 @@ -2,7 +2,7 @@ "schema_version": "1.0", "dataset_id": "work_item_master_forest", "effective_date": "2026-01-01", - "generated_at": "2026-09-08T01:52:34+09:00", + "generated_at": "2026-09-08T04:57:04+09:00", "dataset_version": { "dataset_id": "pum_forest", "effective_date": "2026-01-01", @@ -154,6 +154,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "2.5톤 차량", @@ -276,6 +277,7 @@ "관 류(管類)" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "단 위", @@ -903,6 +905,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "설계서의 총액", @@ -975,6 +978,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "경 암 ( 硬 岩 )", @@ -1103,6 +1110,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자연상태의 체적", @@ -1154,6 +1162,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "사용고재(시멘트공대 및 공드람 제외)", @@ -1222,6 +1231,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "6톤 차량", @@ -1802,6 +1815,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "시 멘 트", @@ -1864,6 +1878,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "모 래", @@ -1909,6 +1924,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "모 래" @@ -1939,6 +1955,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "원 형 철 근", @@ -2019,6 +2036,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "목 재", @@ -2174,6 +2192,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "6월∼9월", @@ -2224,6 +2245,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "3년차 이상", @@ -2274,6 +2296,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "집단화 정도", @@ -2328,6 +2353,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "작업구역", @@ -2406,6 +2434,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "산지경사", @@ -2484,6 +2515,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "도 보", @@ -2554,6 +2588,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "식생을 제거하지 않고는 보행이 곤란하다", @@ -2604,6 +2639,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "가슴높이 이상의 초본․관목", @@ -2654,6 +2690,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "어렵다(높이 1.2m 이상이고, 직경이 4~6cm 이상)", @@ -2704,6 +2743,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "돌 등 장애물 함량이 30% 이상이고, 나무뿌리가 밀하게 분포할 경우", @@ -2754,6 +2796,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "과밀(80%초과 피복)", @@ -2814,6 +2859,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "대 (임지의 71% 이상 분포)", @@ -2864,6 +2912,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "돌, 도랑, 그루터기 등으로 주행이 매우 힘들다", @@ -2914,6 +2963,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "가선을 이용한 기계장비의 원목․생산재 집재", @@ -2999,6 +3051,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "11~20m", @@ -3049,6 +3104,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "규격재 생산을 위한 조재" @@ -3089,6 +3145,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "산림병해충방제 (단목베기, 나무주사)", @@ -3179,6 +3238,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "산림병해충방제 (산물수집-기계장비 집재)", @@ -3235,6 +3297,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "매개충나무주사" @@ -3286,6 +3349,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "사면형", @@ -3346,6 +3410,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "접근성", @@ -3400,6 +3467,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "방제 수종", @@ -3448,6 +3516,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "그물망 피복 시 임내 운반거리", @@ -3520,6 +3591,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "장비의 규격 (굴삭기)", @@ -3568,6 +3640,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업 가능 시간", @@ -3634,6 +3707,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "1", @@ -3693,6 +3767,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "적용방법", @@ -3933,6 +4010,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "2회", @@ -4006,6 +4084,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "거 푸 집 씻 기", @@ -4089,6 +4170,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+007E)", + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 면적", @@ -4459,6 +4544,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통휘발유 (주연료)", @@ -4507,6 +4593,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "예취기(휘발유)" @@ -4541,6 +4628,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "아키아윈치(휘발유)" @@ -4573,6 +4661,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "2드럼 케이블윈치(휘발유)" @@ -4605,6 +4694,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "천공기 (휘발유)" @@ -4649,6 +4739,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "트랙터 부착 기계", @@ -4770,6 +4861,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "트랙 접지력 보강", @@ -4815,6 +4907,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "주재료", @@ -4865,6 +4958,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "주재료", @@ -4907,6 +5001,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "주재료", @@ -4947,6 +5042,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "주재료", @@ -4999,6 +5095,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "x(U+0078)" + ], "capacity_formula_here": false, "variant_key": [ "농약 (Fluroxypyr -meptyl + Triclypyr-TEA 미탁제)" @@ -5033,6 +5132,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소금처리량(g)" @@ -5069,6 +5169,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "농약 (글리포세이트)", @@ -5120,6 +5221,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "수량", @@ -5212,6 +5316,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "훈증약제", @@ -5284,6 +5389,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "수 량", @@ -5341,6 +5447,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "수 량", @@ -5398,6 +5505,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "수 량", @@ -5455,6 +5563,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "수 량", @@ -5505,6 +5614,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "그물망", @@ -5553,6 +5663,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "메인파쇄기날", @@ -5606,6 +5717,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+007E)", + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 면적", @@ -5996,6 +6111,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "45cc (배기량기준)" @@ -6038,6 +6156,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "예취기 (배기량 35cc)" @@ -6080,6 +6201,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "아키아윈치", @@ -6257,6 +6381,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "배부식분무기" @@ -6299,6 +6426,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "45cc (배기량 기준)" @@ -6341,6 +6471,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "5HP(양수기)" @@ -6383,6 +6514,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "무인헬기(FAZER) 내용가동시간 1,400시간기준" @@ -6425,6 +6557,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "무인멀티콥터(평균가) 내용가동시간 1,000시간 기준", @@ -6473,6 +6606,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "1톤(방제차량)", @@ -6521,6 +6655,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "-" @@ -6565,6 +6700,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "손료계수(10⁻⁷)", @@ -6634,6 +6772,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소요인력", @@ -6668,6 +6807,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 면적", @@ -7608,6 +7750,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "구 분", @@ -7644,6 +7787,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 면적", @@ -8696,6 +8842,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "구 분", @@ -8738,6 +8885,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 면적", @@ -9705,6 +9855,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "노면정지", @@ -9753,6 +9904,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "모든 벌채산물 임내존치지역", @@ -9853,6 +10005,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "10㎥ 미만", @@ -9919,6 +10072,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "10㎥ 미만", @@ -10015,6 +10169,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "드론조종자 (건설기계조종원)", @@ -10101,6 +10256,7 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "위치 및 임․소반", @@ -11587,6 +11743,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "벌도목 구분", @@ -11645,6 +11802,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "벌도ㆍ조재 공정량(㎥)", @@ -11679,6 +11837,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "154" @@ -11719,6 +11878,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 임․소반", @@ -12547,6 +12709,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "벌목", @@ -12701,6 +12866,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "5m 미만", @@ -12774,6 +12942,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -12864,6 +13035,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부" @@ -12906,6 +13078,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "0.13인" @@ -12946,6 +13119,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "1인" @@ -13004,6 +13178,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "0.3m 미만", @@ -13063,6 +13240,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -13164,6 +13344,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "특별인부(인)", @@ -13341,6 +13524,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼ 19", @@ -13401,6 +13587,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "줄떼", @@ -13449,6 +13636,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "지게", @@ -13542,6 +13730,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -13696,6 +13885,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소묘식재", @@ -13744,6 +13934,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소나무", @@ -13834,6 +14025,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소묘", @@ -13888,6 +14080,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "0.3m 미만", @@ -13947,6 +14142,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "0.3m 미만", @@ -14006,6 +14204,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "인 력 시 공", @@ -14139,6 +14340,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인력품의 10%" @@ -14179,6 +14381,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "특별인부(인)", @@ -14340,6 +14545,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인력품의 10%" @@ -14370,6 +14576,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "8 ∼ 17", @@ -14430,6 +14639,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "파종상 만들기", @@ -14502,6 +14714,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "지면긁기작업", @@ -14553,6 +14769,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "맹아근주 정리작업" @@ -14597,6 +14814,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "움싹본수조절", @@ -14655,6 +14873,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "큰나무 식재" @@ -14699,6 +14920,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부" @@ -14743,6 +14965,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "묘목", @@ -14829,6 +15054,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부(인)" @@ -14873,6 +15099,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "줄떼", @@ -14921,6 +15150,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "줄떼심기", @@ -14969,6 +15199,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "새채집", @@ -15048,6 +15279,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "말뚝", @@ -15119,6 +15353,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통토사", @@ -15203,6 +15438,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "단끊기", @@ -15277,6 +15513,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "단끊기", @@ -15342,6 +15579,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "단끊기", @@ -15400,6 +15638,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "종자", @@ -15502,6 +15741,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "6", @@ -15558,6 +15798,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "15", @@ -15619,6 +15860,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "표토채취", @@ -15683,6 +15925,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "채 취", @@ -15755,6 +15998,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조경공", @@ -15806,6 +16050,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부" @@ -15850,6 +16095,7 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조경공", @@ -15930,6 +16176,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조경공", @@ -15981,6 +16228,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부" @@ -16041,6 +16289,7 @@ "보 통 인 부" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -16175,6 +16424,7 @@ "물 탱 크" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -16293,6 +16543,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "초본 위주형", @@ -16385,6 +16638,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "초본 위주형", @@ -16487,6 +16743,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -16557,6 +16814,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "9", @@ -16628,6 +16886,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "9", @@ -16699,6 +16958,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10% 이내", @@ -16755,6 +17017,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조경공", @@ -16812,6 +17075,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특 별 인 부", @@ -16863,6 +17127,7 @@ "보 통 인 부" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "폭 1.5m 이하", @@ -16926,6 +17191,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "K(버킷계수)", @@ -16986,6 +17252,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "표시봉 설치" @@ -17030,6 +17297,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "지주목 설치" @@ -17074,6 +17342,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "대 절" @@ -17118,6 +17387,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소묘, 중묘", @@ -17166,6 +17436,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소 묘", @@ -17229,6 +17500,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인공림(10년이하 조림지)", @@ -17292,6 +17564,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "낫" @@ -17336,6 +17609,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "묘목찾기", @@ -17410,6 +17684,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "묘목찾기", @@ -17484,6 +17759,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "괭이, 도끼 등" @@ -17537,6 +17813,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "기계작업" @@ -17583,6 +17860,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "약제살포", @@ -17637,6 +17915,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "소금 처리", @@ -17715,6 +17996,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "뿌리 고살", @@ -17775,6 +18059,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "80% 이상", @@ -17847,6 +18134,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부 (체인톱 사용)", @@ -17909,6 +18197,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "0~0.5m", @@ -18020,6 +18311,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "11미만", @@ -18082,6 +18376,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특 별 인 부", @@ -18133,6 +18428,7 @@ "보 통 인 부" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특 별 인 부", @@ -18190,6 +18486,7 @@ "보 통 인 부" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "우 드 칩", @@ -18266,6 +18563,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "100m이하", @@ -18320,6 +18618,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "ha당원목재적 평균거리", @@ -18396,6 +18695,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "ha당원목재적 평균거리", @@ -18497,6 +18799,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "8", @@ -18684,6 +18987,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "20이하㎥", @@ -18770,6 +19076,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "50m 내외" @@ -18821,6 +19128,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "50이하", @@ -18956,6 +19264,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "20m이하", @@ -19021,6 +19330,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "30이하", @@ -19156,6 +19466,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "0.1∼0.2㎥", @@ -19240,6 +19553,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "60m 이하", @@ -19296,6 +19610,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "50이하", @@ -19431,6 +19746,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "100m 이하", @@ -19524,6 +19842,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "120m 이하", @@ -19593,6 +19912,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "120m 이하", @@ -19662,6 +19982,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "100m이하", @@ -19806,6 +20127,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "100m 이하", @@ -19896,6 +20220,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "100m 이하", @@ -19976,6 +20303,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "100m 이하", @@ -20059,6 +20389,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "20㎥ 미만", @@ -20111,6 +20444,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "원목의 길이", @@ -20187,6 +20523,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "원목의 길이", @@ -20263,6 +20602,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "원목집재와 동시에 부산물 수집시" @@ -20304,6 +20644,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "9㎝ 이하", @@ -20395,6 +20738,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "생산목 검척" @@ -20427,6 +20771,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "2.1m", @@ -20534,6 +20879,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "1회 적 재 량", @@ -20622,6 +20970,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "100", @@ -20706,6 +21055,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "0.5", @@ -20787,6 +21137,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "100", @@ -20871,6 +21222,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "100", @@ -20952,6 +21304,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "100", @@ -21051,6 +21404,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -21151,6 +21505,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -21233,6 +21588,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "10~12", @@ -21396,6 +21754,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "10~12", @@ -21537,6 +21898,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "아바멕틴", @@ -21592,6 +21954,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "10~12", @@ -21755,6 +22120,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "10~16", @@ -21917,6 +22285,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "티아메톡삼 분산성액제 15%", @@ -21979,6 +22348,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -22167,6 +22539,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -22355,6 +22730,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -22553,6 +22931,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "디노테퓨란(15)․에마멕틴벤조에이트(4.5) 분산성액제 19.5%", @@ -22609,6 +22988,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -22797,6 +23179,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -22985,6 +23370,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -23173,6 +23561,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "사업 구분", @@ -23855,6 +24244,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "공종", @@ -24465,6 +24855,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "위치 및 면적", @@ -25069,6 +25462,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "아바멕틴(1.8)·설폭사플로르(4.2) 분산성액제 6%" @@ -25101,6 +25495,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -25299,6 +25696,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "테부코나졸 유탁제 25%" @@ -25331,6 +25729,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "10∼12", @@ -25529,6 +25930,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "6", @@ -25837,6 +26239,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "4cm", @@ -26032,6 +26435,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "중부지방소나무" @@ -26076,6 +26480,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "8롤 미만", @@ -26144,6 +26551,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "트랩설치", @@ -26207,6 +26615,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -26319,6 +26728,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "산림항공방제", @@ -26401,6 +26811,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소형헬기 (AS350)", @@ -26595,6 +27006,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "드론조종자 (건설기계 조종원)", @@ -26684,6 +27096,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "드론조종자 (건설기계 조종원)", @@ -26783,6 +27196,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -26844,6 +27258,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "250배", @@ -26994,6 +27409,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "방제실행 등록" @@ -27045,6 +27461,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "10m이하", @@ -27121,6 +27540,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "10개 이하", @@ -27184,6 +27606,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "잔가지 줍기" @@ -27226,6 +27649,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "벌목부", @@ -27309,6 +27733,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "이동식 임목 파쇄기" @@ -27371,6 +27796,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부" @@ -27422,6 +27848,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부(인)" @@ -27475,6 +27902,9 @@ "E", "㎝(sec)" ], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": true, "variant_key": [ "K", @@ -27544,6 +27974,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "대형브레이커+ 유압식백호우 (무한궤도,0.7㎥)", @@ -27613,6 +28044,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "K", @@ -27686,6 +28118,7 @@ "착 암 공" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -27796,6 +28229,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "연 암", @@ -27861,6 +28295,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "K", @@ -27932,6 +28367,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "대형브레이커+유압식백호우 (무한궤도,0.7㎥)" @@ -27983,6 +28419,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "무근콘크리트" @@ -28029,6 +28468,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "무근콘크리트" @@ -28084,6 +28526,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "철근콘크리트" @@ -28120,6 +28565,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인력", @@ -28189,6 +28635,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "철근콘크리트" @@ -28235,6 +28684,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "메쌓기", @@ -28306,6 +28756,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "콘크리트" @@ -28350,6 +28803,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "아스팔트" @@ -28403,6 +28857,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력", @@ -28516,6 +28973,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력(10%)", @@ -28603,6 +29061,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -28706,6 +29165,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -28818,6 +29278,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -28899,6 +29360,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -28954,6 +29418,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29014,6 +29481,9 @@ "E", "㎝(sec)" ], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -29093,6 +29563,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29146,6 +29620,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29206,6 +29684,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -29309,6 +29788,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29388,6 +29870,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29474,6 +29959,9 @@ "E", "㎝(sec)" ], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -29569,6 +30057,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29640,6 +30132,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29718,6 +30214,9 @@ "E", "㎝(sec)" ], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -29821,6 +30320,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29900,6 +30402,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -29984,6 +30489,9 @@ "E", "㎝(sec)" ], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -30087,6 +30595,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -30166,6 +30678,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "인력 (10%)", @@ -30259,6 +30775,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력 (10%)", @@ -30338,6 +30855,9 @@ "f", "E" ], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": true, "variant_key": [ "A", @@ -30420,6 +30940,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "K(버킷계수)", @@ -30482,6 +31003,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "T(표토두께)", @@ -30592,6 +31116,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "K", @@ -30652,6 +31177,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "V(다짐속도,km/hr)", @@ -30724,6 +31250,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "흡입준비(t1)", @@ -30813,6 +31342,7 @@ "E", "f" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "L", @@ -30904,6 +31434,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "굴착기 (무한궤도, 0.7㎥)", @@ -30977,6 +31508,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부 (인)", @@ -31058,6 +31590,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인력시공", @@ -31124,6 +31657,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인력", @@ -31179,6 +31713,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인력", @@ -31257,6 +31792,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -31322,6 +31858,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -31373,6 +31910,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "굴착기 (무한궤도)", @@ -31449,6 +31987,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "K(버킷계수)", @@ -31518,6 +32057,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "운반비", @@ -31566,6 +32106,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "운반비", @@ -31623,6 +32164,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "구 입", @@ -31671,6 +32213,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "골재생산", @@ -31719,6 +32262,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "운반비", @@ -31767,6 +32311,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "운반", @@ -31930,6 +32477,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "토사", @@ -32018,6 +32566,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부(인)" @@ -32080,6 +32629,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "소 재 (조재목)", @@ -32178,6 +32728,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업반장(인)", @@ -32229,6 +32780,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업반장(인)", @@ -32287,6 +32839,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업반장(인)", @@ -32345,6 +32898,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "차량구분", @@ -32386,6 +32940,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "시간(분)" @@ -32420,6 +32975,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부(인)" @@ -32454,6 +33010,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "연장", @@ -32546,6 +33103,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "연료비", @@ -32606,6 +33166,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "짐내리는 인부", @@ -32682,6 +33245,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "운반대" @@ -32730,6 +33296,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -32809,6 +33376,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트 블 록", @@ -32928,6 +33496,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업반장", @@ -32990,6 +33559,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업반장", @@ -33059,6 +33629,7 @@ "E", "f" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "L", @@ -33183,6 +33754,7 @@ "formula_rows": [ "K" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "K", @@ -33237,6 +33809,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "적재(t1)", @@ -33342,6 +33915,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인원(명)" @@ -33392,6 +33966,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인원(명)" @@ -33432,6 +34007,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "① 드론준비시간(분)", @@ -33501,6 +34079,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "비계공", @@ -33566,6 +34145,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "건축목공", @@ -33614,6 +34194,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "건축목공", @@ -33668,6 +34249,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "부설장비", @@ -33762,6 +34344,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "무근구조물", @@ -33816,6 +34399,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "무근구조물", @@ -33870,6 +34454,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "무근구조물", @@ -33914,6 +34499,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "25", @@ -33988,6 +34574,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "25", @@ -34074,6 +34661,7 @@ "미 장 공" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "미 장 공" @@ -34106,6 +34694,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "무근콘크리트", @@ -34155,6 +34746,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "f₁" @@ -34191,6 +34783,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "Type-Ⅰ", @@ -34236,6 +34829,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "f₁" @@ -34270,6 +34864,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "Type-Ⅰ", @@ -34310,6 +34905,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "시멘트(kg)", @@ -34372,6 +34968,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "설 치", @@ -34425,6 +35022,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "철근공(인)", @@ -34517,6 +35115,7 @@ "박 리 제" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "횟수별", @@ -34655,6 +35254,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "문양 스티로폴(자재비 포함)", @@ -34716,6 +35316,7 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트믹서트럭 직접타설인경우", @@ -34801,6 +35402,9 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "명칭", @@ -34864,6 +35468,7 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -34911,6 +35516,7 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "포장두께(㎝)", @@ -34990,6 +35596,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트(레미콘)", @@ -35084,6 +35691,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트", @@ -35170,6 +35778,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트", @@ -35224,6 +35833,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "유공관 설치", @@ -35361,6 +35973,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "∅800mm", @@ -35504,6 +36117,7 @@ "흄 관" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "∅800mm", @@ -35612,6 +36226,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "절단기", @@ -35692,6 +36307,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "∅800mm", @@ -35800,6 +36416,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트 (레미콘)", @@ -35918,6 +36535,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "콘크리트 (레미콘)", @@ -36020,6 +36638,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "파형강관부설", @@ -36077,6 +36696,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "구체콘크리트 (레미콘)", @@ -36171,6 +36791,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "구체콘크리트 (레미콘)", @@ -36327,6 +36948,7 @@ "보 통 인 부" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "무근콘크리트", @@ -36413,6 +37035,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "구체콘크리트 (철근)", @@ -36492,6 +37115,7 @@ "철 근 공" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "결속선(R=0.9mm)", @@ -36559,6 +37183,9 @@ "철 물" ], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "자재", @@ -36652,6 +37279,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "자재", @@ -36734,6 +37364,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "자재", @@ -36795,6 +37428,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료비", @@ -36843,6 +37477,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -36932,6 +37567,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "뒷채움 자재비 및 운반비 별산", @@ -37065,6 +37701,9 @@ "f", "㎝(sec)" ], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": true, "variant_key": [ "소할(30%)", @@ -37157,6 +37796,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "기계", @@ -37240,6 +37880,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "뒷채움 자재비 및 운반비 별산", @@ -37357,6 +37998,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -37418,6 +38060,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "자재", @@ -37471,6 +38116,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -37532,6 +38178,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료비", @@ -37589,6 +38236,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -37668,6 +38316,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "재료", @@ -37787,6 +38438,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료비", @@ -37835,6 +38487,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료비", @@ -37883,6 +38536,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료", @@ -37945,6 +38599,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -38022,6 +38677,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료비", @@ -38070,6 +38726,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -38155,6 +38812,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "재료비" @@ -38197,6 +38855,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -38258,6 +38917,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "제작비", @@ -38312,6 +38972,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -38382,6 +39043,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "패 널 류 보, 드롭헤드, 강관파이프, 훅  클래프, 웨지핀" @@ -38425,6 +39087,9 @@ "내 부 패 널" ], "formula_rows": [], + "special_glyphs": [ + "x(U+0078)" + ], "capacity_formula_here": false, "variant_key": [ "패 널", @@ -38480,6 +39145,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "요 율" @@ -38524,6 +39190,7 @@ "crew_table": true, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "복 잡", @@ -38578,6 +39245,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "복 잡", @@ -38655,6 +39323,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "규격", @@ -38715,6 +39384,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통인부", @@ -38765,6 +39435,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작업반장", @@ -38833,6 +39504,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "40㎝이상∼60㎝미만", @@ -38885,6 +39560,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인 부", @@ -38944,6 +39620,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "증가율(%)" @@ -38980,6 +39659,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "×(U+00D7)" + ], "capacity_formula_here": false, "variant_key": [ "25㎝(17×17)", @@ -39063,6 +39745,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "35cm 이하", @@ -39127,6 +39810,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "모래 기초다짐", @@ -39199,6 +39885,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "(mm)", @@ -39274,6 +39961,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "골쌓기", @@ -39474,6 +40162,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "35cm 이하", @@ -39538,6 +40227,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "야면석(㎥) 깬잡석(㎥) 깬 돌(㎥) 견치돌(㎥)" @@ -39590,6 +40280,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "골쌓기", @@ -39780,6 +40471,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "야면석(㎥) 호박돌(㎥)", @@ -39836,6 +40528,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "상부의 두께(㎝) 하부의 두께(㎝)" @@ -39872,6 +40567,10 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)", + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "∼1.5", @@ -39918,6 +40617,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "메쌓기", @@ -39996,6 +40696,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "35cm 이하", @@ -40060,6 +40761,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "25㎝", @@ -40123,6 +40825,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "종 별", @@ -40207,6 +40910,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "35cm 이하", @@ -40282,6 +40986,9 @@ "굴 삭 기 (무한궤도)" ], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ∼60㎝미만", @@ -40373,6 +41080,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ∼60㎝미만", @@ -40464,6 +41174,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ~60㎝미만", @@ -40564,6 +41277,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ~60㎝미만", @@ -40657,6 +41373,9 @@ "굴 삭 기 (무한궤도)" ], "formula_rows": [], + "special_glyphs": [ + "∼(U+223C)" + ], "capacity_formula_here": false, "variant_key": [ "직경 40㎝이상 ∼60㎝미만", @@ -40748,6 +41467,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "뒷길이 평균 적용" @@ -40798,6 +41518,7 @@ "장 비" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "인 력", @@ -40868,6 +41589,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "직경 15㎝ 길이 4m" @@ -40912,6 +41634,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통 인부 (인)" @@ -40952,6 +41675,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보 통 인 부 (인)" @@ -41010,6 +41734,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "계수" @@ -41052,6 +41777,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "8 9", @@ -41218,6 +41946,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조약돌량(㎥)", @@ -41273,6 +42002,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조립 설치", @@ -41367,6 +42097,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조약돌량(㎥)", @@ -41438,6 +42169,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "조립 설치", @@ -41537,6 +42269,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "특별인부", @@ -41588,6 +42321,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "자재", @@ -41690,6 +42424,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통토사", @@ -41758,6 +42493,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "작 업 반 장", @@ -41802,6 +42538,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "4m 표준", @@ -41873,6 +42612,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보통구조", @@ -41965,6 +42705,7 @@ "E", "㎝(sec)" ], + "special_glyphs": [], "capacity_formula_here": true, "variant_key": [ "인력(10%)", @@ -42030,6 +42771,7 @@ "굴 삭 기" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "식생매트설치", @@ -42089,6 +42831,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "간 단 구 조", @@ -42140,6 +42883,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "단 끊 기", @@ -42203,6 +42947,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "보 통 인 부" @@ -42261,6 +43006,9 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [ + "~(U+FF5E)" + ], "capacity_formula_here": false, "variant_key": [ "어려운 조건", @@ -42302,6 +43050,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "어려운 조건", @@ -42370,6 +43119,7 @@ "굴 삭 기" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "사 면", @@ -42477,6 +43227,7 @@ "보 통 인 부" ], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "폭 1.5m 이하", @@ -42547,6 +43298,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "0.8㎥ 굴착기(우드그랩 부착)", @@ -42598,6 +43350,7 @@ "crew_table": false, "spaced_names": [], "formula_rows": [], + "special_glyphs": [], "capacity_formula_here": false, "variant_key": [ "0.8㎥ 굴착기",