From abd65d16625fd5d5829245f40b5ad759333425b1 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sun, 13 Sep 2026 11:24:52 +0900 Subject: [PATCH] auto: 2026-09-13 11:24 (EOMSANGDON-HOME) --- .../00_분석_요약과_읽는법.md | 123 + .../01_전체_구조.md | 106 + .../02_데이터셋과_파일형식.md | 137 + .../03_계산로직과_Aislo_비교.md | 142 + .../04_계산_데이터계보.md | 573 + .../05_재구현_판정기준과_근거목록.md | 59 + .../06_규칙1_RATE와_규칙7_간접비_끝전조정.md | 140 + .../07_규칙2_3_4_5_직접비_단가_중기_자재.md | 100 + .../08_규칙6_8_9_재계산_변경설계_일괄변경.md | 98 + .../09_통합_재구현_명세.md | 131 + .../10_System_186개_파일분석장부.md | 148 + .../11_CPM_계산코어_정적분석.md | 399 + .../12_원가계산_4형식과_RATE표_복원.md | 408 + .../13_통제시험_목록.md | 141 + .../14_최종_분석완료_보고서.md | 181 + .../TPM_KAN_RATE.dfm | Bin 0 -> 192123 bytes .../TPM_KAN_RATE.json | 15210 +++++ .../stmate_competitor_analysis/TWM_KANJUB.dfm | Bin 0 -> 348069 bytes .../TWM_KANJUB.json | 26695 ++++++++ .../TWM_KAN_RATE.dfm | Bin 0 -> 175236 bytes .../TWM_KAN_RATE.json | 19393 ++++++ .../stmate_competitor_analysis/_tmp.txt | 43 + .../analyze_system.py | 221 + .../core_cpm_static.json | 4535 ++ .../core_formula_strings.json | 423 + .../disassemble_exports.py | 81 + .../evidence_extract.json | 28107 ++++++++ .../evidence_extract.py | 136 + .../export_disassembly.json | 41672 ++++++++++++ .../jb_block_map.py | 58 + .../jb_expansion_diff.py | 36 + .../stmate_competitor_analysis/jb_shapes.py | 9 + .../kanjub_all_strings.txt | 13689 ++++ .../stmate_competitor_analysis/parse_dfm.py | 137 + .../rate_grid_defs.py | 30 + .../stmate_competitor_analysis/round_table.py | 44 + .../rounding_callsites.py | 109 + .../rounding_dispatcher_dump.py | 43 + .../rounding_symbol_matrix.py | 38 + .../settings_axis_map.py | 50 + .../settings_axis_map.txt | 565 + .../stmate_strings.txt | 503 + .../system_inventory.csv | 187 + .../system_structures.json | 54432 ++++++++++++++++ 44 files changed, 209332 insertions(+) create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/00_분석_요약과_읽는법.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/01_전체_구조.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/02_데이터셋과_파일형식.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/03_계산로직과_Aislo_비교.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/04_계산_데이터계보.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/05_재구현_판정기준과_근거목록.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/06_규칙1_RATE와_규칙7_간접비_끝전조정.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/07_규칙2_3_4_5_직접비_단가_중기_자재.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/08_규칙6_8_9_재계산_변경설계_일괄변경.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/09_통합_재구현_명세.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/10_System_186개_파일분석장부.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/11_CPM_계산코어_정적분석.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/12_원가계산_4형식과_RATE표_복원.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/13_통제시험_목록.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/14_최종_분석완료_보고서.md create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.dfm create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.dfm create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.dfm create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/_tmp.txt create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/analyze_system.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/core_cpm_static.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/core_formula_strings.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/disassemble_exports.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/export_disassembly.json create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/jb_block_map.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/jb_expansion_diff.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/jb_shapes.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/kanjub_all_strings.txt create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/parse_dfm.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/rate_grid_defs.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/round_table.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/rounding_callsites.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/rounding_dispatcher_dump.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/rounding_symbol_matrix.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/settings_axis_map.py create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/settings_axis_map.txt create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/stmate_strings.txt create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/system_inventory.csv create mode 100644 scratch/orca_artifacts/stmate_competitor_analysis/system_structures.json diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/00_분석_요약과_읽는법.md b/scratch/orca_artifacts/stmate_competitor_analysis/00_분석_요약과_읽는법.md new file mode 100644 index 00000000..3307a757 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/00_분석_요약과_읽는법.md @@ -0,0 +1,123 @@ +# STmate 경쟁 프로그램 분석 — 요약과 읽는 법 + +> 재구현 상세판(2026-09-13): 00~04는 전체 구조와 데이터 계보, 05~09는 동일 계산 엔진 구현 규칙, 10은 System 전수 장부, 11은 실행모듈에서 복원한 계산 코어, 12는 원가계산 4형식과 RATE표, 13은 남은 경계를 가를 통제시험, 14는 최종 완료 보고서다. +> +> **처음이면 14번(최종 보고서)부터 읽는 것이 빠르다.** + +| 문서 | 용도 | Orca 아티팩트 | +|---|---|---| +| 00 분석 요약과 읽는 법 (이 문서) | 전체 인덱스, 결론, Aislo 비교 | https://share.onorca.dev/a/uHEsfWTvedw1 | +| 01 전체 구조 | 실행 기술, 모듈, 파일 흐름, 기능 구조 | https://share.onorca.dev/a/jjxDJTOtRGq7 | +| 02 데이터셋과 파일형식 | DBF 스키마, 프로젝트 패키지, 기준자료, 암호화 경계 | https://share.onorca.dev/a/boO2-Fo4CFNi | +| 03 계산로직과 Aislo 비교 | 확인된 공식, 계층 합산, 단가·제비율 모델, 차이와 권고 | https://share.onorca.dev/a/fyN0SVUu3Oum | +| 04 계산 데이터계보 | 입력 필드 → 계산 → 결과 필드 단계별 추적 | https://share.onorca.dev/a/S1E38cIhGiz6 | +| 05 재구현 판정기준과 근거목록 | 확정등급, 조사 표본, 파이프라인, 중간값 계약 | https://share.onorca.dev/a/8ktCQIIDvMuP | +| 06 규칙1·7 | RATE 좌표, 간접비 순서, 끝전·VAT | https://share.onorca.dev/a/z2v9o5Wfaim0 | +| 07 규칙2·3·4·5 | 직접비 단가, 중기, BDQTY, 자재 채택 | https://share.onorca.dev/a/o0HLxAXG8Lhg | +| 08 규칙6·8·9 | 재계산, 변경설계, 일괄변경 | https://share.onorca.dev/a/z58ZjH9Nu_Pb | +| 09 통합 재구현 명세 | 내부 데이터셋, 계산 순서, 호환 어댑터, 골든시험 | https://share.onorca.dev/a/7eULzjbfyZHM | +| 10 System 186개 파일 분석장부 | 전 파일별 판독 상태, 실제 형식, 핵심 모듈과 기준자료 구조 | https://share.onorca.dev/a/zHj5IbV4dfnL | +| 11 CPM 계산코어 정적분석 | 식 평가, 반올림, 간접비·안전비·변경설계·끝전조정 재구현 명세 | https://share.onorca.dev/a/U6HIpHCbt9XF | +| 12 원가계산 4형식과 RATE표 복원 | 일반·수공·실적일반·실적수공 공식, 화면 열, 내부 선택값 | https://share.onorca.dev/a/y-R9TQqgEFfo | +| 13 통제시험 목록 | 정적 분석으로 못 가르는 경계를 시험 11개로 분리, 우선순위·완료판정 | https://share.onorca.dev/a/lcmxdrG2SWvE | +| 14 최종 분석완료 보고서 | 도달 수준, A등급 확정 목록, 남은 것, 완료 판정 기준, 산출물 | https://share.onorca.dev/a/AmgldP7q_Qzc | + +중요: C등급으로 표시한 규칙은 “분석 누락”이 아니라 보유 정적 자료에 입력 전후 대응값이 없거나 레코드가 난독화되어 확정 불가능한 경계다. 문서에는 각 경계를 확정할 STmate 통제 대조시험까지 명시했다. System 폴더는 186/186개 모두 내부 구조까지 판독했으며 미판독 파일은 0개다. + +**등급 갱신 이력 (2026-09-13)** — 11·12번의 폼 리소스 복원 결과로 06·08의 다음 판정이 올라갔다. + +| 항목 | 이전 | 현재 | 근거 | +|---|---|---|---| +| RATE 네 표의 행·열 라벨 | 미확정 | 그리드별 열 제목·행 수 확정 (남은 것은 시작 좌표) | 12번 §8·§9 | +| 요율 순환 의존성의 STmate 처리 | B | **A** — 고정점 반복 없음, 사용자 수동 확정 | 11번 §8 | +| `RATE_RA.DBF` | C | **A/B** — 실적형식 규모·기간·안전비 그리드 대응 | 12번 §9 | +| 변경설계 간접비 계산모드 | 권고 수준 | **A** — 방법 A/B 공식과 `cBx_CH_BO` 3모드를 코드에서 확인 | 11번 §10, 12번 §10.3 | +| 끝전조정 보존 필드 | 3칸 | **6칸** — 함수·자리수가 설정별로 따로 | 11번 §11, 12번 §10.2 | +| 반올림 음수·절반값 방향 | C | **A** — 최근접-짝수(은행가), 0 대칭. `SetRoundMode` 미사용·`SimpleRoundTo` 미임포트로 확정 | 11번 §4.2 | +| 내부 계산 ↔ 출력 XLSX 반올림 | 같다고 가정 | **다름** — 20개 경계 중 10개가 원 단위에서 갈림 | 11번 §4.2 경계표 | +| 간접비 항목별 밑수 | 추정 서술 | **A** — 화면 그리드 묶음 제목에 공식이 그대로 적혀 있음 | 06번 §3 | +| 환경보전비·보증수수료 밑수 | 직접공사비 | **정정** — `재료비+직접노무비+산출경비` (실적형식만 직접공사비) | 06번 §3, 04번 §7 | +| `JB_R` 35열 확장 시점 | "2020 이후" | **2020-05-27 확정** — 기존 1~20열은 한 셀도 안 바뀜 | 10번 §4 | +| `JB_R` 열 의미 | 미상 | **1~5 간접노무비 / 6~10 기타경비** (공종 5개 순서 확정), 21·26 국가유산 | 10번 §4 | +| 원가계산 설정 선택축 | 16축 목록 | **83축 전수** — 공통 29 + 형식별 12/11/16/15 | 12번 §10.1-2 | + +분석일: 2026-09-13 +대상: `C:\경영정보(주)` +비교 대상: Aislo 저장소의 B08 수량 산출·B09 견적 계산 영역 + +## 결론 + +STmate는 **Delphi 6 네이티브 모듈 + Apollo/Six 계열 DBF 저장소 + ZIP 기반 교환 파일**로 구성된 로컬 설계예산 프로그램이다. 핵심 업무 모델은 다음 네 층으로 요약된다. + +1. 기초 단가·코드 자료를 시기별 파일로 배포한다. +2. 자재(M)·노임(L)·중기 취득가(S)를 원천으로 시간당 중기사용료(X), 일위대가(B), 단가산출(D)을 조립한다. +3. 공종별 수량에 재료·노무·경비 단가를 곱해 내역 행을 만든다. +4. 행을 공종 계층으로 합산하고 제비율·법정경비·일반관리비·이윤·부가세를 적용한다. + +분석의 중심은 특정 프로젝트 금액이 아니라 **값의 출처와 전달 경로**다. STmate는 공통 기초자료에서 자원 단가를 가져오고, 공종별 산출근거가 자원 코드와 품을 참조해 복합단가를 만들며, 프로젝트 수량이 그 단가를 받아 내역금액이 되고, 내역의 비목별 합계가 제비율 계산의 밑수로 전달되는 구조다. + +```text +노임·자재·중기 기초자료 + → 출처별 후보단가와 채택단가 + → 일위대가·단가산출(자원코드 × 품, 할증, 기계 Q식) + → 공종별 재료/노무/경비 단가 + → 프로젝트 수량 × 단가 + → 직접재료비·직접노무비·산출경비 + → 제비율별 고유 밑수 × 적용률 + → 순공사원가 → 일반관리비 → 이윤 → 부가세 → 총공사비 +``` + +## Aislo와의 핵심 비교 + +| 관점 | STmate | Aislo | 판단 | +|---|---|---|---| +| 제품 범위 | 견적·내역 작성 중심 | 임도 선형·횡단·구조물 수량부터 견적까지 | Aislo가 상류 설계 자동화 범위가 넓다 | +| 실행 구조 | 단일 Windows 데스크톱, 다수 CPM 플러그인 | FastAPI/Python 계산 + TypeScript 웹 UI | Aislo가 배포·협업·감사에 유리, STmate는 오프라인 운영이 단순 | +| 단가 모델 | 코드 기반 계층, 4안·복수 단가 슬롯 | 같은 계층을 명시적 타입과 재귀 계산으로 구현 | 핵심 모델은 유사하나 Aislo가 의미와 오류를 코드로 더 명확히 표현 | +| 저장 형식 | DBF/SMT, 일부 레코드 암호화, STC ZIP | UTF-8 JSON, 매니페스트, SHA-256, 프로젝트 스냅샷 | Aislo가 이식성·검증성·버전 추적에서 우세 | +| 결측 처리 | 데이터 필드에서 0과 미입력의 구분이 불명확한 자리 존재 | 채택 단가가 없으면 오류/경고로 금액 확정을 차단 | Aislo 방식 유지 권장 | +| 재현성 | 프로젝트 파일 안에 단가·제비율 테이블을 함께 보관 | 기준자료 버전과 단가 스냅샷 지문을 기록 | 둘 다 과거 결과 고정 지향, Aislo가 근거 추적을 더 명시화 | +| 계산 투명성 | 결과 DBF에는 성분별 단가·금액이 남음 | 산출 근거·출처·미결·단수 위치를 별도 모델로 제공 | Aislo 우세 | + +## 당장 반영할 가치가 높은 점 + +- STmate의 **프로젝트 한 묶음 교환**은 실용적이다. Aislo도 프로젝트 내보내기에 입력, 채택 단가 스냅샷, 계산 설정, 산출 결과, 매니페스트를 한 파일로 묶으면 장기 보관과 인수인계가 쉬워진다. +- STmate의 **당초/변경 및 최대 4개 안 병렬 필드**는 설계변경 비교에 유용하다. Aislo에는 DB 열을 네 벌 복제하기보다 기존 프로젝트 버전/스냅샷을 이용한 비교 화면이 더 적합하다. +- STmate의 **보고서 서식 데이터화**(`SET_REP`)는 출력물 요구가 많은 실무에 강하다. Aislo도 보고서별 열 이름·폭·표시 여부를 데이터로 관리할 가치가 있다. +- 단가 슬롯은 이미 Aislo가 6개 원천과 채택 슬롯으로 모델링하고 있어 방향이 맞다. + +## 문서 구성 + +전체 13개 문서의 용도와 링크는 맨 위 표에 있다. 읽는 순서는 다음을 권한다. + +1. **처음 보는 경우** — 00(이 문서) → 01 전체 구조 → 02 데이터셋 +2. **계산을 재구현하려는 경우** — 05 판정기준 → 11 계산코어 → 12 4형식·RATE → 06·07·08 규칙 → 09 통합 명세 +3. **파일 하나를 추적하려는 경우** — 10 전수 장부 → `system_inventory.csv` +4. **값의 출처를 따라가려는 경우** — 04 계산 데이터계보 + +## 분석 경계와 신뢰도 + +이 분석은 설치 파일과 맛보기 프로젝트를 수정하지 않은 정적 분석이다. 정상 실행을 시도했으나 프로세스가 창을 노출하지 않아 UI 동작은 확인하지 못했다. 암호화된 기준자료는 비밀번호 추측이나 우회를 하지 않았다. + +- **확인**: 파일 헤더, DBF 스키마, 평문 레코드, ZIP 목록, 실행 파일 버전 정보, Aislo 소스 +- **강한 추론**: 모듈명과 스키마가 함께 가리키는 업무 흐름 +- **미확인**: 각 그리드가 `RATE*` 행렬에 적재되는 시작 행 좌표, 구간 경계의 포함 방향(`<`/`<=`), `ROUNDUP`·`MINT`의 음수 방향, 암호화 기준자료의 실제 값, UI 조작 순서 + +제비율 표의 **화면상 명칭 자체는 더 이상 미확인이 아니다** — 폼 리소스에서 15개 그리드의 열 제목과 행 수를 복원했다(12번 §8). + +미확인 항목은 모두 **13번 통제시험 목록**에 시험 단위로 옮겨 놓았다. 어느 시험이 무엇을 확정하는지, 우선순위는 무엇인지가 그 문서에 있다. + +## 용어 대조 — 같은 것을 다르게 부르는 자리 + +문서마다 출처가 달라 용어가 갈리는 곳이 있다. 아래는 **같은 것**이다. + +| 이 문서군의 표기 | 같은 뜻의 다른 표기 | 비고 | +|---|---|---| +| 제비율 | 간접비, 경비율 | STmate 화면은 「제비율」 | +| 산출경비 | 직접경비 | 03번만 「직접경비」를 쓴다 | +| 국가유산(수리) | 문화재(수리) | 2024년 법령 개정으로 명칭이 바뀐 같은 공종 | +| 제잡비 표준시장방식 | 제잡비 실적공사방식 | **화면과 내부 이름이 다르다** — 12번 §10.1-3 | +| 산림조합 형식 | 임 협 식 | 부가세 옵션. 역시 화면≠내부 | +| 실적형식 `TA`/`SA` | 표준시장단가 형식 | 같은 것 | + +**등급 표기**는 05번 §「확정등급」이 유일한 기준이다 — `A 확정 / B 강한 추정 / C 미확정`. `A/B`는 구조는 확정이나 한 칸이 남은 경우다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/01_전체_구조.md b/scratch/orca_artifacts/stmate_competitor_analysis/01_전체_구조.md new file mode 100644 index 00000000..d6ea8b44 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/01_전체_구조.md @@ -0,0 +1,106 @@ +# STmate 전체 구조 분석 + +## 1. 제품 식별 + +- 주 실행 파일: `System\STmate8.Exe` +- 파일 설명: 설계예산시스템 +- 제품명: 내역서작성 프로그램 +- 회사: 경영정보(주) +- 파일 버전: 26.9.1.0 +- 제품 버전: w26.09 +- 실행 파일 크기: 145,408바이트 + +주 실행 파일이 작은 대신 기능 대부분을 `*.CPM` 모듈로 분리했다. CPM은 헤더가 `MZ`인 Windows PE 실행 모듈이므로 단순 데이터 파일이 아니라 동적으로 적재되는 코드 모듈로 판단된다. + +## 2. 기술 스택 + +설치 파일에는 `RTL60.BPL`, `DBRTL60.BPL`, `BDERTL60.BPL`, `designide60.bpl`이 있다. 이는 Delphi 6 런타임/DB 런타임 구성과 일치한다. `Apollo5D6.bpl`, `SDE32/50.DLL`, `SDECDX/NSX/NTX50.DLL`, `IDDBAS32.DLL`, `IDPDX32.DLL`은 DBF·dBase·Paradox 계열 데이터 접근을 뒷받침한다. `RealGrid6*.bpl`은 표 기반 UI를 담당하는 것으로 보인다. + +구조는 대략 다음과 같다. + +```text +STmate8.Exe + ├─ Delphi/Borland 런타임(BPL) + ├─ DBF 엔진(Apollo/Six/BDE 계열) + ├─ RealGrid 표 UI + ├─ ST_CPM/*.CPM 기능 모듈 + ├─ ST_BSC/* 기준 단가·제비율 배포자료 + └─ 프로젝트 폴더(DBF+SMT+INI) ↔ STC 압축 파일 +``` + +## 3. 기능 모듈 분해 + +파일명에 기반한 기능 구분이다. 괄호 안은 신뢰도다. + +| 모듈 | 해석 | +|---|---| +| `ST_Boq.CPM` | 내역서 편집·집계 핵심(높음) | +| `STmateQty8.CPM` | 수량 관련 기능(높음) | +| `ST_EdiLWi.CPM`, `ST_P_iLWi.CPM` | 일위대가 편집·출력(높음) | +| `ST_EdSan.CPM`, `ST_P_San.CPM`, `ST_SanCal.CPM` | 단가산출서 편집·출력·계산(높음) | +| `ST_Jabpum.CPM` | 잡품/자원 자료 관리(중간) | +| `ST_KanJub.CPM` | 간접비·제비율 계산(높음) | +| `ST_P_ConEst.CPM` | 원가계산서 출력(높음) | +| `ST_P_Collect.CPM` | 자원 집계표 출력(높음) | +| `ST_P_Excav.CPM`, `ST_P_Joong.CPM` | 굴착/중기 관련 출력(중간) | +| `ST_P_Nae.CPM`, `ST_P_List.CPM` | 내역·목록 출력(높음) | +| `ST_P_XLS.CPM` | Excel 내보내기(높음) | +| `ST_Prt.CPM` | 공통 인쇄(높음) | +| `ST_U_Archive.CPM` | 프로젝트 압축·보관(높음) | +| `ST_U_ChgAmt.CPM`, `ST_U_ChgCode.CPM` | 단가/코드 일괄 변경(높음) | +| `ST_U_Convert.CPM` | 외부/구형 형식 변환(중간) | +| `ST_U_Merge.CPM`, `ST_U_ConBD.CPM` | 프로젝트·내역 병합(중간) | +| `ST_U_DelCode.CPM`, `ST_U_DelPrj.CPM` | 코드·프로젝트 삭제(높음) | +| `ST_U_Indx.CPM` | 색인 재구축(높음) | + +이름이 `Ed`, `P`, `U`로 반복되는 점은 편집(Editor), 출력/인쇄(Print), 유틸리티(Utility) 계열을 접두어로 구분한 플러그인 구조를 시사한다. + +## 4. 업무 흐름 + +정적 자료가 가리키는 전체 흐름은 다음과 같다. + +```text +시기별 기준자료 + ├─ 노임·기계경비 + ├─ 자재단가 + ├─ 표준일위대가 + ├─ 표준시장단가 + └─ 제비율 + ↓ 선택/가져오기 +프로젝트 단가 마스터(COSTN/COSTA + SMT) + ↓ 코드 참조와 상세 구성 +수량/공종 자료(BDQTY, QCODE, KONGJONG) + ↓ 수량 × 3성분 단가 +내역서(BOQ/BOQ11/BQM) + ↓ 계층 소계·제비율 +원가계산/집계/보고서(SET_REP 설정) + ↓ +인쇄·Excel·STC 보관 +``` + +## 5. 프로젝트와 기준자료의 분리 + +`ST_BSC`는 공급자가 배포하는 시기별 기준자료이고, `STmate 자료\설계자료\실습(맛보기)`는 프로젝트 작업본이다. 프로젝트 STC를 풀면 확장 폴더와 바이트 단위로 동일한 23개 파일이 나온다. 즉 STC는 별도 논리 포맷이 아니라 **프로젝트 디렉터리의 무손실 ZIP 패키지**다. + +이 분리는 중요한 설계 원칙을 보여준다. + +- 기준자료가 업데이트되어도 프로젝트가 가진 작업본은 독립적으로 보존된다. +- 프로젝트 전달은 단일 파일로 가능하다. +- 계산 결과뿐 아니라 설정·단가·제비율·보고서 설정이 함께 이동한다. + +## 6. Aislo 구조와 비교 + +Aislo는 `B08_Quantity`에서 설계 결과를 공종·자재 인계 데이터로 만들고 `B09_Estimation`에서 단가 계층, 내역서, 법정경비, 원가계산서를 생성한다. STmate가 하나의 데스크톱 프로그램 안에서 표 편집 중심으로 모든 기능을 묶은 반면 Aislo는 다음처럼 책임을 분리한다. + +```text +GIS/선형/횡단/구조물(B03~B07) + ↓ 명시적 handoff +수량 산출(B08) + ↓ work_items + materials +단가·일위대가·내역·원가(B09) + ↓ API +웹 UI 및 프로젝트 저장 +``` + +STmate의 장점은 사용자가 프로젝트 폴더만 이해하면 되는 단순한 오프라인 운영이다. Aislo의 장점은 설계와 수량의 자동 연결, 계산 책임 분리, 서버 기반 협업, 테스트 가능한 계산 모듈이다. + diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/02_데이터셋과_파일형식.md b/scratch/orca_artifacts/stmate_competitor_analysis/02_데이터셋과_파일형식.md new file mode 100644 index 00000000..45e1ba46 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/02_데이터셋과_파일형식.md @@ -0,0 +1,137 @@ +# STmate 데이터셋과 파일 형식 분석 + +## 1. 파일군 개요 + +| 확장자 | 수량 | 역할 | +|---|---:|---| +| `.CPM` | 46 | Windows PE 기능 모듈 | +| `.DBF` | 19 | 프로젝트의 구조화 테이블 | +| `.SMT` | 4 | DBF memo 보조 저장소(Six memo) | +| `.STBSC` | 28 | 암호화 ZIP 기반 기준자료 배포 패키지 | +| `.BSC` | 7 | 대형 기준 코드/단가 테이블, 암호화 DBF 계열 | +| `.JB_R` | 27 | 일반 공사 제비율 표 | +| `.JB_RA` | 14 | 표준시장단가용 제비율 표 | +| `.CSTA` | 6 | 표준시장단가 대형 테이블 | +| `.STC` | 1 | 프로젝트 전체 ZIP 패키지 | + +## 2. STC 프로젝트 패키지 + +`실습(맛보기).STC`는 암호화되지 않은 표준 ZIP이다. 내부 파일은 확장된 프로젝트 폴더와 SHA-256 기준으로 모두 동일하다. + +```text +QCODE.SMT, Start8x.Ini, BDQTY.DBF, BOQ.DBF, BOQ11.DBF, +BQM.DBF, COSTA.DBF, COSTN.DBF, GRASS.DBF, KONGJONG.DBF, +PRJLST.DBF, QCODE.DBF, RATE*.DBF, SET_REP.DBF, SYSINFO.DBF, +STini.MEM, COSTN.SMT, PRJLST.SMT +``` + +프로젝트 하나에 입력, 계산 중간물, 결과, 출력 설정이 함께 들어간다. 장점은 보관과 전달이며, 단점은 같은 사실이 여러 파생 테이블에 중복될 수 있다는 점이다. + +## 3. 주요 DBF 테이블 + +### `PRJLST.DBF` — 프로젝트 메타데이터 + +1개 레코드, 48필드. 프로젝트명·코드·분류와 4개 안별 재료/노무/경비/총액, 메모, 최종 단계, 옵션을 가진다. + +주요 필드: `PNUM`, `PNAME`, `PCODE`, `PCLASS`, `MCOST1..4`, `LCOST1..4`, `SCOST1..4`, `TCOST1..4`, `COSTW1..4`, `PRJ_MEMO`, `FINL_LV`, `ACTTYP`, `ACTOPT`. + +### `COSTN.DBF` — 단가 제목/마스터 + +71개 레코드, 101필드. 코드·명칭·규격·단위와 네 안별 총/재료/노무/경비 단가를 저장한다. 6개 가격 원천과 쪽수, 채택 관련 필드도 가진다. + +주요 필드: + +- 식별: `CODE`, `NAME`, `SIZE`, `UNIT` +- 연결: `BQCODE`, `EQCODE`, `CONTCODE`, `WQCODE`, `JDCODE` +- 성분별 단가: `TAMT1..4`, `LAMT1..4`, `MAMT1..4`, `SAMT1..4` +- 6개 원천/4개 안: `AMT_11..64`, `PG_11..54` +- 표시·분류: `GUN`, `GUN2`, `IFORM`, `ACTTYP`, `EDT_DATE` + +본문은 암호화되어 있으나 스키마는 평문이다. memo 내용은 `COSTN.SMT`에 저장된다. + +### `COSTA.DBF` — 별도 단가 자료 + +53필드. 구조가 COSTN의 축약형이며 `CODEA`, `AAMT1..4`, 성분별 단가, 환율/달러 관련 필드를 포함한다. 맛보기에는 레코드가 없다. + +### `BOQ11.DBF` — 내역서 + +36개 레코드, 83필드. 말단 공종과 계층 제목·계·합계를 같은 테이블에 저장한다. + +- 식별: `ITNUM`, `NAME1`, `SIZE1`, `UNIT1`, `BDCODE1` +- 수량: `QTY1..4` +- 단가: `TAMT1..4`, `LAMT1..4`, `MAMT1..4`, `SAMT1..4` +- 금액: `T_AMT1..4`, `L_AMT1..4`, `M_AMT1..4`, `S_AMT1..4` +- 계층: `SORTCODE`, `ENDCODE`, `ITM_TYP` +- 특수 수량: `QTY1_B`, `QTY1_N`, `QTY1_O`, `QTY1_H` + +`BOQ.DBF`는 같은 스키마의 빈 작업 테이블이고, `BOQ11.DBF`가 맛보기의 실제 내역 판이다. + +### `BDQTY.DBF` — 단가/공종별 수량 상세 + +212개 레코드, 37필드. `BDCODE`, 참조 `CODE`, 명칭·규격·단위, 네 안별 수량(`QTY1..4`), 비율(`RATE`), 원수량·할증 계열(`X_QTY1..3`, `X_HAL1..3`)을 가진다. 본문은 암호화되어 값 자체는 확인하지 않았다. + +### `QCODE.DBF` — 수량 코드/식 + +15필드. `CODE`, `NAME`, `BQCODE`, `QTY0..9`, `IFORM`, `XCODE`로 구성된다. 맛보기에는 레코드가 없으나 수량 계산식 또는 수량 슬롯을 코드화하는 자리로 보인다. + +### `KONGJONG.DBF` — 공종 분류 + +`CODE`, `NAME`, `SIZE` 세 필드의 작은 분류표다. + +### `RATE*.DBF` — 제비율 행렬 + +- `RATE`: 41행 × 10열 +- `RATE_A`: 25행 × 10열 +- `RATE_B`: 35행 × 10열 +- `RATE_M`: 25행 × 10열 +- `RATE_R`: 50행 × 35열 +- `RATE_RA`: 50행 × 20열 + +모두 수치 행렬이며 열 이름은 `RATE0..9` 또는 `RATE_01..35`다. 이름·밑수 규칙이 행렬에 함께 담기지 않아 프로그램 코드/화면 정의와 결합되어야 의미가 생긴다. 이 점은 외부 분석과 장기 유지보수에 불리하다. + +### `SET_REP.DBF` — 보고서 설정 + +75개 레코드, 28필드. 보고서 식별자, 명칭, 머리말, 필드 수, 최대 11개 열의 이름과 폭, 페이지 부가설정을 가진다. 맛보기에는 재료비·노무비·경비·일식/견적 목록표 등이 등록되어 있다. + +### `SYSINFO.DBF` — 시스템 설정 + +`PART`, `NUM`, `LOG`, `CHR`, `DATE`의 범용 키-값 구조다. 본문은 암호화되어 있다. + +## 4. 암호화와 압축 경계 + +- STC 프로젝트 패키지: ZIP, 암호화 없음. +- STBSC 기준자료: ZIP 헤더이며 각 엔트리의 암호화 플래그가 켜져 있다. 내부 이름은 `CH_NAME.ST`, `COST.ST`, `info.ST`, `MEM.ST`, `XDET.ST` 등이다. +- DBF: 버전 바이트 `03`인 표는 평문, `06/E5/E6`인 일부 표는 스키마만 읽히고 레코드 본문은 암호화되어 있다. 설치된 Apollo/Six 계열 엔진과 일치하는 현상이다. +- SMT: 헤더에 `SiXMemo`가 확인된다. + +암호화는 기준자료 무단 열람 억제와 제품 종속성 유지에는 유리하지만 데이터 이식, 자동 검증, 장애 복구에는 불리하다. + +## 5. 시기별 기준자료 체계 + +폴더 이름이 데이터의 버전 메타데이터 역할을 한다. + +- 노임·기계경비: 2025 상/하, 2026 상/하 +- 표준시장단가: 2025 상/하, 2026 상/하 및 기관별 변형 +- 표준일위대가: 2026 상반기, 건축/기계설비/전기/토목/통신 분리 +- 시설공통자재: 2025 상/하, 2026 상반기와 수정판 +- 제비율: 2007~2026의 여러 시행일, 일반(`JB_R`)과 표준시장(`JB_RA`) 분리 + +파일명에는 연도·반기·기관·수정일이 있으나 기계 판독 가능한 매니페스트나 해시 목록은 보이지 않는다. + +## 6. Aislo 데이터셋과 비교 + +Aislo는 `resources/data_cost_input_value`에 JSON 자료와 `_manifest.json`을 둔다. 각 항목에는 `dataset_id`, 시행일, SHA-256, 크기가 있고 미확보·선택대기 값도 별도로 기록한다. 프로젝트가 채택한 단가는 UTF-8 JSON 스냅샷으로 저장하고 다시 읽을 때 해시를 검증한다. + +| 속성 | STmate | Aislo | +|---|---|---| +| 구조 표현 | 고정폭 DBF 열 | 명명된 JSON 객체/배열 | +| 문자 인코딩 | CP949 중심 | UTF-8 | +| 버전 | 파일명·내부 날짜 | 매니페스트의 시행일/ID | +| 무결성 | 관찰 가능한 해시 없음 | SHA-256 검증 | +| 결측 | 빈칸/0 혼용 가능 | `None`·미결 목록·오류로 구분 | +| 단가 출처 | AMT/PG 슬롯 | 슬롯 + 출처/근거/provenance | +| 과거 프로젝트 고정 | 프로젝트에 테이블 동봉 | 프로젝트 단가 스냅샷 + 데이터셋 버전 | +| 교환 | 단일 STC | 현재는 구성요소 중심; 단일 패키지 보강 가치 있음 | + +권장 방향은 STmate 형식을 모방하는 것이 아니라, Aislo의 명시적 JSON/매니페스트 모델을 유지하면서 **단일 프로젝트 패키지**라는 운영상 장점만 가져오는 것이다. + diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/03_계산로직과_Aislo_비교.md b/scratch/orca_artifacts/stmate_competitor_analysis/03_계산로직과_Aislo_비교.md new file mode 100644 index 00000000..c2531c88 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/03_계산로직과_Aislo_비교.md @@ -0,0 +1,142 @@ +# STmate 계산 로직과 Aislo 비교 + +## 1. 내역 계산의 의미 + +`BOQ11.DBF`의 말단 행은 프로젝트 수량과 단가 마스터의 성분별 단가가 만나는 지점이다. + +```text +총단가 = 재료단가 + 노무단가 + 경비단가 +총금액 = 수량 × 총단가 +재료금액 = 수량 × 재료단가 +노무금액 = 수량 × 노무단가 +경비금액 = 수량 × 경비단가 +총금액 = 재료금액 + 노무금액 + 경비금액 +``` + +특정 프로젝트의 숫자는 로직 근거로 사용하지 않는다. 단수 처리와 밑수 전달은 STmate가 생성한 여러 실무 XLSX의 셀 수식을 교차해 판단하며, 필드 단위 데이터 계보는 별도 `04_계산_데이터계보.md`에 정리했다. + +## 2. 계층 합산 + +말단 행 위에 제목과 계/합계/총계 행을 같은 테이블에 둔다. `BDCODE`가 행의 성격을 구분한다. + +- `B...`, `D...`: 계산 가능한 말단 단가/내역 행 +- `T2..T5`: 계층 제목/상위 집계 +- `E2..E5`: 계, 합계, 총계, 총합계 +- `:`: 페이지 넘김 같은 출력 제어 행 + +모든 집계는 재료·노무·경비 성분을 따로 합산한 뒤 총액과 맞춘다. 제목·소계 행 자체가 새로운 계산 원천은 아니며, 하위 말단 행 결과를 그룹별로 집계한 파생 결과다. + +## 3. 단가 조립 계층 + +DBF 코드·필드와 모듈 구성을 종합하면 단가 계층은 다음과 같다. + +```text +M 자재 ──────────────┐ +L 노임 ───────┐ │ +S 중기 취득가 ─┴→ X 시간당 중기사용료 + ├→ B 일위대가 → 내역서 + └→ D 단가산출 → 내역서 +W 일식/견적 ─────────────────────→ 내역서 +``` + +각 상위 단가는 하위 코드의 수량을 곱해 재료·노무·경비로 나누어 합산하는 참조 모델이다. `COSTN`의 `CODE`, `BQCODE`, `EQCODE`, 다수 `AMT`, `PG` 필드가 이 구조를 뒷받침한다. + +이 부분은 Aislo `PriceBook`의 모델과 매우 가깝다. Aislo는 `PriceKind`로 M/L/S/X/B/D/W를 명시하고 `PriceDetail(parent_code, ref_code, quantity)`를 재귀 해석한다. 순환 참조, 상세 없음, 채택 단가 없음은 오류로 중단한다. + +## 4. 복수 단가 원천 + +STmate 설정에는 가격 정보, 물가 자료, 물가 정보, 거래 가격, 유통 물가, 적용 단가가 있고 `COSTN`은 원천별 금액(`AMT_`)과 쪽수(`PG_`)를 가진다. 프로젝트/내역 테이블은 네 벌의 수량·단가·금액 슬롯을 가진다. + +두 축을 구분해야 한다. + +- **원천 슬롯**: 같은 자재/노임의 여러 조사·공표 단가 중 무엇을 채택할지 +- **설계 안 슬롯**: 당초/변경 또는 최대 4개 대안을 나란히 저장 + +Aislo는 6개 단가 원천과 채택 슬롯을 이미 명시적으로 구현한다. 네 안을 물리 열 네 벌로 복제하지는 않는다. Aislo의 프로젝트 버전 모델로 비교하는 편이 데이터 중복과 열 확장을 피할 수 있다. + +## 5. 수량 계산 구조 + +STmate에는 `BDQTY`의 `QTY1..4`, `X_QTY1..3`, `X_HAL1..3`, `RATE`, 그리고 `QCODE`의 `QTY0..9`, `IFORM`, `XCODE`가 있다. 이는 수량 원값, 할증/비율, 산출식 형태를 저장하는 구조로 보인다. 다만 관련 본문이 암호화되고 UI를 열지 못했으므로 정확한 산식 언어와 평가 순서는 미확인이다. + +Aislo는 이 지점에서 제품 성격이 다르다. B03~B07의 지형·선형·횡단·구조물 계산 결과를 B08이 공종별 수량으로 변환하고, 겹침 제거·자연/다짐 상태·구조물 규격·운반거리 같은 의미를 명시적으로 보존한다. STmate 맛보기는 견적 입력 수량을 받는 구조는 보이지만 GIS 설계에서 수량까지의 자동 생성 근거는 확인되지 않는다. + +## 6. 제비율과 원가계산 + +STmate는 시행일별 `JB_R/JB_RA`와 프로젝트 `RATE*.DBF` 행렬을 사용한다. `ST_KanJub.CPM`과 `ST_P_ConEst.CPM`은 간접비 계산과 원가계산서 출력을 담당하는 것으로 보인다. RATE 행렬에는 숫자만 있고 각 행의 명칭, 적용 밑수, 구간 선택 규칙은 프로그램 코드에 결합되어 있다. + +Aislo는 반대로 `rates_2026.json`에 변수, 구간, 밑수, 처리 규칙을 명명해 두고 다음 흐름을 코드에서 그대로 드러낸다. + +```text +재료비 = 직접재료비 + 간접재료비 +직접공사비 = 재료비 + 직접노무비 + 직접경비 +간접노무비 = 직접노무비 × 선택 구간율 +노무비 = 직접노무비 + 간접노무비 +경비 = 직접경비 + 법정경비 +순공사원가 = 재료비 + 노무비 + 경비 +일반관리비 = 순공사원가 × 구간율 +이윤 = ((순공사원가 + 일반관리비) - 재료비) × 이윤율 +총원가 = 순공사원가 + 일반관리비 + 이윤 +도급공사비 = 총원가 + 부가세 +총공사비 = 도급공사비 + 관급자재대 + 폐기물처리비 +``` + +Aislo는 추정가격 구간이 계산 결과에 다시 영향을 주는 순환을 고정점 반복으로 풀고, 구간 진동 시 높은 구간을 택했다는 기록을 남긴다. STmate가 같은 경계를 어떻게 처리하는지는 정적 파일만으로 확인하지 못했다. + +## 7. 단수 처리 + +STmate의 데이터 열은 수량 4자리, 단가 3자리, 제비율 4~6자리 같은 고정 소수 자릿수를 가진다. 그러나 저장 자릿수가 실제 반올림/절사 시점을 증명하지는 않는다. + +Aislo는 `Decimal`로 전정밀 계산하고 출력 위치별 단수 규칙을 분리한다. + +- 내역 행·제경비 행: 1원 미만 절사 + +> ⚠ 아래 「반올림」은 출력물(XLSX) 기준이다. STmate **내부** 계산의 `ROUND`는 Excel 사사오입이 아니라 최근접-짝수(은행가)다 — 11번 §4.2. + +- 자원 집계표: 1원 단위 반올림 +- 일위대가 금액란: 0.1원 미만 절사 +- 일위대가 계금: 1원 미만 절사 +- 관급자재대 총액: 천원 올림 +- 설계서 총액: 천원 미만 절사 + +이 설계는 DBF 필드 자릿수에 묵시적으로 의존하는 것보다 검증과 변경에 유리하다. + +## 8. 실패·결측 처리 비교 + +STmate의 평문 내역에는 계층 행의 수량/단가가 0으로 채워지고 실제 합계는 금액 필드에만 들어간다. 따라서 0이 정상값인지, 해당 없음인지, 미확보인지 스키마만으로 구별하기 어렵다. + +Aislo는 채택 슬롯이 비어 있거나 상세 단가가 없거나 참조가 순환하면 0원으로 확정하지 않고 오류 또는 미결 사유를 남긴다. 경쟁 프로그램과의 호환을 이유로 이 원칙을 약화시키면 안 된다. + +## 9. 권고 우선순위 + +### 우선 1 — 프로젝트 단일 패키지 + +Aislo의 기존 JSON, 데이터셋 버전, SHA-256, 입력 파일, 계산 설정, 산출 결과를 ZIP 하나로 내보내고 가져오는 기능이 가장 실용적인 차용점이다. STC의 단순한 운영 장점을 얻되 매니페스트와 스키마 버전을 포함해야 한다. + +### 우선 2 — 버전 비교 화면 + +당초/변경 및 대안 비교를 한 화면에서 수량, 단가, 재료/노무/경비, 총액 차이로 보여준다. 저장은 기존 프로젝트 버전/스냅샷을 재사용하고 STmate처럼 모든 열을 네 벌 복제하지 않는다. + +### 우선 3 — 출력 서식 메타데이터 + +보고서별 열 이름, 폭, 표시 여부, 머리말을 데이터로 분리한다. 현재 출력 요구가 실제로 반복될 때만 도입하며 계산 모델과 섞지 않는다. + +### 유지해야 할 Aislo 우위 + +- 설계→수량→견적의 자동 인계 +- UTF-8 JSON과 기계 판독 가능한 매니페스트 +- 데이터셋/스냅샷 SHA-256 +- `Decimal` 기반 계산과 출력 위치별 단수 처리 +- 결측 단가를 0원으로 대체하지 않는 보호장치 +- 코드·근거·시행일·미결 사유의 provenance +- 계산 모듈별 자동 테스트 + +## 10. 추가 분석에 필요한 것 + +정확한 STmate 제비율 매핑과 수량식 언어까지 확인하려면 프로그램 UI가 정상 표시되는 환경 또는 공급자가 제공한 출력 보고서가 필요하다. 다음 자료가 있으면 암호 우회 없이 분석을 확장할 수 있다. + +- 맛보기 프로젝트의 내역서·일위대가표·단가산출서·원가계산서 출력 PDF/Excel +- 정상 실행 화면 캡처 또는 화면 녹화 +- 서로 다른 입력 수량/거리/할증으로 저장한 두 프로젝트 파일 +- 동일 프로젝트의 당초/변경 두 판 + +두 저장본의 합법적 차분이 있으면 어떤 입력 필드가 어떤 결과 필드에 영향을 주는지 훨씬 정확하게 식별할 수 있다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/04_계산_데이터계보.md b/scratch/orca_artifacts/stmate_competitor_analysis/04_계산_데이터계보.md new file mode 100644 index 00000000..2a11f7b2 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/04_계산_데이터계보.md @@ -0,0 +1,573 @@ +# STmate 계산 데이터 계보 — 어디에서 무엇을 가져와 무엇을 만드는가 + +## 문서 목적 + +이 문서는 특정 공사의 값이 아니라 STmate의 **계산 의미와 데이터 이동**을 정리한다. 각 단계마다 입력 출처, 선택·계산 규칙, 결과 저장처, 다음 단계 소비자를 연결한다. + +## 1. 전체 계산 파이프라인 + +```text +[A. 공통 기초자료] + 노임 / 자재 / 중기 취득가 / 환율 / 제비율 기준표 + ↓ +[B. 자원별 적용단가] + 복수 가격원천 중 채택 + 관급/사급 구분 + ↓ +[C. 품·복합단가 계산] + 중기품셈 / 시간당 중기사용료(X) / 일위대가(B) + 작업단가·표준시장단가 / 단가산출(D) + = 참조 자원 단가 × 품 + 비율 항목 + ↓ +[D. 프로젝트 공사비 계산] + 공종 수량 × 복합단가 → 재료·노무·경비별 내역금액 + ↓ +[E. 직접비 집계] + 직접재료비 / 직접노무비 / 산출경비 + ↓ +[F. 간접비 계산] + 항목별 밑수 × 조건별 제비율, 행별 절사 + ↓ +[G. 원가계산] + 순공사원가 → 일반관리비 → 이윤 → 총원가 → 부가세 + ↓ +[H. 별도 금액과 최종 출력] + 관급자재대·조달수수료·폐기물 등 + 보고서/Excel/STC +``` + +교본도 STmate를 “기초자료~단가계산은 공사 종류와 무관하게 통합관리, 공사비계산~간접비계산은 공사별 독립관리”라고 설명한다. 즉 C까지는 재사용 가능한 단가 라이브러리이고 D 이후가 프로젝트 계산이다. + +공식 흐름도에는 계산선과 별도로 `수정 → 검토 → 통합관리`가 전체 단계를 되먹임한다. 따라서 STmate의 계산은 한 번 실행하고 끝나는 선형 배치가 아니라, 기초단가·품·수량·원가계산기준을 고치면 그 값을 참조하는 하위 결과를 재계산하는 의존 그래프다. + +## 2. A단계 — 공통 기초자료가 어디에서 오는가 + +### 입력 원천 + +| 의미 | 배포/설정 위치 | 프로젝트 저장 대응 | +|---|---|---| +| 노임단가 | `ST_BSC/노임기계/*.STBSC` | `COSTN`의 L 코드 | +| 자재단가 | `ST_BSC/자재단가/*.STBSC`, 물가지·견적 입력 | `COSTN`의 M 코드 | +| 중기 취득가·기계경비 기초 | `ST_BSC/노임기계/*.STBSC` | `COSTN`의 S 코드와 중기 연결 필드 | +| 표준 일위대가 | `ST_BSC/일위대가/*.STBSC` | B 코드와 산출 메모 | +| 표준시장단가 | `ST_BSC/실적단가/*.STBSC` | 실적단가/대안 단가 계열 | +| 제비율 | 시행일별 `JB_R`, `JB_RA` | 프로젝트 `RATE*` 테이블 | +| 환율·단가 조사시점·소수점·계산방식 | 프로젝트 초기화 화면 | `Start8x.Ini`, `COSTN.BQCODE`, 관련 플래그 | + +### 의미 + +STmate는 계산식을 시작하기 전에 “어느 시점의 가격판과 제비율판을 쓸지”를 고른다. 기준자료를 프로젝트 안으로 복사해 두므로 나중에 공통 DB가 갱신되어도 기존 프로젝트 계산판은 유지된다. + +## 3. B단계 — 자원별 적용단가를 어떻게 정하는가 + +### 자재 M 코드 + +`COSTN` 한 행이 하나의 자재를 나타낸다. + +```text +자재 식별 + CODE + NAME + SIZE + UNIT + BQCODE + +가격 후보 + AMT_11 조달가격 + AMT_21 물가정보 + AMT_31 물가자료 + AMT_41 적산정보 + AMT_51 견적단가 + AMT_61 적용단가 + +근거 + PG_11~PG_51 = 게재 페이지·식별정보 + +선택 + PG_1 = 채택 출처 인덱스 + +결과 + MAMT1 = 계산에 전달되는 재료단가 + TAMT1 = 해당 자원의 총단가 +``` + +중요한 경계: 6개 후보를 저장하고 채택 결과를 저장하는 것은 확인됐지만, **자동 최저가·법적 우선순위·사용자 수동선택 중 어느 알고리즘인지 아직 확정되지 않았다**. 관측상 채택 인덱스는 주로 복수 시세가 있는 M 코드에만 의미가 있고 L/S/X/B/D는 대부분 0이다. + +### 노임 L 코드 + +협회 공표 노임 등 단일 기준값을 받아 `LAMT1`에 노무단가로 둔다. 자재처럼 복수 물가지 중 하나를 고르는 구조의 필요성이 작아 채택 인덱스가 관측상 사용되지 않는다. + +### 중기 취득가 S 코드 + +기계의 기초가격과 제원·환율을 받아 경비 자원의 기초가 된다. 그 자체가 공종 단가는 아니며 다음 단계의 시간당 중기사용료 X가 소비한다. + +### 관급/사급 분기 + +관급 플래그가 있는 자재는 도급 내역의 재료단가를 0원 처리하고 자재대와 조달수수료를 총원가 밖에서 별도 집계하는 경로를 탄다. 사급 자재는 채택단가가 일위대가의 재료비로 들어간다. + +## 4. C단계 — 단가가 어떻게 조립되는가 + +### 공통 참조 문법 + +`COSTN.IFORM`이 `COSTN.SMT`의 산출 메모를 가리킨다. 메모에는 다음 의미가 들어 있다. + +| 문법 | 의미 | 가져오는 값 | 만드는 값 | +|---|---|---|---| +| `&M#####M&` | 자재 참조 | M 코드의 채택 재료단가 | 재료비 성분 | +| `&L#####L&` | 노임 참조 | L 코드의 노임단가 | 노무비 성분 | +| `&S#####S&` | 기계/경비 참조 | S 코드의 경비단가 | 경비 성분 | +| `&X#####L/M/S&` | 시간당 중기 참조 | X 코드의 성분별 시간당 단가 | 공종의 노·재·경 성분 | +| `수량'단위'` | 품·원단위 | 품셈 또는 설계조건 | 참조단가에 곱할 계수 | +| `율'%'` | 할증·손료 | 품셈/설계자 선택률 | 지정 밑수에 대한 비율 비용 | +| `Q = ...` | 기계 작업량/시간계수 | 장비 제원·작업조건 | 단위 공종당 장비시간 | +| `:=A01` | 중간 결과 | 앞 계산 결과 | 뒤 수식의 재사용 값 | + +### 시간당 중기사용료 X + +```text +입력 + S: 기계 취득가·손료 기초 + L: 운전원 노임 + M: 연료·소모재료 단가 + 장비 제원, 연간/시간 운전 조건, 환율 등 + +계산 + 시간당 노무비 + 시간당 재료비 + 시간당 경비 + +출력 + X 코드의 LAMT/MAMT/SAMT 및 TAMT + +소비자 + 일위대가 B 또는 단가산출 D의 기계 행 +``` + +정확한 감가·정비·관리·연료 공식은 설치 데이터만으로 전부 복원되지 않았으므로 현행 품셈의 기계경비 산식을 우선 근거로 보아야 한다. + +### 일위대가 B / 단가산출 D + +```text +각 상세 행 금액 = 참조 자원 적용단가 × 품(원단위) + +재료단가 = Σ(M 참조 × 품) + 재료비 기준 비율항목 +노무단가 = Σ(L 참조 × 품) + 노무 할증 +경비단가 = Σ(S/X 참조 × 품) + 노무비 등 지정 밑수의 손료 +총단가 = 재료단가 + 노무단가 + 경비단가 +``` + +여기서 `B#####` 또는 `D#####` 결과가 하나의 공종 단가가 된다. 핵심은 결과 숫자를 직접 보관하는 것만이 아니라 **어떤 자원 코드에서 얼마의 품을 가져왔는지**가 SMT 산출 메모에 남는다는 점이다. + +### 작업단가·표준시장단가 경로 + +공식 흐름도는 `일위대가`와 `작업단가`를 같은 단가계산의 입력으로 병렬 배치한다. 설치 자료도 표준시장단가를 별도 `CSTA/STBSC`로 공급한다. + +```text +일위대가 경로 + 자재·노임·중기사용료 × 품 → 자원별 상세 전개가 있는 계산단가 + +작업단가/표준시장단가 경로 + 기관·공종·규격·시행시점별 공표 단가 → 해당 공종에 직접 연결되는 단가 + +공통 결과 + 공종 단가 → 공사수량과 결합 → 공사비 +``` + +따라서 모든 공종을 자원 원단위로 재귀 분해한다고 가정하면 안 된다. 어떤 행은 일위대가로 조립되고 어떤 행은 표준시장/실적 단가를 직접 채택한다. 직접 채택 단가가 재료·노무·경비로 분해되어 제공되는지, 총액만 제공되어 배분하는지는 자료 종류별 확인이 필요하다. + +## 5. D단계 — 프로젝트 수량이 단가를 만나는 지점 + +### 수량 출처 + +프로젝트의 공종 수량은 `BOQ11.QTY1`에 들어가고, 세부 전개·할증 관련 정보는 `BDQTY`에 있다. + +```text +BDQTY.BDCODE ─────────────┐ +BDQTY.QTY / X_QTY / X_HAL │ 수량·할증 전개 +BDQTY.BIMOK │ 비목 구분 + ↓ +BOQ11.BDCODE1 ───────→ COSTN.CODE 또는 단가 호표 +BOQ11.QTY1 ─────→ 프로젝트 적용수량 +COSTN 성분별 단가 ───→ BOQ11.LAMT1/MAMT1/SAMT1 +``` + +`BDQTY` 본문은 난독화되어 있어 `X_QTY`가 할증 전 수량이고 `X_HAL`이 할증률이라는 해석은 강한 추정이지만 아직 실기 확인 전이다. 따라서 수량 산식 자체를 STmate에서 가져왔다고 단정할 수 없다. + +### 내역 행 계산 + +```text +BOQ11.L_AMT1 = ROUNDDOWN(QTY1 × LAMT1, 원) +BOQ11.M_AMT1 = ROUNDDOWN(QTY1 × MAMT1, 원) +BOQ11.S_AMT1 = ROUNDDOWN(QTY1 × SAMT1, 원) +BOQ11.T_AMT1 = ROUNDDOWN(QTY1 × TAMT1, 원) +``` + +이 단수 규칙은 STmate가 출력한 2024~2025년 XLSX 5개 공사지의 셀 수식에서 반복 확인됐다. DBF 자릿수만 보고 추정한 것이 아니다. + +### 트리 합산 + +`BDCODE` 유형이 제목(`T5→T4→T3→T2`), 단가참조 말단(`B/D 코드`), 소계(`E2` 등)를 구분한다. 말단 금액을 재료·노무·경비별로 각각 합산해 공종·공사·공구·총괄 금액을 만든다. `SORTCODE`는 256 간격 정렬키, `ENDCODE`는 제목 블록 끝을 가리키는 포인터 역할로 보인다. + +## 6. E단계 — 직접비 결과가 무엇인가 + +내역의 모든 말단 행을 비목별로 합산하면 다음 세 값이 생긴다. + +```text +직접재료비 = Σ BOQ11.M_AMT +직접노무비 = Σ BOQ11.L_AMT +산출경비 = Σ BOQ11.S_AMT +직접공사비 = 직접재료비 + 직접노무비 + 산출경비 +``` + +이 값들은 `PRJLST.MCOST/LCOST/SCOST/TCOST`에 프로젝트 차수별 합계로 저장되고, 동시에 다음 간접비 계산의 밑수가 된다. + +## 7. F단계 — 각 제비율이 어느 값을 가져오는가 + +STmate 출력 XLSX의 수식을 여러 공사지에서 교차한 결과, 데이터 전달 관계는 다음과 같다. 적용률은 프로젝트에 복사된 `RATE*` 기준표에서 공사종류·규모·기간·시행일 조건으로 선택되는 것으로 보인다. + +| 결과 항목 | 가져오는 밑수 | 추가 조건/의존 | 결과가 쓰이는 다음 단계 | +|---|---|---|---| +| 간접노무비 | 직접노무비 | 공사규모·기간·종류의 적용률 | 노무비 합계 | +| 노무비 합계 | 직접노무비 + 간접노무비 | — | 산재·고용·기타경비·이윤 | +| 산재보험료 | 노무비 합계 | 건설업 적용률 | 경비 합계 | +| 고용보험료 | 노무비 합계 | 공사조건·등급 | 경비 합계 | +| 건강보험료 | 직접노무비 | 기간 조건 | 경비 합계 | +| 국민연금보험료 | 직접노무비 | 연도·기간 조건 | 경비 합계 | +| 노인장기요양보험료 | 건강보험료 결과 | 연도별 비율 | 경비 합계 | +| 퇴직공제부금 | 직접노무비 | 적용대상 조건 | 경비 합계 | +| 산업안전보건관리비 | 재료비 + 직접노무비 + 도급자설치 관급금액 | 규모 구간, 경우에 따라 기초액 | 경비 합계 | +| 기타경비 | 재료비 + 노무비 합계 *(일반·수공)* / 직접공사비 *(실적)* | 공사규모·기간·종류 | 경비 합계 | +| 환경보전비 | 재료비 + 직접노무비 + 산출경비 *(일반·수공)* / 직접공사비 *(실적일반)* | 공사종류·최소금액 조건 | 경비 합계 | +| 하도급대금·건설기계 보증수수료 | 재료비 + 직접노무비 + 산출경비 | 규모·계약조건 | 경비 합계 | +| 공사이행보증수수료 | (직접공사비 − 기준금액) × 율 + 추가금액, 다시 × 공기(년) | 규모·계약조건 | 경비 합계 | + +**2026-09-13 정정** — 환경보전비와 보증수수료의 밑수를 `직접공사비`로 적었던 것을 바로잡았다. RATE 편집 화면(`TWM_KAN_RATE`)의 그리드 묶음 제목에 밑수 공식이 그대로 적혀 있으며, **밑수가 원가계산 형식(`T`/`S`/`TA`/`SA`)에 따라 달라진다.** 항목별 전체 표는 06번 §3에 있다. + +각 항목은 `밑수 × 율`을 계산한 뒤 **그 행에서 원 단위 절사**되고, 절사된 정수 결과가 다음 단계 밑수에 전달된다. 마지막에 한 번만 절사하는 구조가 아니다. + +> ⚠ 이 문서의 `ROUND`·`ROUNDDOWN`은 **STmate 출력 XLSX의 Excel 수식** 표기다. STmate **내부** Delphi 계산의 `ROUND`는 최근접-짝수(은행가) 반올림이라 정확히 절반인 값에서 결과가 갈린다. 11번 §4.2 경계표를 함께 볼 것. + +## 8. G단계 — 원가계산 결과가 만들어지는 순서 + +```text +재료비 = 직접재료비 + 간접재료비 + +노무비 = 직접노무비 + 간접노무비 + +경비 = 산출경비 + + 산재·고용·건강·연금·장기요양 등 법정경비 + + 안전관리비·기타경비·환경보전비·보증수수료 등 + +순공사원가 = 재료비 + 노무비 + 경비 + +일반관리비 = ROUNDDOWN(순공사원가 × 적용률, 원) + +이윤 = ROUNDDOWN((노무비 + 경비 + 일반관리비) × 적용률, 원) + = ROUNDDOWN((순공사원가 + 일반관리비 - 재료비) × 적용률, 원) + +총원가 = 순공사원가 + 일반관리비 + 이윤 + +부가가치세 = ROUNDDOWN(총원가 × 10%, 원) ± 면세·끝수 조정 + +도급공사비 = 총원가 + 부가가치세 +``` + +변경설계에서는 접미 1/2/3/4 슬롯이 당초와 변경 1~3차의 수량·단가·금액을 나란히 보존한다. 일부 경비는 변경 시 전체 재계산이 아니라 당초금액과 증감액을 결합하는 예외가 관측되어 항목별 변경 규칙 확인이 필요하다. + +## 9. H단계 — 관급자재와 최종 금액 + +```text +관급자재 순자재대 = 관급 플래그 자재의 수량 × 조달단가 집계 +조달수수료 = ROUNDDOWN(관급자재 순자재대 × 수수료율, 원) +관급자재대 총액 = ROUNDUP(순자재대 + 조달수수료, 천원) + +총공사비 = 도급공사비 + 관급자재대 총액 (+ 별도 폐기물처리비 등) +``` + +관급자재대는 총원가 안의 재료비와 중복되면 안 된다. 다만 도급자 설치 관급금액은 산업안전보건관리비의 대상액에는 포함될 수 있으므로 “총원가 밖”과 “모든 계산에서 제외”는 다른 의미다. + +## 10. 같은 값도 출력 위치에 따라 단수 처리가 다르다 + +| 출력 위치 | 처리 | +|---|---| +| 설계내역서 행 금액 | 원 단위 절사 | +| 제경비 각 행 | 원 단위 절사 | +| 조달수수료 | 원 단위 절사 | +| 재료·노무·경비·중기 자원 집계표 | 원 단위 반올림 | +| 관급자재대 총액 | 천원 단위 올림 | + +따라서 내역서와 자원 집계표가 같은 원자료를 사용해도 원 단위 합계가 다를 수 있다. 이는 입력 오류가 아니라 출력 위치별 처리 규칙이다. + +## 11. STmate와 Aislo의 단계별 대응 + +| STmate 의미 | STmate 저장 | Aislo 대응 | 비교 | +|---|---|---|---| +| 자원 가격후보와 채택 | `COSTN.AMT_*`, `PG_*`, `T/L/M/SAMT` | `PriceTitle.slots`, `slot_pages`, `adopted_slot` | Aislo가 타입과 결측을 명시 | +| 단가 상세 전개 | `COSTN.SMT` 문자열 문법 | `PriceDetail` 목록 | Aislo가 파싱 없이 구조 자체로 저장 | +| 단가 재귀 참조 | 자원 코드 마커 | `PriceBook.resolve()` | 의미상 동일 | +| 프로젝트 수량 | `BOQ11.QTY`, `BDQTY` | B08 handoff `work_items/materials` | Aislo는 설계 근거와 상태를 더 많이 보존 | +| 내역 3성분 | `LAMT/MAMT/SAMT`, `L/M/S_AMT` | `Money3`, `BillRow` | 의미상 동일 | +| 직접비 합계 | `PRJLST.M/LCOST/SCOST/TCOST` | `DirectCostBreakdown`, `CostInput` | 의미상 동일 | +| 제비율 | 라벨 없는 `RATE*` 행렬 + 프로그램 코드 | 명명된 `rates_2026.json` 처리규칙 | Aislo가 밑수와 조건을 감사 가능하게 노출 | +| 원가계산 | 모듈 내부 + 출력 결과 | `calculate_cost()` 단계별 행 | Aislo가 계산 순서를 직접 검증 가능 | +| 과거 판 고정 | 프로젝트에 DBF 동봉 | 단가 스냅샷 + 데이터셋 버전/해시 | Aislo가 무결성 확인 가능 | + +## 12. 비교 결과 + +STmate에서 가져올 핵심은 숫자나 DBF 형식이 아니다. + +1. **공통 단가 라이브러리와 프로젝트 계산을 분리**한다. +2. **모든 파생 단가는 원천 자원 코드와 품을 통해 추적**할 수 있어야 한다. +3. **재료·노무·경비 성분을 계산 전 과정에서 잃지 않는다.** +4. **간접비는 항목마다 밑수가 다르고 계산 순서가 의존적**이다. +5. **단수 처리는 수치 종류가 아니라 결과가 놓이는 표 위치에 묶인다.** +6. **변경설계는 당초값과 변경값의 계보를 보존**해야 한다. +7. **프로젝트가 사용한 기준자료 판을 함께 고정**해야 한다. + +Aislo는 1~5와 7을 현재 구조에서 더 명시적으로 구현하고 있다. 추가 가치가 큰 부분은 프로젝트 패키지와 변경설계 비교다. STmate의 라벨 없는 RATE 행렬이나 고정폭 다중차수 열을 그대로 모방할 이유는 없다. + +## 13. 아직 확정하면 안 되는 부분 + +- 자재 6개 후보 중 채택단가를 자동으로 고르는 정확한 알고리즘 +- `BDQTY.X_QTY/X_HAL`의 실제 계산 순서와 편집 플래그 의미 +- `RATE*` 행·열 전체의 화면 라벨과 구간 인덱스 +- 중기 시간당 사용료의 버전별 세부 감가·정비 공식 +- 이윤/부가세 끝수 조정의 모든 예외 +- 변경설계에서 각 법정경비를 재계산하는지 증감식으로 처리하는지 + +이 항목은 서로 다른 입력을 저장한 전후 프로젝트 또는 정상 UI 조작 결과가 있어야 인과관계를 확정할 수 있다. + +## 14. 누락 감사에서 보강한 자원단가 분기 + +### 노임은 단순히 L 단가 하나가 아니다 + +```text +건설업 시중노임 + → 일반 공종의 사람 품 + → 중기 운전사의 운전경비 + +제조업 조사노임 + → 공장 제작·가공품의 제조원가에만 제한적으로 사용 +``` + +노임 원문에는 직종번호·직종명·적용일뿐 아니라 조사현장 부족 표시 `*`·`**`가 있다. 이 표시는 단가를 바꾸는 계수가 아니라 **신뢰도 메타데이터**다. 연장·야간·휴일·도서오지 가산은 노임 원천값 자체를 바꾸는 것이 아니라 별도의 노임 할증 계산이다. 산림품셈의 경사·작업시기 할증은 다시 그와 다르게 **품(인/단위)에 곱하는 계수**다. + +### 자재 수량 할증과 잡재료비는 다른 계산이다 + +```text +자재 할증 + 순수량 × (1 + 손실률) → 내역에 투입할 자재수량 증가 + +잡재료·공구손료 + 주재료비 × 선택률 → 일위대가의 별도 재료비/경비 행 +``` + +둘을 동시에 같은 자재에 적용할 때도 계산 위치가 다르며 중복 계상 여부를 확인해야 한다. 품셈 항목이 이미 할증을 포함하면 자재 할증을 다시 적용하지 않는다. 잡재료비의 밑수는 하위 일위대가가 품고 온 재료비가 아니라 해당 단계의 **직접 주재료비**여야 중복되지 않는다. + +### 관급·사급 외에도 면세 분기가 있다 + +면세 자재가 있으면 부가가치세를 단순히 `총원가 × 10%`로 끝내지 않고 면세품목 공제·조정이 들어갈 수 있다. STmate 실무 출력에서 조정 사례는 확인됐으나 일반식과 적용 조건은 아직 전수 확정되지 않았다. Aislo 비교 시 “부가세 10%”만으로 완결됐다고 판단하면 안 된다. + +## 15. 누락 감사에서 보강한 중기 계산 전체식 + +기존 계보는 X 코드의 입력·출력만 설명했지만, 실제 중기경비는 다음 네 묶음이다. + +```text +시간당 기계손료 + = 취득가격 × (시간당 상각비계수 + 정비비계수 + 관리비계수) + +시간당 운전경비 + = 연료·전력·윤활유 + 운전사 노임 + 정비비 외 소모품비 + +현장 작업 단가 + = (시간당 기계손료 + 시간당 운전경비) ÷ 시간당 작업량 Q + +총 기계 관련 원가 + = 현장 작업 단가 + 현장 수송비 + 필요 시 분해조립비 +``` + +입력 계보: + +| 입력 | 가져오는 곳 | 영향을 받는 결과 | +|---|---|---| +| 국산 표준시가 또는 수입 C.I.F 가격 | 기계 기초자료 | 취득가격 | +| 환율 | 환율및기초자료 | 수입기계 취득가격과 모든 손료 성분 | +| 상각·정비·관리 계수 | 품셈 기계표 | 시간당 기계손료 | +| 지역 유가 | 현장 소재지 기준 유가 | 시간당 연료비 | +| 연료 소비량 | 기종·규격 기초자료 | 시간당 연료비 | +| 운전사 직종 | 기종 분류 | 시간당 노무비 | +| 싸이클 수·1회 작업량·체적환산·효율 | 품셈과 현장조건 | 시간당 작업량 `Q=n·q·f·E` | +| 이동거리·속도·상하차/대기 | 현장 운반조건 | 수송비·운반 단가 | +| 암질·기종·톤급 | 공종/장비 속성 | 손료 보정 여부와 가산률 | + +암석작업 보정은 전체 중기사용료가 아니라 원칙적으로 **관리비를 제외한 기계손료**에 붙는다. 전용덤프트럭 18톤 이상과 불도저 19톤 이상은 보정 제외이며 타이어·습지 불도저는 예외다. 이 분기를 빼면 암 공종 장비비를 잘못 계산한다. + +또한 운반은 단순한 `거리 × 단가`가 아니다. 작업량 계산에는 적재·주행·하차·회차·대기 싸이클과 도로 상태별 속도, 토량 상태 환산이 들어간다. STmate 산출 메모의 Q식은 이 결과인 “단위수량당 장비시간”을 일위대가에 넘긴다. + +## 16. 누락 감사에서 보강한 수량→원가 경계 + +STmate는 설계기하를 직접 계산하는 시스템이라기보다 **산출된 공종 수량을 금원화하는 시스템**으로 봐야 한다. 따라서 다음 두 계산을 분리한다. + +```text +설계수량 계산 + 도면·측량·구조물 규격 → ㎥/㎡/m/개소 등의 순수량 + +원가 투입수량 계산 + 순수량 → 단위 정규화 → 재료손실/품 할증/상태환산 → 내역 수량 +``` + +필수 의미 항목: + +- 토량의 자연·흐트러진·다짐 상태와 환산계수 +- 수량 표기 자릿수와 합계 자릿수 +- 소운반 포함 거리와 초과 운반 +- 구조물 공제하지 않는 체적·면적 +- 재료 할증이 포함된 품인지 별도 적용인지 +- 관급 자재수량과 도급 시공품의 분리 +- 같은 공종 안의 토사·리핑암·발파암, 육상·용수, 심도·규격 분기 + +`BOQ11.QTY` 하나만 비교하면 이 의미가 사라진다. Aislo와의 진짜 비교 단위는 최종 숫자가 아니라 `quantity_basis`, `volume_state`, `variant`, `surcharge`, `source geometry` 같은 수량 계보다. + +## 17. 누락 감사에서 보강한 재귀 단가의 계산 순서 + +상위 단가 안의 비율 행은 일반 자원 참조와 순서가 다르다. + +```text +1. 직접 자재 행을 합산 → 직접 주재료비 밑수 확보 +2. 직접 사람 품을 합산 → 직접노무비 밑수 확보 +3. 품 할인·할증을 노무 품에 적용 +4. 잡재료·공구손료를 해당 밑수에 적용 +5. 중기 X와 하위 일위대가 B/D를 재귀 해석 +6. 재료·노무·경비 성분을 합산 +7. 단가표 출력 위치 규칙으로 단수 처리 +``` + +자기 자신을 가리키는 비율 행을 일반 참조처럼 먼저 풀면 순환이 생긴다. 동일한 하위 단가를 여러 상위 공종이 재사용할 수 있으므로 코드 참조 그래프의 순환 검사가 필요하다. STmate는 기초자료를 바꾸면 관련항목 전부를 재계산하는 특성이 교본에 명시되어 있어, 의존 그래프를 따라 파생 단가를 갱신하는 구조임을 뒷받침한다. + +## 18. 누락 감사에서 보강한 직접비·자원집계의 이중 결과 + +같은 상세 내역에서 서로 다른 두 결과 묶음이 나온다. + +### 원가 산입 내역 + +공종별 `수량 × 단가`를 원 단위 절사하여 BOQ에 저장하고 직접재료비·직접노무비·산출경비로 합산한다. 이 값이 원가계산의 밑수다. + +### 자원 총괄표 + +공종별 상세 전개를 자원 코드별로 다시 모아 총 소요량과 금액을 만든다. + +```text +자원별 총수량 = Σ(각 공종 수량 × 그 공종의 자원 원단위) +자원별 금액 = ROUND(자원별 총수량 × 채택 자원단가, 원) +``` + +자원집계는 반올림이고 내역 행은 절사이므로 둘의 합계가 원 단위에서 다를 수 있다. 자원집계 결과를 원가계산의 직접비로 다시 사용하면 STmate와 결과가 어긋나므로 **검산/출력 경로와 원가 산입 경로를 구분**해야 한다. + +## 19. 누락 감사에서 보강한 규모·기간 선택과 순환 + +제비율의 율은 고정 상수가 아니라 최소 다음 조건의 함수다. + +```text +적용률 = f(기준 시행일, 공사종류, 추정가격/규모 구간, 공사기간, 업체 등급, 적용대상 여부) +``` + +주의할 순환: + +- 규모 구간을 고르는 기준금액이 원가계산 결과에 의존할 수 있다. +- 산업안전보건관리비는 관급 포함 대상액과 도급금액 조건이 얽힌다. +- 부가세·관급 끝수 보정을 이윤에 역반영한 실무 사례가 있다. + +STmate가 이 순환을 푸는 내부 알고리즘은 확인되지 않았다. Aislo는 총원가로 구간이 고정될 때까지 반복하고 진동 시 높은 구간 채택 사실을 남긴다. 두 프로그램 비교에서는 최종률만 보지 말고 **구간 판정에 사용한 기준금액과 반복/보정 방식**을 함께 비교해야 한다. + +## 20. 누락 감사에서 보강한 변경설계 계산 + +접미 1/2/3/4는 단순 대안이 아니라 당초·변경차수 계보로 해석하는 것이 타당하다. + +```text +차수별 보존 대상 + 수량 / 자원 채택단가 / 복합단가 / 비목별 금액 / 관급자재대 / 총공사비 + +변경 결과 + 변경차수 금액 - 직전차수 금액 = 증감액 +``` + +하지만 모든 제경비가 “변경판 전체를 처음부터 재계산”되는 것은 아니다. 산업안전보건관리비처럼 당초금액에 변경 증감액을 더하는 실무 방식이 관측됐다. 따라서 Aislo 비교 시 다음 셋을 항목별로 구분해야 한다. + +1. 새 밑수와 새 율로 전액 재계산 +2. 당초 확정액 + 변경분 계산 +3. 사용자 조정액을 별도 반영 + +## 21. 완전성 체크리스트 + +| 계산 영역 | 입력 출처 | 핵심 변환 | 출력/다음 소비자 | 현재 확인 수준 | +|---|---|---|---|---| +| 기준판 선택 | STBSC/JB, 초기화 설정 | 시행일·업종·지역 선택 | 프로젝트 기준자료 | 구조 확인, UI 선택법 미확인 | +| 환율 | 기준일·통화별 환율 | 수입기계 C.I.F 가격 환산 | 기계 취득가·손료 | 공식 흐름 확인 | +| 자재 채택 | 6개 가격슬롯·페이지 | 채택 인덱스 선택 | M 적용단가 | 저장 구조 확인, 선택 알고리즘 미확인 | +| 노임 | 건협/제조업 직종표 | 직종 매핑·별도 할증 | L 적용단가 | 의미 확인 | +| 중기 손료 | 취득가·환율·손료계수 | 상각+정비+관리 | X 경비 성분 | 공식 의미 확인, STmate 세부 구현 미확인 | +| 중기 운전비 | 유가·소비량·운전사 | 재료+노무+소모품 | X 재료/노무 성분 | 공식 의미 확인 | +| 시공능력 | n·q·f·E·거리·속도 | Q와 단위당 시간 | B/D 기계 품 | 의미 확인, 전 기종 구현 미확인 | +| 중기품셈 | 기종별 제원·계수·작업조건 | 시공능력·소요시간 산정 | 중기사용료·단가산출 | 공식 단계 확인, STmate 내부표 매핑 미확인 | +| 일위대가 | 자원코드·품·비율행 | 재귀 조립·3성분 합산 | B/D 단가 | SMT 문법 확인 | +| 작업/표준시장단가 | 기관별 공표단가·시행시점 | 공종·규격 매칭 및 직접 채택 | 공종 단가 | 별도 자료경로 확인, 성분배분 미확인 | +| 설계수량 | 도면/수량산출 | 단위·상태·규격 분기 | 순수량 | STmate 밖 상류로 봄 | +| 원가 투입수량 | 순수량·할증·환산 | 적용수량 결정 | BOQ.QTY | 필드 구조 확인, BDQTY 내부 미확인 | +| 내역 행 | 수량·B/D 단가 | 성분별 곱·절사 | BOQ 금액 | 다수 XLSX 수식으로 확인 | +| 계층 합계 | BOQ 말단 금액 | T/E 트리 합산 | 공종·공구·총괄 | 확인 | +| 자원집계 | BOQ+단가 상세 | 코드별 수량 재집계·반올림 | 자원 총괄표 | 다수 XLSX 수식으로 확인 | +| 직접비 | BOQ 3성분 | 말단 성분 합계 | PRJLST 및 제비율 밑수 | 확인 | +| 원가계산기준 | 시행일·공사종류·규모·기간·등급 | 적용 조건과 율 선택 | 간접비 계산 파라미터 | 공식 단계 확인, RATE 인덱스 미확인 | +| 간접비 | 직접비·기간·규모·율 | 항목별 밑수×율·행별 절사 | 경비/노무 합계 | 다수 XLSX 교차 확인 | +| 일반관리·이윤 | 순공사원가·비목합 | 순서 의존 계산 | 총원가 | 확인 | +| 부가세 | 총원가·면세 조정 | 10%·절사·조정 | 도급공사비 | 기본 확인, 예외식 미확인 | +| 관급 | 관급 수량·조달단가 | 수수료 절사·총액 천원 올림 | 총공사비 별도 합산 | 다수 XLSX 교차 확인 | +| 변경설계 | 차수별 값 | 전액/증감/조정 분기 | 변경 총액·증감액 | 슬롯 확인, 항목별 규칙 일부 미확인 | +| 재현·출력 | SET_REP·INI·스냅샷 | 표별 단수·열 구성 | XLSX/인쇄/STC | 구조 확인 | +| 수정·재계산 | 기초단가·품·수량·기준 변경 | 참조 의존성 따라 무효화·재산출 | 관련 단가·공사비·간접비 | 교본 기능 확인, 내부 갱신 범위 미확인 | + +이 표에서 `미확인`으로 남은 것은 누락이 아니라 **현재 증거로 확정할 수 없는 경계**다. 특히 자재 자동채택, BDQTY 내부 수량식, 전 기종 중기사용료, 면세·끝수 예외, 변경설계 항목별 처리의 다섯 부분은 실제 조작 전후 차분이 필요하다. + +## 22. 공식 STmate 흐름도 역대조 결과 + +임도 교본의 STmate 전산처리 흐름도를 문서 전체와 역대조했다. + +| 공식 흐름도 상자 | 이 문서 대응 | 감사 결과 | +|---|---|---| +| 기초자료: 노임·자재·중기단가·경비 | §2~3, §14 | 포함 | +| 환율 | §2, §15 | 포함 | +| 중기품셈 | §15, §21 | **독립 단계로 보강** | +| 중기사용료 계산 | §4, §15 | 포함 | +| 일위대가 | §4, §17 | 포함 | +| 작업단가 | §4 작업단가 경로 | **별도 경로로 보강** | +| 단가계산 | §4, §17 | 포함 | +| 공사수량 | §5, §16 | 포함 | +| 공사비계산 | §5~6 | 포함 | +| 원가계산기준 | §7, §19, §21 | **입력 단계로 보강** | +| 간접비계산 | §7~8 | 포함 | +| 수정·검토 | §1, 아래 영향전파 | **피드백 루프로 보강** | +| 단가표·중기사용료·단가산출서 | §4 및 출력 경로 | 포함 | +| 수량산출서·설계내역서 | §5, §16 | 포함 | +| 예산서 | §7~10 | 포함 | + +### 수정 시 영향 전파 + +| 수정한 값 | 다시 계산되어야 하는 결과 | +|---|---| +| 자재단가 | 해당 자재를 참조하는 B/D/X → 해당 BOQ 행 → 직접재료비 → 관련 제경비 → 총액 | +| 노임단가 | 해당 L 참조 B/D/X → 직접노무비 → 간접노무비·보험료·기타경비·이윤 → 총액 | +| 유가·환율·중기 취득가 | X 중기사용료 → X를 참조하는 B/D → 산출경비 → 제경비·이윤 → 총액 | +| 품·Q·할증 | 해당 복합단가 → BOQ 행 → 비목별 직접비 → 간접비 → 총액 | +| 공사수량 | 해당 BOQ 행 금액 → 공종합계·직접비 → 간접비 → 총액 | +| 제비율판·기간·규모·등급 | 해당 간접비 행과 그 뒤 순서 의존 항목 → 총액 | +| 관급/사급 플래그 | 도급 재료비·관급자재대·안전관리비 대상액·부가세 경로 → 총액 | + +STmate의 경쟁력은 이 영향 전파가 통합 단가 코드와 프로젝트 참조키로 연결된다는 점이다. Aislo 비교에서도 최종 결과 일치만 검사하지 말고 입력 하나를 바꿨을 때 위 하류 결과만 정확히 무효화·재계산되는지 검증해야 한다. + +## 23. 두 번째 감사 후 남은 실제 정보 공백 + +계산 단계 자체는 공식 흐름도 기준으로 모두 문서에 들어왔다. 다만 다음은 “단계 누락”이 아니라 **경쟁 프로그램 내부 규칙이 아직 관찰되지 않은 정보 공백**이다. + +1. `RATE*`의 행·열 인덱스가 공사종류·금액구간·기간·등급에 매핑되는 정확한 표 +2. 표준시장/작업단가를 BOQ의 재료·노무·경비에 배분하는 규칙 +3. 중기 S→X 계산에서 STmate가 쓰는 계수표와 중간 단수 위치 +4. `BDQTY`의 순수량→할증수량→비목별 수량 전개 순서 +5. 단가 후보를 채택하거나 `적용단가` 슬롯으로 복사하는 UI 알고리즘 +6. 기초자료 수정 후 캐시/저장 단가 중 무엇을 자동 갱신하고 무엇을 확정값으로 보존하는지 +7. 면세·관급 부가세 끝수와 이윤 역보정의 일반식 +8. 변경설계 시 항목별 전액 재계산/증감계산/고정액 유지 규칙 +9. 물가변동·일괄 단가변경 모듈이 기준시점과 비교시점 가격을 반영하는 방식 + +이 아홉 항목을 확인하지 않고 “STmate 계산 로직 완전 복원”이라고 표현하면 안 된다. 정상 실행 화면에서 한 입력만 바꾸어 저장 전후 파일과 출력 수식을 비교하는 실험이 필요하다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/05_재구현_판정기준과_근거목록.md b/scratch/orca_artifacts/stmate_competitor_analysis/05_재구현_판정기준과_근거목록.md new file mode 100644 index 00000000..36d2d278 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/05_재구현_판정기준과_근거목록.md @@ -0,0 +1,59 @@ +# STmate 재구현 분석 — 판정기준과 근거 목록 + +## 목적 + +이 문서는 화면을 비슷하게 만드는 명세가 아니다. 동일 입력을 넣었을 때 STmate와 같은 중간값과 최종 금액을 내는 계산 엔진을 만들기 위한 증거 장부다. + +## 확정등급 + +| 등급 | 의미 | 구현 처리 | +|---|---|---| +| A 확정 | STC 필드, 5개 STmate XLSX의 실제 수식, 복수 문서가 일치 | 호환 계산식으로 구현 가능 | +| B 강한 추정 | 필드와 출력은 일치하지만 내부 선택 분기 하나가 직접 관찰되지 않음 | 정책 테이블로 분리하고 회귀시험 필요 | +| C 미확정 | 정적 파일에 결과만 있거나 레코드가 난독화되어 분기를 복원하지 못함 | STmate 대조실험 전에는 기본값 확정 금지 | + +## 직접 조사한 표본 + +- STC 7건: 2024년 임도 3건, 2025년 계류보전 1건, 울진 소광 원설계·통합변경·변경1차 3건 +- STmate 생성 XLSX 5건: 위 사업 중 대응 가능한 2024/2025 내역서 +- STC 안의 DBF: `PRJLST`, `BOQ11`, `BOQ12`, `COSTN`, `BDQTY`, `RATE`, `RATE_M`, `RATE_R`, `RATE_RA`, `SET_REP` 등 +- 단가 구성 메모: `COSTN.SMT` +- 프로그램 모듈·설정: `STmate8.Exe`, `*.CPM`, `Start8x.Ini` +- 원가·품셈 기술자료와 과거 STmate 처리 흐름도 + +## 관찰된 스키마 변형 + +- `BOQ11`: 83필드와 94필드가 모두 존재한다. +- `BDQTY`: 37필드와 38필드가 존재한다. +- `COSTN`: 99필드와 101필드가 존재한다. +- `PRJLST`: 47·48·55필드가 존재한다. +- 소광 통합 파일에는 `BOQ11` 90행과 `BOQ12` 89행이 동시에 존재한다. 별도 변경1차 파일에는 `BOQ11`만 115행 존재한다. + +따라서 재구현 저장 모델은 DBF 열 순서를 그대로 도메인 모델로 삼으면 안 된다. 파일 버전별 입력 어댑터가 열 이름을 정규화하고, 계산 코어는 `revision_id`가 붙은 동일한 내부 모델을 사용해야 한다. + +## 계산 파이프라인 + +1. 기초자료: 노임·자재 후보가격·중기 기초값·경비·환율을 적재한다. +2. 중기품셈: 작업량 `Q`와 단위당 기계시간 `1/Q`를 산출한다. +3. 중기사용료: 손료·운전경비·운전원·연료 등을 재료/노무/경비 성분으로 분리한다. +4. 단가계산: 일위대가, 작업단가, 표준시장단가, 견적단가를 재료비(`MAMT`)·노무비(`LAMT`)·경비(`SAMT`)와 총계(`TAMT`)로 정규화한다. +5. 내역계산: 설계수량과 세 비용 성분을 곱하고 총계와 상호 검산하여 직접공사비를 집계한다. +6. 간접비계산: 제비율 행을 순차 계산하며 각 행 절사 결과를 다음 행의 기초로 전달한다. +7. 끝전조정·부가세·관급 합계를 계산한다. +8. 차수별 결과를 덮어쓰지 않고 스냅샷으로 보존한다. + +## 중간값 보존 원칙 + +STmate 호환성은 최종 합계만 비교하면 검증할 수 없다. 다음 값을 모두 저장해야 한다. + +- 선택 전 6개 자재 후보가격과 출처·페이지 +- 채택가격과 선택 방식(자동/수동/직접입력) +- 단가 항목별 원수량, 할증 전 수량, 할증률, 할증 후 수량 +- 단가 성분별 원금액과 절사 후 금액 +- 내역 행별 재료비·노무비·경비·합계 +- 간접비 행별 산정대상액, 요율, 계산 전 값, 절사액, 조정액 +- 원설계·변경설계 차수와 이전 스냅샷 + +## 남은 한계 + +`BDQTY`와 `SYSINFO` 레코드 본문은 보유 STC에서 난독화되어 있다. 비밀번호 우회나 암호 해제는 하지 않았다. 따라서 BDQTY의 세부 플래그와 UI 이벤트에 따른 자동갱신 범위는 C등급이며, 동일 프로그램 수준의 확정에는 정상 실행되는 STmate에서 통제 입력 대조시험이 필요하다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/06_규칙1_RATE와_규칙7_간접비_끝전조정.md b/scratch/orca_artifacts/stmate_competitor_analysis/06_규칙1_RATE와_규칙7_간접비_끝전조정.md new file mode 100644 index 00000000..647c4ef2 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/06_규칙1_RATE와_규칙7_간접비_끝전조정.md @@ -0,0 +1,140 @@ +# 내부규칙 1·7 — RATE 매핑, 간접비, 끝전조정 + +## 1. RATE 계열의 역할 + +| 테이블 | 크기 | 관찰 의미 | 대응 화면 그리드 (12번 문서 §8·§9) | 등급 | +|---|---:|---|---|---| +| `RATE.DBF` | 41×10 | 구버전·공통 요율 행렬 | 단일 그리드로 특정되지 않음 | B | +| `RATE_M.DBF` | 25×10 | 행자부기준 간접노무비 요율군 | `rGrd_RateM` (14행, 구분·간접노무비) | A/B | +| `RATE_R.DBF` | 50×35 | 일반형식 규모·기간 요율 + 안전·환경·보증 부속표 | `rGrd_Rate_R`, `_R1`, `_R2`, `_Kobo`, `_Anjun`, `_Hwan`, `_Bojng`, `_Hado`, `_Eqip` | B | +| `RATE_RA.DBF` | 50×20 | 실적형식 규모·기간 요율 + 실적 안전비 공식표 | `rGrd_Rate_RA`, `_RA1`, `_An_A`, `_An_A1` | A/B | + +7개 STC 모두 네 테이블의 행·열 수와 필드명이 같다. `RATE` 첫 행들은 2024 표본에서 `10.8, 11.3, 11.8, 15.3 ...`, 2025 표본에서 일부가 `11.0, 11.5, 12.0 ...`으로 바뀐다. 즉 이 표는 프로젝트 결과가 아니라 연도/기준표 원본을 프로젝트에 복사해 둔 것으로 보는 것이 타당하다. + +`RATE_R`은 첫 행의 21열=13.1, 26열=8.0, 31열=6.0처럼 일부 열만 채워지고 `RATE_RA`는 표본 대부분이 0이다. 희소한 이유는 한 행렬이 위 여러 그리드의 행을 순서대로 이어 붙여 적재하는 구조이기 때문이며, 해당 형식에서 쓰지 않는 구간이 0으로 남는다. + +DBF 자체에는 행·열 라벨이 없다. 다만 폼 리소스 복원으로 **각 그리드의 열 제목과 행 수는 확정**됐다(12번 문서 §8). 남은 미확정은 라벨 자체가 아니라 **각 그리드가 행렬의 몇 번째 행부터 적재되는지, 즉 시작 좌표**다. 재구현 시에는 숫자 배열을 하드코딩하지 말고 `rate_standard(year, work_type, cost_item, amount_band, duration_band)`로 명명된 기준 테이블에 옮겨야 한다. + +## 2. 요율 선택 입력 + +요율 하나를 선택하는 최소 입력은 다음과 같다. + +- 기준연도·적용시점 +- 공사 종류와 발주 유형 +- 추정금액 또는 직접공사비 구간 +- 공사기간 구간 +- 요율 항목(간접노무비, 산재보험료, 안전관리비 등) +- 항목별 적용/제외 플래그 +- 사용자 지정률과 조정액 + +원가계산 설정 화면의 **실제 선택축 16개와 각 선택지의 내부 코드값**은 폼 복원으로 확정됐다(12번 문서 §10·§10.1). 화면 순번과 내부값이 어긋나는 축이 여럿이므로(공사종류 `0,2,4,3,1,5,8,9`, 적용기준 `2,0,1`, 사급비 위치 `3,1,2,0`) 화면 인덱스를 그대로 저장하면 안 된다. + +프로젝트 규모는 제비율을 거쳐 총액을 만들고, 총액은 다시 구간 선택에 쓰일 수 있어 순환 의존성이 생긴다. + +**STmate가 택한 방식은 확정됐다 — A등급.** 실행모듈 문자열에 "공사규모에 따른 제비율 변경으로 공사규모가 계속 변경되는 무한루프"가 생길 수 있다는 경고와, 그때 일반관리비·이윤 등의 요율을 **사용자가 직접 수정**하라는 안내가 그대로 들어 있다(11번 문서 §8). 즉 STmate는 고정점 반복으로 자동 수렴시키지 않고 **순환이 생기면 사용자 수동 확정으로 넘긴다.** + +재구현도 같은 계약을 따른다. ① 명시 입력인 추정금액 구간을 우선 사용하고 ② 자동 재선택은 최대 반복 횟수와 상태 이력으로 순환을 검출하며 ③ 구간이 왕복하면 임의의 한쪽을 택하지 않고 사용자 확정 상태로 전환하고 ④ 확정된 요율·원 표 좌표·사용자 수정 여부를 프로젝트 스냅샷에 보존한다. + +## 3. XLSX로 확정되는 계산 순서 + +5개 STmate XLSX에서 내역 행은 `ROUNDDOWN(수량×단가, 0)`이다. 간접비도 각 행을 원 단위 절사한 뒤 그 절사액이 다음 행 참조에 사용된다. 자원 집계표·일위대가수량금액집계표·중기시간금액집계표는 `ROUND(수량×단가, 0)`를 사용한다. 동일 곱셈이라도 출력 목적에 따라 함수가 다르다. + +권장 순서는 다음과 같다. + +1. 직접재료비, 직접노무비, 직접경비 및 직접공사비를 내역 행 절사액으로 합산한다. +2. 간접노무비, 노무 기반 보험, 산업안전보건관리비, 환경보전비, 기타경비를 각각 고유 밑수에 요율을 곱해 구한다. +3. 일반관리비 → 이윤 → 부가가치세 → 관급자재 관련 합계 순으로 마무리한다. + +### 항목별 밑수 — A등급 (2026-09-13 폼 복원으로 확정) + +RATE 편집 화면(`TWM_KAN_RATE`)의 각 그리드는 **묶음 제목에 밑수 공식을 그대로 달고 있다.** 추정이 아니라 화면 문자열이다. + +| 항목 | 화면에 적힌 밑수 공식 | 대응 그리드 | +|---|---|---| +| 간접노무비 | `(직접노무비) × 율(%)` | `rGrd_Rate_R1` | +| 기타경비 (일반형식) | `(재료비+노무비) × 율(%)` | `rGrd_Rate_R1` | +| 기타경비 (실적형식) | `직접공사비 × 율` | `rGrd_Rate_RA1` | +| 고용보험료 | `(노무비) × 율` | `rGrd_Rate_Kobo`, `rGrd_Rate_R2` | +| 산업안전보건관리비 (일반) | `(재료비+직접노무비+관급자재) × 율 + 추가금액` | `rGrd_Rate_Anjun` | +| 산업안전보건관리비 (실적) | `(직접공사비+관급자재) × 율 + 추가금액` | `rGrd_Rate_An_A1` | +| 환경보전비 | `(재료비+직접노무비+산출경비) × 율` | `rGrd_Rate_Hwan` | +| 공사이행보증수수료 | `[추가금액 + (직접공사비-기준금액) × 율] × 공기(년)` | `rGrd_Rate_Bojng` | +| 건설하도급대금 지급보증서 발급수수료 | `(재료비+직접노무비+산출경비) × 율` | `rGrd_Rate_Hado` | +| 건설기계대여대금 지급보증서 발급금액 | `(재료비+직접노무비+산출경비) × 율` | `rGrd_Rate_Eqip` | +| 일반관리비 | `(재+노+경) × 율` | `rGrd_Rate_R`, `rGrd_Rate_RA` | +| 이윤 | `(노+경+일) × 율` | `rGrd_Rate_R`, `rGrd_Rate_RA` | + +바로잡을 점 셋. + +- **환경보전비의 밑수는 직접공사비가 아니다** — `재료비+직접노무비+산출경비`다. 이 문서의 이전 서술을 정정한다. +- **기타경비의 밑수에 간접노무비가 따로 붙지 않는다** — 일반형식은 `재료비+노무비`(노무비는 직접+간접), 실적형식은 `직접공사비`로 **형식에 따라 밑수 자체가 다르다.** +- **이윤의 밑수는 일반형식에서 `노+경+일`로 확정** — 일반관리비가 밑수에 들어간다. `(소계−재료비)`, `(순공사원가+일반관리비−재료비)`로 적힌 곳들과 같은 식이다. +- ⚠ **실적형식은 화면 라벨과 복원 공식이 어긋난다.** `rGrd_Rate_RA`의 라벨은 `(노+경+일)*율`인데 12번 §5·§6이 복원한 실적 공식은 `(직접공사비+간접공사비+일반관리비) × 율`로 **재료비를 포함한다.** 둘 중 어느 쪽이 실제 동작인지는 통제시험 **T11**로 가른다(13번 문서). + +`rGrd_RateB`(수공 12행)의 열은 `재 / 직노 / 노 / 재+직노 / 재+노`가 토목·건축 두 열군으로 나뉜다. 수공형식은 **경비 항목마다 이 다섯 밑수 중 하나를 고르는** 구조다. + +정확한 포함항목은 사업유형과 XLSX 양식에 따라 달라질 수 있으므로 `base_components`를 항목별 정책 데이터로 보존해야 한다. 하나의 공통 `subtotal * rate` 함수에 항목명을 분기문으로 박아 넣으면 변경설계와 연도 변경에서 깨진다. + +## 4. 끝전조정과 세금 + +실제 XLSX에서 다음 형식이 관찰됐다. + +```text +차액 = 기준금액 - ROUNDDOWN(기준금액, -자리수) +세전조정 = ROUND(차액 / 1.1, 0) +조건부조정 = ABS(차액) × IF(조건, 부호 또는 적용값) +최종이윤 = 산식이윤 - 참조조정액들 +부가세 = ROUNDDOWN(과세표준 × 세율 / 100, 0) + 별도조정액 +관급자재합계 = ROUNDUP(대상합계, -3) +``` + +핵심은 최종 도급액을 먼저 천원 단위로 자르고 부가세를 다시 구하는 단순 역산이 아니라, 차액의 세전 상당액을 이윤 또는 조정행에 배분하고 부가세 행에도 조정액을 전달한다는 점이다. + +실행모듈에서 `[C_AD_AMT]`에 `ROUND` / `ROUNDDOWN` / `ROUNDUP` 세 선택이 모두 확인됐고(11번 문서 §11), 설정 화면에는 간접비·공급가액·도급액·관급(도급자설치)·관급(관급자설치)·총액/이윤보정의 **절사 자리와 함수가 각각 따로** 있다(12번 문서 §10.2). 따라서 전역 반올림 설정 하나로 구현하면 안 되고, 재구현 모델에는 다음 여섯 칸이 필요하다. + +```text +raw_amount +rounded_amount +adjustment_amount +adjustment_target +rounding_function +rounding_digits +``` + +또 `이윤 보정=0`은 "0원 이윤"이 아니라 이윤보정 미사용 옵션이므로 0과 미설정을 구분해야 한다. + +## 5. 의사코드 + +```text +for cost_item in ordered_indirect_cost_items: + base = sum(already_truncated[item] for item in cost_item.base_components) + raw = base * selected_rate / 100 + amount = truncate(raw, cost_item.rounding_digits) + already_truncated[cost_item.code] = amount + +target_total = truncate(grand_total_before_adjustment, -target_digits) +difference = grand_total_before_adjustment - target_total +pretax_adjustment = round_half_away_or_excel(difference / (1 + vat_rate), 0) +profit_final = profit_raw - pretax_adjustment - other_adjustments +vat_final = truncate(tax_base * vat_rate, 0) + vat_adjustment +``` + +Excel `ROUND`의 .5 처리와 Python 기본 `round`는 다를 수 있다. 금액 계산은 이진 부동소수점 대신 10진수와 Excel 호환 반올림 함수를 써야 한다. + +## 6. 미확정 항목과 대조시험 + +폼 리소스 복원으로 아래 두 항목은 이 목록에서 **내려갔다.** + +- ~~RATE 네 표의 정확한 행·열 라벨~~ → 그리드별 열 제목·행 수 확정 (12번 문서 §8) +- ~~요율 순환 의존성의 STmate 처리 방식~~ → 사용자 수동 확정으로 확정 (11번 문서 §8) + +남은 미확정은 다음과 같다. + +- 각 그리드가 `RATE*` 행렬의 **몇 번째 행부터 적재되는지** — 시작 좌표 +- 규모 구간 경계의 포함 방향(`<`, `<=`) +- 공사기간 경계 처리 — 화면 목록은 4줄인데 내부값은 `30일 미만`·`37개월 이상`을 포함한 5개로 개수가 어긋남 (12번 문서 §10.1) +- 특정 보험·안전비의 예외 포함항목 +- 복합 보험식 `RAT_1`~`RAT_4`, `RAT_KY`의 화면 항목명 + +시험은 동일 프로젝트를 복제하고 추정금액을 각 경계의 직전/동일/직후로, 기간도 동일하게 바꾼 뒤 선택된 요율과 모든 간접비 행을 비교한다. 이 결과 없이는 시작 좌표 매핑을 A등급으로 올릴 수 없다. + diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/07_규칙2_3_4_5_직접비_단가_중기_자재.md b/scratch/orca_artifacts/stmate_competitor_analysis/07_규칙2_3_4_5_직접비_단가_중기_자재.md new file mode 100644 index 00000000..e21330c2 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/07_규칙2_3_4_5_직접비_단가_중기_자재.md @@ -0,0 +1,100 @@ +# 내부규칙 2·3·4·5 — 직접비 단가, 중기, BDQTY, 자재 채택 + +## 1. 모든 단가의 공통 출력 계약 + +STmate의 단가 항목은 출처가 달라도 최종적으로 세 비용 성분과 총계를 낸다. + +```text +TAMT = MAMT(material) + LAMT(labor) + SAMT(expense) +``` + +`COSTN.TAMTn/LAMTn/MAMTn/SAMTn`은 차수 n의 총계·노무·재료·경비다. BOQ의 `T_AMT/L_AMT/M_AMT/S_AMT`도 같은 구조다. 바이너리 내부 조건식 `TAMT1<>MAMT1+LAMT1+SAMT1`이 이 관계를 직접 검증한다. 재구현할 때 표준시장단가나 견적단가를 총액 하나로만 저장하면 내역은 맞아도 간접비 산정기초가 달라진다. + +## 2. 일위대가·작업단가·표준시장단가 + +### 입력 + +- 항목 코드·명칭·규격·단위 +- 구성 자원 코드와 유형(재료 M, 노무 L, 중기/경비 X 등) +- 구성 수량 또는 산식 +- 할증·보정 전후 수량 +- 구성 자원의 채택단가, 재료·노무·경비 성분 및 총계 +- 직접 입력 또는 성분 배분값 + +### 계산 + +```text +component_amount[k] = quantity_after_adjustment × referenced_unit_component[k] +unit_component[k] = sum(component_amount[k]) +``` + +`COSTN.SMT`에는 `&M00034M&`, `&L00010L&`, `&X00055M&` 같은 참조 토큰과 수량·백분율·산식 문자열이 남는다. 마지막 글자는 참조 항목에서 가져올 성분을 뜻하는 것으로 강하게 추정된다. 따라서 계산기는 메모 표시 문자열이 아니라 토큰을 파싱한 의존 그래프를 먼저 만들고 위상순서로 단가를 계산해야 한다. 순환 참조는 오류로 보고해야 한다. + +표준시장단가·작업단가는 일위대가와 병렬 입력이다. 직접 성분이 주어진 경우 그대로 쓰고, 총액만 주어진 경우 STmate와 동일한 성분 배분 자료가 없으면 임의 분배하지 않는다. 총액 전부를 경비로 넣는 편의 구현은 간접비를 바꾸므로 금지한다. + +## 3. 중기 시간당 단가 + +### 계산 단계 + +```text +hourly_ownership = acquisition_price × (depreciation_factor + maintenance_factor + management_factor) +hourly_fuel = fuel_consumption_per_hour × adopted_fuel_price +hourly_lubricant = lubricant_rule(hourly_fuel or consumption) +hourly_labor = operator_daily_wage / daily_hours × labor_adjustments +hourly_operating = hourly_fuel + hourly_lubricant + hourly_labor + consumables +hourly_machine = hourly_ownership + hourly_operating + transport_hourly + assembly_hourly +production_per_hour Q = n × q × f × E +machine_hours_per_unit = 1 / Q +unit_machine_cost = machine_hours_per_unit × hourly_machine +``` + +중기 성분 참조 토큰이 M/L/S로 나뉘므로 연료·소모품은 재료, 운전원은 노무, 손료·정비·관리·운반·조립은 경비로 분리하여 상위 단가에 전달해야 한다. 암질 보정은 모든 장비에 일괄 적용하지 않고 제외 장비를 가진 정책으로 처리해야 한다. + +XLSX의 `중기시간금액집계표`에서는 시간×중기목록표 단가를 `ROUND(...,0)`한다. 하지만 중기 내부의 각 세부항목 절사 시점은 출력 수식만으로 완전히 확정되지 않았다. 내부 원값, 표시값, 상위 전달값을 분리해 저장해야 한다. + +## 4. BDQTY 수량·할증 + +확인된 필드는 `BDCODE`, `CODE`, `NAME`, `SIZE`, `UNIT`, `QTY1..4`, `DEVD1..4`, `X_QTY1..3`, `X_HAL1..3`, `RATE`, `X_RATE`, `S_RATE`, `PRPT`, `TPRPT`, `PRIN`, `PROUT`, `EQCODE`, `SBMOK` 등이다. + +최소 의미 모델은 다음과 같다. + +```text +source_quantity # 품셈 또는 사용자가 입력한 원수량 +pre_surcharge_qty # X_QTY 계열 +surcharge_rate # X_HAL/RATE 계열 +post_surcharge_qty # 단가계산에 실제 투입되는 수량 +revision_quantity # QTY1..4 +waste_or_output # PRIN/PROUT 등 투입·산출 관계 +``` + +재료 수량 할증과 잡재료/공구손료 같은 금액 가산은 다른 연산이다. 전자는 수량을 바꾼 뒤 단가와 곱하고, 후자는 특정 성분 소계에 비율을 곱해 별도 비용행을 만든다. 둘을 하나의 `surcharge` 필드로 합치면 안 된다. + +BDQTY 본문은 난독화되어 필드별 실제 값 연결은 C등급이다. 구현 전 대조시험은 하나의 단가에 재료·노무·중기 각 1개만 넣고, 각 할증 입력을 하나씩 바꿔 `QTY`, `X_QTY`, `X_HAL`, 세 비용 성분과 총계 변화를 저장하는 방식이어야 한다. + +## 5. 자재 6개 가격과 채택가격 + +`COSTN`은 차수마다 `AMT_11..AMT_61`처럼 6개 후보가격을 보관하고, 페이지/출처 보조필드 `PG_11..PG_51`, 채택 출처 인덱스 `PG_1..PG_4`, 채택 관련 플래그 `AMT_1..AMT_4`를 가진다. 재료의 최종 채택가는 `MAMT1..4`이며 `TAMT1..4`는 해당 자원의 총단가다. + +7개 STC 교차비교 결과: + +- 재료 M 항목의 채택가는 파일마다 후보 1~6 중 여러 슬롯과 일치한다. +- 같은 채택가가 여러 후보 슬롯에 중복되어 한 레코드만으로 선택 슬롯을 역추정할 수 없다. +- 2025 소광 표본은 M 43건 중 후보6과 채택가가 일치하는 행이 37건으로 많지만, 다른 후보와도 중복 일치한다. +- 노무 L은 다수 파일에서 후보6과 채택가가 거의 일치한다. 이는 후보6이 범용 “채택/적용” 칸일 가능성을 높이지만 자동선정 규칙 자체를 증명하지는 않는다. + +`Start8x.Ini`의 표시명은 설치/기관별로 바뀔 수 있으므로 슬롯 번호에 특정 가격지 이름을 코드로 고정하면 안 된다. 데이터 모델은 다음처럼 출처를 별도 행으로 둔다. + +```text +price_candidate(material_id, revision_id, slot_no, source_name, page, observed_price, observed_at) +price_adoption(material_id, revision_id, chosen_slot_no?, adopted_price, method, user_override) +``` + +자동선정은 현재 C등급이다. 최저가·최신가·특정 슬롯 우선 중 어느 하나라고 단정할 근거가 없다. 동일 구현 전에는 후보 조합을 통제한 STmate 시험이 필수다: 6개 슬롯에 서로 다른 값, 동률, 0, 공란을 배치하고 채택값과 `PG_1` 변화를 기록한다. + +## 6. 반올림 경계 + +- 내역서 행 금액: `ROUNDDOWN(수량×단가,0)` — A +- 자원/일위대가/중기 집계표 행 금액: `ROUND(수량×단가,0)` — A +- 단가 내부 구성행과 성분 소계: 표본별 좌표 추가 대조 필요 — B/C + +계산 엔진은 출력표마다 다시 계산하지 말고 동일 원수량·원단가에서 각 보고서의 반올림 정책을 명시적으로 적용해야 한다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/08_규칙6_8_9_재계산_변경설계_일괄변경.md b/scratch/orca_artifacts/stmate_competitor_analysis/08_규칙6_8_9_재계산_변경설계_일괄변경.md new file mode 100644 index 00000000..60a6995f --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/08_규칙6_8_9_재계산_변경설계_일괄변경.md @@ -0,0 +1,98 @@ +# 내부규칙 6·8·9 — 재계산, 변경설계, 일괄변경 + +## 1. 재계산 의존 그래프 + +재계산 범위는 화면 단위가 아니라 데이터 의존성으로 결정해야 한다. + +```text +노임/자재/환율 ─┐ +중기 기초값 ────┼→ 중기시간단가 → 일위·작업단가 ─┐ +품셈/할증 ──────┘ ├→ 내역 직접비 → 간접비 → VAT/끝전 → 출력 +설계수량 ────────────────────────────────────────┘ +요율기준 ─────────────────────────────────────────────────→ 간접비 이후 +``` + +### 변경별 최소 무효화 범위 + +| 변경 | 반드시 다시 계산할 대상 | +|---|---| +| 자재 채택가 | 해당 자재를 참조하는 중기·단가의 모든 상위 노드, 내역, 간접비 | +| 노임 | 해당 직종을 참조하는 중기·단가, 직접·간접노무 기반 비용 | +| 유류·환율 | 해당 중기, 이를 참조하는 단가와 상위 내역 | +| 품셈 수량/할증 | 해당 단가와 상위 단가·내역 | +| 설계수량 | 해당 내역 행과 상위 공종 합계, 간접비. 단가표 자체는 유지 | +| 요율표/규모/기간 | 직접비 유지, 간접비 이후 재계산 | +| 출력 서식 | 계산 캐시 유지, 보고서만 재생성 | + +`COSTN.SMT` 참조 토큰은 이 역의존성 인덱스를 만드는 핵심 근거다. 문자열을 계산할 때마다 전수 검색하지 말고 저장 시 `dependency(parent_code, child_code, component)`로 정규화한다. + +STmate UI에서 어떤 버튼이 부분계산 또는 전체계산을 수행하는지는 정적 자료로 확정되지 않았다. 그러나 동일 결과를 만드는 데 필요한 최소 범위는 위 표로 명세할 수 있다. 계산 결과에는 입력 버전 해시를 남겨 오래된 캐시가 출력되는 일을 막는다. + +## 2. 변경설계 데이터 모델 + +STC에는 두 형태가 동시에 확인된다. + +1. 한 파일 안에 `BOQ11`, `BOQ12`를 함께 저장하는 통합형: 소광 표본은 각각 90행, 89행이다. +2. 변경 차수를 별도 STC로 저장하면서 그 파일의 `BOQ11`을 현재안으로 쓰는 분리형: 소광 변경1차 표본은 115행이다. + +또한 `COSTN`과 여러 필드의 접미사 1~4는 원설계와 최대 3개 변경차수의 값을 나란히 담을 수 있다. 따라서 “접미사 n=항상 BOQ1n”으로 기계적으로 가정하지 말고 프로젝트 메타데이터와 실제 존재 테이블을 함께 해석해야 한다. + +### STmate의 실제 변경설계 계산모드 — A등급 + +실행모듈에 간접비 변경분 산식 두 개가 그대로 들어 있다 (11번 문서 §10). + +```text +방법 A = C_AMT_B + + ROUNDDOWN(C_AMT_B × ((C_TAMT_C-C_TAMT_B)/C_TAMT_B), digits) + +방법 B = C_AMT_B + + ROUNDDOWN((C_TAMT_C-C_TAMT_B) × RAT_1, digits) +``` + +여기에 보험료 사후정산 항목의 **당초금액 직접입력**(직접입력 체크가 없으면 적용 거부)과, 계약 제잡비율 적용 시 간접노무비부터 부가세 직전까지를 `직접비 변경분 × 계약 제잡비율`로 조정하는 경로가 더 있다. 보험료 변경(`cBx_CH_BO`)은 별도로 세 모드를 가진다 (12번 문서 §10.3). + +```text +0 직접노무비 × 요율 +1 당초액 + 직접노무비 증감 × 요율 +2 당초액 + 증감액(비율) +``` + +즉 **STmate는 각 차수를 전부 독립 재계산하는 한 가지 방식이 아니라, 항목별로 계산모드를 고르는 구조다.** + +### 재구현 규칙 + +- 원설계를 불변 revision 1로 보존한다. +- 변경 시작 시 이전 차수의 단가·수량·요율 선택을 복사한 스냅샷을 만든다. +- 변경한 입력과 자동 재계산 결과를 구분한다. +- 비교표는 `original`, `previous`, `current`, `delta`를 모두 계산한다. +- 삭제 항목은 물리 삭제하지 않고 현재 차수에 0/제외 상태로 남겨 코드 대응을 보존한다. +- 신규 항목은 안정적인 내부 ID와 차수별 표시 순서를 가진다. +- 간접비 항목마다 `recalculated`, `proportional_from_original`(방법 A), `delta_times_rate`(방법 B), `carry_original`, `manual`을 **계산모드 값으로 저장**한다. 절사 비선형성 때문에 모드가 다르면 원 단위 결과가 갈리므로, 모드를 하나로 고정하면 STmate 결과를 재현할 수 없다. +- Aislo 자체 기본값으로는 전 차수 독립 재계산(`recalculated`)을 권장하되, **STmate 호환 모드와 구분해서** 둔다. + +## 3. 일괄 단가변경·물가변동 + +프로그램 모듈명과 필드(`EDT_DATE`, `BQCODE`, 후보가격, 환율 등)로 일괄변경 기능의 존재는 확인되지만 세부 필터와 우선순위는 정적 자료만으로 확정되지 않았다. + +동일 프로그램 수준의 안전한 처리 계약은 다음과 같다. + +1. 대상 스냅샷을 먼저 확정한다: 차수, 코드 유형, 품목 범위, 가격 출처, 기준일. +2. 각 레코드에 변경 전 후보가·채택가·선택방식과 변경 후 값을 기록한다. +3. 수동 고정값을 자동 변경이 덮을지 정책을 명시한다. 기본적으로 수동고정은 제외한다. +4. 가격을 바꾼 뒤 역의존 그래프로 영향받는 항목만 재계산한다. +5. 변경 전/후 직접비, 간접비, VAT, 총액을 함께 미리보기한다. +6. 확정 시 새 revision으로 원자적으로 저장하며 이전 차수는 보존한다. + +물가변동은 단순히 모든 단가에 같은 배율을 곱하는 기능으로 만들면 안 된다. 노무·재료·중기·견적의 기준일과 출처가 다르고, 중기는 연료·노무·손료 성분을 다시 계산해야 하기 때문이다. + +## 4. 반드시 필요한 STmate 대조시험 + +- 같은 자재를 참조하는 단가 2개와 그중 하나를 참조하는 상위 단가를 만든 뒤 자재가 1원 변경 +- 설계수량만 변경하여 단가표 불변 여부 확인 +- 요율만 변경하여 직접비 불변 여부 확인 +- 원설계에서 항목 추가·삭제·수량변경·단가변경을 각각 한 건씩 만들어 변경 STC 저장 +- 일괄변경에서 수동 채택가, 0원, 공란, 환율적용 품목이 섞인 표본 실행 +- 각 시험 전후 STC의 모든 DBF 필드와 XLSX 모든 계산행 비교 + +이 시험 전까지 UI 버튼별 재계산 범위, 수동값 우선순위, 물가변동 필터는 C등급이다. 다만 **변경설계 간접비 계산모드 자체는 코드에서 공식을 직접 확인해 A등급**이며(§2), 이 시험의 목적은 "어느 모드가 어느 조건에서 선택되는가"를 가르는 데 있다. + diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/09_통합_재구현_명세.md b/scratch/orca_artifacts/stmate_competitor_analysis/09_통합_재구현_명세.md new file mode 100644 index 00000000..d0be4f28 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/09_통합_재구현_명세.md @@ -0,0 +1,131 @@ +# STmate 호환 계산 엔진 — 통합 재구현 명세 + +## 1. 완료 정의 + +다음 조건을 모두 만족해야 “동일 프로그램을 만들 수 있는 분석”이 완료된다. + +- 같은 입력에서 단가의 재료·노무·경비 성분과 그 총계가 각각 일치한다. +- 내역 행, 공종 소계, 직접비, 모든 간접비 행, 이윤, VAT, 관급합계가 각각 일치한다. +- 원설계와 변경설계가 독립 재현되고 차액이 일치한다. +- 출력 목적별 `ROUND`, `ROUNDDOWN`, `ROUNDUP` 차이가 일치한다. +- 기초가격 하나를 바꿀 때 영향받는 항목과 보존되는 항목이 일치한다. +- 자동선택과 수동고정의 우선순위가 일치한다. + +최종 총액만 일치하는 것은 합격이 아니다. + +## 2. 내부 데이터셋 + +### 프로젝트와 차수 + +```text +project(id, name, work_type, owner_type, base_date, duration, estimate_band) +revision(id, project_id, sequence, kind, parent_revision_id, created_at) +``` + +### 기초가격 + +```text +resource(id, code, type, name, size, unit) +price_candidate(resource_id, revision_id, slot, source, page, price, date) +price_adoption(resource_id, revision_id, chosen_slot, adopted_price, method, locked) +``` + +### 단가 구성과 계산 결과 + +```text +unit_item(id, code, kind, name, size, unit) +unit_component(unit_item_id, revision_id, seq, ref_id, ref_component, + source_qty, pre_surcharge_qty, surcharge_rate, applied_qty, expression) +unit_result(unit_item_id, revision_id, material, labor, expense, total) +dependency(parent_id, child_id, component) +``` + +### 내역과 간접비 + +```text +boq_item(id, revision_id, parent_id, seq, code, ref_unit_item_id, design_qty, state) +boq_result(boq_item_id, material_unit, labor_unit, expense_unit, total_unit, + material_amount, labor_amount, expense_amount, total_amount) +rate_standard(year, work_type, cost_code, amount_band, duration_band, rate) +indirect_rule(cost_code, order_no, base_components, rounding_mode, rounding_digits) +indirect_result(revision_id, cost_code, base_amount, rate, raw_amount, + rounded_amount, adjustment_amount) +``` + +`base_components`는 문자열 수식보다 검증 가능한 코드 목록/연산 트리로 저장한다. + +## 3. 계산 순서 + +```text +validate inputs +select adopted resource prices +build dependency graph; reject cycles +calculate machine hourly rates +calculate unit items in topological order +calculate BOQ leaf rows with BOQ rounding policy +aggregate BOQ tree bottom-up +select rates from project classification +calculate indirect rows in fixed order using already-rounded predecessors +calculate profit/end adjustment/VAT/government-material totals +freeze revision result and generate reports +``` + +## 4. 숫자 규칙 + +- 모든 금액·수량·요율은 decimal로 계산한다. +- 입력 원값과 표시 반올림값을 분리한다. +- 내역 행은 원 단위 내림, 자원집계는 원 단위 Excel 반올림, 관급합계는 천원 단위 올림 등 출력별 정책을 코드가 아닌 데이터로 명명한다. +- 간접비 다음 행은 앞 행의 원값이 아니라 절사된 확정액을 참조한다. +- 합계 후 절사와 행별 절사 후 합계를 혼용하지 않는다. + +## 5. 호환 어댑터 + +- STC는 ZIP 컨테이너로 읽고 파일명 대소문자를 무시한다. +- DBF 03/E5/06 변형과 필드 수 차이를 버전 어댑터에서 흡수한다. +- `BOQ11..14`와 접미사 1..4를 revision으로 정규화하되 실제 테이블 존재 여부와 프로젝트 메타데이터로 판정한다. +- `COSTN.SMT` 토큰을 파싱해 구성항목과 의존성을 복원한다. +- 난독화된 `BDQTY`는 합법적으로 확보된 평문/API 또는 STmate 대조실험 결과 없이는 임의 복호화하지 않는다. + +## 6. 모듈 경계 + +화면이나 보고서와 계산 코어를 분리한다. 필요한 모듈은 여섯 개면 충분하다. + +1. `stc_adapter`: STC/DBF/SMT를 정규화한다. +2. `price_engine`: 후보가격과 채택을 관리한다. +3. `unit_engine`: BDQTY, 중기, 일위·작업·시장·견적 단가를 계산한다. +4. `boq_engine`: 계층 내역과 직접비를 계산한다. +5. `indirect_engine`: RATE 선택, 제비율, 끝전, VAT를 계산한다. +6. `revision_engine`: 원설계·변경설계 스냅샷과 차이를 관리한다. + +별도 규칙 엔진 프레임워크나 범용 수식 언어는 필요 없다. 관찰된 연산 트리와 정책 테이블이면 충분하다. + +## 7. 시험 골든셋 + +각 보유 STC/XLSX 쌍에서 다음 JSON을 추출해 골든셋으로 둔다. + +```text +resource adopted prices +unit four-component prices +BOQ quantities and four-component row amounts +indirect row: base/rate/raw/rounded/adjustment +revision comparison +report-specific rounded aggregates +``` + +시험은 ① 현재 5개 실문서 회귀, ② 경계값 합성시험, ③ STmate 통제 입력 대조시험으로 나눈다. A등급 규칙은 즉시 회귀시험으로 고정하고, B/C등급은 정책 플래그 아래 구현하여 대조결과가 나올 때만 기본값을 확정한다. + +## 8. 현재 구현 가능 범위 + +지금 자료만으로 A등급 구현 가능한 부분은 STC 컨테이너와 주요 스키마, 단가의 재료·노무·경비와 총계 구조, BOQ 계산 및 계층집계, 주요 간접비 흐름, 보고서별 반올림, 변경 차수 보존 구조다. + +STmate와 100% 동일하다고 아직 보증할 수 없는 부분은 RATE 좌표 라벨·경계, BDQTY 세부 플래그, 자재 자동채택 우선순위, 중기 내부 절사 시점, UI 명령별 재계산 범위, 일괄변경의 수동값 우선순위다. 이 여섯 항목은 구현상의 사소한 선택이 아니라 결과 금액을 바꾸는 호환성 차단점이다. + +## 9. 구현 착수 순서 + +1. 5개 XLSX에서 골든셋을 추출하고 반올림 함수를 고정한다. +2. COSTN·BOQ 어댑터와 단가 의존 그래프를 구현한다. +3. 직접비와 간접비를 골든셋에 맞춘다. +4. 중기와 자재 후보가격을 연결한다. +5. revision 스냅샷과 변경 비교를 구현한다. +6. 여섯 미확정 항목에 대해 STmate 통제 대조시험을 수행한다. +7. 대조결과를 정책 기본값으로 승격하고 전체 회귀를 다시 통과시킨다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/10_System_186개_파일분석장부.md b/scratch/orca_artifacts/stmate_competitor_analysis/10_System_186개_파일분석장부.md new file mode 100644 index 00000000..b4f153c9 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/10_System_186개_파일분석장부.md @@ -0,0 +1,148 @@ +# STmate System 186개 파일 분석 장부 + +분석 대상: `C:\경영정보(주)\System` +기준일: 2026-09-13 +판정 원칙: 파일명 추정은 완료로 세지 않으며, 바이너리 내부 근거와 계산 입출력 연결이 확인되어야 `계산 의미 완료`로 판정한다. + +## 1. 현재 숫자 + +| 수준 | 완료 | 남음 | 의미 | +|---|---:|---:|---| +| 전체 파일 등록·SHA-256·크기 | 186 | 0 | 전 파일 변경 추적 가능 | +| 매직·컨테이너/PE/DBF 형식 확인 | 186 | 0 | 파일명 아닌 실제 헤더 기준 | +| 핵심 CPM 내부구조 추출 | 12 | 0 | 우선대상 12개 모두 PE 섹션·import/export·문자열 추출 | +| 전체 파일 내부구조 추출 | 186 | 0 | PE 82, DBF 계열 61, ZIP 28, 기타 포맷 15 | +| 계산 의미 교차검증 완료 파일 | 0 | 186 | 함수 입력→중간값→출력이 모두 확인된 파일은 아직 없음 | + +형식별 실제 판정은 PE 82개, ZIP 28개, DBF 계열 61개, 텍스트 8개, BTLF 2개, BTCV·SIxMemo·DOS-MZ·난독화 로그·팁 데이터 각 1개다. 파일별 전체 장부는 함께 생성한 `system_inventory.csv`에 있으며 UTF-8 BOM과 SHA-256을 포함한다. + +## 2. 핵심 CPM 12개 1차 정적 분석 + +모든 모듈은 32비트 Delphi 6 계열 PE이며 `CODE`, `DATA`, `BSS`, `.idata`, `.edata`, `.reloc`, `.rsrc` 섹션을 가진다. 공통적으로 Delphi 런타임, Apollo DBF 엔진 및 내부 모듈 `ST_COM_V.CPM`, `ST_FUNC_C.CPM`, `DP_COMMON.CPM`을 사용한다. + +| 모듈 | 확인된 export | 내부 근거로 확인된 역할 | 상태 | +|---|---|---|---| +| `ST_Boq.CPM` | `Edit_Boq`, `Edit_Bqm`, `Add_From_MRG`, `Calc_Kanjub` | BOQ 편집, 병합 입력, 간접비 호출, BDQTY/COSTN/PRJLST 접근 | 내부구조 추출 | +| `ST_EdiLWi.CPM` | `Edit_iLW`, `Calc_Kanjub` | 일위대가 편집, BDQTY 수량·할증 필드 접근 | 내부구조 추출 | +| `ST_KanJub.CPM` | `Edit_KanJub`, `Edit_KanJub_K`, `Edit_Kan_Rate`, `Prn_Kan_Rate`, `Calc_Kanjub` | 제비율 편집·인쇄·계산 | 내부구조 추출 | +| `ST_SanCal.CPM` | `Calq_San`, `Calc_Kanjub` | 단가산출, `GET_ROUND_CUT`, `RoundTo`, 성분 소계 | 내부구조 추출 | +| `STmateQty8.CPM` | `ST_QTY`, `FIND_QCODE`, `Free_Qty`, `Calc_Kanjub` | QTY0~QTY9, IFORM, Excel 수량 가져오기, BOQ 전송 | 내부구조 추출 | +| `ST_P_Joong.CPM` | `Prn_Joong*`, `Calc_Kanjub` | 중기 재료·노무·경비, HalM/HalL/HalS 출력 | 내부구조 추출 | +| `ST_P_Collect.CPM` | `Prn_Col_Dan*`, `Prn_Col_X*`, `Calc_Kanjub` | 단가·중기 자원 역집계, `CON_QTY11.DBF` | 내부구조 추출 | +| `ST_P_ConEst.CPM` | `Prn_Nae_*`, `Prn_Jab_K`, `Calc_Kanjub` | 원가·내역 출력, BOQ11 연동 | 내부구조 추출 | +| `ST_U_ChgAmt.CPM` | `CHANGE_AMT`, `Calc_Kanjub` | COSTN/COSTA 단가 일괄변경 | 내부구조 추출 | +| `ST_U_ChgCode.CPM` | `Chg_Code_*`, `Exec_Change_Code`, `Exec_Replace_Code`, `Tran_SAN_Format` 등 | 코드 일괄·선택 변경, Excel 왕복, CH_CODE 임시표 | 내부구조 추출 | +| `ST_U_ConBD.CPM` | `CON_QTY`, `CON_QTY9`, `CONBD_USD_QTY`, `Calc_Kanjub` | BOQ↔BDQTY 수량 연결, 행유형 필터 | 내부구조 추출 | +| `ST_U_Convert.CPM` | `Conv_BOQ`, `Conv_Equip`, `Conv_ST8_XML`, `Conv_XML_ST8`, `MK_SET_REP` 등 | 구형/ST8/XML/조달 형식 변환, RATE/JB 복사 | 내부구조 추출 | + +## 3. 바이너리에서 새로 확정된 계산 규칙 + +### 단가 성분 관계 — A등급 + +세 모듈에서 다음 검증 조건식이 그대로 발견됐다. + +```text +TAMT1 <> MAMT1 + LAMT1 + SAMT1 +``` + +또한 자원 유형별 검증도 존재한다. + +```text +CODE="L" → LAMT1 = TAMT1 +CODE="M" → MAMT1 = TAMT1 +CODE="S" → SAMT1 = TAMT1 +복합/W 코드 → TAMT1 = MAMT1 + LAMT1 + SAMT1 +``` + +따라서 `TAMT`는 네 번째 비용 성분이 아니라 총계다. 기존 05·07·09 문서를 이에 맞게 정정했다. + +### 변경설계 산식 템플릿 — 코드 존재 A, 항목 대응 B + +12개 모듈 공통 코드에 다음 두 템플릿이 포함돼 있다. + +```text +C_AMT_B + ROUNDDOWN(C_AMT_B × ((C_TAMT_C-C_TAMT_B)/C_TAMT_B), 자리) +C_AMT_B + ROUNDDOWN((C_TAMT_C-C_TAMT_B) × RAT_1, 자리) +``` + +이는 변경금액을 무조건 전체 재계산하는 것이 아니라 당초 확정액에 기초금액 증감률 또는 증감액×요율을 더하는 두 경로가 있음을 확인한다. + +### 간접비 산정기초 템플릿 — A등급 + +바이너리에 다음 원형이 존재한다. + +```text +ROUNDDOWN(LAMT × RAT_1, 자리) +ROUNDDOWN((L_AMT + LAB) × RAT_1, 자리) +ROUNDDOWN(C_KUNBO × RAT_1, 자리) +ROUNDDOWN(T_AMT × RAT_1, 0) +ROUNDDOWN((T_AMT - M_AMT) × RAT_1, 0) +ROUNDDOWN(M_AMT × RAT_1, 0) +ROUNDDOWN((M_AMT + L_AMT + S_AMT ...) × RAT_1, ...) +ROUND/ROUNDDOWN/ROUNDUP(C_AD_AMT, -자리) +``` + +XLSX에서 관찰한 산식이 출력물에 우연히 생긴 것이 아니라 STmate 공통 계산 코드에 들어 있는 템플릿임을 확인했다. + +### 복합 보험성 산식 — B등급 + +다음 중첩 절사식도 확인됐다. + +```text +ROUNDDOWN( + ROUNDDOWN(LAMT×RAT_1×RAT_2/100×1.4,0) + + ROUNDDOWN(LAMT×RAT_KY×RAT_3/100,0) + + ROUNDDOWN(LAMT×RAT_1×RAT_2/100×RAT_4/100,0), + 자리) +``` + +각 항을 먼저 원 단위 절사한 뒤 합계를 다시 절사한다. `RAT_1..4`, `RAT_KY`의 정확한 비용항목 명칭 연결은 다음 단계에서 RATE/JB와 UI 라벨을 교차해야 한다. + +## 4. 제비율 기준파일과 프로젝트 RATE의 관계 + +확장자와 실제 DBF 구조가 다음처럼 대응한다. + +| 배포파일 | DBF 구조 | 보유 개수 | 프로젝트 테이블 | +|---|---|---:|---| +| `JB_1` | 41행 × 10열 | 1 (2011) | `RATE.DBF` | +| `JB_M` | 25행 × 10열 | 1 (2007) | `RATE_M.DBF` | +| `JB_R` 구형 | 50행 × 20열 | 9 (2015 ~ 2020-01-02) | `RATE_R.DBF` | +| `JB_R` 신형 | 50행 × 35열 | 18 (2020-05-27 ~ 2026) | `RATE_R.DBF` | +| `JB_RA` | 50행 × 20열 | 13 (2015 ~ 2026, **확장 없음**) | `RATE_RA.DBF` | + +**열 확장 시점은 2020-05-27로 확정됐다.** `2020(상_0102)`이 20열, `2020(상_0527)`이 35열이다. 두 파일의 **1~20열은 500개 셀 중 한 개도 다르지 않다.** 즉 확장은 기존 열을 재배치하지 않고 **뒤에 덧붙인 것**이다. 구형 파일을 읽을 때 열 의미를 바꿔 해석할 필요가 없다. + +늘어난 15개 열 가운데 실제로 값이 들어가는 것은 **21, 26, 27, 28, 31** 다섯 개뿐이고, 값이 놓이는 행은 `0~3, 5~8, 10~13, 15~18`과 `48`이다. 2020-05-27은 **국가유산(문화재수리) 공종이 제비율에 들어온 시점**이며, 화면 `rGrd_Rate_R1`의 간접노무비·기타경비가 각각 `국가유산` 열을 하나씩 더 가지는 것과 개수가 맞는다. + +### 행렬의 물리 배치 — 실측 + +- **행은 5행 묶음**이다. 묶음 시작은 `0, 5, 10, 15, 20, 25, 30, 35, 40, 45`이고, 각 묶음은 **값 4행 + 빈 1행**으로 끝난다. 화면 `rGrd_Rate_R1`(20행)·`rGrd_Rate_RA1`(20행)이 `5 공사규모 × 4 공사기간`인 것과 맞는다. +- **열 1~5 = 간접노무비**, **열 6~10 = 기타경비**이며 둘 다 `토목 / 산.설(토목) / 조경 / 건축 / 산.설(건축)` 다섯 공종 순이다. 신형의 **열 21 = 국가유산 간접노무비**, **열 26 = 국가유산 기타경비**다. +- 열 17·18은 짝으로 움직인다(예: `2.28 / 4325`, `2.53 / 3300`). **율과 기초액 한 쌍**으로 읽는 것이 맞다. +- `ST_KanJub.CPM`에는 `RATE_nn` 리터럴이 22개뿐이고 `'RATE_'`·`'RATE'`·`'00'` 조각이 따로 있다. 열 접근은 **문자열을 실행 중에 조립**하므로, 시작 좌표를 코드 상수로 읽어낼 수는 없다. + +레코드 전체가 정확히 일치한 실제 사례도 확인됐다. + +- 영월 2024: `RATE=2011 JB_1`, `RATE_M=2007 JB_M`, `RATE_R=2023-01-02 JB_R`, `RATE_RA=2023 계열 JB_RA` +- 영덕 2025: `RATE=2011 JB_1`, `RATE_M=2007 JB_M`, `RATE_R=2025-01-01 JB_R` +- 봉화 2024: `RATE_R=2024-03-15 JB_R` +- 울진 2024: `RATE_R=2020-05-27 JB_R` + +일치하지 않는 프로젝트 표도 있으며, 이는 사용자 수정·구버전 설치자료·후속 기준 갱신 중 하나다. 특히 소광 2025의 `RATE_R`은 2025-01-01 기준과 5개 셀만 다르다. 따라서 프로젝트 RATE는 단순 외래키가 아니라 기준파일을 복사한 뒤 수정 가능한 스냅샷이다. + +## 5. 다음 분석 순서 + +1. 12개 CPM의 전체 계산 문자열과 Delphi 폼 리소스를 기능별로 분리한다. +2. `ST_KanJub.CPM`의 UI 라벨과 `RAT_*` 자리표시자를 연결한다. +3. 43개 JB 파일을 연도별 셀 차이로 비교해 행·열 의미를 역추적한다. +4. BSC/CSTA의 DBF 스키마와 레코드 난독화 범위를 판정한다. +5. STBSC는 정상 프로그램 로드 전후 생성 파일을 관찰한다. +6. BDQTY·자재채택·변경설계의 통제실험을 수행한다. + +## 6. 산출 원자료 + +- `system_inventory.csv`: 186개 파일 경로·크기·해시·실제 형식·상태 +- `core_cpm_static.json`: 핵심 CPM 12개의 PE/import/export/도메인 문자열 +- `core_formula_strings.json`: 바이너리에서 검출한 계산식과 포함 모듈 + +세 파일은 분석 재현용이며 원본 `System` 폴더에는 아무것도 쓰지 않았다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/11_CPM_계산코어_정적분석.md b/scratch/orca_artifacts/stmate_competitor_analysis/11_CPM_계산코어_정적분석.md new file mode 100644 index 00000000..ce3461fb --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/11_CPM_계산코어_정적분석.md @@ -0,0 +1,399 @@ +# STmate CPM 계산 코어 정적 분석 + +분석일: 2026-09-13 +대상: `C:\경영정보(주)\System` 186개 파일 +목적: 화면과 예시 금액을 복제하는 것이 아니라, 같은 입력에서 같은 중간값과 결과를 만드는 계산 엔진을 재구현하기 위한 명세 + +## 1. 분석 범위와 판정 기준 + +186개 파일 전부를 SHA-256과 실제 파일 헤더로 식별했다. 파일명 확장자가 아니라 내부 형식으로 분류했으며, PE 모듈은 섹션·가져오기·내보내기·문자열, DBF 계열은 헤더·필드·레코드 상태, ZIP은 엔트리와 암호화 여부까지 읽었다. + +계산 핵심 12개 CPM은 export 진입점을 역어셈블하고, 코드가 참조하는 산식 문자열·필드명·화면 설명을 교차 확인했다. 다음 세 등급을 사용한다. + +- **A — 직접 확인**: DBF 스키마/레코드, 모듈 export, 실행코드가 참조하는 산식 문자열이 일치한다. +- **B — 강한 추론**: 모듈·필드·화면 설명이 일치하지만 입력/출력 쌍을 동적 실행으로 재현하지 못했다. +- **C — 미확정**: 암호화 기준자료 또는 화면 상태가 필요해 정적 자료만으로 경계를 확정할 수 없다. + +정적 분석은 타사 프로그램을 수정하지 않았고 암호화 자료의 암호를 추측하거나 우회하지 않았다. + +## 2. 계산 책임 모듈 + +| 모듈 | 확인된 진입점/문자열 | 재구현 책임 | 등급 | +|---|---|---|---| +| `DP_Common.CPM` | `CALC_STR`, `CALC_STR_PART`, `GET_ROUND_CUT`, `MROUNDUD`, `MROUNDUP`, `MTRUNC`, `MINT` | 식 평가, 자리수 절사·올림·반올림 | A | +| `ST_Func_C.CPM` | `CON_TOT`, `SUM_TOT`, `ZERO_TOT`, `PCN_TO_T`, `OPTIMIZ` | 조건별 집계, 0 정리, 총계 정규화 | A/B | +| `ST_KanJub.CPM` | `Calc_Kanjub`; 간접비 공식 템플릿과 적용기준 편집 문구 | 제비율 선택, 간접비 순차 계산, 추가금액·끝전조정 | A | +| `ST_SanCal.CPM` | `Calq_San`; `GET_ROUND_CUT`; `ROUND(2.45,1)=2.5`, `ROUNDDOWN(2.45,1)=2.4` | 단가산출/일위대가의 재료·노무·경비 산정 | A | +| `ST_Boq.CPM` | 합계 불일치 검사, 수량 소수부 검사, `%` 단위 처리 | 내역서 행 계산과 검증 | A | +| `ST_EdiLWi.CPM` | `TAMT=MAMT+LAMT+SAMT` 검증 | 내역 편집 시 성분 합계 불변조건 | A | +| `ST_EdSan.CPM` | `Edit_EQ_SYNC`, `Edit_SanKun` | 산출근거/장비 동기화와 편집 | B | +| `ST_Jabpum.CPM` | `Edit_Dan`, `Edit_Strg`, `Edt_Hal_Amt`, `Edt_Hal_Rate` | 품·할증·단가 편집 | B | +| `STmateQty8.CPM` | `QTY0`~`QTY9`, 이름/코드로 BOQ 전송 | 외부 수량의 내역 연결 | B | +| `ST_U_ChgAmt.CPM` | 변경금액 공식 문자열 | 당초/변경 금액 재계산 | A | +| `ST_U_ChgCode.CPM` | 전체·추가·선택 코드 변경, Excel 왕복 | 코드 치환 후 종속 계산 갱신 | B | +| `ST_U_ConBD.CPM` | `BOQ`, `BDQTY`, 코드·수량 필터 문자열 | 공종 수량을 내역으로 전개 | B | + +같은 공식 문자열이 12개 CPM에 반복되어 있다. 이는 서로 다른 계산식 12개가 아니라 공통 계산 단위가 Delphi 정적 링크 과정에서 여러 모듈에 포함된 흔적으로 판단한다. 재구현에서는 모듈마다 복제하지 않고 하나의 계산 코어로 모아야 한다. + +## 3. 금액 필드 불변조건 + +실행 모듈 세 곳에서 같은 검증식이 발견됐다. + +```text +TAMT = MAMT + LAMT + SAMT +``` + +- `TAMT`: 총금액 +- `MAMT`: 재료비 +- `LAMT`: 노무비 +- `SAMT`: 경비 +- 접미사 `1`, `2`: 당초/변경 또는 비교 안의 병렬 슬롯 + +코드별 추가 불변조건도 있다. + +```text +CODE="L" → LAMT=TAMT +CODE="M" → MAMT=TAMT +CODE="S" → SAMT=TAMT +CODE="W" 또는 복합행 → TAMT=MAMT+LAMT+SAMT +``` + +따라서 총액을 네 번째 독립 비목으로 저장하거나 계산하면 안 된다. 총액은 세 성분의 합이며, 단일 비목행에서는 해당 성분만 총액과 같고 나머지는 0이다. **등급 A**. + +## 4. 공통 계산 함수의 의미 + +### 4.1 식 평가 + +`CALC_STR`/`CALC_STR_PART`가 식 문자열을 평가한다. `Calc_Kanjub`는 `[LAMT]`, `[RAT_1]` 같은 자리표시자가 포함된 식 템플릿을 만들고, 실제 금액·요율·옵션에 따라 치환한 뒤 평가하는 구조다. + +재구현 계약: + +```text +evaluate(template, named_values, options) + 1. 선택 토큰([+LAB], [+ANJ_B] 등)을 옵션에 따라 포함/제거 + 2. [이름]을 Decimal 값으로 치환 + 3. 허용된 산술·비교·ROUND 계열만 평가 + 4. 임의 코드 실행은 금지 + 5. 사용한 원본 템플릿과 치환값을 계산 추적에 보존 +``` + +### 4.2 반올림 계열 + +#### 임포트 실측 — 무엇이 실제로 쓰이는가 + +`C:\경영정보(주)\System`의 PE 186개 전수를 훑어 수치 런타임 심볼의 실제 임포트를 셌다. + +| 런타임 심볼 | STmate 모듈이 임포트하나 | 뜻 | +|---|---|---| +| `@Math@RoundTo$qqrxdxzc` | **예 — 17개 모듈** (`ST_KanJub`, `ST_Boq`, `ST_SanCal`, `ST_EdiLWi`, `ST_EdSan`, `ST_P_Joong`, `ST_Prt`, `ST_P_iLWi`, `ST_Jabpum`, `ST_FindUse`, `ST_Sys`, `STmate.Cpm`, `ST_U_Convert`, `ST_U_ChgCode`, `ST_U_DelCode`, `ST_P_XLS` 등) | 금액 반올림의 실제 원시함수 | +| `@Math@SimpleRoundTo$qqrxdxzc` | **아니오** — `RTL60.BPL`만 내보냄 | 0에서 멀어지는 변형을 **쓰지 않음** | +| `@Math@Ceil$qqrxg` | **아니오** — `RTL60.BPL`만 | `ROUNDUP`을 `Ceil`로 만들지 않음 | +| `@Math@Floor$qqrxg` | 예 — 18개 모듈, 단 호출은 모듈당 2곳 | 금액 절사 주경로가 아님 | +| `@Math@SetRoundMode` / `GetRoundMode` | **아니오** — `RTL60.BPL`만 | FPU 반올림 모드를 **바꾸지 않음** | +| `Set8087CW` / `Default8087CW` / `_control87` | **아니오** — `RTL60.BPL`만 | 같음 | + +핵심 계산 모듈 6개(`ST_KanJub`, `ST_SanCal`, `ST_Boq`, `ST_EdiLWi`, `ST_P_Joong`, `ST_Prt`)에서 임포트 썽크로 들어가는 `E8 rel32` 호출을 세면 **모듈마다 정확히 `RoundTo` 12곳, `Floor` 2곳**으로 같다. 공용 계산 유닛이 각 CPM에 정적 링크된 구조다. + +`ST_KanJub.CPM`의 `0x0043A240`~`0x0043A3DF` 한 함수 안에 `RoundTo` 호출 12곳이 모여 있고, 호출 앞뒤에 `FCHS`(부호반전)나 `FABS`(절대값)가 **하나도 없다.** 즉 음수를 뒤집어 양수로 처리하는 흉내가 없다. 자리수는 `F6 D8`(`neg al`)로 부호만 뒤집어 `RoundTo`의 `ADigit`에 넘긴다. + +#### 이로부터 확정되는 것 — A등급 + +Delphi 6 `Math.RoundTo(v, ADigit)`는 `Round(v / 10^ADigit) * 10^ADigit`이고, `Round`는 **FPU 현재 반올림 모드**를 따른다. STmate가 모드를 바꾸는 호출을 전혀 하지 않으므로 모드는 Delphi 기본값인 **최근접-짝수(은행가 반올림)**로 고정이다. 음수 전용 분기도 없으므로 **0을 기준으로 대칭**이다. + +| 원 함수 | 실제 구현 | 음수 | 정확히 절반 | 등급 | +|---|---|---|---|---| +| `MROUNDUD`/`ROUND` | `Math.RoundTo` → FPU 최근접-짝수 | 대칭 | **짝수 쪽**(사사오입 아님) | **A** | +| `MTRUNC`/`ROUNDDOWN` | `Ceil`·`Floor` 미사용, Delphi `Trunc` 관용구(`FNSTCW`→`FLDCW`→`FISTP`→복원) | **0 방향** (Excel과 같음) | 해당없음 | B | +| `MROUNDUP`/`ROUNDUP` | `Ceil` 미사용 → 절사 후 나머지 보정 계열 | 미확정 | 해당없음 | B | +| `MINT` | `DP_Common.CPM`에만 존재 | 미확정 | 해당없음 | C | +| `GET_ROUND_CUT` | `DP_Common`·`ST_SanCal`·`ST_U_Convert` — 설정에 따라 위를 고름 | — | — | B | + +#### 경계표 — 내부 계산과 STmate 가 뽑은 XLSX 가 갈리는 자리 + +STmate 출력 XLSX 안의 수식은 **Excel** `ROUND`(0에서 멀어지는 사사오입)이고, 내부 Delphi 계산은 위처럼 **최근접-짝수**다. 같은 값이 두 곳에서 다르게 나온다. + +| 입력 | 자리 | STmate 내부 `ROUND` | Excel `ROUND` (출력 XLSX) | 일치 | +|---:|---:|---:|---:|:--:| +| 2.44 | 소수1 | 2.4 | 2.4 | ○ | +| 2.45 | 소수1 | **2.4** | 2.5 | ✗ | +| 2.46 | 소수1 | 2.5 | 2.5 | ○ | +| -2.45 | 소수1 | **-2.4** | -2.5 | ✗ | +| 0.5 | 원 | **0** | 1 | ✗ | +| 1.5 | 원 | 2 | 2 | ○ | +| 2.5 | 원 | **2** | 3 | ✗ | +| 3.5 | 원 | 4 | 4 | ○ | +| -2.5 | 원 | **-2** | -3 | ✗ | +| -3.5 | 원 | -4 | -4 | ○ | +| 1250 | 100원 | **1200** | 1300 | ✗ | +| 1350 | 100원 | 1400 | 1400 | ○ | +| 2500 | 1000원 | **2000** | 3000 | ✗ | +| 3500 | 1000원 | 4000 | 4000 | ○ | +| -2500 | 1000원 | **-2000** | -3000 | ✗ | + +시험한 20개 경계 중 **10개가 갈린다**. 재현 스크립트는 이 폴더의 `round_table.py`(경계표), `rounding_symbol_matrix.py`(임포트 실측), `rounding_callsites.py`(썽크 호출 집계), `rounding_dispatcher_dump.py`(함수 바이트 덤프)다. + +`2.45`가 소수1자리에서 `2.4`가 되는 이유는 두 겹이다. ① 은행가 반올림이고 ② `RoundTo`가 `IntPower(10,-1)`로 만든 `0.1`이 이진수로 정확하지 않아 `2.45/0.1`이 `24.4999…`가 된다. 따라서 **STmate 호환 모드는 `Decimal` 사사오입으로 흉내 낼 수 없고, 배정밀도 나눗셈까지 그대로 재현해야 한다.** + +#### 재구현 지침 + +- Aislo 자체 계산은 금액형을 `Decimal`로 두고 정책을 명시한다. 자리수 `0`은 원 단위, 음수는 십·백·천원 단위 조정으로 해석한다. +- **STmate 결과와 원 단위까지 맞춰야 하는 자리**에서는 위 배정밀도 경로를 그대로 흉내 내는 `stmate_round(value, digit)`를 따로 두고, 어느 경로로 계산했는지 계산 추적에 남긴다. +- 내부 계산값과 출력 XLSX 값이 원 단위에서 다를 수 있다는 점을 검증 기준에 반영한다. 둘이 다르다고 곧 오류가 아니다. + +## 5. 직접비 계산 + +### 5.1 단가와 금액 + +각 행은 재료·노무·경비 단가를 별도로 가지며 총단가는 세 성분의 합이다. 내역 금액은 보유 XLSX와 실행모듈 양쪽에서 다음 계약으로 확인된다. + +```text +component_amount = ROUNDDOWN(quantity × component_unit_price, configured_digits) +total_amount = material_amount + labor_amount + expense_amount +``` + +자원·일위대가·중기 집계 출력에는 `ROUND(quantity×unit_price,0)`가 나타나므로, 내역 행의 절사와 집계표의 반올림을 하나로 합치면 안 된다. 계산 자리마다 `rounding_policy`를 명시해야 한다. + +### 5.2 수량 표시와 계산값 + +`ST_Boq.CPM`은 비목 코드가 `M/L/S/W/B/D/X/A` 계열이고 수량 문자열의 소수 마지막 자리가 0이 아닌지 검사하며, `%` 단위행은 별도로 취급한다. 이는 화면 표시 소수점과 내부 계산 수량을 구분하고 있음을 뜻한다. 저장 모델에는 최소한 원수량, 계산수량, 표시자리수를 분리한다. **등급 B**. + +## 6. 간접비 공식 템플릿 + +실행코드가 직접 참조하는 템플릿은 다음 계열이다. 대괄호 이름은 런타임 치환 변수다. + +```text +ROUNDDOWN([LAMT] * [RAT_1], digits) +ROUNDDOWN(([L_AMT][+LAB]) * [RAT_1], digits) +ROUNDDOWN([T_AMT] * [RAT_1], digits) +ROUNDDOWN(([M_AMT]+[L_AMT]+[S_AMT]...) * [RAT_1], digits) +ROUNDDOWN([M_AMT] * [RAT_1], 0) +ROUNDDOWN(([T_AMT]-[M_AMT]) * [RAT_1], 0) +ROUNDDOWN(([TAMT]-[LAMT][+ANJ_B][+PMJ_B]+[B_AD_AMT]) * [RAT_1], 0) +``` + +기본형은 모두 **이미 계산된 밑수 × 요율을 지정 자리에서 절사**한다. `[+...]` 토큰은 특정 항목을 산정기초에 더하거나 빼는 옵션이다. 한 항목의 결과가 다음 항목의 밑수에 들어가므로 순서를 보존해야 한다. + +### 6.1 복합 보험/부담금형 + +다음 중첩식도 코드에 포함돼 있다. + +```text +ROUNDDOWN( + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4, 0) + + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100, 0) + + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100, 0), + digits +) +``` + +각 부분을 먼저 원 단위 절사한 뒤 합계를 다시 절사한다. 합계를 한 번에 계산한 뒤 마지막에만 절사하면 결과가 달라진다. 변수의 화면상 정확한 항목 매핑은 C등급이지만 **부분별 절사 순서 자체는 A등급**이다. + +### 6.2 확인된 간접비 항목 사전 + +원가계산 모듈에는 다음 항목이 명시돼 있다. + +- 간접노무비, 주휴수당 +- 산재보험료, 고용보험료, 건강보험료, 노인장기요양보험료, 연금보험료 +- 퇴직공제부금비, 산업안전보건관리비, 건설공사 안전점검비 +- 기타경비, 수도광열비, 복리후생비, 소모품·사무용품비, 여비·교통비·통신비, 세금·공과금, 시공도작성비 +- 환경보전비, 석면피해구제분담금, 임금채권부담금 +- 공사이행보증수수료, 하도급대금지급보증수수료, 건설기계대여금지급보증서수수료 +- 고용개선지원비(PS), 고용개선 건강·연금, 고용개선장려금 +- 공사보험료/공사손해보험료, 일반관리비, 이윤, 부가가치세 + +명칭이 존재한다고 모든 프로젝트에 자동 적용되는 것은 아니다. 항목별 `enabled`, `rate_source`, `base_components`, `rounding`, `manual_override`, `stage`를 저장해야 한다. + +## 7. 산업안전보건관리비 선택식 + +화면 설명과 계산 템플릿에서 다음 선택식이 확인된다. + +```text +(직·간재 + 직노 + (관급+사급)/1.1 - 내역서안전관리비) × rate +(재료비 + 직노 + (관급+사급)/1.1 - 내역서안전관리비) × rate +(직·간재 + 직노 + 관급/1.1 + 사급재 - 내역서안전관리비) × 3.15% + 기초액 +``` + +세 번째 계열은 다음 비교·상한/하한 선택을 동반한다. + +```text +기준식 결과 +vs +((직·간재 + 직노 - 내역서안전관리비) × 3.15% + 기초액) × 1.2 +``` + +기존 안전관리비를 차감하지 않는 변형도 존재한다. 관급·사급 처리 옵션은 다음 문자열로 확인된다. + +- `관급자재대/1.1`, `관급자재대` +- `사급자재대/1.1`, `사급자재대` +- `관급/1.1+사급재` +- `관급재+사급/1.1` +- `관급재+사급재` +- `(관급+사급)/1.1` + +따라서 안전관리비는 고정 공식 하나가 아니라 기준연도·공사종류·재료 공급형태·기존 계상액 포함 여부에 따른 정책 선택이다. 공식 선택 결과와 선택 근거를 결과에 저장해야 한다. 정확한 선택 조건은 RATE 좌표/화면 대조가 필요한 C등급이다. + +## 8. 요율 선택 축과 순환 의존성 + +모듈이 제시하는 선택 축은 다음과 같다. + +- 발표기관/기준군: 조달청, 건기연, 행자부 +- 편집군: 기본제비율, 실적공사비 적용요율, 행자부기준 +- 공사종류: 일반·산업설비·조경·건축, 토목·중건설·특수건설 등 +- 공사기간: 30일 미만, 6개월 미만/이하, 7~12개월, 13~36개월, 37개월 이상 등 +- 공사규모: 5천만·3억·5억·10억·30억·50억·70억·100억·120억·250억·300억·500억·1,000억·800억 등의 기준군별 구간 +- 공사등급: 1~6등급, 7등급 이하 + +원 프로그램은 “공사규모에 따른 제비율 변경으로 공사규모가 계속 변경되는 무한루프”가 발생할 수 있다고 명시하고, 일반관리비·이윤 등의 요율을 사용자가 직접 수정하도록 안내한다. + +따라서 재구현의 안전한 계약은 다음과 같다. + +1. 요율 선택의 기준금액과 기준군을 입력값으로 고정한다. +2. 자동 재선택은 최대 반복 횟수와 상태 이력으로 순환을 검출한다. +3. 구간이 왕복하면 임의의 한쪽을 택하지 않고 사용자 확정 상태로 전환한다. +4. 확정된 요율, 원 표 좌표, 사용자 수정 여부를 프로젝트 스냅샷에 보존한다. + +## 9. 추가금액과 적용 단계 + +추가금액은 단순 메모가 아니라 총계 트리의 특정 위치에 삽입된다. 화면 문자열로 다음 단계가 확인됐다. + +| 단계 | 삽입 위치 | 합계 영향 | +|---:|---|---| +| 3 | 일반관리비 직전 | 순공사원가의 경비에 포함 | +| 4 | 이윤 이후~공급가액 전 | 공급가액에 포함 | +| 5 | 도급공사비 직전 | 도급공사비에 포함 | +| 6 | 관급자재~총공사비 구간 | 총공사비에 포함 | + +별도로 “이윤 이후(공사원가 포함)”, “사급자재비 이후” 위치가 존재한다. 산출경비 직접비에 이미 포함된 금액은 경비금액에 다시 계상하지 않으며, 기성내역서 등록 시 삭제되고 XML 호환규정 변환 대상이 아니라는 경고도 있다. + +추가금액은 `amount`, `component`, `insertion_stage`, `include_in_cost_base`, `source`, `conversion_policy`를 가진 독립 행으로 구현해야 한다. **등급 B**. + +## 10. 변경설계 공식 + +코드에 두 가지 공식이 직접 포함돼 있다. + +```text +방법 A = C_AMT_B + + ROUNDDOWN(C_AMT_B × ((C_TAMT_C-C_TAMT_B)/C_TAMT_B), digits) + +방법 B = C_AMT_B + + ROUNDDOWN((C_TAMT_C-C_TAMT_B) × RAT_1, digits) +``` + +- `C_AMT_B`: 해당 간접비의 당초금액 +- `C_TAMT_B`: 기준 직접비/공사비의 당초 합계 +- `C_TAMT_C`: 같은 기준의 변경 합계 +- `RAT_1`: 항목 요율 + +방법 A는 당초금액에 전체 증감비율을 적용하고, 방법 B는 증감 기초금액에 항목 요율을 적용한다. 보험료 사후정산 항목은 당초금액과 동일하게 직접 입력하는 옵션도 있다. 직접입력 체크가 없으면 적용을 거부한다. + +또 계약 제잡비율 적용 시 간접노무비부터 부가세 직전 항목의 변경분을 `직접비 변경분 × 계약 제잡비율`로 조정하는 기능이 있다. 재구현은 `recalculated`, `proportional_from_original`, `delta_times_rate`, `carry_original`, `manual`을 서로 다른 계산 모드로 저장해야 한다. + +## 11. 끝전조정 + +코드에는 `[C_AD_AMT]`에 대한 다음 선택이 존재한다. + +```text +ROUND([C_AD_AMT], -digits) +ROUNDDOWN([C_AD_AMT], -digits) +ROUNDUP([C_AD_AMT], -digits) +``` + +다른 산출물에서 확인된 흐름은 총액 차액을 세전 상당액과 부가세 조정으로 나눠 이윤 또는 조정행에 전달하는 방식이다. 따라서 다음 값을 분리 보존한다. + +```text +raw_amount +rounded_amount +adjustment_amount +adjustment_target +rounding_function +rounding_digits +``` + +`이윤 보정=0`은 “0원 이윤”이 아니라 이윤보정을 사용하지 않는 옵션이다. 0과 미설정을 구분해야 한다. + +## 12. 공종·제외금액 분류 + +간접비 밑수에서 별도 취급하는 공종/금액 분류가 확인됐다. + +- 일반공종 +- 안전관리비, 품질관리비 +- 미확정설계공종(PS) +- 제비율 적용제외공종 +- 기존 시설물 철거·해체·이설 발생분 +- 작업설 등 감액 항목 +- 매입세 +- 직접공사비에 포함되지 않은 제외금액 +- 비과세자재대 +- 도급자설치/관급자설치 관급자재대 +- 도급자설치 관급에 포함된 조달수수료 +- 내역서 기존 안전관리비 +- 폐기물수수료, 골재사용료 + +자동 옵션은 내역서에 해당 공종구분을 가진 행이 없으면 선택되지 않는다. 사용자는 다른 내역 금액을 더블클릭으로 밑수에 불러올 수 있다. 즉 밑수는 단순 총계가 아니라 공종 태그로 필터한 합계와 수동 연결값의 조합이다. + +## 13. 재구현 데이터 계약 + +```text +RateStandard + source, effective_date, standard_group, work_type + amount_band, duration_band, grade, item_code + rate, base_formula_id, rounding_policy_id + +CostComponent + material, labor, expense, total(derived) + +IndirectCostRule + item_code, ordered_stage, enabled + base_component_codes[], include_tags[], exclude_tags[] + formula_template, rate_ref, rounding_ref + manual_override, adjustment_mode + +CalculationTrace + rule_id, source_record, source_coordinate + template, substituted_values, raw_result + rounding_function, digits, final_result + user_override, override_reason +``` + +모든 결과는 “어떤 기준자료의 어느 좌표 → 어떤 밑수 항목 → 어떤 요율 → 어떤 절사 → 어떤 결과”인지 역추적 가능해야 한다. 숫자만 저장하면 다음 연도 기준 변경과 변경설계 재현이 불가능하다. + +## 14. 구현 순서 + +1. `Decimal` 기반 ROUND/ROUNDDOWN/ROUNDUP/MINT 호환 함수를 만든다. +2. `TAMT=MAMT+LAMT+SAMT` 불변조건을 가진 직접비 행 계산기를 만든다. +3. 간접비 규칙을 순서 있는 데이터로 정의하고 선택 토큰을 포함한 제한식 평가기를 만든다. +4. 안전관리비 정책 변형과 관급·사급 VAT 처리 방식을 별도 전략 값으로 둔다. +5. 추가금액 삽입단계와 제비율 제외 태그를 합계 트리에 적용한다. +6. 당초/변경은 값 열 복제가 아니라 두 스냅샷과 계산모드로 처리한다. +7. 끝전조정과 VAT 조정을 마지막 단계에서 수행하고 전후 값을 보존한다. +8. 각 단계에 원본 좌표와 계산 추적을 남긴다. + +## 15. 아직 동적 대조가 필요한 경계 + +다음은 숨기지 않고 미확정으로 남긴다. + +1. `RATE`, `RATE_M`, `RATE_R`, `RATE_RA`의 각 행·열과 화면 항목의 완전한 좌표 매핑 +2. 금액·기간 구간 경계의 `<`/`<=` 방향 +3. ~~음수 및 정확히 절반인 값의 ROUND 처리~~ → **확정(A)**: 최근접-짝수·0 대칭 (§4.2). 남은 것은 `ROUNDUP`·`MINT`의 음수 방향과 `GET_ROUND_CUT`이 설정값을 어느 함수로 잇는지 +4. 각 안전관리비 변형을 선택하는 정확한 기준연도·공사종류 조건 +5. 복합 보험식의 `RAT_1`~`RAT_4`, `RAT_KY` 화면 항목명 +6. 추가금액 단계 번호 1·2 및 일부 특수 위치의 정확한 합계 영향 +7. `CODE=W/B/D/X/A`의 모든 세부 계산 분기 + +이 일곱 항목은 누락이 아니라 정적 파일만으로 단정하면 오히려 잘못된 구현이 되는 경계다. 동일 프로젝트 복제본에서 한 변수만 바꾸는 통제시험으로 확정해야 한다. + +## 16. 재현 시험표 + +| 시험 | 입력 | 확인 결과 | +|---|---|---| +| 반올림 | ±2.44, ±2.45, ±2.46; digits 1,0,-1 | 네 함수별 기대값 | +| 성분합 | M/L/S 단일행과 복합행 | 총액 불변조건 및 오류 차단 | +| 중간절사 | 절사 전 소수부가 있는 3개 부분식 | 부분별 절사 후 합산 여부 | +| 요율경계 | 각 금액·기간 경계 직전/동일/직후 | 선택 RATE 좌표 | +| 요율순환 | 총액이 인접 구간을 왕복하는 값 | 순환 검출 및 수동확정 | +| 안전비 | 관급/사급, VAT 포함, 기존 안전비 조합 | 선택식과 밑수 | +| 추가금액 | 동일 금액을 단계 3~6에 각각 삽입 | 순공사원가·공급가액·도급액·총액 영향 | +| 변경설계 | 당초/변경 직접비와 요율 독립 변경 | A/B/직접입력 방식별 결과 | +| 끝전 | 양수·음수 차액, 백/천원 단위 | 이윤·VAT 조정 전달 | + +이 표를 모두 통과해야 “비슷한 결과”가 아니라 계산 순서와 중간값까지 같은 프로그램이라고 판정할 수 있다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/12_원가계산_4형식과_RATE표_복원.md b/scratch/orca_artifacts/stmate_competitor_analysis/12_원가계산_4형식과_RATE표_복원.md new file mode 100644 index 00000000..c095f6e0 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/12_원가계산_4형식과_RATE표_복원.md @@ -0,0 +1,408 @@ +# 원가계산 4형식과 RATE 표 구조 복원 + +분석일: 2026-09-13 +직접 근거: `ST_KanJub.CPM`의 Delphi 폼 리소스 `TWM_KANJUB`, `TWM_KAN_RATE`, `TPM_KAN_RATE` + +## 1. 복원 방법 + +PE의 `RT_RCDATA`에 포함된 Delphi 6 바이너리 폼(`TPF0`)을 속성·자식 컨트롤·컬렉션 단위로 파싱했다. 이에 따라 단순 문자열 검색으로는 잃었던 다음 관계를 복원했다. + +- 탭 이름과 계산 형식 +- 계산서에 표시되는 항목 순서 +- 각 항목 옆에 인쇄되는 산정기초 공식 +- 요율표 그리드 이름, 행 수, 열 제목 +- 자동계산 선택 입력과 추가금액 삽입 위치 + +이 문서의 화면 문구와 열 구조는 **A등급 직접 확인**이다. DBF 물리 좌표와 화면 셀의 완전한 연결은 일부 B/C등급이다. + +## 2. 원가계산의 네 형식 + +`TWM_KANJUB`에는 네 탭이 있다. + +| 내부 접미사 | 탭 | 의미 | +|---|---|---| +| `T` | 일반형식 | 일반 제비율 기반 원가계산 | +| `S` | 수공형식 | 세부 경비 항목을 풀어 계산하는 수공식 | +| `TA` | 실적일반 | 실적공사비 적용의 일반형식 | +| `SA` | 실적수공 | 실적공사비 적용의 수공형식 | + +네 형식은 출력 모양만 다른 것이 아니다. 직접공사비/순공사원가의 묶음, 보험료 밑수, 기타경비의 세분 정도, 일반관리비와 이윤의 밑수가 달라진다. + +## 3. 일반형식 `T` + +### 3.1 계산 순서 + +```text +나. 순공사원가 = ㄱ + ㄴ + ㄷ + ㄱ. 재료비 + ㄴ. 노무비 + 1) 직접노무비 + 2) 간접노무비 = 직접노무비 × rate + ㄷ. 경비 + 1) 내역서경비 + 2) 산재보험료 = 노무비 × rate + 3) 고용보험료 = 노무비 × rate + 4) 건강보험료 = 직접노무비 × rate + 5) 장기요양보험료 = 건강보험료 × rate + 6) 연금보험료 = 직접노무비 × rate + 7) 퇴직공제부금비 = 직접노무비 × rate + 8) 산업안전보건관리비 + 9) 안전관리비 = 별도내역 + 10) 품질관리비 = 별도내역 + 11) 기타경비 = (재료비 + 노무비) × rate + 12) 공사이행수수료 = 기초금액 + (직접공사비 - 기준규모) × rate + 13) 하도급대금지급보증수수료 = (재료비 + 직접노무비 + 산출경비) × rate + 14) 환경보전비 = (재료비 + 직접노무비 + 산출경비) × rate + 15) 건설기계대여금지급보증서수수료 = (재료비 + 직접노무비 + 산출경비) × rate + 16) 석면피해구제분담금 = 노무비 × rate + 17) 임금채권부담금 = 노무비 × rate +5) 일반관리비 = (순공사원가 + 관리품목자재대) × rate +다. 소계 = 순공사원가 + 일반관리비 +6) 이윤 = (소계 - 재료비) × 이윤율 - 보정액 +라. 공급가액 + 부가가치세 + 공사보험료 + 작업설 등 감액 + 사급자재대 + 비과세자재대 + 매입세 +마. 도급공사비 + 관급자재대(도급자설치) + 사급자재대 + 관급자재대(관급자설치) +바. 총공사비 +``` + +### 3.2 고용개선지원비 + +일반형식에는 다음 별도 묶음이 존재한다. + +```text +고용개선지원비(PS단가) = 주휴수당 + 사회보험 + 장려금 +주휴수당 = 직접노무비 × RAT_1 × RAT_2 × 1.4(제경비) +국민연금·건강보험료 = 직접노무비 × 관련률 × 관련률 +``` + +이는 11번 문서의 중첩 `ROUNDDOWN` 세 부분식과 일치한다. 각 부분은 원 단위 절사 후 합산된다. + +## 4. 수공형식 `S` + +### 4.1 계산 순서 + +```text +1. 순공사원가 = 가 + 나 + 다 + 가. 순공사비 + 나. 간접노무비 = 직접노무비 × rate + 다. 경비 + 1) 산재보험료 = (직접노무비 + 간접노무비) × rate + 2) 고용보험료 = (직접노무비 + 간접노무비) × rate + 3) 건강보험료 = 직접노무비 × rate + 4) 장기요양보험료 = 건강보험료 × rate + 5) 연금보험료 = 직접노무비 × rate + 6) 퇴직공제부금비 = 직접노무비 × rate + 7) 산업안전보건관리비 + 8) 안전관리비 = 별도내역 + 9) 품질관리비 = 별도내역 + 10) 수도광열비 = (직노 + 간노 + 재료비) × rate + 11) 복리후생비 = 같은 밑수 × rate + 12) 소모품·사무용품비 = 같은 밑수 × rate + 13) 여비·교통비·통신비 = 같은 밑수 × rate + 14) 세금·공과금 = 같은 밑수 × rate + 15) 폐기물처리비 = 같은 밑수 × rate + 16) 도서인쇄비 = 같은 밑수 × rate + 17) 지급수수료 = 같은 밑수 × rate + 18) 공사이행수수료 = 기초금액 + (직접공사비 - 기준규모) × rate + 19) 하도급대금지급보증수수료 = (재료비 + 직노 + 산출경비) × rate + 20) 환경보전비 = (재료비 + 직노 + 산출경비) × rate + 21) 건설기계대여금지급보증서수수료 = 같은 밑수 × rate + 22) 석면피해구제분담금 = (직노 + 간노) × rate + 23) 임금채권부담금 = (직노 + 간노) × rate +2. 일반관리비 = (순공사비 + 간접노무비 + 경비) × rate +3. 이윤 = (순공사원가 + 일반관리비 - 재료비) × rate - 보정액 +4. 공급가액 +5. 도급공사비 +6. 총공사비 +``` + +시공도작성비는 `(순공사원가+일반관리비+이윤+사급비) × rate × 별도계수` 형식이다. + +## 5. 실적일반 `TA` + +실적일반은 직접비와 간접비를 먼저 나눈다. + +```text +1. 직접공사비 +2. 간접공사비 + 1) 간접노무비 = 직접노무비 × rate + 2) 산재보험료 = 노무비 × rate + 3) 고용보험료 = 노무비 × rate + 4) 건강보험료 = 직접노무비 × rate + 5) 장기요양보험료 = 건강보험료 × rate + 6) 연금보험료 = 직접노무비 × rate + 7) 퇴직공제부금비 = 직접노무비 × rate + 8) 산업안전보건관리비 + 9) 안전관리비 + 10) 품질관리비 + 11) 기타경비 = (재료비 + 노무비) × rate + 12) 공사이행수수료 + 13) 하도급보증수수료 = 직접공사비 × rate + 14) 환경보전비 = 직접공사비 × rate + 15) 건설기계대여보증수수료 = 직접공사비 × rate + 16) 석면분담금 = 노무비 × rate + 17) 임금채권부담금 = 노무비 × rate +3. 일반관리비 = (직접공사비 + 간접공사비 + 관리품목자재) × rate +4. 이윤 = (직접공사비 + 간접공사비 + 일반관리비) × rate - 보정액 +5. 공급가액 +6. 도급공사비 +7. 총공사비 +``` + +일반형식 `T`와 달리 하도급·환경·건설기계 보증수수료의 밑수가 직접공사비 전체다. + +## 6. 실적수공 `SA` + +실적수공은 실적공사비 묶음과 수공 경비 세분을 함께 사용한다. + +```text +1. 직접공사비 +2. 간접공사비 + 1) 간접노무비 = 직접노무비 × rate + 2) 산재보험료 = (직접노무비 + 간접노무비) × rate + 3) 고용보험료 = (직접노무비 + 간접노무비) × rate + 4) 건강보험료 = 직접노무비 × rate + 5) 장기요양보험료 = 건강보험료 × rate + 6) 연금보험료 = 직접노무비 × rate + 7) 퇴직공제부금비 = 직접노무비 × rate + 9) 산업안전보건관리비 + 10) 품질관리비 + 11~18) 수도광열비부터 지급수수료까지 수공 경비 + 19) 공사이행수수료 + 20) 하도급보증수수료 + 21) 환경보전비 + 22) 건설기계대여보증수수료 + 22) 석면분담금 + 23) 임금채권부담금 +3. 일반관리비 = (직접공사비 + 간접노무비) × rate +4. 이윤 = (직접공사비 + 간접공사비 + 일반관리비) × rate - 보정액 +5. 공급가액 +6. 도급공사비 +7. 총공사비 +``` + +화면에 22번이 두 번 표시된다. 재구현 데이터 키는 화면 번호가 아니라 고유 항목코드를 써야 한다. + +## 7. 네 형식의 핵심 차이 + +| 규칙 | T | S | TA | SA | +|---|---|---|---|---| +| 산재·고용 밑수 | 노무비 | 직노+간노 | 노무비 | 직노+간노 | +| 기타경비 | 묶음 1개 | 세부 경비 8개 | 묶음 1개 | 세부 경비 8개 | +| 하도급·환경·장비 보증 밑수 | 재+직노+산출경비 | 재+직노+산출경비 | 직접공사비 | 재+직노+산출경비 | +| 일반관리비 밑수 | 순공사원가+관리품목자재 | 순공사비+간노+경비 | 직공비+간접비+관리품목자재 | 직공비+간접노무비 | +| 이윤 밑수 | 소계-재료비 | 순공사원가+일반관리비-재료비 | 직공비+간접비+일반관리비 | 동일 | + +따라서 형식을 출력 템플릿으로만 구현하면 안 된다. `calculation_scheme`이 공식 집합과 합계 트리를 선택해야 한다. + +## 8. RATE 편집 화면의 실제 표 + +| 그리드 | 행 수 | 열 제목 | 역할 | +|---|---:|---|---| +| `rGrd_Rate_Kobo` | 7 | 등급, 요율 | 고용보험 등급별 요율 | +| `rGrd_Rate_Anjun` | 4 | 공종, 5억 미만, 5~50억 미만, 추가, 50억 이상, 800억 이상 | 산업안전보건관리비 규모식 | +| `rGrd_Rate_R2` | 6 | 구분, 요율 | 단일 요율 목록 | +| `rGrd_Rate_Hwan` | 7 | 구분, 요율 × 2쌍 | 환경보전비 | +| `rGrd_Rate_Bojng` | 5 | 공종, `[요율+추가]×공기` | 공사이행보증수수료 | +| `rGrd_Rate_Hado` | 6 | 공사규모, 요율 | 하도급대금지급보증수수료 | +| `rGrd_Rate_Eqip` | 6 | 구분, 요율 × 2쌍 | 건설기계대여금 지급보증수수료 | +| `rGrd_Rate_R` | 5 | 공사규모(국가유산), 일반건설, 전문, 국가유산, 이윤 | 일반형식 규모 요율 | +| `rGrd_Rate_R1` | 20 | 공사기간과 토목·산업설비·조경·건축·국가유산 열 2군 | 일반형식 기간 요율 | +| `rGrd_Rate_RA` | 5 | 공사규모, 일반건설, 전문, 이윤 | 실적형식 규모 요율 | +| `rGrd_Rate_RA1` | 20 | 공사기간과 토목·조경·산업설비·건축 열 2군 | 실적형식 기간 요율 | +| `rGrd_Rate_An_A` | 4 | 공사규모 | 실적 안전비 규모 | +| `rGrd_Rate_An_A1` | 16 | 공사종류, 산업안전보건관리비 공식, 비고/규모비율 | 실적 안전비 공식표 | +| `rGrd_RateM` | 14 | 구분, 간접노무비 | 행자부 기준 간접노무비 | +| `rGrd_RateB` | 12 | 구분, 재·직노·노·재+직노·재+노의 두 열군 | 수공 경비별 밑수 요율 | + +## 9. JB 파일과 화면 표의 대응 + +| 파일 | 물리 크기 | 확인된 화면군 | 판정 | +|---|---:|---|---| +| `*.JB_1` | 41행×10열 | 구버전/공통 요율 데이터 | B | +| `*.JB_M` | 25행×10열 | `rGrd_RateM`, 행자부기준 | A/B | +| `*.JB_R` 구형 | 50행×20열 | 일반형식 `Rate_R/Rate_R1` 및 부속표 | B | +| `*.JB_R` 2020 이후 | 50행×35열 | 일반형식에 안전·환경·보증 부속표 확장 | B | +| `*.JB_RA` | 50행×20열 | 실적형식 `Rate_RA/Rate_RA1/An_A/An_A1` | A/B | + +DBF 필드는 `RATE0..RATE9` 또는 `RATE_01..RATE_35`, 레코드는 고정 25/41/50행이다. + +**폼 패널별 행수 합계가 파일 행수와 맞는다.** + +| 폼 패널 | 담은 그리드 | 행수 합 | 같은 행수의 파일 | +|---|---|---:|---| +| `Panel9` (부속표) | Kobo 7 + Anjun 4 + R2 6 + Hwan 7 + Bojng 5 + Hado 6 + Eqip 6 | **41** | `JB_1` 41행 | +| `Panel8` (일반형식) | Rate_R 5 + Rate_R1 20 | **25** | `JB_M` 25행 | +| `Panel22` (실적형식) | Rate_RA 5 + Rate_RA1 20 + An_A 4 + An_A1 16 | **45** | — | +| `sc_Bx_M` | RateM 14 | 14 | — | +| `sc_Bx_B` | RateB 12 | 12 | — | + +행수가 맞는 것은 **강한 단서이지 증명은 아니다.** `JB_1`의 실제 값 분포를 보면 빈 행이 `4,5`와 `10,11`에 오는데 `Panel9` 그리드 경계(7·11·17·24·29·35)와는 어긋난다. 두 가지 중 하나다 — ① `JB_1`은 2011년 한 개뿐인 구형이라 현재 폼과 배치가 다르다, ② 적재가 단순 이어붙이기가 아니다. + +**확정된 것**(10번 문서에 실측 근거) + +- 행은 `0,5,10,…,45`에서 시작하는 **5행 묶음**이며 각 묶음은 값 4행 + 빈 1행이다. +- `JB_R` 열 1~5는 간접노무비, 6~10은 기타경비이고 둘 다 `토목 / 산.설(토목) / 조경 / 건축 / 산.설(건축)` 순이다. +- 2020-05-27 확장으로 **열 21 = 국가유산 간접노무비, 열 26 = 국가유산 기타경비**가 붙었고 기존 1~20열은 한 셀도 바뀌지 않았다. +- `JB_RA`는 43개 전 기간 20열 그대로다. 실적형식에는 국가유산 공종이 없다. + +**남은 것** — 각 부속표 그리드(고용보험·환경보전·보증수수료 계열)가 `JB_1`/`JB_R`의 몇 번째 행부터 적재되는지. 열 접근이 실행 중 문자열 조립이라 코드 상수로 읽을 수 없으므로, 저장 이벤트 역추적 또는 통제 동적 시험이 필요하다. + +## 10. 계산 설정 입력 + +원가계산 설정 화면에 다음 16개 선택축이 번호로 존재한다. + +1. 기준 유형(화면 첫 항목) +2. 공사의 종류 +3. 공사기간 +4. 고용보험료 +5. 퇴직공제부금비 +6. 관급/사급 내용 +7. 산업안전보건관리비 +8. 환경보전비 +9. 건설기계대여금 지급수수료 +10. 일반관리비 +11. 공급가액 절사기준 +12. 부가가치세 +13. 사급비 위치 +14. 낙찰 방식 +15. 이행보증 방식 +16. 적용기준 + +추가 입력에는 조달수수료, 상시근로자 노무비, 내역서 안전관리비, 안전·품질관리비, PQ 공사손해보험요율, 공사이행 기간, 관급자재 분리 여부가 있다. 이 설정 스냅샷 없이는 같은 원본 내역으로도 원가계산 결과를 재현할 수 없다. + +### 10.1 실제 선택값 사전 + +폼의 `Items.Strings`와 내부 `Values.Strings`를 함께 복원했다. + +| 설정 | 화면 선택지 | 내부값/주의 | +|---|---|---| +| 제잡비 방식 | 원가계산방식, 표준시장방식 | 내부 명칭은 실적공사방식 | +| 공사종류 | 일반(토목), 조경, 산업설비(토목), 건축, 산업설비(건축), 국가유산수리, 폐기물처리, 소규모용역 | `0,2,4,3,1,5,8,9` — 화면 순번과 내부값이 다름 | +| 적용기준 | 일반(국가계약법), 일반(지방계약법), 행자부기준 | `2,0,1` — 역시 화면 순번과 다름 | +| 고용보험 | 없음, 1~6등급, 7등급 이하 | 등급명 | +| 퇴직공제 | 토목, 준설, 건축, 기타 | 명칭 | +| 안전비 공종 | 건축, 토목, 중건설, 특수건설 | `0,1,3,4` | +| 환경보전 | 없음, 도로, 플랜트, 지하철, 철도, 상하수도, 항만 2종, 댐, 택지, 주택 3종, 조경, 기타토목 | 명칭 | +| 건설기계 보증 | 없음, 일반공사, 전문공사 세부 5군 | `-1,0,1,2,3,4,5` | +| 관급/사급 | 관급/1.1, 관급, 사급/1.1, 사급, 혼합 4종 | 식 문자열 자체가 값 | +| 사급비 위치 | 재료비 포함, 이윤 다음, 도급공사비 직전, 관급자재대 다음 | `3,1,2,0` | +| 부가세 | 공급가액의 10%, 재료비의 10%, 없음, 산림조합 형식, 산림조합 면세품 | 선택 문자열 | +| 낙찰방식 | 종합심사 외, 종합심사 대상, 턴키(대안) | 값 목록 | +| 계약형식 | 일반계약, 최저가·기술제안 | `0,1` | +| 관급 인쇄 | 분리인쇄, 통합인쇄 | `0,1` | + +공사기간 축(`cmBx_Kong_Kikan`)은 화면과 내부가 **줄 수부터 다르다.** + +```text +화면 Items (4줄) : 6개월이하 | 7개월~12개월이하 | 13개월~36개월이하 | 36개월이상 +내부 Values (5값) : 30일 미만 | 6개월이하 | 7개월~12개월이하 | 13개월~36개월이하 | 37개월이상 +``` + +맨 앞 `30일 미만`이 내부에만 있고, 마지막 줄은 화면이 `36개월이상`인데 내부는 `37개월이상`이다. **같은 칸을 두 이름으로 부르는 것이라 36개월 정각이 어느 쪽에 붙는지가 화면만 봐서는 안 갈린다.** 30일 미만의 실제 선택 경로와 36/37개월 경계는 동적 시험 전까지 C등급이다. + +이 5구간은 `JB_R`·`JB_RA` 행렬이 **5행 묶음**(시작 행 0,5,10,…,45, 값 4행 + 빈 1행)인 것과 개수가 맞는다. 빈 한 행이 화면에 없는 구간에 해당하는 것으로 보이나, 어느 구간이 비는지는 아직 B등급이다. + +### 10.1-2 형식별 선택축 — 전수 83개 + +설정 폼(`TWM_KANJUB`)에서 선택지를 가진 컴포넌트를 모두 뽑으면 83개다. 전문은 이 폴더의 `settings_axis_map.txt`에 있고, 재현 스크립트는 `settings_axis_map.py`다. + +| 묶음 | 축 수 | 자리 | +|---|---:|---| +| 공통 (형식과 무관) | 29 | `Panel1`, `Panel3`, `pnSet_Optn`, `pn_CH_BO`, `tabAdd_BSC` | +| 일반 `T` | 12 | `Pn01_T` ~ `Pn05_T` | +| 수공 `S` | 11 | `Pn01_S` ~ `Pn05_S` | +| 실적일반 `TA` | 16 | `Pn01_TA` ~ `Pn05_TA` | +| 실적수공 `SA` | 15 | `Pn01_SA` ~ `Pn05_SA` | + +**형식마다 패널 한 벌을 따로 가진다.** 같은 이름의 축이 `_T`/`_S`/`_TA`/`_SA` 네 벌로 존재하므로, 설정 스냅샷은 **형식별로 따로 저장**해야 한다. 한 벌만 저장하면 형식을 바꿀 때 값이 섞인다. + +패널의 쓰임은 공통이다. + +| 패널 | 담은 것 | +|---|---| +| `Pn01_x` | 안전관리비 밑수·1.2배 비교, 건강/연금 보험 밑수, (실적만) 노무비·재료비 산정방식 | +| `pn02_x` | 이윤 / 수수료 택일 — **`T`와 `TA`에만 있고 `S`·`SA`에는 없다** | +| `Pn03_x` | 공급가액 절사 자리 | +| `Pn04_x` | 도급공사비/도급예정액 택일, 관급(도급자설치)·관급(관급자설치)의 절사 자리와 절상/반올림/절사 | +| `Pn05_x` | 총액·이윤보정 절사 자리 | + +**실적형식(`TA`/`SA`)에만 있는 축 넷** — `Ed_C_LTYP_x`(노무비 유형), `Ed_C_RateMxA_x`, `Ed_C_RateMxK_x`(조정계수), `Ed_C_MTYP_x`(재료비 산정방식). 일반·수공에는 아예 없다. + +### 10.1-3 화면 순번과 내부값이 어긋나는 축 — 그대로 저장하면 틀리는 자리 + +| 축 | 화면 순서 | 내부값 순서 | +|---|---|---| +| `cmBx_Kong_Type` 공사종류 | 일반(토목), 조경, 산업설비(토목), 건축, 산업설비(건축), 국가유산수리, 폐기물처리, 소규모용역 | `0, 2, 4, 3, 1, 5, 8, 9` | +| `cmBx_Set_Base` 적용기준 | 일반(국가계약법), 일반(지방계약법), 행자부기준 | `2, 0, 1` | +| `cmBx_Pos_Sagup` 사급비 위치 | 재료비에 포함, 이윤 다음, 도급공사비 직전, 관급자재대 다음 | `3, 1, 2, 0` | +| `cmBx_AnJun_Type` 안전비 공종 | 건축, 토목, 중건설, 특수건설 | `0, 1, 3, 4` — **2번이 비어 있다** | +| `cmBx_EQIP` 건설기계 보증 | 없음(국가유산수리) 포함 7줄 | `-1, 0, 1, 2, 3, 4, 5` | +| `Ed_C_MTYP_TA` / `_SA` 재료비 산정 | ① 직접공사비 × 요율 ② 조정계수 입력 | `1, 0` — **뒤집혀 있다** | +| `cmBx_AnPum` 안전·품질관리비 | ① 산출경비로 포함 ② 산출경비로 미포함 | `1, 0` — **뒤집혀 있다** | + +`Ed_C_MTYP`와 `cmBx_AnPum`은 **화면 순번을 그대로 저장하면 정반대 공식이 걸린다.** 재구현에서 화면 인덱스를 값으로 쓰면 안 되는 이유가 이 두 축에 그대로 드러난다. + +`cBx_W_Type`은 화면이 `제잡비 표준시장방식`인데 내부 이름은 `제잡비 실적공사방식`이고, `cmBx_Buga1`은 화면 `(3) 산림조합 형식`이 내부 `(3) 임 협 식`이다. **같은 것을 두 이름으로 부르므로 문서·코드에서 이름으로 대조하면 안 된다.** + +### 10.2 절사·절상 선택지 + +간접비 일괄 절사: + +```text +없음, 10원, 100원, 1,000원, 10,000원, 100,000원, 1,000,000원 미만 절사 +``` + +공급가액·도급액·총공사비/이윤보정 자리: + +```text +조정 없음 또는 직접입력, +10원, 100원, 1,000원, 10,000원, 100,000원, +1,000,000원, 10,000,000원, 100,000,000원 미만 +``` + +관급자재 조정은 자리수와 함께 `절상/반올림/절사`를 선택한다. 도급액에는 별도의 “도급액 버림없음” 선택이 있다. 즉 하나의 전역 반올림 설정이 아니라 간접비·공급가액·도급액·관급(도급자설치)·관급(관급자설치)·총액/이윤보정 설정을 따로 저장해야 한다. + +### 10.3 변경설계와 안전비의 실제 모드 + +보험료 변경 계산(`cBx_CH_BO`)은 세 모드다. + +```text +0 직접노무비 × 요율 +1 당초액 + 직접노무비 증감 × 요율 +2 당초액 + 증감액(비율) +``` + +안전비의 1.2배 비교에는 `소수 버림 후 1.2배`와 `소수 버림 전 1.2배`가 따로 있다. 상한비도 `자동계산`, `강제적용`, `적용안함`의 세 모드다. 이 두 옵션은 같은 공식이라도 원 단위 결과를 바꾸므로 계산 추적에 반드시 남긴다. + +실적형식의 노무비 산정은 `직접공사비×조정계수` 또는 `내역서 직접노무비`, 재료비 산정은 `직접공사비×요율` 또는 `조정계수 입력` 중 선택한다. + +## 11. 추가금액 데이터 형태 + +추가금액 그리드는 다음 열을 가진다. + +```text +추가비용 명칭, 선택, 입력/자동, 금액, +1단계, 2단계, ... 9단계, 최종 합계 위치 +``` + +별도 탭은 `일반관리비 직전`, `이윤~공급가액`, `도급공사비 직전`, `관급자재~총공사비`로 나뉜다. 따라서 추가금액은 단계별 포함 여부를 최대 9개 저장하고 최종 삽입 위치를 갖는 행이다. + +## 12. 구현 시 필수 검증 + +1. 네 형식을 같은 입력으로 계산해 밑수 차이가 표대로 발생하는지 확인한다. +2. 건강보험료를 바꾸면 장기요양보험료만 그 절사 결과를 밑수로 다시 계산하는지 확인한다. +3. 수공형식의 세부 경비 합이 일반형식 기타경비와 자동으로 같다고 가정하지 않는다. +4. 안전비는 상한비율, 기초금액, 1.2배 비교, 기존 안전비 차감의 중간값을 각각 기록한다. +5. 추가금액은 1~9단계 포함 여부에 따라 뒤 항목의 밑수가 달라지는지 확인한다. +6. `1원보정(계산결과+1원)` 옵션을 VAT/공급가액 경계에서 시험한다. + +이 문서로 네 계산 형식의 항목 순서와 공식 뼈대는 재구현할 수 있다. 남은 핵심은 JB 행렬의 화면 셀 시작 좌표와 경계 비교 연산이며, 이는 저장 이벤트 역추적 또는 통제 동적 시험으로 확정해야 한다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/13_통제시험_목록.md b/scratch/orca_artifacts/stmate_competitor_analysis/13_통제시험_목록.md new file mode 100644 index 00000000..337f580a --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/13_통제시험_목록.md @@ -0,0 +1,141 @@ +# STmate 통제 대조시험 목록 + +> 정적 분석만으로는 확정할 수 없는 경계를 **시험 단위로 갈라 놓은 유일한 목록**이다. 05~12번 문서에 흩어져 있던 "미확정·C등급" 항목을 여기로 모았다. 각 문서는 이제 이 목록을 가리킨다. + +기준일: 2026-09-13 +대상: `C:\경영정보(주)` — **원본은 읽기만 한다.** 시험은 프로젝트 **복제본**에서 한다. + +## 0. 왜 시험이 필요한가 + +정적 파일에는 **결과만** 남고 **분기 조건**이 안 남는 자리가 있다. 값을 하나만 바꿔 앞뒤를 대조하면 그 분기가 드러난다. 아래 시험을 다 통과해야 "비슷한 금액"이 아니라 **계산 순서와 중간값까지 같은 엔진**이라고 판정할 수 있다. + +## 1. 공통 규칙 + +1. 시험마다 **한 변수만** 바꾼다. 두 개를 같이 바꾸면 어느 쪽이 결과를 움직였는지 못 가른다. +2. 시험 전후로 STC 안의 **모든 DBF 필드**와 출력 XLSX의 **모든 계산행**을 저장해 대조한다. +3. 원설계를 복제해 쓰고, **설치 폴더와 기준자료 원본에는 쓰지 않는다.** +4. 결과는 `시험ID / 바꾼 값 / 바뀐 필드 / 안 바뀐 필드`로 적는다. **안 바뀐 것도 증거다.** + +## 2. 시험 목록 + +### T1 — 요율 좌표 매핑 (최우선) + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 화면 그리드 15개가 `RATE`·`RATE_M`·`RATE_R`·`RATE_RA` 행렬의 **몇 번째 행부터** 적재되는지 | +| 지금 등급 | 열 제목·행 수 **확정(A)** / 시작 행 **미확정** | +| 어떻게 | RATE 편집 화면에서 그리드 한 칸만 눈에 띄는 값(예: `99.99`)으로 고치고 저장 → 프로젝트 `RATE_*.DBF`에서 `99.99`가 앉은 (행, 열)을 찾는다. 그리드마다 첫 칸·마지막 칸 두 번씩 | +| 확정되는 것 | 그리드 → 행렬 좌표의 완전 매핑. `rate_standard()` 기준표를 하드코딩 없이 만들 수 있게 됨 | +| 근거 문서 | 12번 §8·§9, 10번 §4 | + +이미 잡아 둔 것 — 행은 `0,5,10,…,45` 시작의 **5행 묶음**, `JB_R` 열 1~5=간접노무비·6~10=기타경비(토목/산설(토목)/조경/건축/산설(건축)), 신형 열 21·26=국가유산. **T1은 나머지 부속표의 시작 행만 남긴 시험이다.** + +### T2 — 금액·기간 구간 경계 방향 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 구간 경계에서 `<`인지 `<=`인지. 공사기간은 36개월 정각이 어느 칸에 붙는지 | +| 지금 등급 | C | +| 어떻게 | 같은 프로젝트를 복제해 추정금액을 각 경계의 **직전 / 정각 / 직후** 세 값으로 두고, 공사기간도 같은 식으로 둔다. 선택된 요율과 간접비 전 행을 비교 | +| 왜 까다롭나 | 화면 목록은 `…13~36개월이하 / 36개월이상` 4줄인데 내부값은 `30일 미만 … 37개월이상` 5값이다. **같은 칸을 두 이름으로 부른다** | +| 근거 문서 | 12번 §10.1, 06번 §6 | + +### T3 — `ROUNDUP`·`MINT`의 음수 방향 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 올림·정수화가 음수에서 0에서 멀어지는지, +∞ 쪽인지 | +| 지금 등급 | `ROUND`는 **확정(A)** — 최근접-짝수·0 대칭. `ROUNDUP`·`MINT`만 남음 | +| 어떻게 | 끝전조정에 음수 차액이 나오는 프로젝트를 만들고 `절상`·`반올림`·`절사`를 차례로 골라 결과를 비교. 값은 `±2.44 / ±2.45 / ±2.46`, 자리 `1, 0, -1` | +| 왜 중요한가 | 내부 계산은 은행가 반올림인데 출력 XLSX 수식은 Excel 사사오입이라 **20개 경계 중 10개가 이미 갈린다** | +| 근거 문서 | 11번 §4.2 | + +### T4 — 안전관리비 변형 선택 조건 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 어느 기준연도·공사종류에서 어느 안전비 식이 걸리는지, 1.2배 비교와 상한비 모드가 원 단위 결과를 어떻게 바꾸는지 | +| 지금 등급 | 선택지 목록은 **확정(A)**, 선택 조건은 C | +| 어떻게 | 안전비 공종 4가지(`0,1,3,4` — **2번이 비어 있다**) × 관급/사급 조합 × `소수 버림 전/후 1.2배` × 상한비 `자동/강제/적용안함`을 돌리고 중간값(상한비율·기초금액·1.2배 비교·기존 안전비 차감)을 각각 기록 | +| 근거 문서 | 12번 §10.3, 11번 §7 | + +### T5 — 복합 보험식의 항목명 연결 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 중첩 절사식의 `RAT_1`~`RAT_4`, `RAT_KY`가 화면의 어느 비용항목인지 | +| 지금 등급 | 식은 **확정(A)**, 이름 연결은 C | +| 어떻게 | 제비율 화면에서 항목을 하나씩 0으로 만들고 어느 항이 사라지는지 본다 | +| 근거 문서 | 11번 §6.1, 10번 §3 | + +### T6 — 추가금액 단계 1·2와 특수 위치 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 단계 1·2, `이윤 이후(공사원가 포함)`, `사급자재비 이후`가 어느 합계를 움직이는지 | +| 지금 등급 | 단계 3~6은 확정, 1·2는 C | +| 어떻게 | 같은 금액을 단계 1~9에 하나씩 넣고 순공사원가·공급가액·도급액·총액 넷을 비교 | +| 근거 문서 | 11번 §9, 12번 §11 | + +### T7 — `CODE = W/B/D/X/A` 세부 분기 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 복합·일위대가·단가산출·중기·기타 코드의 성분 합산 분기 | +| 지금 등급 | `TAMT=MAMT+LAMT+SAMT` 불변조건은 **확정(A)**, 코드별 분기는 C | +| 어떻게 | 코드 유형마다 표본 행을 만들어 성분 단가를 1원씩 움직이고 상위 단가·내역의 반응을 본다 | +| 근거 문서 | 11번 §3·§5 | + +### T8 — 재계산 범위와 역의존 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | UI 버튼별로 부분계산인지 전체계산인지, 수동 고정값을 자동 변경이 덮는지 | +| 지금 등급 | C | +| 어떻게 | ① 같은 자재를 참조하는 단가 2개와 그중 하나를 참조하는 상위 단가를 만든 뒤 자재가 **1원** 변경 ② 설계수량만 변경해 단가표 불변 확인 ③ 요율만 변경해 직접비 불변 확인 | +| 근거 문서 | 08번 §1·§4 | + +### T9 — 변경설계 계산모드 선택 조건 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 방법 A(당초액 × 전체 증감비율) / 방법 B(증감 기초 × 항목 요율) / 직접입력 / 계약 제잡비율 중 **어느 조건에서 어느 것이 걸리는지** | +| 지금 등급 | 공식 자체는 **확정(A)** — 코드에서 직접 확인. 선택 조건만 C | +| 어떻게 | 원설계에서 항목 추가·삭제·수량변경·단가변경을 각각 한 건씩 만들어 변경 STC로 저장하고, 보험료 변경 모드(`cBx_CH_BO` 0/1/2)를 바꿔 가며 비교 | +| 근거 문서 | 11번 §10, 08번 §2, 12번 §10.3 | + +### T10 — 일괄변경·물가변동 필터 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 대상 선별 조건과 수동 채택가 보호 여부 | +| 지금 등급 | C | +| 어떻게 | 수동 채택가, 0원, 공란, 환율적용 품목이 섞인 표본으로 일괄변경을 돌리고 각 유형이 바뀌었는지 본다 | +| 근거 문서 | 08번 §3 | + +### T11 — 형식 간 밑수 차이 확인 + +| 항목 | 내용 | +|---|---| +| 무엇을 가르나 | 네 형식(`T`/`S`/`TA`/`SA`)이 같은 입력에서 표대로 다른 밑수를 쓰는지 | +| 지금 등급 | 밑수 공식은 **확정(A)** — 화면 묶음 제목에서 확인. 실제 적용 확인만 남음 | +| 어떻게 | 같은 내역으로 형식만 바꿔 네 번 계산하고 각 간접비 행의 밑수를 대조. 건강보험료를 바꿔 장기요양보험료만 그 절사 결과를 밑수로 다시 계산하는지 확인 | +| 근거 문서 | 12번 §7·§12, 06번 §3 | + +## 3. 우선순위 + +| 순위 | 시험 | 까닭 | +|---:|---|---| +| 1 | **T1** 요율 좌표 | 이것 없이는 기준표를 못 만든다. 다른 시험의 전제 | +| 2 | **T3** 반올림 방향 | 원 단위 차이가 전 항목에 번진다 | +| 3 | **T2** 구간 경계 | 요율 선택 자체가 갈린다 | +| 4 | **T11** 형식별 밑수 | 형식을 잘못 고르면 전부 틀린다 | +| 5 | **T4** 안전관리비 | 금액이 크고 변형이 많다 | +| 6 | T9 · T8 | 변경설계·재계산 | +| 7 | T5 · T6 · T7 · T10 | 나머지 | + +## 4. 완료 판정 + +- T1~T4·T11을 통과하면 **원설계 한 건을 원 단위까지 재현**할 수 있다. +- T8·T9까지 통과하면 **변경설계를 포함해 재현**할 수 있다. +- 전부 통과하면 11번 §16 재현 시험표를 그대로 돌려 **동일 엔진 판정**이 선다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/14_최종_분석완료_보고서.md b/scratch/orca_artifacts/stmate_competitor_analysis/14_최종_분석완료_보고서.md new file mode 100644 index 00000000..fd532f37 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/14_최종_분석완료_보고서.md @@ -0,0 +1,181 @@ +# STmate 경쟁 프로그램 분석 — 최종 완료 보고서 + +분석 기간: 2026-09-12 ~ 2026-09-13 +대상: `C:\경영정보(주)` (설치 폴더 `System` 186개 파일 + 프로젝트 STC 7건 + STmate 생성 XLSX 5건) +목적: 화면을 닮게 만드는 것이 아니라, **같은 입력에서 같은 중간값과 같은 최종 금액을 내는 계산 엔진**을 만들 수 있는 수준까지 규칙을 확보하는 것 +원본 취급: **읽기만 했다.** 설치 폴더·기준자료·맛보기 프로젝트에 쓰기 없음. 암호 추측·우회 없음. + +## 1. 어디까지 왔나 + +| 층 | 상태 | +|---|---| +| 파일 전수 등록 (경로·크기·SHA-256) | **186 / 186** | +| 실제 형식 판정 (파일명 아닌 헤더 기준) | **186 / 186** — PE 82, DBF 계열 61, ZIP 28, 기타 15 | +| 내부구조 추출 | **186 / 186** — 미판독 0 | +| 핵심 CPM 정적 분석 | **12 / 12** — PE 섹션·import·export·문자열 | +| 화면 폼 리소스 복원 | 제비율 편집·계산설정·인쇄 3벌 | +| 계산 규칙 A등급 확정 | 아래 3장 | +| 남은 경계 | **13번 통제시험 목록**에 시험 11개로 분리 | + +**정적 분석으로 갈 수 있는 데까지 갔다.** 남은 것은 분석 누락이 아니라, 정적 파일에 **결과만 남고 분기 조건이 안 남는** 자리다. 그 자리는 값을 하나만 바꿔 앞뒤를 대조하는 통제시험으로만 갈린다. + +## 2. STmate 가 무엇인가 + +Delphi 6 네이티브 모듈 + Apollo/Six 계열 DBF 저장소 + ZIP 기반 교환 파일로 만든 **로컬 설계예산 프로그램**이다. 값의 흐름은 이렇다. + +```text +노임·자재·중기 기초자료 + → 출처별 후보단가와 채택단가 + → 일위대가·단가산출 (자원코드 × 품, 할증, 기계 Q식) + → 공종별 재료/노무/경비 단가 + → 프로젝트 수량 × 단가 + → 직접재료비·직접노무비·산출경비 + → 제비율별 고유 밑수 × 적용률 + → 순공사원가 → 일반관리비 → 이윤 → 부가세 → 총공사비 +``` + +## 3. 확정된 것 — A등급 + +### 3.1 금액 성분 불변조건 + +```text +TAMT = MAMT + LAMT + SAMT +CODE="L" → LAMT = TAMT CODE="M" → MAMT = TAMT CODE="S" → SAMT = TAMT +``` + +세 모듈에서 검증 조건식 `TAMT1 <> MAMT1+LAMT1+SAMT1`이 그대로 발견됐다. **`TAMT`는 네 번째 비용 성분이 아니라 총계다.** + +### 3.2 반올림 — 내부는 은행가 반올림 + +전 PE 186개의 수치 런타임 심볼을 실측했다. + +- `Math.RoundTo` 임포트 — 계산 모듈 17개, 모듈마다 호출 정확히 12곳 +- `SimpleRoundTo`(0에서 멀어지는 변형)·`Ceil`·`SetRoundMode`·`Set8087CW` — **전부 미임포트** +- 반올림 함수 본체에 `FCHS`·`FABS` 없음 → 음수 특별처리 없음 + +⇒ **내부 `ROUND`는 최근접-짝수(은행가) 반올림이고 0을 기준으로 대칭이다.** 사사오입이 아니다. + +**STmate가 뽑아 주는 XLSX 안의 수식은 Excel `ROUND`(사사오입)**이므로 내부값과 출력값이 갈린다. 시험한 20개 경계 중 **10개가 원 단위에서 다르다.** + +| 값 | 자리 | 내부 | 출력 XLSX | +|---:|---:|---:|---:| +| 2.5 | 원 | 2 | 3 | +| 2,500 | 천원 | 2,000 | 3,000 | +| −2,500 | 천원 | −2,000 | −3,000 | + +`2.45`는 한 겹 더 어긋난다 — `RoundTo`가 `IntPower(10,-1)`로 만든 `0.1`이 이진수로 정확하지 않아 `2.45/0.1`이 `24.4999…`가 된다. **`Decimal` 사사오입으로는 STmate 결과를 흉내 낼 수 없다.** + +### 3.3 간접비 항목별 밑수 + +RATE 편집 화면의 그리드 묶음 제목에 **밑수 공식이 그대로 적혀 있다.** 추정이 아니다. 전체 표는 06번 §3에 있고, 정정된 곳은 셋이다. + +- 환경보전비 밑수는 직접공사비가 아니라 `재료비+직접노무비+산출경비`다 *(실적일반만 직접공사비)* +- 기타경비 밑수는 형식에 따라 `재료비+노무비`(일반·수공)와 `직접공사비`(실적)로 갈린다 +- 이윤 밑수는 일반형식에서 `노+경+일`이다 + +### 3.4 원가계산 네 형식 + +일반 `T` · 수공 `S` · 실적일반 `TA` · 실적수공 `SA`. **출력 템플릿이 아니라 공식 집합과 합계 트리가 통째로 다르다.** + +| 규칙 | T | S | TA | SA | +|---|---|---|---|---| +| 산재·고용 밑수 | 노무비 | 직노+간노 | 노무비 | 직노+간노 | +| 기타경비 | 묶음 1개 | 세부 8개 | 묶음 1개 | 세부 8개 | +| 일반관리비 밑수 | 순공사원가+관리품목자재 | 순공사비+간노+경비 | 직공비+간접비+관리품목자재 | 직공비+간접노무비 | + +### 3.5 변경설계 계산모드 + +실행모듈에 산식 두 개가 그대로 있다. + +```text +방법 A = C_AMT_B + ROUNDDOWN(C_AMT_B × ((C_TAMT_C-C_TAMT_B)/C_TAMT_B), digits) +방법 B = C_AMT_B + ROUNDDOWN((C_TAMT_C-C_TAMT_B) × RAT_1, digits) +``` + +여기에 당초금액 직접입력, 계약 제잡비율 적용이 더 있고 보험료 변경은 별도 3모드다. **항목마다 계산모드를 고르는 구조**이므로 모드를 하나로 고정하면 재현할 수 없다. + +### 3.6 기준자료 파일 구조 + +| 파일 | 형태 | 개수 | +|---|---|---:| +| `JB_1` | 41행 × 10열 | 1 (2011) | +| `JB_M` | 25행 × 10열 | 1 (2007) | +| `JB_R` 구형 | 50행 × 20열 | 9 (2015 ~ 2020-01-02) | +| `JB_R` 신형 | 50행 × 35열 | 18 (2020-05-27 ~ 2026) | +| `JB_RA` | 50행 × 20열 | 13 (확장 없음) | + +- **확장 시점은 2020-05-27**이고 기존 1~20열은 **500개 셀 중 하나도 바뀌지 않았다.** 구형을 읽을 때 해석을 바꿀 필요가 없다. +- 행은 `0,5,10,…,45` 시작의 **5행 묶음**(값 4행 + 빈 1행)이다. 설정의 공사기간 내부값이 5구간인 것과 개수가 맞는다. +- `JB_R` 열 1~5는 간접노무비, 6~10은 기타경비이고 둘 다 `토목 / 산.설(토목) / 조경 / 건축 / 산.설(건축)` 순이다. 신형 열 21·26이 국가유산이다. +- 프로젝트의 `RATE_*`는 외래키가 아니라 **기준파일을 복사한 뒤 수정 가능한 스냅샷**이다. + +### 3.7 계산 설정 + +설정 폼의 선택축 **83개를 전수 확보**했다 — 공통 29, 일반 12, 수공 11, 실적일반 16, 실적수공 15. **형식마다 패널 한 벌을 따로 가지므로 설정 스냅샷도 형식별로 저장해야 한다.** + +화면 순번과 내부값이 어긋나는 축이 7개이고, 그중 `Ed_C_MTYP`(재료비 산정방식)와 `cmBx_AnPum`(안전·품질관리비)은 **순서가 뒤집혀 있어 화면 인덱스를 그대로 저장하면 정반대 공식이 걸린다.** + +## 4. 남은 것 + +전부 **13번 통제시험 목록**에 시험 11개(T1~T11)로 옮겼다. 우선순위 상위 다섯은 이렇다. + +| 순위 | 시험 | 무엇을 가르나 | +|---:|---|---| +| 1 | T1 | 화면 그리드가 `RATE*` 행렬의 몇 번째 행부터 적재되는지 | +| 2 | T3 | `ROUNDUP`·`MINT`의 음수 방향 | +| 3 | T2 | 금액·기간 구간 경계의 `<` / `<=` | +| 4 | T11 | 네 형식이 실제로 표대로 다른 밑수를 쓰는지 | +| 5 | T4 | 안전관리비 변형의 선택 조건 | + +## 5. 완료 판정 기준 + +| 단계 | 판정 | +|---|---| +| **정적 분석 완료** | ✅ 달성 — 186/186 판독, 계산 규칙 A등급 확보, 남은 경계를 시험으로 분리 | +| 원설계 재현 | T1·T2·T3·T4·T11 통과 시 — 원 단위까지 일치 | +| 변경설계 포함 재현 | 위 + T8·T9 통과 시 | +| **동일 엔진 판정** | T1~T11 전부 통과 + 11번 §16 재현 시험표 전 항목 통과 | + +「비슷한 금액」은 판정 기준이 아니다. **계산 순서와 중간값까지 같아야** 동일 엔진이다. + +## 6. Aislo 가 가져갈 것 + +- **프로젝트 한 묶음 교환** — 입력·채택 단가 스냅샷·계산 설정·산출 결과·매니페스트를 한 파일로 +- **보고서 서식 데이터화**(`SET_REP`) — 보고서별 열 이름·폭·표시 여부를 데이터로 +- **당초/변경 비교** — DB 열을 네 벌 복제하지 말고 기존 프로젝트 버전·스냅샷으로 +- **반올림 정책을 자리마다 명시** — 하나의 전역 설정으로 두면 안 된다. STmate는 간접비·공급가액·도급액·관급 2종·총액/이윤보정을 **따로** 가진다 +- **유지할 것** — 채택 단가가 없으면 오류로 금액 확정을 막는 Aislo 방식. STmate는 0과 미입력의 구분이 흐린 자리가 있다 + +## 7. 산출물 + +### 문서 15개 (00~14) + +전체 인덱스와 링크는 **00번**에 있다. + +### 원자료 + +| 파일 | 내용 | +|---|---| +| `system_inventory.csv` | 186개 파일 경로·크기·SHA-256·실제 형식·상태 | +| `core_cpm_static.json` | 핵심 CPM 12개의 PE/import/export/도메인 문자열 | +| `system_structures.json` | 186개 전 파일 내부구조 | +| `export_disassembly.json` | export 함수 디스어셈블 | +| `core_formula_strings.json` | 바이너리에서 검출한 계산식 | +| `TWM_KANJUB` · `TWM_KAN_RATE` · `TPM_KAN_RATE` (`.dfm`/`.json`) | 복원한 화면 폼 | +| `settings_axis_map.txt` | 설정 선택축 83개 전문 | + +### 재현 스크립트 + +| 스크립트 | 하는 일 | +|---|---| +| `analyze_system.py` | 186개 전수 등록·해시·형식 판정 | +| `evidence_extract.py` · `disassemble_exports.py` | 계산식·export 추출 | +| `parse_dfm.py` | 폼 리소스 → JSON | +| `rounding_symbol_matrix.py` | 반올림 런타임 심볼 임포트 실측 | +| `rounding_callsites.py` | 썽크 경유 호출 자리 집계 | +| `rounding_dispatcher_dump.py` | 반올림 함수 바이트 덤프 | +| `round_table.py` | 내부 ↔ Excel 반올림 경계표 | +| `jb_shapes.py` · `jb_block_map.py` · `jb_expansion_diff.py` | JB 43개 형태·블록·확장 차이 | +| `rate_grid_defs.py` · `settings_axis_map.py` | 폼에서 그리드·선택축 추출 | + +모든 스크립트는 `C:\경영정보(주)`를 **읽기만** 한다. diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.dfm b/scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.dfm new file mode 100644 index 0000000000000000000000000000000000000000..6715c54fb3d6f6a266358d627f5b606ff15f3bbb GIT binary patch literal 192123 zcmeI53v^rco#(G5+mif9h+{&4P}Gvp1cIxF#ExN8<^XXE@ra z#d^ZSYF$q}rZshqg%e3tb1m)d*mU!T+xxb5^>z#lZWyY8&l=xTHyqs@iH*eX8B%v@ zwZFWz>J-;d??8We zRCU2Ge&cC46!tJ2=CinpKa1hYWu0;MV~xK|(_l259II7?*ZLwcHCd}%o&I&*YBDk! z>sMn<@X*}D(ZNXcZZ(npGjr+BIT{|mOL$zrTljI+^oJ8_OkHv!|< zl%@O?guSk!k-xMtoEX*rG3@Q(Sh{@n%j^NwTt55N0rr-0EL}1C_0G7a#m5~rp8iB6 zrrjCWKOU(X*b!9|o~qkp5iRMe8k^X$aida;JUYX%ky>EFK143<2AAvcJ^EvZ`5s+S zS=*^@k0(^)k9Vy|`^L1_>-yru`n#h;V}CnWRXD2u8{F(qAKEpcx|WVjY#UG~;tBoD z5!MlVI-)wXasA=B>a{R?3b*b^YLV@`1l;+)1$3S_CsZ|7;5#4-!KA+fjJNwnbv*9w z9bmus;ki2N9L9sa86WI76@0LcjcHH8t%bYvr%~{`HjBTr@xC_Rq>jq;zrTC4uD;EQ z@PsE@2&>X{*r^L>G!fqs8$ltatk-;ct^C6u{$Pq6MbX6G{#Esc*qa75{Y^cZtZ2AQ zH(4RYr#yestNimzXOFB^Do?k)oCrxb!db?NiSDe$uP_{lWXD^_TQl zl*SeM|GUXM^UTqU`@i?jq5CiXaPs1jhrH~64R!jbyvF}c9rG%m)IS>Et4yAl{OZXk zj;4Kb%LVx4u`}zA!Y38}mS;xKoQT>fz{E7lwX}k}vhWCM^ z(|jA;RD`#|dkY({w6{T3`r9B&_|?%ElWkQrrqfau2HS`(@!?k>byRf zoILjC-XFhMudFp_d8hXuTbGdsb3^I6^no7&94N~aj$){?03121@)CntI$NjJIv;1E<3&RK=Vu8uQXKZzxC}qcJAfL?pGFMr-u*>VOttH=i?Yd zI66!z5xb_0;gE%>X0vNFY@y#b^WEpYyP0uptk)TNL&ggi|K{+;A3a)K;cfJ=7uW6% z%{=$?I&VgD+zNWo3br-_ymibBIzMorKfI~Jq<5|ShR_v_8ByA$G>8lbGl<&sH!i$? z^qDg&kFPv__V9wvsm63pzF<0+K2e*}qI6Ji1rv?liJA z^MgQhi*qPE>TF+b5OH1$c_T;CYK3Hp7B=2;7(f>o^A_N#YKIcxSaQNhiLwnLA$;Jf znJ-XGg$Gxphn*HbG(B#ps$);MXGd(9CE0qArfp|IT77pUIS~!->WL@D!&-IC4PIZ9 zPye5HjiOkB2^nBMg{KI5fkJa0Ht;f;4j_wKl{+u0+x>B7n8mt@n9#Z$II(3-Vi@KRun%(aBB6jGl+Ou5;ZR5@tT?#n#>`46R#q$& zG~j$*^dy`Pc@n)kn6m@V(UXLl4F;b@1{h{>1{7u)_47rSh!|$^{IIGws`o%32dOqn zWR;j2zR63ajRnS4zg@5%R=qvh8IO)AX=O1by)2ebbX#a(j~cfYcBI+LH^PutAKgXpraG{UG;75K;>u*l{fSbN)~k~ZlJK%3poCfaPZD} zUP*<4L(|)0m+SxKfulK)u8u0RdYkeWq>h}`vGc&r>1U^X`@VDPv6Jr~ed9uAby#E) z{${@s#s2SQf)6q6R?3Ii3`{O#I+&rcgB=s@qm6##4Q{!#LtK?5)xXHVO zG4wK>1Pk9z>hm_e`hS(DA#PwXgrX-plSjNt_bb__I_(0dw=te`+-asdHgi+<%r{ff zHOn_Y&{24mhfik>p&3Wgz5-(55G*TRl=QPg@w_Pxn`mM4XE2eLJ%%7?;lL~myGRR} zhI!}1(72pofT5N2S(WU0K<4jUXH053%TgAX&V{6G6dQ#wM>e(Tsbkp#f!yDTPW?S{ z76mmFjj>qfx1V^G)s1!EodXKdZ&zdDPkuY6NxPIL*o5+)^IqjAFXoIQ1SJ?#6;~39 z!c@V`)3P(#nid z7oJR(IUJihmljaW1&@%q5R}q7mlinn^9!VcnG2^v&ZQL2r3KE&ov9Tv7Y?P&?U#+5 z%bZqxNEj&|GRu<@Gr^}})*QN9sbN+&NBOp1wEu}d(3;2KUI=E49WX~3HK}~Yq(Xi7 zT;}$S!|#6Y#m5hL-#Pq^Tq?#bP%(DGNRi`qWA2{gxXGqCq@UKSu7>Jl+Ob7*!Z;)h ze1DCUQBXU@P(~mxWkA`!QcwoRLCS!2W{Y39pGO%mREIv}+oX)bl@ZKK8PGbZ5|qJl zkTOc34B=GDv!sl|mC>A!GFqX3RV^rk;~-^}Kp8M7gg)bNIV!^)jlr(XOSn(S2&+PQ zNd&rxE_lGulJqj zUiNzRBP3q$%pQHwr+(@uQ?5RzjMW1BA)N?k94(piRem(S&}{^AAA@gz^;_ofma)RP z#;WPg&&IRWtvCC<%87$tI=oit-+ShT^@{KOWe3*lrx(8Ti{GFA(&5a@JLlrTGYp95 ze!^qy{pRysx#M9ceHfm)3s1jr__ejls-u;sADvpS{Pu+Vuy5a^Qx%iB0SZ869sxa0 zfC>e~j+rn($IfiIu;*;{hD`J_KO_)^f?$WP7>GS*PaMpI!Dy92fbLPk& z>-P&hc@|#%vXTodJOPZbeknbyRP}3dS4LQ7mpswGTp$EYyvm=y+w7fUFJf-B@zh1%h83{#vD*_eVUcc)<=HgioFE?+?t zW){NaHDUZ&UxKV;UVl=LrtJ5p-#WKeUs24=*?Rp~ZSsj%bI2Q8u~&?M%&M5YfEIbO zC3hd=7QnoHd_EkOwhX3T{#LYQrgF%Z75PLR_cL>BSu6JKQ7UHYPEyG`9AgKASUARP zm{-|(%BwKzl_@Bj3nT!2dIVzT?F1xmAZB}b;`Gat*<-*iJz_9Zb$KzQlJHC5yZ|EkEwbSWPeHYv+j+VW!?diHyv{K&6bUd6|Y=_qzyN3q$YB-&Cd@e-24t{rMzkwUWD>-VKyC7(SLY|bN-ATe14CWvCUH<%3*%Xkb1 z!`3W^G!k#oY&S3eEx$!9l3Z5qZ-ZHh8$>XD1g6Ll@;*!uq27Uw>Ui7*zhJ8colK7j<*VjmmXF&j6mxHmCq_0W!V?~R8iU%dsM<6b z4JXHH72&nMNK8%E3M2U`6pLGw4a$)B9DQwCO09O-IJ15v-Ed zq+bJd^5p8N94>om!&*P0xWg0^p~&y5?!MP?yIoNxWUBsOUidEd)4t30%ab@uxFbQKO{|>t@W|Mytm~l@*<~twTp@#V> z+**uW%nAT;Db}5jaDT)+Tp-W=Ur$i=Jz5SNm1fi&~FB?1>7c99(`)()P9>=hQ=`x_bKJq! zvO2D=+8i0t#vGky>UfjAl7At+&obpNejlcR4`Z-=g@whweU%Fj!k7eb4(2b7ok%7E z=Zm}-RtEPt7oP!Nh19^N!zw42o!)t%`K9hxyn2CUO*SVYO&VBCK^n~{2(Kv!s-@&q zOL6EhSS=+}o;b%GVaw|Xh=Cq|K5M~J2|IiIISu8tfic2mhJT00fo&1MXQ;lV3jI%;)C55C9QxD4iNoR9RD&$ zS!w($G8*ewW3xR*#*N-t1+yFo_Z@t!NZ8)}4`jT0!ozBIy0JQu(c|`JLK7? zO>eo7$(38`0}iEl1nb4YkoD>kSA%2}h83RN#9~3m-v){K$FVIx1xs1^Aj?)B^Vapm zV_H+!SU8bXHP_PKj!idjxV>*{S8vC_;D(_Z_^k0yaSca1qv7GZYK_-=)yU|W<|tt8 zXFiUkwAau!)aYuNI`hF~_bWH)eJh{--}5KWozfe+mX`##!{GgTkpZ7sAqM)$m$`A3 zRVcD5c;v<)-~$GJkpUl1k()uuBdB>`%<QfH8Wy+Zzb64>Ec0xhOE00uaX=o8>@t5)W4Qid+O#Qc&_n(O>= zh146iEyFu&`VCXU@=SL=W#HnsqJaJ+)TvhGagOJ%>XZa@Y#9a&K2) zJIeBmi4E$$`G6?WYMl83V*^N=o}2sh++3TU%4Li(5QMR;kK#B3qIqv#H09&@Ijs_z zuWA=uYwERh{DC0MW<4yzsWwZ&mbxK0>;T13A{;9;JX;73gvP8O)$?%T@FYGc}8{TzCBJ+`Mn!iAm+)%t>}~ zo?T~So}KsVcMf^>x%Y)nW=cKhplXLBCJsRLl!@vX9~Yuay3$I*ualtRWl$$m z#6)a0=DwiN#hI{)qWKR0%(Ypt?*m!tb80SIg`Exjx2stgkl;nf>LxSb6p9{XQM0m6}ghd zb0s;Sc5laSJ%qjg$7CUGDw3+rFK&vMb*z;sxV7{baBBBa(KMNYD0kD8LRI=YbZK`OZnyM*iu0_X4LDvM^-qC+{nru z%GEqEWS7#hyUo4I%Ri|^ZcW}D*U!%Rl z;<1UZ-0dA#pdHN}ZjeGnnJJ6BisBEuL}36ocPqKF%o{q{HX^2}_m55;c|rN-z4yJa z|5VlM?3ItnK!azCFw~|}J)tuKgQ>M*(^Z4qiPru}y zK6XagJ9)&ghi8Ak_XTCk&!Xohj~srDy`oJ1;5hp__C0GAzrGPH^NfIHEC_@Ae<9jN zQ;1|6i@g6ZRYR~48Eynak(u#1i7fBSCfG>|=nb$sG{{TeO#M?PB=*W%$0t*v$JrAH zf3Ww&K~sz;4yJ`AXD^?eoMzw2KAR~Nu^aWGa^`wZCKY>VTFtOqs7^ zXilE=Doc-gb#J%xR3=Q8RuRSxz9m{k)6J1pyku6<3Qh$B*AjhKiPH|w@RjAT(%P>0H_nqfn_Fg>lkaz8xbqi|3#DSGJ#9>3zB%No-YFU-JaKw)l zw1jApXjxb;YDgWE$$eWDKL5vT`~0Qy2zeh<@?()}zil~4XNR(iP`Mq#lGM*^`~0QV zL5?9Rt}pzJ2!cY?{2W3~Au1O`5ZYRG#+gZTpQ_`_W|~k2M_CrR(PeR>h=-`gI@SB8 zR~}{Es~py;avGR1APpOas8X3GrU*uZ9V%KdOW+JJalR20VM7Mex#!B$Z7(hO{8OEF ztl-^hTL99DAnVEn7XiBFG0`o2!gLE|u<5)=b1N3^A+_<`sHRS@o?cK4CWmIo*>J<~ zN<94Qd@yxZj&^+Iu;a_{&%f0>r0ihn`+Ar34gCn?*~6J|ShV8&&2Y$J8!YK`J_S>& zCK<<0Qz50VuL^D=pVg4UU4UFJ1-5rA^pVw;!bUbYIrF0jX7)UG@!`W4Cl9ge-wpbu z&3wZFuYq&%;6b`8jdR*JnkVN!Zz8hUU5)r;?0Q4vQa)(MHr&2{e(KEqFT3~UaNS=s z9!A+B;^;PU*i13`;3$5ok*fc(;Fi^2vzo`@lE6KMz~Hl{B+7|Fsu8`o13FfQi%WvR z$m4LSzZur!L`84HO%-{QBHhBYus5;v{je`5Ceq?6DtlTfX~`1=gs|)JF{8-nTyL7Z zJIl!Jq_|u{lgIiWM_yZboE2B*^FdZZ3W3>MQw7Dxugqdo=4a|txJo3W`8QAbLty6W zJwWFG(a|@4Wvt0B`p!wX>D0R>)4J9Wob6hIcz!htPnVTplX`0#Tv1SR)ikp6lxf>^ zEqChqLvXsJq87xn&M2Uz+)kOBHnU1la#-`5xIhpz^lNeRArB6SQf^lfS>;Cg&he)D z05D35mu=oW`?5_c7tFpX%8CNdP+7RkjW=bsNW>#32DC zx{MLQd>k6<7>CxI`~mMf`}L*l-^o;ap34E}=THyh#Gzmg{@_i)mfShuPDw)#&ifSt zQ3wcQyL3>$F%1k;PTQsZAvmt4CHJjD$3Wt^L zTHYB?q-_ZuFs>~Fdq2Lm|T_|9vpf*AS%xc z4oG?P-WgJIc(6V3IZ=58PX^@$f>2<%9BZfO^UQFNlxJt<1zKTxWCg-QpGWYdP+lu6 z5!@vxFO>k0^z1D?=xW?6NRQ}=8&T~VZw6YSVEY9OS@5bYN*3fWoDi}+FT$gEQwn%( zkfvXWb`zCHA&VUFAWi?O0FRuWBu=jl^7Px#ZsJNCa(Z$|53+@Rgog`p2%a49U_kAl zs62{T0Gn(1E=lt;OOB)LL6 zr0Mqw(j$5{q-QbNg=;@>SEHFD@I^QqOMb|^@QnxA9d)o8Kgl#9XK}D3&<=6?0ET|J z>d$N6yZ_4DF-~Lv3vyWCMu6Y7CGQSjpgeCJaT%nI6Ww`458h`8wAMd$ss)` zvfPgF@cIFQCkH$zvK$tbM-ht@@cd9@IU*{L;K>0GiY%)zVnLrr;ieq$pvH0y!b6`& z@Z^98C6@aI&-pkl$WjYlkd@QsKF%S1ai8;t z#GxP#xo_?>IRx+$pF50;FOCq0!a3x$xsP)Y7WbVc4h3<@dU2m?sCQtaIv#hyFW{0L zD-ALHat?&jdt~9>B==^0_ub}1c*27&F{kT!ihm!>()zwgOieZoYKcf}G+EJD&-ROY zL%x~sKJVSFUytN%T*6+_2aVV(7yst)#UDLdUEyu?uvgda_Uo^%^C}C5R9r(4nZgoM z=UjZWmAANCc{vA^5%`pUoFgORkPC+bd^_GT1{|s?Xc=rFv97@(Ki`g*ivfp~#Gxd< z9mN2?{l+;E$hT*{M#LiHw)XAl$y2`F@5|uZL%I5Pxbzi$`&@kFQ*!YsMtq!C-X6e9 z`oNZbc8-jQLoOT&@a;k!>kGu8AfHlzZx`xVBgCN~4*BNo=p4Ye-!lh7S^4(V^+iR$ zP;bTT1fHeqrc0lB=FrT852Vs{=FxZOlCB4Z(&JoeLoOWh zcj-Z)eDw@*D9DxM@6v-p`D%YTa=3&(By}k`yX7ml%XIXDVt40|x>JKOyO2BmDxFmG zmR4ujaCHV}2UB(}$PR85Aa*t!^+}yWL*Y^9lcMf;vz~NkL*40DBcjcO!ScTp zg-7tBHlA-y!Gpt8e-M?&$1_NIwpJb-rux64@(7+3$_u~=;xOJ|4p&$?`9KaS&(6vV zzzO1Q2oHlzf+vOYf&lNDIw8yBV?3lhJ1Y+_t^WwZL*)@XDU{cY$8kjE@xd)po}HD~ z3<1m6MdcAZDU=t2>ezo5mB&Z*NO^WvUI@;h{tr=k1WyX(;SKM%)CD@*;#ol z&=9&6;bF8%@T5>)E5KW}L{J_d=_KXZS$VAxurwe%R35>TLwV58+aW5C5Al-n?5sSz z>-KI@c?3@i<+VXS@9#zB@v&`Eo~@M!{k;DyDv#hvp**~G=`%}(Xp;}>lk)7WJiK-3 zvj`8PO@e1<<<+JJkf5Pgb(tVNKIl)VWu zUs=ZvZT0Mk4Qr8j%;g%>wr`5Z)cWp7av~bu)e}#QhqdY|Uz5-0Rg~1ZlT`2-gdR}< zF=FsZ7$c*xel<4xJgQwW27F*k+i?>94aHcj$G5JQxf%;ybX#H(27E9U_>4%8P7q1q z2?IXJAu4bd9<@iOP$Z!TwKG+uM<*F1p$E0IkK$w?YLBMjC7}oXzK2D6G*K-HJs5KN zwMdVqa^;|h*P(61$xgJKG}$Q$JxJRx$4LpKN7I3l(1W`5E|DHhm`OqpYAtVx^k_;+ z5_(W;>A*=Bw45~QA_+aHwRo^+g!E`uLK1pVYZ({mQMX+ZdQfXQFVdratt9lI))K-- zA6iao^hwd^<9h-j^lZgO(LYg}&;CtX&JF_4He|P=f?Bk;Z?LD<1VX*#DN%UTp|!K` zOTmM3%hRIr2%a49pv&<8MCDO;T?%*s7!p*lxsE=M;K>0G^1We%hruRIM#upV(!CK; zc?3@ictL=7Eq2yXc{J4`2RsN^ya*3{9>J3WUNcmv9~6~G6G?KwgMj5BQF#PU3V0zX zkNrwi9!-R!IJ`B3zWzH2qytC+N4Q9Ip9G@s1M;`v`O%!fY%D}mg6KD zDvzc(<$wnPOC!QV zksfM~=*dCP4=ugBMD5X`6G`Yn&=M83NA%>N7l0bs&qVFfks(RwL09jbs6C=52fZLv z$%1&`3u8_?@Fm58uT<&~gdR~dV#MH+Fv^875Hf73V;5}84b3|Ib!~O8YAkeZ^mIh^ zf7!Uc8rHQ$3maQrZ{3m9BHMS>^~7UZQ`cBHkyJI;(%z0uH*dJTZ);a?$H3r*p&IyX zoY^MVaI`ZT9=@yAcn$yL_dLe$HigI42B)GZ+TNo_4xNQ>8`O41)mp{)ip`M`ZOlL91 zdi($p(X;cO@jwVth>i+@9zTRa^z2O!N@vfC^!PyrqGxYG1(GqGxYG05diJIVwU%pKg7$d3mgw1k9TNEcs3MX3LcbO{+*~if@kMBGY&5RT?Pj( znnRbzyX&MpJ1Z{$O$H~zL!U?RTLV3*q?_;>` z3Vj}*Y9Zy>S$WM6uv~}m(B~06Ig|$#>VGLJk543#@@%a<2w471R35>TLU}j?|Bk3U zK21i-v$OJW1pcC^Jc1{M@>-xgwh31}VzkL80ZDmwR$dEqgln|$(}lxIWbrS`P=peNLY^f25cdUlpx zik=_n)!?ct)E+;#K-#ml_WTgD)FM699?_FTd(hL1iQ40*PDp$9)*eJHaZ!6jPY&$` zph)(bs6BpWh_q*G?FHbp>%m;46^$fv9murz9-NRwaz`F@Tfy;XWy5C2c^#Mi^?N-Qosv9)LDuB zS#){SU6%tM1f5j~4}BiNlLB54YAs`;@@O(b4tP*%iHOQ0cv8S?26(HnvyMKGrds5H z2La0(goi$l;7I{51e3UbE-H^ElH`B~0n0Z;;6GEMFCsNARS8*AC^ew?*aA^t2rCpr7|&MdcAZJHz8^2K+v#k9Fhd zJBFJy`Ys7QXbNpWdKhmKJvr$4fnFUBPowte;DRLdAZV#adZ<03CkH)TuQMTPkB*&4 zLJy*re<5m*=t)8ks$@SGwMU1BB%ud=y$hoDh@Kquf>0-G!y{i9bJCG7DUN)l()J*9 ziP{k(2A_mcE{uUzBaU(GuIy8{YtG-yI{tNSb*~y39n%~eJsnZ~UpB7BG}jU>JiuPO zbw^T*Y~NMa6OU<4U1Q-yQq^2bdpkDWyy5n~tzEqx1A`leYT&bRW}95Y(avai_^w*x zHT;v`^BBL|6dqR_oQk4odygJDbQZpCP}>z%YZc=wHb+LZF-K)he>kE4CD`}4Yljly zSaQO6!LzJ0o)}RR#Q<9Qf_MFL z_&FQHiBbJ;(PTV6hof#t-Kq8Lhz)Czc+BM*)3$Gl$JF}nNOB??-qjONjEA-ADqoY& z=T#KXQ13u@C;JYr!2sT+m~aU6_)sU&Ta-=XMWY8{%=Suw9&gohdYedlDC=~+H;9sA zqINh?@TSgmi93o#4{uYvvs$3Xi!YpBd0Ng(zG-|hFuHUTx=|gEyWkf;kh{_0)ZZu0 z$CWB@F?>h-b!obDYvC^4?Wl>;c{}%J-N9{6geS6fb;_!A@7Ae1-qA#SM{K02%kah? z-5YDMp75}mofovw*3x>zsWuI2iAZcTSKQI>33q2v(MXxXAVh>WVq%36;anu;X$mj7n2Hn{23lb}@<9cZb!&#ol+$04 zRw^u?_SmK7==`oyoH_?yC)te^#<5u(KVi2nXVs#1IbG41(QquZ(rA%IU!PSA(`B?U z*9c8aUO;Sx-6reNR3aOmJQEweaqb?D4o2op!xoiI%8&WrK%y6OV}!#~ErL@@IL)A( zMvT}I4i7RuBybkZNfk#zfp!=a{%iC-_27F>%;`2ZmP-gxsGG^Qv0t^Qu>!Ywfp!S` zzKISAfn8QHyFE<6aPq3;z@UKpHFQ!4>`MeJz5Sn0*Rf~{gF;~v9Tx)oF#)qFupsW4 z|Bqsm|8L2M*%lbg*dG)-k}F7Iwgm>$^iPSslWhddw!olW@)u%-cOL<>12DHf=-C(E zrbhK!Zj4|3*c)kq>}$w@!Tg_?mA|Xfvaiz2dI~i^%tdoL%)rZhMIZZgySl;??94)g zNAHh3arE-j_rLu9bMAd!Wv#MCS(mX>G6zctM{p6#xQXR6CYJOZOHwSwpTe!;IN12@ zHB;J)4;eTX9>L{FZ_p17t7n!&ry~J6;Xqc~6iC4*fVgO~n}NO}lXbHw9#v&k8#j*k z_!Na}LobYj$@1fT3yR}@8;V0Xjg^nhN)_*lZnRP=VNKnKrrrCx&px^r3|B5n!L<#4 zB`Sr}DSM@)kd;(2dNWB;>V|rEO{j?hbt0b7oV|&O75xeI?udHNZH9YFHkp2^Qvc#r zr@uel{mRbYvxXEsM-Bk_9%HT@ietM;Dc#_-O_c;sGnWcE+F zGaet`7>PLomY)dk)ccxO%=)9*w+w3Pgrnx_S)akPOK?U*KQXy^ETXB`%=)4)Mv{?j zQMGf2rp05)TGuwMCz42N)!Q`oh59d>^ivo5FMZ*prhiiZCnVT!2etTwdz;37_$@IH zd~n+i<1^vARs9S5^>ZAWvXng%yU$!9@)_>ff{zdStJyzXX`*+cUTK=3nz`AUF{ki+NvLxxvRb_ zJUph3+&(d)e^Juy>4~V(k#2Q+a*5)(B{rh&#E*?XjQy>vYv7M-8rinpW4t<~zrS2A WO&i>@X>betUHXl`%Vqk%@BagaHbIC0 literal 0 HcmV?d00001 diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.json b/scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.json new file mode 100644 index 00000000..dab00d86 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/TPM_KAN_RATE.json @@ -0,0 +1,15210 @@ +{ + "class": "TPM_KAN_RATE", + "name": "PM_KAN_RATE", + "flags": [], + "child_pos": null, + "properties": { + "Left": 285, + "Top": 146, + "Width": 797, + "Height": 600, + "Caption": "PM_KAN_RATE", + "Color": "clBtnFace", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "OldCreateOrder": false, + "Scaled": false, + "WindowState": "wsMaximized", + "PixelsPerInch": 96, + "TextHeight": 12 + }, + "children": [ + { + "class": "THRPage", + "name": "HRPage1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 794, + "Height": 1123, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "PageInfo.Width": 210, + "PageInfo.Height": 297, + "PageInfo.MargineLeft": 15, + "PageInfo.MargineTop": 10, + "PageInfo.MargineRight": 15, + "PageInfo.MargineBottom": 10, + "PrintZoom": 100, + "Ruler": true, + "Units": "hpuMM" + }, + "children": [ + { + "class": "THRPageBand", + "name": "HRPageBand1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 57, + "Top": 38, + "Width": 680, + "Height": 1046, + "BeforePrint": "HRPageBand1BeforePrint", + "LocateAtPage": "alTop", + "BandType": "hpbReportHeader", + "Alignment": "taLeftJustify", + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clGreen", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [ + { + "class": "THRMemo", + "name": "HRMemo11", + "flags": [], + "child_pos": null, + "properties": { + "Left": 524, + "Top": 71, + "Width": 139, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": 16645629, + "BorderMargine.Top": 5, + "Lines.Strings": [ + "50억 미만(전문 5억미만) ", + "기준과 동일 ", + "", + "- 일반관리비 ", + " 상 : 국가계약법", + " 하 : 지방계약법" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 27, + "Width": 66, + "Height": 45, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 10, + "Caption": "공사규모\r(국가유산)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo10", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 71, + "Width": 66, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Lines.Strings": [ + "10억 미만", + "↓↓", + "간접노무비", + "기타경비" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo8", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 147, + "Width": 65, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Lines.Strings": [ + " 10억 ~ ", + " 50억 미만", + " ", + " (~5천) " + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel74", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 757, + "Width": 301, + "Height": 31, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 10, + "Caption": "공사이행보증수수료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel103", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 787, + "Width": 76, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "70억 미만", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText246", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4921, + "Left": 287, + "Top": 787, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "* 0.0000 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText245", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4923, + "Left": 193, + "Top": 787, + "Width": 95, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직공비- 0 억원)" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText240", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4922, + "Left": 116, + "Top": 787, + "Width": 78, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "(#,0 천원 +" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel104", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 806, + "Width": 76, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 70억 ~ 120억", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText252", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4927, + "Left": 116, + "Top": 806, + "Width": 78, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "(#,0 천원 +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText253", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4928, + "Left": 193, + "Top": 806, + "Width": 95, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직공비- 0 억원)" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText254", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4926, + "Left": 287, + "Top": 806, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "* 0.0000 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HlCap", + "flags": [], + "child_pos": null, + "properties": { + "Left": 6, + "Top": 4, + "Width": 220, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -16, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "FontWidth": 0, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "AutoSize": true, + "Caption": "☞ 공사원가계산 제잡비율", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel34", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 454, + "Width": 131, + "Height": 25, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "구 분", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel35", + "flags": [], + "child_pos": null, + "properties": { + "Left": 155, + "Top": 454, + "Width": 120, + "Height": 25, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "요 율", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel36", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 479, + "Width": 131, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "산 재 보 험 료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel38", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 498, + "Width": 131, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "건 강 보 험 료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel42", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 517, + "Width": 131, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "노인장기요양보험료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText141", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4601, + "Left": 155, + "Top": 479, + "Width": 120, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": " 노 무 비 * 0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText142", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4701, + "Left": 155, + "Top": 498, + "Width": 120, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": " 직접노무비 * 0.000 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText144", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4711, + "Left": 155, + "Top": 517, + "Width": 120, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "건강보험료 * 0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel37", + "flags": [], + "child_pos": null, + "properties": { + "Left": 290, + "Top": 454, + "Width": 372, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "산 업 안 전 보 건 관 리 비", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel39", + "flags": [], + "child_pos": null, + "properties": { + "Left": 290, + "Top": 480, + "Width": 90, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "공 종", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel41", + "flags": [], + "child_pos": null, + "properties": { + "Left": 379, + "Top": 480, + "Width": 55, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "5억 미만", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel43", + "flags": [], + "child_pos": null, + "properties": { + "Left": 433, + "Top": 480, + "Width": 121, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "5억 ~ 50억 미만", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel46", + "flags": [], + "child_pos": null, + "properties": { + "Left": 553, + "Top": 480, + "Width": 55, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "50억 이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel48", + "flags": [], + "child_pos": null, + "properties": { + "Left": 290, + "Top": 499, + "Width": 90, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "건 축 공 사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel49", + "flags": [], + "child_pos": null, + "properties": { + "Left": 290, + "Top": 518, + "Width": 90, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "토 목 공 사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel52", + "flags": [], + "child_pos": null, + "properties": { + "Left": 290, + "Top": 537, + "Width": 90, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "중건설 공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText147", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1117, + "Left": 379, + "Top": 499, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText148", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2117, + "Left": 433, + "Top": 499, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText149", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2118, + "Left": 487, + "Top": 499, + "Width": 67, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "#,0 천원 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText150", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2617, + "Left": 553, + "Top": 499, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText151", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1217, + "Left": 379, + "Top": 518, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText152", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2217, + "Left": 433, + "Top": 518, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText153", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2218, + "Left": 487, + "Top": 518, + "Width": 67, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "#,0 천원 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText154", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2717, + "Left": 553, + "Top": 518, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText163", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1517, + "Left": 379, + "Top": 537, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText164", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2517, + "Left": 433, + "Top": 537, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText165", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2518, + "Left": 487, + "Top": 537, + "Width": 67, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "#,0 천원 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText166", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3017, + "Left": 553, + "Top": 537, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel54", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 596, + "Width": 105, + "Height": 25, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "고 용 보 험 료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel55", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 620, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "1 등 급", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText167", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4611, + "Left": 85, + "Top": 620, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel56", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 639, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "2 등 급", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText168", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4612, + "Left": 85, + "Top": 639, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel57", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 658, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "3 등 급", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText169", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4613, + "Left": 85, + "Top": 658, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel58", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 677, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "4 등 급", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText170", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4614, + "Left": 85, + "Top": 677, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel59", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 696, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "5 등 급", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText171", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4615, + "Left": 85, + "Top": 696, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel53", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 596, + "Width": 420, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "환 경 보 전 비", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel60", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 621, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 도로(교량,터널, 활주로)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel61", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 640, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 플랜트(발전소,쓰레기소각로)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel62", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 659, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 지하철", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel63", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 678, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 철도", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText172", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4801, + "Left": 342, + "Top": 621, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText173", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4802, + "Left": 342, + "Top": 640, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText174", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4803, + "Left": 342, + "Top": 659, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText175", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4804, + "Left": 342, + "Top": 678, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel64", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 697, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 상하수도(폐수,하수처리장,정수장)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel65", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 716, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 항만(오탁,준설토,방지막[간척,준설])", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel66", + "flags": [], + "child_pos": null, + "properties": { + "Left": 138, + "Top": 735, + "Width": 205, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "Caption": "ㅇ 항만(방지막 불필요시[간척,준설])", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText176", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4805, + "Left": 342, + "Top": 697, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText177", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4806, + "Left": 342, + "Top": 716, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText178", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4807, + "Left": 342, + "Top": 735, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel67", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 621, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 댐", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel68", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 640, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 택지개발", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText179", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4808, + "Left": 513, + "Top": 621, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText180", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4809, + "Left": 513, + "Top": 640, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel69", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 659, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 주택(재개발,재건축)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel70", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 678, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 주택(신축)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText181", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4810, + "Left": 513, + "Top": 659, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel71", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 697, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 주택 외 건축", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel72", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 716, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 조경", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel73", + "flags": [], + "child_pos": null, + "properties": { + "Left": 386, + "Top": 735, + "Width": 128, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "Caption": "ㅇ 기타토목(하천등)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText182", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4811, + "Left": 513, + "Top": 678, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText183", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4812, + "Left": 513, + "Top": 697, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText184", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4813, + "Left": 513, + "Top": 716, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel82", + "flags": [], + "child_pos": null, + "properties": { + "Left": 378, + "Top": 757, + "Width": 284, + "Height": 25, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "건설하도급대금지급보증서발급수수료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel84", + "flags": [], + "child_pos": null, + "properties": { + "Left": 378, + "Top": 781, + "Width": 224, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 50억 미만 ", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel85", + "flags": [], + "child_pos": null, + "properties": { + "Left": 378, + "Top": 800, + "Width": 224, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 50억 ~ 100억 미만", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel86", + "flags": [], + "child_pos": null, + "properties": { + "Left": 378, + "Top": 819, + "Width": 224, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "100억 ~ 300억 미만", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText185", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4901, + "Left": 287, + "Top": 825, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "* 0.0000 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText186", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4906, + "Left": 287, + "Top": 844, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "* 0.0000 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText187", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4911, + "Left": 287, + "Top": 863, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "* 0.0000 %" + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo9", + "flags": [], + "child_pos": null, + "properties": { + "Left": 378, + "Top": 838, + "Width": 125, + "Height": 39, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 9, + "Lines.Strings": [ + "300억 이상", + "(종합심사낙찰대상포함)" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel75", + "flags": [], + "child_pos": null, + "properties": { + "Left": 502, + "Top": 838, + "Width": 100, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "토목.산업설비", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel81", + "flags": [], + "child_pos": null, + "properties": { + "Left": 502, + "Top": 857, + "Width": 100, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "건 축", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel90", + "flags": [], + "child_pos": null, + "properties": { + "Left": 378, + "Top": 876, + "Width": 224, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "턴키.대안공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText193", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2119, + "Left": 601, + "Top": 781, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText194", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2619, + "Left": 601, + "Top": 800, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText195", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3119, + "Left": 601, + "Top": 819, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText196", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3619, + "Left": 601, + "Top": 838, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText197", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3719, + "Left": 601, + "Top": 857, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText198", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3819, + "Left": 601, + "Top": 876, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 27, + "Width": 66, + "Height": 45, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 18, + "Caption": "공사기간", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 154, + "Top": 27, + "Width": 186, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "간접노무비 (%)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel5", + "flags": [], + "child_pos": null, + "properties": { + "Left": 154, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "토목", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel6", + "flags": [], + "child_pos": null, + "properties": { + "Left": 185, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "조경", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel83", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 715, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "6 등 급", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText199", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4616, + "Left": 85, + "Top": 715, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText200", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4814, + "Left": 513, + "Top": 735, + "Width": 45, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel87", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 734, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "7등급이하", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText201", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4617, + "Left": 85, + "Top": 734, + "Width": 45, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 %" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText188", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4903, + "Left": 193, + "Top": 825, + "Width": 95, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직공비- 0 억원)" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText192", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4908, + "Left": 193, + "Top": 844, + "Width": 95, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직공비- 0 억원)" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText202", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4913, + "Left": 193, + "Top": 863, + "Width": 95, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직공비- 0 억원)" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel76", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 825, + "Width": 76, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "120억 ~ 250억", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel77", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 844, + "Width": 76, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "250억 ~ 500억", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel79", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 863, + "Width": 76, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "500억 이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText189", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4902, + "Left": 116, + "Top": 825, + "Width": 78, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "(#,0 천원 +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText190", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4907, + "Left": 116, + "Top": 844, + "Width": 78, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "(#,0 천원 +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText191", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4912, + "Left": 116, + "Top": 863, + "Width": 78, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "(#,0 천원 +" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel78", + "flags": [], + "child_pos": null, + "properties": { + "Left": 216, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "산.설(토)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel88", + "flags": [], + "child_pos": null, + "properties": { + "Left": 607, + "Top": 480, + "Width": 55, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "800억이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText235", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3617, + "Left": 607, + "Top": 499, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText236", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3717, + "Left": 607, + "Top": 518, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText239", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4017, + "Left": 607, + "Top": 537, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel89", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 898, + "Width": 620, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "건설기계대여대금 지급보증서 발급금액", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel91", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 923, + "Width": 192, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 종 합 건 설 업", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel92", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 942, + "Width": 138, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 토목(토건)공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel93", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 961, + "Width": 138, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 조경공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel94", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 980, + "Width": 138, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 건축공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText241", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5001, + "Left": 179, + "Top": 942, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText242", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5002, + "Left": 179, + "Top": 961, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText243", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5003, + "Left": 179, + "Top": 980, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel95", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 999, + "Width": 138, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 산업설비", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel96", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 1018, + "Width": 192, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText244", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5004, + "Left": 179, + "Top": 999, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel97", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 923, + "Width": 429, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": "ㅇ 전 문 건 설 업", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel98", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 942, + "Width": 375, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 준설, 포장공사, 토공사, 비계·구조물해제", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText247", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5006, + "Left": 607, + "Top": 942, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel99", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 961, + "Width": 375, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 상하수도설비, 보링·그라우팅, 수중공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel100", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 980, + "Width": 375, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 석공사, 시설물유지관리, 철근·콘크리트, 가스시설공사(1종)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText248", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5007, + "Left": 607, + "Top": 961, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel101", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 999, + "Width": 375, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 조경시설물설치, 조경식재공사, 철도궤도공사, 도장공사, 철강재설치공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel102", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 1018, + "Width": 375, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Left": 10, + "BorderMargine.Top": 5, + "Caption": " 기계설비공사업 및 그외", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText249", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5008, + "Left": 607, + "Top": 980, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText250", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5009, + "Left": 607, + "Top": 999, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText251", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5010, + "Left": 607, + "Top": 1018, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel7", + "flags": [], + "child_pos": null, + "properties": { + "Left": 247, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "건축", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel8", + "flags": [], + "child_pos": null, + "properties": { + "Left": 278, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "산.설(건)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel105", + "flags": [], + "child_pos": null, + "properties": { + "Left": 309, + "Top": 52, + "Width": 31, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "국가유산", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel4", + "flags": [], + "child_pos": null, + "properties": { + "Left": 339, + "Top": 27, + "Width": 186, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "기 타 경 비 (%)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel9", + "flags": [], + "child_pos": null, + "properties": { + "Left": 339, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "토목", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel10", + "flags": [], + "child_pos": null, + "properties": { + "Left": 370, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "조경", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel80", + "flags": [], + "child_pos": null, + "properties": { + "Left": 401, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "산.설(토)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel11", + "flags": [], + "child_pos": null, + "properties": { + "Left": 432, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "건축", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel12", + "flags": [], + "child_pos": null, + "properties": { + "Left": 463, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "산.설(건)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel106", + "flags": [], + "child_pos": null, + "properties": { + "Left": 494, + "Top": 52, + "Width": 31, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "국가유산", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel13", + "flags": [], + "child_pos": null, + "properties": { + "Left": 524, + "Top": 27, + "Width": 93, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "일반관리비 (%)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel14", + "flags": [], + "child_pos": null, + "properties": { + "Left": 524, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "일반건설", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel15", + "flags": [], + "child_pos": null, + "properties": { + "Left": 555, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "전문", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel107", + "flags": [], + "child_pos": null, + "properties": { + "Left": 586, + "Top": 52, + "Width": 32, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "국가유산", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel16", + "flags": [], + "child_pos": null, + "properties": { + "Left": 616, + "Top": 27, + "Width": 47, + "Height": 45, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 18, + "Caption": "이윤", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel40", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 536, + "Width": 131, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "연 금 보 험 료", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText143", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4706, + "Left": 155, + "Top": 536, + "Width": 120, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직접노무비 * 0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel44", + "flags": [], + "child_pos": null, + "properties": { + "Left": 25, + "Top": 555, + "Width": 64, + "Height": 39, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Caption": "퇴직부금비", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel45", + "flags": [], + "child_pos": null, + "properties": { + "Left": 88, + "Top": 555, + "Width": 68, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "토목공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel47", + "flags": [], + "child_pos": null, + "properties": { + "Left": 88, + "Top": 574, + "Width": 68, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "건축공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText145", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4716, + "Left": 155, + "Top": 555, + "Width": 120, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직접노무비 * 0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText146", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4718, + "Left": 155, + "Top": 574, + "Width": 120, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "직접노무비 * 0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel50", + "flags": [], + "child_pos": null, + "properties": { + "Left": 290, + "Top": 556, + "Width": 90, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "특수건설공사", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText155", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1317, + "Left": 379, + "Top": 556, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText156", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2317, + "Left": 433, + "Top": 556, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % +" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText157", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2318, + "Left": 487, + "Top": 556, + "Width": 67, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "#,0 천원 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText158", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2817, + "Left": 553, + "Top": 556, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText237", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3817, + "Left": 607, + "Top": 556, + "Width": 55, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel108", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 71, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 6개월이하", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel109", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 90, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 7-12 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel110", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 109, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "13-36 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel111", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 128, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "37개월이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText159", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1101, + "Left": 154, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText160", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1102, + "Left": 185, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText161", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1201, + "Left": 154, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText162", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1202, + "Left": 185, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText238", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1301, + "Left": 154, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText273", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1302, + "Left": 185, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText274", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1401, + "Left": 154, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText276", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1402, + "Left": 185, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText277", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1105, + "Left": 216, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText278", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1205, + "Left": 216, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText280", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1305, + "Left": 216, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText281", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1405, + "Left": 216, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText282", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1103, + "Left": 247, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText284", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1104, + "Left": 278, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText285", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1203, + "Left": 247, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText286", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1204, + "Left": 278, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText287", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1303, + "Left": 247, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText288", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1304, + "Left": 278, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText289", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1403, + "Left": 247, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText290", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1404, + "Left": 278, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel114", + "flags": [], + "child_pos": null, + "properties": { + "Left": 309, + "Top": 71, + "Width": 31, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText295", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1106, + "Left": 339, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText296", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1107, + "Left": 370, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText297", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1206, + "Left": 339, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText298", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1207, + "Left": 370, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText299", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1306, + "Left": 339, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText300", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1307, + "Left": 370, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText301", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1406, + "Left": 339, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText302", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1407, + "Left": 370, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText303", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1110, + "Left": 401, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText304", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1210, + "Left": 401, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText305", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1310, + "Left": 401, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText306", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1410, + "Left": 401, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText307", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1108, + "Left": 432, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText308", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1109, + "Left": 463, + "Top": 71, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText309", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1208, + "Left": 432, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText310", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1209, + "Left": 463, + "Top": 90, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText311", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1308, + "Left": 432, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText312", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1309, + "Left": 463, + "Top": 109, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText313", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1408, + "Left": 432, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText314", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1409, + "Left": 463, + "Top": 128, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel112", + "flags": [], + "child_pos": null, + "properties": { + "Left": 494, + "Top": 71, + "Width": 31, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel113", + "flags": [], + "child_pos": null, + "properties": { + "Left": 524, + "Top": 71, + "Width": 139, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 3, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel18", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 147, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 6개월이하", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel19", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 166, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 7-12 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel20", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 185, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "13-36 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel21", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 204, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "37개월이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 223, + "Width": 66, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Lines.Strings": [ + " 50억 ~ ", + " 300억 미만", + " ", + " (~1억) " + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel22", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 223, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 6개월이하", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel23", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 242, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 7-12 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel24", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 261, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "13-36 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel25", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 280, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "37개월이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo4", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 299, + "Width": 66, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Lines.Strings": [ + " 300억 ~ ", + "1000억 미만", + " ", + " (~5억) " + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel26", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 299, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 6개월이하", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel27", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 318, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 7-12 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel28", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 337, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "13-36 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel29", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 356, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "37개월이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo6", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 375, + "Width": 66, + "Height": 77, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 22, + "Lines.Strings": [ + "1000억 이상", + " ", + " (5억~) " + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel30", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 375, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 6개월이하", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel31", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 394, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": " 7-12 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel32", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 413, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "13-36 개월", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel33", + "flags": [], + "child_pos": null, + "properties": { + "Left": 89, + "Top": 432, + "Width": 66, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "37개월이상", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2101, + "Left": 154, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText2", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2102, + "Left": 185, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText9", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2201, + "Left": 154, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText10", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2202, + "Left": 185, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText17", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2301, + "Left": 154, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText18", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2302, + "Left": 185, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText25", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2401, + "Left": 154, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText26", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2402, + "Left": 185, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText36", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3101, + "Left": 154, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText37", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3102, + "Left": 185, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText44", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3201, + "Left": 154, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText45", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3202, + "Left": 185, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText52", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3301, + "Left": 154, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText53", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3302, + "Left": 185, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText60", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3401, + "Left": 154, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText61", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3402, + "Left": 185, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText71", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3601, + "Left": 154, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText72", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3602, + "Left": 185, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText79", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3701, + "Left": 154, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText80", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3702, + "Left": 185, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText87", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3801, + "Left": 154, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText88", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3802, + "Left": 185, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText95", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3901, + "Left": 154, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText96", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3902, + "Left": 185, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText106", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4101, + "Left": 154, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText107", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4102, + "Left": 185, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText114", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4201, + "Left": 154, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText115", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4202, + "Left": 185, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText122", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4301, + "Left": 154, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText123", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4302, + "Left": 185, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText130", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4401, + "Left": 154, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText131", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4402, + "Left": 185, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText203", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2105, + "Left": 216, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText204", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2205, + "Left": 216, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText205", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2305, + "Left": 216, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText206", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2405, + "Left": 216, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText207", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3105, + "Left": 216, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText208", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3205, + "Left": 216, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText209", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3305, + "Left": 216, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText210", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3405, + "Left": 216, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText211", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3605, + "Left": 216, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText212", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3705, + "Left": 216, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText213", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3805, + "Left": 216, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText214", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3905, + "Left": 216, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText215", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4105, + "Left": 216, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText216", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4205, + "Left": 216, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText217", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4305, + "Left": 216, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText218", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4405, + "Left": 216, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText3", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2103, + "Left": 247, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText4", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2104, + "Left": 278, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText11", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2203, + "Left": 247, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText12", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2204, + "Left": 278, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText19", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2303, + "Left": 247, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText20", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2304, + "Left": 278, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText27", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2403, + "Left": 247, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText28", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2404, + "Left": 278, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText38", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3103, + "Left": 247, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText39", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3104, + "Left": 278, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText46", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3203, + "Left": 247, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText47", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3204, + "Left": 278, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText54", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3303, + "Left": 247, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText55", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3304, + "Left": 278, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText62", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3403, + "Left": 247, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText63", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3404, + "Left": 278, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText73", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3603, + "Left": 247, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText74", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3604, + "Left": 278, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText81", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3703, + "Left": 247, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText82", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3704, + "Left": 278, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText89", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3803, + "Left": 247, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText90", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3804, + "Left": 278, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText97", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3903, + "Left": 247, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText98", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3904, + "Left": 278, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText108", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4103, + "Left": 247, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText109", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4104, + "Left": 278, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText116", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4203, + "Left": 247, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText117", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4204, + "Left": 278, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText124", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4303, + "Left": 247, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText125", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4304, + "Left": 278, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText132", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4403, + "Left": 247, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText133", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4404, + "Left": 278, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText255", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 121, + "Left": 309, + "Top": 147, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText256", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 221, + "Left": 309, + "Top": 166, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText257", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 321, + "Left": 309, + "Top": 185, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText258", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 421, + "Left": 309, + "Top": 204, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText259", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 621, + "Left": 309, + "Top": 223, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText260", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 721, + "Left": 309, + "Top": 242, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText261", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 821, + "Left": 309, + "Top": 261, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText262", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 921, + "Left": 309, + "Top": 280, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText263", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1121, + "Left": 309, + "Top": 299, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText264", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1221, + "Left": 309, + "Top": 318, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText265", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1321, + "Left": 309, + "Top": 337, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText266", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1421, + "Left": 309, + "Top": 356, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText267", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1621, + "Left": 309, + "Top": 375, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText268", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1721, + "Left": 309, + "Top": 394, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText269", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1821, + "Left": 309, + "Top": 413, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText270", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1921, + "Left": 309, + "Top": 432, + "Width": 31, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText5", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2106, + "Left": 339, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText6", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2107, + "Left": 370, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText13", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2206, + "Left": 339, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText14", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2207, + "Left": 370, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText21", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2306, + "Left": 339, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText22", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2307, + "Left": 370, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText29", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2406, + "Left": 339, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText30", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2407, + "Left": 370, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText40", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3106, + "Left": 339, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText41", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3107, + "Left": 370, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText48", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3206, + "Left": 339, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText49", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3207, + "Left": 370, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText56", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3306, + "Left": 339, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText57", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3307, + "Left": 370, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText64", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3406, + "Left": 339, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText65", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3407, + "Left": 370, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText75", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3606, + "Left": 339, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText76", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3607, + "Left": 370, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText83", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3706, + "Left": 339, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText84", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3707, + "Left": 370, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText91", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3806, + "Left": 339, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText92", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3807, + "Left": 370, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText99", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3906, + "Left": 339, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText100", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3907, + "Left": 370, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText110", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4106, + "Left": 339, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText111", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4107, + "Left": 370, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText118", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4206, + "Left": 339, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText119", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4207, + "Left": 370, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText126", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4306, + "Left": 339, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText127", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4307, + "Left": 370, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText134", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4406, + "Left": 339, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText135", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4407, + "Left": 370, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText219", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2110, + "Left": 401, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText220", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2210, + "Left": 401, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText221", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2310, + "Left": 401, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText222", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2410, + "Left": 401, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText223", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3110, + "Left": 401, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText224", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3210, + "Left": 401, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText225", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3310, + "Left": 401, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText226", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3410, + "Left": 401, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText227", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3610, + "Left": 401, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText228", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3710, + "Left": 401, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText229", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3810, + "Left": 401, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText230", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3910, + "Left": 401, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText231", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4110, + "Left": 401, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText232", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4210, + "Left": 401, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText233", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4310, + "Left": 401, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText234", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4410, + "Left": 401, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText7", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2108, + "Left": 432, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText8", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2109, + "Left": 463, + "Top": 147, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText15", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2208, + "Left": 432, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText16", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2209, + "Left": 463, + "Top": 166, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText23", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2308, + "Left": 432, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText24", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2309, + "Left": 463, + "Top": 185, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText31", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2408, + "Left": 432, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText32", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2409, + "Left": 463, + "Top": 204, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText42", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3108, + "Left": 432, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText43", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3109, + "Left": 463, + "Top": 223, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText50", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3208, + "Left": 432, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText51", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3209, + "Left": 463, + "Top": 242, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText58", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3308, + "Left": 432, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText59", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3309, + "Left": 463, + "Top": 261, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText66", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3408, + "Left": 432, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText67", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3409, + "Left": 463, + "Top": 280, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText77", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3608, + "Left": 432, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText78", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3609, + "Left": 463, + "Top": 299, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText85", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3708, + "Left": 432, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText86", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3709, + "Left": 463, + "Top": 318, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText93", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3808, + "Left": 432, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText94", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3809, + "Left": 463, + "Top": 337, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText101", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3908, + "Left": 432, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText102", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3909, + "Left": 463, + "Top": 356, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText112", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4108, + "Left": 432, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText113", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4109, + "Left": 463, + "Top": 375, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText120", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4208, + "Left": 432, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText121", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4209, + "Left": 463, + "Top": 394, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText128", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4308, + "Left": 432, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText129", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4309, + "Left": 463, + "Top": 413, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText136", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4408, + "Left": 432, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText137", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4409, + "Left": 463, + "Top": 432, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText271", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 126, + "Left": 494, + "Top": 147, + "Width": 31, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 38, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText275", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 626, + "Left": 494, + "Top": 223, + "Width": 31, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 38, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText279", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1126, + "Left": 494, + "Top": 299, + "Width": 31, + "Height": 78, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 38, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText283", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1626, + "Left": 494, + "Top": 375, + "Width": 31, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 38, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 555, + "Top": 147, + "Width": 32, + "Height": 35, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Lines.Strings": [ + "~5억" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText33", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2111, + "Left": 524, + "Top": 147, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 37, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText34", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1115, + "Left": 555, + "Top": 147, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 43, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText68", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3111, + "Left": 524, + "Top": 223, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 37, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 555, + "Top": 223, + "Width": 32, + "Height": 35, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Lines.Strings": [ + " 5~ ", + "30억" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText69", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1615, + "Left": 555, + "Top": 223, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 43, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText103", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3611, + "Left": 524, + "Top": 299, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 37, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo5", + "flags": [], + "child_pos": null, + "properties": { + "Left": 555, + "Top": 299, + "Width": 32, + "Height": 35, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Lines.Strings": [ + " 30~", + "100억" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText104", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2615, + "Left": 555, + "Top": 299, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 43, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText138", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4111, + "Left": 524, + "Top": 375, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 37, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRMemo", + "name": "HRMemo7", + "flags": [], + "child_pos": null, + "properties": { + "Left": 555, + "Top": 375, + "Width": 32, + "Height": 35, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "WordWrap": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 15, + "Lines.Strings": [ + "100억~" + ], + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText139", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3115, + "Left": 555, + "Top": 375, + "Width": 32, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 43, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText272", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 131, + "Left": 586, + "Top": 147, + "Width": 32, + "Height": 305, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 150, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText35", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2116, + "Left": 616, + "Top": 147, + "Width": 47, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 38, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText70", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3116, + "Left": 616, + "Top": 223, + "Width": 47, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 38, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText105", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3616, + "Left": 616, + "Top": 299, + "Width": 47, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 38, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText140", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4116, + "Left": 616, + "Top": 375, + "Width": 47, + "Height": 77, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 38, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 % " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText291", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2211, + "Left": 525, + "Top": 196, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText292", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3211, + "Left": 525, + "Top": 272, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText293", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3711, + "Left": 525, + "Top": 348, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText294", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4211, + "Left": 525, + "Top": 424, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText315", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1215, + "Left": 555, + "Top": 202, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText316", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1715, + "Left": 555, + "Top": 278, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText317", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2715, + "Left": 555, + "Top": 354, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText318", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3215, + "Left": 555, + "Top": 430, + "Width": 32, + "Height": 20, + "Alignment": "taRightJustify", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Left": 2, + "BorderMargine.Top": 5, + "BorderMargine.Right": 2, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel17", + "flags": [], + "child_pos": null, + "properties": { + "Left": 566, + "Top": 596, + "Width": 96, + "Height": 26, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 8, + "Caption": "법정부담금 (%)", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel51", + "flags": [], + "child_pos": null, + "properties": { + "Left": 566, + "Top": 621, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "석면분담금", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText319", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5021, + "Left": 626, + "Top": 621, + "Width": 36, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.000" + }, + "children": [] + }, + { + "class": "THRLabel", + "name": "HRLabel115", + "flags": [], + "child_pos": null, + "properties": { + "Left": 566, + "Top": 640, + "Width": 61, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 4, + "ParentFont": false, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnBottom" + ], + "BorderStyle.Background.Color": "clBtnFace", + "BorderStyle.DesignPen.Color": "clSilver", + "BorderMargine.Top": 5, + "Caption": "임금채권부담금", + "LocateAtText": "hllNone" + }, + "children": [] + }, + { + "class": "THRDBText", + "name": "HRDBText320", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5026, + "Left": 626, + "Top": 640, + "Width": 36, + "Height": 20, + "Alignment": "taCenter", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "FontWidth": 5, + "ParentFont": false, + "Transparent": true, + "BorderStyle.Slash": [], + "BorderStyle.Lines": [ + "lnLeft", + "lnTop", + "lnRight", + "lnBottom" + ], + "BorderStyle.DesignPen.Color": "clSilver", + "BorderStyle.Transparent": true, + "BorderMargine.Top": 5, + "TextFunction": "htfNone", + "DisplayFormat": "0.00 " + }, + "children": [] + } + ] + } + ] + }, + { + "class": "THyperReport", + "name": "Hrp", + "flags": [], + "child_pos": null, + "properties": { + "PreviewOptions.Caption": "제잡비율", + "PreviewOptions.ShowModal": true, + "PreviewOptions.WindowState": "wsMaximized", + "PreviewOptions.ZoomMin": 50, + "PreviewOptions.ZoomMax": 150, + "PreviewOptions.ZoomStep": 10, + "PreviewOptions.MargineColor": "clWhite", + "PreviewOptions.VisibleButtons": [ + "btFirst", + "btPrev", + "btNext", + "btLast", + "btStart", + "btStop", + "btZoomIn", + "btZoomOut", + "btSave", + "btPrint" + ], + "ShowPrintDialog": false, + "EnableSaveReport": true, + "SaveAllProperties": true, + "SaveFileName": "원가계산기준", + "SpoolTitle": "원가계산기준", + "OnSaveDialog": "HrpSaveDialog", + "Left": 32, + "Top": 18 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_R", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_R.dbf", + "TableType": "ttSXNSX", + "Left": 80, + "Top": 16 + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.dfm b/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.dfm new file mode 100644 index 0000000000000000000000000000000000000000..acee3ea58d56650062ed2e7162566f916132e19e GIT binary patch literal 348069 zcmeFa3w%@Ol`pz2*_Lb`#>OPHA?a=&Q#*jM5yT{+ar_|Q0LH;4A#FOYzzVn#l55Ga zo$16RH7z}1CZrQyEf6}*i;SQSHmOMr*j%v9Z%7YmLwe`;YtL;v?Mw%YJ2{u+&s#M?{MTBQ{9YlJruM^Re16xal`cbjbh&c>QeHP5&dTd}j&U*q*;BrA$CtM4bhB_~wnbfC2> zso3lG*4a|lyNmpuhn(wOGvLxbf1R_&PSt086TDtC2poy+NWt-@!w+snPa8hkw4)LL)F z`Z|}(Q|tl))g@P~ce-8G_Q|U}#cr?9^+>&|uE{p_A#dF#ZQBk9$;E8&g>ZnpPg&)G zFD&skcx-T|b(`1*Txg}Y-sgI3qs!&CO{)O1HCAbR;8LqyJ|H-~6n#IXyr$9R_LajR zdDd^Vd@~gvpFQ|wCAqTP>2bM}$?rTe{1!6$7C!hjeDEzUv*EowpW=x1z@9*I2CLsiq=#y(_8M?{<{fqi39?_3qWK>aZMR zVH_j#OY)PxBCoqzv6XIeAzNk6f|D-o*n9Elq2SK;EPU6oIa|$ISuwYC<&t|BWv72BMjHNKj4ZkOGLY+AGaDcj@*GDcNoYYN_sFQ>v^SL4~> zOBm#0nYZ8&^|x(SFCICr_P^7j_P?=Bg;#K2hZ_8T3mi?Ygn3<5@ArE>sheQhSCzw+ z{nkq728)%l!S54L{#a5d8(8LZF1U$u!Bn`&`5q;J0%TVAcaEtFK8C8)TTastm{a2PJ5!%YP?V?Pr)VYq#@EyElLbF2{7i$N1SJuElQ+ur zNecPF{n~4@qQHM;^Je-7e#2X(xw%<6dGaJ27$E-WsswtGy{~1K&H$FipOIo|99{Mr7`Tk@V9d#m zD-8_=up`(0{RZ5T?<*K+C~!FJ-&br6z!biMhUNj^<=m}lue@Tb1&(ZRgh`9gY%&DxCY>T7OJOH0}FQkt}#lD6jy zDRw-5*#SJA)~pO{PiwULuH+9~$-nHQ*WU~ri`UP;ockB}emiUz!1w!rr_mytj^E- zcAq=l2{Wkkblb~4Suo$Gz4P)Bm^EDod$z+?OYd6vrz&`?1paR6y{ls$(KxT|WnvWO z6wr%IBOFQND;bV}{DAcd~4wj*` zfsa3KxC}gg`AYupu3o+R@yBVnU2x?}b3PtdCXsEB%RX}a>c{Z;%LM}iR~&F0z8o&l zFaTfggYTPkRcRf7?}Ir3(=s2X_$2&35bHkp$}2EQT5*YkNuKY3&o~@#@ibg0e9igr z9}dImuu$Y*f!l+HBE<^ZaC(EUnM|r&2YeySIk-4{p*E)yVK*|v%u_S^u7MdfO=AAo zCscxNLZy&vK2l%frxU4HKat7}6A8sOU2^C`RQZwrT{2br&UM7qvIBG=ECUSF&;VSO z@E*K?g>Z>+;Px$ayV-Y{Zl|;Dd^iD*r%xj1H{-_0ZeOO?Yh~Am=@9AqIAihn@7et{ zv+e(vZNn;wnwai+wJDOB3J3n`ksLMnk6ZeGx=pB2Qw3WY7*!MOpn8P}b}&Bc-8!v) zlb#=qf_*Z4J*qsdfzJb|)35ocu{VDC&HQxxF81y20k0G!U&`IYffuKi=Y{{@xbNgv|2p>MNoh66S)1>TW=k}?aOdJZXf#X zZ*|)Tf3zp!Hvc?a{)+MXj^;FSWBC2#Meh$xhGx7SU_^TR3cr7!P=8QVBNKemnR{4p zVFZDx@gaQDR!MEw$?L&0vb^eHm)Bk4r1J1TsBA*-bVhY5@$Y~`$>+08T2fs_y-Pk{Dm81$>fLVpH1uAqB7UL%0a zRX0nAAByAyn-Ov%afjK!dE|Dkf9fXVVeS;mG#)Vc$3m{lTxIg-&?iw@<9EAK(xt1B zJ-!Su2$jS@I+#6RE`cux4Ix~CQ0rZLVNv(XJx1RHSZTUX^qg7In~56X#nzVKftUJ^ zwV0)k@^Yg(556;s^T>Caou^EF z)CpcJ$s;pCmFEM>lvN%=7iv)0Qejf9t}0&ASmW1(LJA56IKfv>t$8o8G?+lJGztYN zk~~O?Q66wxYC;SMp~l1jn!7wE(As63^0*qHzvRyD(}4_X8Rsck=g@`8Hs|X%9c(jn zp2U7B19N2xK9X2YW3yB|{8&|GQ>}}xJn7V*$yc7gi*Dsfj*-(MyK^U29+xizB_?M% z)H$;|e|yTvc&HBZbGWw|&&!YxJn^A&_BW?q>%{}13@4u%_7Z5dR``qRbbPu= zxF1?*uG9iV77J?u+H@8m3+q%p>|7^@b$+I2O0%%et?wruYHz)CW+JRZjHHRMP6mc` zkShc?4k@gI5_mF%xHq^EvQX!B+sZdo75nSlQ~{(ohkXgmB)rqgR6y$`CADz9zvgKd ze$-~GTvxHNs<|=>Fn?C^v>*@@zHNjjl?tl&nVCp zQd}EcNr0j7y4?T~uu+6Vr8HUsmoQ5V)`!aUW!}1H*r%LzIjc!bVXAe8em7T)rbE2f zZ#;Wu5*uB+(+y${Lhh-B^?rnNz^(AWhJ8H%9-j0TJw@FFDcs~I!4JMc?0;<}ltDln z8U(|W>!_+E0`oTMfvvl&j6J7{Cw^Zsfnre9Me@3*%OLi`A~E8IwfnKa7p`!w1N;d2 zoxhNN*GIAtS+d6B0ZIBv1j>uo)g6pa0nIU`xkvNk9oW>V!}tP$17C zQ{W4OQUEvrJSzQd?U#1#24C@wKmj%lW{_zxmr-E12@k9#JP_RfQgGLnV9Tp&|3AE) z^@p8p*&{)OabkkR6|3{;9I)D{j>cHP@?fYKz$JC9`iEUFz<>3wvA$zKEtb`9B9d!r zNsX_zYWb?NrAyb8SJ5@XT0nygT#g+PrgmENcbdH3UFLkcDMmrVmjPT8bn7&ON>Y%T zeUp2g50`Sbm%tf8G$Yv0=}%6)W6mA9$)!Hx2u=n+@sl-;$v1})waFFrPr~sG2nV87 z2Meg6(G)?Wib77JFH;inSsoLKhAE7%DH=^8G%8xN)JP$|62v`)=u9hGQ&Ct}Rb*fz zE-K@bNKBPVb+4FJH8&ru9 zc|%As-@quG81cy{GL1-RV!79|p~A^<!1`nUrBHbNRBHZq(z4vWO(*=H%wy!B-KX z^d^(l^Iod)QGKT-0;5uW2SRHX+d4tp9Z_B#cTO!svA>d!0$Uk5HR6*~b=KiRom#vm z0-LO%rqLU(2KR$nJVHhhDm>%JBXr#>U$YvrNh%CX!f6qoOp;Q$+U0aFt*fb?Oth!M z>S}aeNLHlvC7wX?M`1)Q)==Bg=0)f;=f; zNl-xaHF@j(wj@7huuLHV$Q+)Vgr3Hd6Tb^g0&kngS4+|^Qc@7>PnGj&cK90lHqE}Y zu9m)iP#MmbW~RWG_P@0S5DUR$hr)fcBEH%BdBR{{J?w0#=zS^?sha}XUn^Xm4gQUm z$$CnYhrZac6(4%XPjnA$M{;A})Mjs}_CMtII{n0iaXXu+Wt6D`!EO&@2;GiW6W}y7 zavf1*aw*A6>%8@~zNw0h@&&wOfFIqun!L`3KD3M_o@zAFd^yCAh%98Y)%uFvE@z!~ zj5rf@$8KKcazb91FNc1(*yVOp{0>*QX6jE^fr(W5Gcx%Zltp!Ho6e8HM;KNoQ|tr2 zWc%*^;zN-5RZTcQ?48^aa*oN(+zj63n)Ob<7al1x(kSFaf;7@$(Qh)I!*2J}OydEB z8zmweoB~J5(9vrtQ{b??t$=?Yod8R!Yy49{-z=`;`X>69t2YLN*)jfH&}Q4$0Hu z^N_B^8(r(4g5boI;-|nGmg#EoP_jOvccRq@ZJtu~))1;9-W5|8khX(TmakXIa2d>h zC^>Pk2R~?B`@|3oQ-iuZc>G2;$g-c=IL2l}X%V44%BcX`B1s{zdjv*lDj6l>-9axQ z39qnWV%*Q&JpU}XKb^-sGBDLJ51eYBbk2Y@(<}i{o=x^sB3D)x)o%bZmWY*YOsv#U{(pdpm2HBsOsuFt)$X(DeSzL{9VI6)D=zq}jTdIM z)2zAlv#R2McTxA&4-dY}GwFB^&)N%@PW|T8%RM=xE?^P`f_Ju=YPGIhD8mE~T!LRu!5r{D4Icoow4z)kfK0=Q_=8jFh zV>eeG|6)dfjV9y2TC50p*=q2O=P=J^O9#+lSX?lkgTIi~xuJvqRD@^$x_I{a*(%F1 z;?KSqc_J^{ND;Df{$IN|Ktlb`&Mgmwn=H{2fqRZda0)D(FL3~P0wRcjN;U_64%jcK z>H@D}jlGZz3BR=oa1HW5M(Yd99$r(X4_JJe!+?J% zSYQfw1Z4h=po6-I5(3a)JGKT7v;a9SzTJMYeRKco0pN$lSs)Q|P*&^@%!ao>p4nM& z6vF(oX|z9kUS3Wfqtsl%P4r^oGTCaQEJC8^7E?(Pg$qYEiwuk9LKz=vUC7DwO+hA2 zZz|KsBzS?nnay_ukL(3yN)0O&g?J!uhWX?}R2_{^E-Q@IJ^abdWCT@{;2HBkMqKP@ zz4YD9DoRUa2~eK?v-1U*EQAEw+=#e1a59V&0h0WiikvKe?NQ=s5F>ASkUKQBfk#we zaNlkZR|ug9JnS=fGYBJ$G!S+-$D*XnY+>=8w7BDqtd(Vgg5a2jZ7DG}}yPb8^lRMrWK+N3t6p549UUi_UJi2Rx3uTG9L# zuGj0&ZqS9F?$LRm4{?u#nFo43_ekVn42C2g2lusK+W7;B&F+T(5RhD~GG8gCq%!y7 zY!w}`5UgUk%EwyfQU_#k=TUG!W=qx;al?(R%gW%Xx<^jJw_f1nF!M7C2TdM$sxIx= z-Tz_>B#t4PS|djmdg*_<4V*RH1C5^hcUZ(iesnWW&G=G6=WG6tNR)U&Fb3Gwm-g(Y z9S7Rlq23>K9e@xuxZdaWdwzTscIW#Vd{~11|}Cw|xaC_cX(CxOl_B6<;2?AZb3ikm zT#!9<{VG?W-dZx*Mb1I;H#U1dprAovNw3(Ie<&4 zaIw3=^@8sKE)?9;aUVKj`U4&OE}-`%)=b=c0G(0bw|hN6k4$K2*QJIQ9d}QWl(anN z<)n=LMmWv>c3|u*p_`#@KUdj&TnRwa*Iz8^o(qZQb4a2&?pxHI4c!4IH2=8L{Fy^% z%8GUFsuF_c6Hv9kC%k33jU_Ym2++u6f#gPSP8Nk--zTyR)!86Gu@sxOD?55`&L9nf z!?l!_iyrfew4{>Uibq9QnqfBo6e&<79O3Fh2o&vq4TbZMUJmYjNedTcEyy+?&oCIG zAvPl-k)tO>tk3{G_+0XuFbso45bo<06p1sp31fZ)_mUh2US`iS6)V?TOPRW0{gwdt zYOMbqR2g(HlVk;zCM#f)0!vtcD2f^}QNfXuw-7l9W>Mb!IgSMjc@R$3XFf&GNKjB= zrL)fK_2?3wqR0u?bCQu*kl;#nD@v?yaAIjlXpLCU7>Q+)*%2dI9zf-bLFM%n;-LQ_ zprl8LRMMoQzGNMDS#Kd|JnJ&9jn;8@+z`-sG2iLv;qlT1!TFm(i|G=&a7N;Ec_Oaq z0GkVvf7YYE%tAwg^!x0HOSAHtiV6Le5JmvE6 zy359rnbNFCgQqO!Pq~yk@h=#j^X}{8Ijwih5n+lXQV+oTOK6WJJ?<23PzAFupbz`? z8*)(ds>Gmr4bORf4=U7=Ar)VB47{8(a0j)<#6lZIEyp_Ie(z%`x&KeLJX z73jStXR;wMAlskwP24NHI4>LH1EsM1=N|4le>{NgDenU-bLOejZRv+TIa6|C4s3ne z88~+Oqu)aH6x`a@{pPz{Kg2V!;7*`x!FvaLa2t;W;S)bs$`2j=;OGaxJB9nOxQ?p( zx2W5G_;c_9ehPh0@iV8}W_36Ap6;es=sKHnc;=~@r_Oau_)2apUkOuC?PP-HEn?}W zHxpI2v!Muvfb&4=E;mRG^-yVwTEC-Cy^0#kPD^$UNZ3h0tYO3O7cLkd+u1ySPD z?4xyT@>qzohBPaAj5$00BA_diX^4C&h_L%r{HH3|&?%v>5vq7)ckbxKvT7(|zIkEa zS*+}pcx1tQD7^lBLX3@IvD$^1PNQ+90*+CIq6z?MJfH?&-={7Xneke+ z5!qn@W~>=_k*o3eH+s!7X3Io2H^WD>^@4n5!~U?|`xV5f0&>*-JmI%R~)dh2$BVSNYJ zzrLJ|9q7Cs+Z6a)1w~}5DmFRYZmI!9&)R00OoRJTcq(PI{LMy?mD$pPyT2W28Ph7O z+zYNtQcpvazzE|Rk!QH+`{-#i;_gaXFrL;H5sgw9&P&iCrr90qtzI*eo3ci}TzAX5 zB`Vg)%LRD%54Q&2*m^y)28ExNuUYwU=?blh4&x0$i1_4(57~<$?wTouB6^XlAL(o!waAH$9h@!o>c^-vr%e<|$R#+I#dAt#N864Iyiu zaoM?PoVg0u9`vX~OdDe9dua{=6+}p#{nXr>btNxo9HqEb&HN~^! zd=#LB7Ka<2UXSM9>KiJ;?PD}p_?U;#!uL#Al zBsJDtg&p@5tY}Ti%Bl(xRb^625F|dO6lW4$-MqUZF^Q=Bkq5a{aSOX)zbtj7Kofgl`*X~BI_lA)$S7m z>3xlFQy1pTJz2e?3x{m|+W7|Q6%$_b)vAYEB6ogBv_m@|5<5-${WF<|m;V00dXpYZ zfnL4qYkc6hv0z`5VKgw2+ia|^s&IOW41{T>Cw-n*D1^VTO`7) z{pfh$lg`Ax5hhILH9?rEz%&dHh0qzfv(~>*KhS(mo3D!L6vfi4Ex=PEKWDO-9Ek-* zY07XG72az}ekOp($j|gJ9d9l>tuG4S79@-tI+9Kjj~QE!qSzlLVxOVJkFO3WGgj32 z{Htm)w3I`-OVSo*(4=uC^t^0ZTIX_k(v9c%GEmRrE&h<5yUxz&GjC=YpHu}zSiefgN5Rj3_vz(5n;L)!M9t|1J zsn_{%8pjETGE-l%J9IeAP8x*jTF*(Q&C>!lWIfrbUr&C)l`}J~)gPDvVspfmv*gI) zL{dRUQ){K9VdZPgNb|oqY0Q?|kI&c-j{<2@B9mr}mRhQY@FFJiWX++9>sx$5$rqEA zhJz*pw_>KOzxM~wsC3_1ik2HuZ6qTyi6l+!^50kZ@7y(@SM3vHm+8i4uB)qfeIJ=b zOdt6rCy{YtO$QQTQH-@0PPZv-_QMD&L{iP_p4G|Wg(FI^>5&OGM$;{gXeo@Rpk|{? zvOiHZMQ~M&YRa_84>}5J3T?f~3Xu~T!dq`1qmRVJt95$>EhR}TYr_mU4UQ*KV$*|U z_zBD(+Rk?@Ix-GNQ^JK+Ucs<8uiE|F^Tt&;8O~dfhk)vA=!V+(HddNZK0D%vxN~>c zZ%%!F=!uT)z0|E0x;m%mKFr-;kuEXF+RZg4%3AXBWMD16JVj(J`vhybU1jxdw;g(g z3w4`l+QVfnSp&E}Sj(suR=A%wy6kGHGX4jy`WP24T;ChtZtQ)nH}~+%JujUZ1r^8^ zS&B=`)o6NqsS3oQ&+=mR1|`vd@%7!P9b!QvT;FpKpAIN(!85qVqnReJ^0ZLa2)bxy zL?+r8>5bUn9Xj08;&&?zi+mTQn^@#EpQn&fJTiba?e$>-%@>g#`AH3nJj% zzU0bsr^n?^t@Qvn>Ra{Tf1=5&nIt_xI3hYlrf*qlk?U!fdsRK+b&}UTT?PidF-b>z zqAzHW9vyu19##X1sN5FbUOHKPi)f0LkpnDe$YX)E48d1t&Y&CllTLqtLb4Xa-aETb z2f8|s2NL@bpe4JRXG=#H_abDgu@|A`!&FO#*Y)fkmW)BkaB~DKkZAoyfIr4xMpP@H zkuSDx5AOJhI%o&9VLt!h9a9V~QswkNf>NhQ)=CPCvVKBll7*8Z&fp!oIg-y>i&5s7 z&6uNF%n<>1%P0()BifAl=ex97A@jXFH};*K7QpI;UzO$vBy5DtplPaYilUAGXD;#CB3kqHzqWF_c@p_m^4pk z50-Zh?tK%GgI~|W%%?W!!Uz?Nj$isQ&3_`Nt8)REryZkZq4~A4)p-$)egh$TQ2ppG zb<7E;Xxb9h1xj?8A}ktS873P3PlVgdQhrpD3PdvxsZk*(0hOG1`3Oz_Ir#23I-d9t zkI}O*6-b5H*K0>G9mwB%uxIUsAn>DnB{^*fc@EF~p8#M6xEneDBYNQZiQN2tW`Bqda3R1;GRb54C)S1l?Py76v{$)Oo6S^xvs+Rt+i{bFCe5y&_Dtp zjk1baywSD(sUmOVJ6KRJTd=?Ge) zH$}G3B-uKe!5xVJF%&F$f6gKoo?UI0;?+jeO4$kXTMaiovJq+D{XCzn@%oRNYveKaX zW^n&@>@%`$Gi3QhRZ%T^=@x6&Uj$uzp`3vy3gx|FLK4hg=zrnWoZ$DiQH>m{3y>G& zW}6XZVYY#M5e?i?r-E4ytHCh2NA3`9na}v+O%q~Z+a1XCAunh@6x{pj;w(lSAj@3Q zXa-pzZ(&X@zDR=l+^~zB;eakloYuW7T~Va93t){^ITOcy&rnLD%2kzBJjsIha^}?^ zVXzegt#CPhfEFRg4?v}JC~l6m&9xfm=AQ~v@Eq3vH+3b>?^E;U z<>jjMX0sbWdo66qPP%TDKYOh%!^XN+o$E+QR` zIx93&Hfi!0dVx-wudzvErkT>}4E;arxU^>n`l?B+5cQ3J+>%vZksWLKDXzu{EbetT{B8j7|oB@0}3tAHf*VAZh6~kuR8Z_SY49mx zAQA`8{^7s9ITAsprHQ`WgDPf$BE{)p2%i{qW$sszQ?!vjFh%n^SAw?f4~v zRt}u|{15hbTRdZ%5&P1L&9izY)UWTgiH@fn6yY9 zO1t05D#$JIIM=yd)pni>lAN)!W__L4=Y7(zmabf)&d<$ta2_PUh1eNm@HE&=373y! zKvH2-VoZ)rWHa}P4|5M2(>yS(6(wB;wt=E~X(8zx$qBj133-YkMT5ecsatxZ)3d=9 zng~W}Jb)=AOWyxM`MsD8(_B7GtSrbact5N;GKJwz>)Q;K60;0@aZVt9eB&<=(mR4u zIw>-Hk7}fz1)}X7ZX<<Ib)=3mz%fk!tse>|;Wg2541SLs4^kpKFIV4-F zR4G9EnUsfQ23ZVl^XGyGUeXGyOR$BzWDEn@$je!fCD2>hkyvO5JY)_tjzUS1RS_K% z>2X^ciL95XJmfTriHl;sUA~@;A9BmUKNa5fr5;~BmqC<&?q;U18UK8X%Ali%`hV6L z+|>$FWR9Vg;1KvJBKM#uir#Ay^N>WrL3$!_4&qdbQw~aJ5~$R(o>U6av(Q%~u#h`+ z8RIJw7Rr@n69?rJfGD&X-pX+QvV^*(nP|FL%M5hlT*L_#Z(JnD&Iy7PC)sKdJO2We z(qCa(tHYqReg#-)R(D6wZ=fPK)^3{>P`gn(Jx@UUG)+JSJvGp^?ITPM%~CcU`usi2 zm7OD!v9rbbsLhUnqzNnh!`sl&xV$-FgC-d!*#on_R(=2fbI|%=sC|Ii0@7Hv4?duJ zXQt6U$e^B?+oGiO=Y0!)J@eFOkT!C@M+rc88K|+2$saLzEn-zDW%>@!VKIowE!iZa z=}V&tKV-}RCM%EGZFF{o8#8stV`lGZ?dtedUN_XZhmpH($1Q3fsP*5iQfbZvI(01b zWA`wG&NU*>4CCh3OEqDOv$=)|v?C|gZjdpJy6oy0j47<)fU?uiMK-4Qg^{0kL^-B> z6??7s&JN6lxIsp55FflINk?JyAW3C4G>BbVS5r;V!Qf=o5)Md2*!pkWo1l4l7Kb z=M-;r*7;n1TiUY1vZYJbtf(qpR=B!iNoDFoUOY;2I>HAqq6cAvW_OJjd_OW#@O`4- z`+5*m*LlJB>64e%)vksBmaAsNM!)6GDKLp2s%dmp7kleHev2{%4$IpJ)*&@bM82!8 znaW$CvN>yb9(a4$gjZIQfZ9U*d(B`%Pr_0_aKmB!U;4yX;i2alu!FiQxC?%`7U|#; zQirb6c~3RBh46jRp_y>PgL%v2I6PaLr4{N7Y105sHDw+-fTMZ7Fqur3GktxsPNs>+ zOV2yZY_-PZ@`}+paP8zn2%(o;?#W%iY>C@w5USO<|OQ@LsMlaTeIn;W`K8t%ycCV{i{urcDmQ+<% zN#S107Z}aAn-Jm&I&BF$S|lxHQL5l}%d5d-yN7`g9d(j~7xdIHDp>`2OB_L6K*Ow| znWe1o$7ZAkE8Q{``X&at4)$#Cg}#b`)1Bx^#XgDHJuwZA{rSjg=pa3-o1fozthMLW zQ&`fgvMuw3|NNn2=)pbRmU0-&^yOlKjDGNjmrE+M^H3ee$q#w!HaY#tiFeGo!&x z8D&JZ1IjcUXrxmgrja!O=Na-9Of?F4V<1vK)#6kBGeI;71QAIWG{~XC2y*B#B8NsL zc`|w~j!`NPCW06(bd17j5!Z|&RxHTh(5+Z=BXElOibeB#uJaX3FIz-X3zIFJDDlZM zW)4qKF=ahx4da?o_jf82{!U(yCVJsI;qQc6wZ5qegAnV&-^uHISiv@9iKlu+jmPE7 zS>~;KrUD&@He0Q)*zI!GX~!OQ)%o?uZeHecR>Q@^ww0WzKVb#d&ZS;xzT{={GYC33 zXN9xLTkp3e`LQlhIzI*Y zL_OwV{OL17P7HOe-()<8-R`HE#sg)}O|Imm!nzu#JLJOTsU|5I(r0*^@HB16C`~~b zzV7{a!5VRPGDx26xp}jBbTPK_&Dq(6jPrtVwn0dZlf@wNPBF=r&*6?czet& z(#{}Vr*PBWgDEvpBJa~l0t6i`h*}ZoJs-)bSjBPqV`WtjyS#3FWVnh(`#I9|`wB(W zVC^X75N~{irB&^H-CbGmd+i0p*5@8p&Y}g3O(ND_K#LdcSoxe;?bJ@j@~GOgp>=!u zBT~i{imaYLa}MzO2|ce}z-vu8D_g|(tNMc5Sd{fQr_etBOXu#N;}tRj_$jTtE1toN zr-r6?M8CdqNvbOp6h*n4AxB~fC_g%r89*Q7I0Z`mu1z#Nk}{$*BSpt$_P#(D@|7_g z1sf@#=R@PcKo{~Lwr$JA76Ry$Ca=6)NHkC(J-YvmZMq{+B*pYd-W;g5Vs<1iH_Q>Z zlIan0C9@;+N+w6xmGnnKCVNI)J-s2D=nHzeMH&}}m2GRvOQ2|&v`$(7q?2uy#W$#E zvrdRM%>G;MYJzHDKHt#t=tfJlC4*ez%OQ#@qfo;XJ3LNP>^kT4bRNr~`vP5|LLlPV zLzpyL#_yyCAepS&(ehTj9wB$E9}vB`(xd0H;rWndoYL?RvWX&+9$L73a(EbJ8j=Qz zG#0L?s$9}o;|H%Y=PlcG=@{RsweFn8<<;`=n${fV+u)j3F))IrX=SnZ(DM#*7{^xc z3elO8q95`JoeBHY%F5Ab36=?+$*6&aipvR|N!WU(I+G-)!fH)SPI0a28WvN@6JlyY z|8dv5sAXV_WHfLrAHrG|n!#E=4S}^-?uZ@LlBh?uEMj%cXAu8cDpLe@n1DG}flkoh z`f`pMY~L3Xqy;kQ4ZxS!YXFFhj) zF0U+bsQ#rB-$8;X^c&1pH0P=xO8nqwv^%Tqo6#pbU^)1x=giSl)P)+N$|p>$k=NcD zX_xpdobwYKETij_!op~gEebi)IXIzgw3!obm?-QdHSiH-yzymUIe=E9l6 zPr|xfY|Xrl;v$)3vwVri=Gc;%OE^wd#4<-D+v$%~1v!hu8ZoFNOE`W^Rqg{mM5tm0 zbZWdC-gB;1m3gq02f##C3GcrNzg}pC#4Mq%ngmgL&5~lPsIBpMTy-ho-8VMy-k{qi zg}7}>ybT^(rjAnJx52%#TSt}+b_lhQ_?a!@DDc*FlgPEHw@7wAZ>324$y9r>IQd90 zfa;fEB#dD(ReAY+C4i%V(9fPT?PpH6sY3352SR0yy{EhR$cRF?=xT)80T;Tv@UT?t zEqa+B9?}s-+$%bjKpSH0F1N&k{eJB@RQN6#_P~(Y_}GOT8##lScrclpju1Z6RBhBe zn3>Vj<67}xTF1(R2`rRSiLD7Yx?KL`O88qKGE83O zS?R6!xgG<`yKU3xBWZhNi`7w8K^R?^h|$EmU2BOLuZ>(HM&1HSTw0o%M+II9W3n#D zfx>S`F%6@2Gj@wMn4m-5jGotqX`<>FOmDO2v7|dn01oywOTeJOXJ{J<50B4(Y@ig4C-h1yJ_)KoqvVaS6{xWY$;|tP?2d2_GuoLwCHbr zPXRC3H@#(=1)GtHDNys{RiY?3yjEa7+ILV4xp zDF@-jc5weo!ChM*O;GLshqtr-u(NF#xq@P$k6w(#$N`3hODfn#1zypb3do}@;^Q!p zfB~~vx4P#u{f5RQc;bZ_o2-GgO;!8fcr~~m*kpt>8|0L6XOi+YtD&q*g@H*pE#gz4 znPusK{UOVg8Wxxt^(>vFi7cIoEFF{-w_|EB__^(np7B^swSOa&XOQbhDalLgy!Ew^ zn`5K(lqRxtCbD$uSXxhLwiP>2>~g#HX;{-}A`nSv(jQ4>&L^k}W=r;wTrYct%UxOL z^!O~wq?OJ_C@n;x@~Pm&EU9xg;N@+!Ts%7J`L4;p!&(`lp=aqxaR5*_i-p389wKPx zN(8m_IqDRQ31uBXP z_PRlq&2-}!oArjVh~yR8W@vR4i?0kT48TWeDj6kWkfLKl9wx^9+%o-V!TssNwLKMR zoCno_F~p@p6a{mLS_7X4W|O_ykmE`65TS5;spm;=(Nos~%{Aw-byO(ZP*%TbNp+2% z=KrlMs^0*1ED|R6=&a9dW1{T*|xO57#yn1p*yu57 zx|fElz^H_nT^9VzhNjcA`(Jo98x78wUZYM7Gc2Z&5^|AJ%Pnl7-fTh%>ehn?C)B|B ztqR4P)M1y<8-iO8LP$k`-`3?@50NE|kFV>f%o=)HJ4_xQ8q}dz6B>=H7h79&9j2ht zWtO4q6!b0AURr;b|LolIz+iFCQRfPSD_rO0ov#byFJbJk)r20ElpZg<3iLQ~93OW0 zoPe`vd>>zqg;*CRu;*WE^8DrG`SH2$%~mh{aBJ|5tx%Dw|MkEy$S}Uoevd2@A7_uQ zb|6N8bI_v>-h{le)kcmCP=P|@N(u)>G*}3##rh{s zif@`sh%&(yAx|V8GI(S!qK^lafpj??-zS$BM(dZkC@431@(S_fi+~Bp@QZ<`v{>BV z)&dn)`=4(Q?m86Z(~qwtbkK#-`Y5q2#mHO2U|E9ucB^?g^ZQ#{$9B*J?9s5UJ7hs_ z*~Eldt;yhhQw-kxY}So*q=ngdjU-m(tOSSGnw7eEob@=L#*HTQz=A%MY43q`?fdN@ zr%>}fuonSq9a~{_3lZ@`*@;fk8Cwp~fl?@NrviFYL;1-GY*R)83^ta4m*5bTL?t>B zF*F3X4q^&)$ELe;3r6-Uj}LH1rzSg?hHx_`Xj<>GF!^G(EPjK}r}?=spZ4qqWf|lP zY6xT|f$H?rZKyIz8Udx%2x5`z}QZcbgj1Zq| zhgU+T6OlMZ+z7X>;+{rnq`-Fhnw1ZiuFxP@c9Nl_8DYCc@L&j_(->Jvmzy*`@$)dF?KgOyQ7SP$__9V&E|VdoWQM5NHgN@#*{MjO3yEcfKGmU7RDnei=@ z<2+D~gIjllk3_xL4*2qRREgP(*qh)hL*E(xL3bn3nWJzejoQp@dU;5rrd0jy~kai(xdw4r8R(W>REOSv}6G8lR7PUpupymOJje*_wwO`sPS&@rX z228}NMGVU~TV>d1`Vp|Y=aQ?a!JS6|>nHnY5zY9(ILQ>&E?(ztO6Rx@GkmY+V?liH z4s=cTZ$ku>W>kY*;jZY}6wWzY58a3?WyhKl(yXE3on?ifz^ySDje;m~J#85J@kxq) z{NH@uOiSPyyc!z%E}S8&M&5EKANc9UOy8kYVzL5rXmyw-S60-zT-8POe!tfe|X_MSU;?0k>Ex4R26X9IV3QZ-8?Z%uE zr{9_S48Z=LhM%I9_#0nO!%r6csPHolei9Tcz>U)j8w{(;}{ zR%vc-R!*Kg2?qwqe`R0*-@y<3!(H&pp}htMF5^Z)Q#09jB|pCacHDn;&yTOdj(lH( zuc5%wHjB*dslFn=r)pV^$4?qODoR-PVPQwYKGye`)*Qk=*btHP zPZksup3#@BP(I32j-Hv|q8oyXcsJ0<%rixjJ$WovOS$L2hvOcU284SiB+rc|d1Bxh zW@S*G`FFl%8dt1Yz%x(0ukG@Z)z=neit!%m%BE`F>q^iMpUJf4E0h!Ggj~rB=U6?yZU6}hU zw!_$YbPl$~c-8@(rzXLfxj8HfpE6vu`tU0?ZDVs zLOnyZY_78TxDrqTYk#q*doI-2nnP-A;l4%C%3(tJk2B?8iW*d`cvPU@S=3+$ca@uE zBz+x)CV3%_YX55}$A0v3aOX>s!+b%uA)G)zpgFXNFE7-`F%Aj*k|EE6OAk*&~aCZlQ#!b`5}j0q^?7jGoXy-<>lmo z<1+wn;i!t~>yDhfg~%b0)s{DZj$^?>?k!eLS%!t1hL9%%3l%t`JRwR%2sy;rtVybb$!& z>Z(G|!}T7)FNM^jdWCxwZsq(EQrkXyM>!-FSGt_;;Rpep`!;oxd!4VM-t&~pll+jk zZj;lWY%HEH&5AU5%3}VMOZoVJ$MBqYUmwqDyNCT&K^4sY->HE% ziJSa4)S%{7i9t=JgDRf$`W{p$C`l9o9Rn}t4BSV@R7})r!N6QU$iUip%Au6Q^Pu`^ z4*bj}#z>&o7#q1JX0ll38PI+a3$M`R{d=Pd0?&uE9P}r&yb9X##kLj|{Rq22<=J|@ z2Z5J7Qd+JBfmt4#AWEF6%es(?>=mC+dB(ckp!D3q=f;YX4@3_TLqQAt131* z-EQjE8PYTesc<*AR?90N$jWW_(2|%BlUA&A!}3*Lzll%%cj(l=o$J2uiJW_t1|1i{ zykB-Eu}?V^I9753owr**>^n=hutaZb*WUM!2TD#n0rkOW^)>dW%EF$t-4FI+U*hhr zKOdQvtCG^m^GJtERk^bp%PFVl(!!%NPtEA#J&L#X@*c(Z!g{~AqUITwoy(t0Yo=7^__WY*JdxB^_fEL6SIQ z6SJ;8T&ZV1#Cpyxqu#dX)-i9}lOs2SNifk`z0hkohjjEvP`FG^^1Gqh(-cx%JBRgN z$V>s*+W*!T5U#;vhbEEs9<`(ZaY_neZAkMOi=y?RIh_#uSEoSNkQFY^2LDFOWRu&V z(j3~U>Tbi1w^7+t>$2G!s{IeSy-q*z=D3|r)WXeF;Sp{R@p{l5p^bEQPc+i;H@RIo zwDSx0Y@wYW`094cL?fLWzL5?#ynxP)PEVOv-$>;9#7$tC!=iekeIsjkfd%;!1L=K@ zZ!dVSS??4ja&wAAJID^=)k*sOGnt2%{{FvulO9YduXC-h z@qyK1!PYAy&}y9$ro!ndG7#o_lrWDn!p!4llSG)-u0StuEi{6J8KgguM40Dx6u;p9 z_p7g1WWr$Qlo24zB-ZOQ3|+p(=<*d4y8JG15W3FLmP;c@7fWP@v1$yH`s<(8el_*i zdb*4#!w^TYekMIY4eeiWZ*h(ZWi&%{M5j_}WXeb!V@jD3;uvg!v>M8{)-Of#oOIRM z#k%Uy$z*+()5eTzKKY>g?B?V4!y_za?2&0RMqEQ@)3OGqN6$2`Q!nl9OmnsTl?l_V z{pfh$lg`Ax5hlzRt_i|S1*TyU3G`jdJ+A(Rx_17+ndYm4Hc_lVS|g1~k)JbJh>gU8 zqBLbV!jpGBlAj5D)bcaENXMHC3G0i(T?Ht8zuQqFbpS~bj~QFHpx7TJb&1Eh&h09z zcf0M-Fwo~;McTII5WO++pe}pt&8I5ZollucR01DZI(0Rk4Zeho$fp}R$>_VZDT>*ML2W&G#LDT22`>Da z;KGmrn|z%Qm~kYK{+Sp!(IWq$^fxgQhw;@2l#he_nYr-{cuDzwQ1J`z1XxPHD*kR z?_?V2DLor0{ciV3}b8IE3hG1YZ8Tc{k-95s5H2oT)Q3b6eVnU;x;b?@dTs0xJsM~&c z4j`>R57HAER!Uc-bk*4Mc`Y379Z_>BGVD3Hb$nKYy7gy1#~ zvJCW6msp1PJU&JYZO$^*?GbEJt1xkf8ATr)BBI1*^~$k#uz*SCv28LmuHUrITSd2G z_K%L5U5rMSJS(v$y4wBQ^G1sd`=&3*L;PAcbfIp18?)S%&yM&nsDM@Z&8g21J<+kf zm-^~MEj0}MX&>f3{YaM>#E#Q*mOSP3oF%4QMAk~4V6D+`xgcxFQtkR+EzLzhy~@1Q zg{%1`!afKjXcxEW_3!fYlas9nNxG)NO_sx-IdXn%fCSCsf3jdwE2K3>G#Ms?) ziee-WuZts-hxt&Za@VrahmsED!HOGeFPv^u+U$qXJo%(^-`QE+vpQ1_kFb$4GcvKp z$d{5vmq7Frtf?y0`}zJvz0HD~V)Qo8i2R@<=xx?`fGUF(?x&5hx@W2H@`qgGF|xp9 zV1dTB8+%{t%{}~b&r4@ULGww9Ob=<`M>EPxg$M@@o6M4X_$)C7V8(Qod@(YyMpaGJ z*lC(POI8}DNf%`)F-^26r&zwj!veIR%uSJ>)G$q0c1PM*h9fhRE6bf8mpirA0|?@8 z)k7eTb`Q=Z9q~j&rc)#rmZcWCo_4uc)dRB1mb~uiGOx#F1YT)Rbeo2I)z!1RmtptG zVr8*Xv&@<-zGVuB2xsKLY*cms@o>K?=&C6w(tdu)uGwv`+WX&iHnI+ns`RBW|c_DMYJUjNCofg2-V_%hK ziK>LoqF=*tEal=ngYyeNr79&Svfw@bi=LHYP8gL9Sp$?lFPC-mq~t1K^776X?6o!IZ(c9-Tibq#^|Oz6rSoU(dpnA!z>G2E|2=Lq{L&bagIZ@wH=E zC`3D$tdykJ)1 z=WRv~>r^WR+SrIpE+;)(wCbgzK}(qlQzaw%S<6wyx@@Dtmrk>U zFd_9AN#s(vmfILfJSHT03`pWYlC%f+zA8}ys{2AMquB;h%@s9qvw;rk!kmSmwMU6@}~wp{%AUg&qHLeVg(A{o>a!*)*ntq1QD#mPiLGEf4b zG#UQZYLnpyXq_?q02DKW`ej(YOe^?PbUS6(BZ#H|PaM=x9 zxNI6_>&L;q569KB=*kho)ysgZWj2nEcg=Zlg2!$w9@AT^_b{K%40Ih?<}*#?O%qMz zTfkEw+h`qzwxhx41Jr*JJh1)Zk>I2GUBIy|s!V+FVG_FRra7m0Bx^C=sHHhq3 zg9x(=*`<-T zd^&{NJJ!?0AUs$Zgqw))_*w)q&`zOHmX$hZ4InM{lzfvk z{Gn6>_Ec4bqL&BvtTdl9y?Q+IR?E!FD8k1i? zpvo@~E110nlB8nxvEs<%UT7>YWVMGWM4G}_}9m!)q`%TR0au}tBIV$vngo5WHCOACfG5UEG zqq`wuKyWe?_FeuM1i(tFDyk^Ssm}ieM)B+C~wr$R$RKe|*SA)lP z55u`I>Lk&5V03i_X-u$WmDKq?Y)mknt|FU(DO3fkT&l`csBszSI@q%v)|6R+)15d$ zRYVI1 zT%-GJI$UE*?_C{QmCVJxweMmbPI|4ZbIvml!kM_D(eK#a`!8)M#k1S{j{NaR4m%I8 z@p5Nk@5@K%xpIytEQ0?aGoJw!BnG5G4s;!sTQC92js5Tk{TQ8+E)no-1x1+IS`r_7DODdsDdwt`*9E0$iih3?=+L2LF?kKa5j1C{We-FH=Q4Yk1TW5Y}n|xWQu)D z>uTA)yT2GxGj*b_sxK#Ae4F~jXJ&RuZWBumiS06*+~VWTs`QYOVF@V&Fucj-@!RZv zXEFSRWFuOBt=i5r;FB{})~v7d`n*s2)zXzq)cLu&4(@RxMdM<30}Yhq;H1Demaq)XvD@o7gknc_t*OJvkvaIU!FmB&w&A3^qD0 z5R39`a7m@!))zH`@1U&eVV4(LUPz;6t)k8@o{;l>g<8sg4R?eHjP1RFUZoAQLF|3q zU0LvZ?FDpazxj?cAYL-g=MUk|OUO_RPTQ3>uf&`vP6aSH{_a8N2A? z(0DM=g*=D_6EkPvLH^3i1+=>g7@Gb!w&{)ll-Be}-WnjOi@4RZvpWO{^L$?OQd zlF1QvCH;|*$(|8cPj8TEU(m^|N>TLR5_&t=2&7IP)f>-N^^E9^(-N7llMi6T9nsRJ@RCcOHXhNP)n zRav;As&YwVjUW8SoVRS#rDJ@jre{s#@@jc_O^bCMuyReS7#KlY1GCtBC{Y4o!?D%7 zLUg92=!bklXTl26vT`(9f@MNyGHPI<;&MV~;5F2YgkMrPl%}r z{l{JJqLzUzlFgN+8Q?1m&EP9P3xTg#?ub3VJ;{JxVFf>E3RNl#XY4eAZIppd za1SJNx9^J$x&jGRJUq(&8jJW0bIwHX)7PnUvIeIMyHhX+Rk~QnooS*rMkXyRmPzfn zW}p!VRE!LmEh57|J zXK_vZ8DJqlf^qyk%o|eweW9T2t0`Kcz zI`JLA3!xfTwxW4r{qNE#q1{z&-;6%lTgx#?J!g35-VnWi2$g=~UhlU-ts@#L9Sh~3 zRODe&DxA9%%j2T6ltRWRG?>ECbS_aSM_}go1Xt>H>@1C=XE%6#X6odf&Qq#6eWvh} z3ahI*vh6mSu*`&^rw&iI=KI(V9VQPH4uyynqV6%InAb+N%%x|qY8!W;6Lf`-e^?tWqm(-elcCY z2UqUHLn3KSgo@IoP;i)w7zS|TMA9_*v{AoNuD5cjf==ZW*$OdNRrN{zBY;5;Enm$^ zBnPbaQ^k}Q_tu&<2y}$}9D3)tCJ+Zn^ctgzx>$F5brpL`Xj(2m=l>d!=Nu$`YgC^T z=5$JBrE^`yMi=D#R>I$^%0f}UA`uS%@l-+|X7Z($ZgOsLm3pdOjTVcNT3G?07Pq^| z+i0&???xM?kYXH(%(Aem)z(>}zTSt*bOJG=A9L2_tVV1H6yTeo-~A}G2!{TJ_UQya zW;pwYiA?a>od|>n#0||MBB$Anz5%+RrbItEhlBl#u=>mMRATSRt2`^c^*+~QKzp}s z8YQE)hpz}W@bNf+yoB*|IZBg476$9FVdN+oR)$5URSaJ-Ss7LVn?Q~dtPGf=)Vdi9 z`pRNFhWF8rS&WjO3siY*M9~vkvv85FW+6wyn`I}_tbqP^Hp9c?^B>zCZ0Q&-2`JS@ zoe+j4P*=!u5v%(=czzb80CV!SwO`t`yZ@)#ZUhP}q*9H#Iytm`x5*?}3zGmcLqIRu zwFT1A)c${XJL?ZS+lG;orcIl1VuGX8KTEmC5W+@ajn#d08G4bXXtyvmEBEA~L z#74thvSi(P-1&%>IVxIH0SUcDMn>ZDGCrvkl4i(NWV)RGZG_~p8#B$2${dnrIN!)B zoEq`TDzacE_U3Z0XG4Wk5GjqWzB4JySVSoYNJ>CYfabg(iW?v)Hzzmuj^t7w=@oBK ze)E|2PZgh<2)s%aA8_nkZ0iKIS7hgpg!VU%S_Ea*G8FzR#W=79l9MAonN@Ehuu2w` zPk3shnUO?W!}P!LYH&X&$RlJPp^iL`OhQ+`@-?fWNLq!FOE@v&lS{NjSXN%Px|+B# zs69oNKr2*KA@xSBqn-+zG?5C+xPJw{Z6XzRA{ADYk(>b@XScR$TE9>9iX$w`HEHBNWPg;`&-4Cyo6w=9+OqhAk(eO#CM!v;do zUz#hO=xVk;&zh1yM?LyCF;V@z$fTG~@oQK|4Dn{$yZsk<6H07U>pVjNKKH@Vl*0-% z?wSor0rQ}&Ps-u;)`LCSN)*wcr~>Da>xfMrJYXI!AdbP2;*GBLPeGVtYVlKG;Oa5a>IQE!xt%win4XD3OYtwf-8fCj&EaPIsPeD>-qn2R~?3 z{RK6n7x1Qzh@n=@lRfCs43`DQgXVzJih--E80aA8*52|krIBGGE*s+flf!k4lezEa zp9LqUi-^}$Aab5^z6XIHs**)=aa#kQ2WFGK*~+y@bSz`=v*008vAyQq8X zhX>y!sY0v(8RBi$Ubu7$(xrQHMoL;}$yB2#HaL2762fmtvN|K!Cka$!bW(!x03L^K z-V1c%(h|zIbyB>NELjn$6b+nnDB#Qq;3UOOgI|eZgD(Stk(>cI#LSp-iGdbX;B_f8AUgKOhegKClN&&hGc+-xLqy6DfjlOYEiyzv z;4lPq%(~JtRP5L=^@$;(u(Z|8;E`O!`leFvc?w%SW+1v#d}VX~58Wlm?p^4a^!be+`8MdF5rRh7OX@w}_CYe@jPypdBH3^i23Y zXfsJlj!~yYBvit^xv~%GIqpOHrU@s|I0`=9{A{S&*ot*yIXYo+7CgVI0tMigOaqAs z1fnQ7K=)>xNPtBv3(Fpc?ufc*lJzrAhQAeL5Z%c$pBBuZE~0b*jKYqs&;uB#0S&I? z&ZGMSvvKAiZDy-kv|b?tZ)VTS%gLjxGPnQv_Ta8V!Ir&-p5ECihj*&jhjW-ziozC& zFk9}G0X)_z4320uV-!qOqfZv{dp6$_JhB%v4F+vhel1K9=9Q;z)^GDCUn_V+gKdb8 z?Rh9DI$AG%cQZ6SJ8~SR#A28(|JnHhnI=GlC}jhmCBq#0AubyRL3uAlE?FNXdbSvQ zOBmb=Hq*|_ncv^qI<|K$(B;P4XRsqWemnTwHsf4P#5rL6+71MNbnrSCaaeA(5-j*N zBJO6PbodjegV};d>#gEk&CgaZeZL)K7%u(LfD2%G9b1u|!z_CmUq=x4;~8b5p~wVOC{Bkf7zi0~50+=_j2Da{y=1o`yNs@xs zD7VmX+w#J)GC>ckohCkp=&y0TNf({ow?r2TfXU`!{ zk8%@B_HjWEu!Jt{*bQl_&?E?WL#Bt}(W6x7#vWwGn1WM5&c(8Jb1InG^AwH=!gePsr;ZS$ z@k<@L{4OgjSyi!yn~0n|LZZYOd6;~mty~_jB8fm6aqgjRvprnUEKA^+7R_-u2gNOj z4p>IOZJ4D3nmoIIOG{YT_c#g<$^eFEWa_DS#yDdDNqQjqD})8ULs?)KV*$&ZoCBsC zF)%~PIj{nkXc-66Jy82$8TJL_9xgUOVzrC20h(M{QR{M57uEayUe9FdJ*&P)i-Y_F z(~~WkVtgnpF9W70!t${B0)j?V=&ZN*+__`td;GoKT>!XYtv?eVay$JgsY~5WwHtFv zoPKBOGYN|FH2f5;#NYVB_)!-8sPHolei9U{3_#u}8BnVTe{jF{+N>z>U)j8w{(;}{ zR%vc-R!*Kg2?qwqe`R0*-@y<3!(H&pp}htMF5^Z)Q#09jB|pCacHDn;&yTOdj(lH( zuc5%Mi=$Ki`PXp#gAEBd|70mI zzYjefNoPnbc69X21Q*>9T*Q%>k(ptKKDiv$2figSP)WDdss zg7560POv%ZrIz+f&%c@l4kG}xWYfJWzyhYEs=;?&4j$NnrCp93RG(d#J4aoZ`z#ih z+<9~k7MXn30hQcU`1LG!)~F9HxUU7V6v0^*>3CGgwl4XX<-jy`6f3_ zH0MDYJO`kQ0C@*xf{0u4KH>S5E(x7W7~FwfGLO>6<9#;5-3-VHj z+>0usYAlZpf*_p_6|GuZZU6+SWMxxFNChHEv~*>LB;oXkXC%oK!ObC@R~(k}GLe~e zSW;DE=4s-JB`Zs`i@r`B~9iFUgllMUleS7pXf~p$mHPj0Vp=8?aGec zy_~e(z1meh=^@NMW|_rNbj38q8EX@9Wupdsc!f^xFS9Ar$d^CyROl~LmYqrLQw{}= zm7M7Adg20I(1*Q@kHmv47mIFyKFA{WAnwoy!Hk^T!(Hc5Be@11BNe$!9*Tdb76M1d zTQvNyy|CWzt*Cj%W#_y``qg%y{WQ?1;G;y(P_d@b$}A-udO~So&!UaSJM>vNp2o74 z4@a8GvtYI`K1<1o5qX*+s)wOZgLw-TD<0L5WelTvJQB`B!}Kl$oX7sx(4_j&%fX#5 zNobD+*#__?LK(D(HYOp2MeGlAh=)iNU1>Q6M3gDQLz03dk^wOKcRK!6<=9Gr@Nbgg zB5H&&R{1hB^R0g^z#l@QW;Ox89*N`_&{A}wn}qZFo%WZv!E&zF_FcQ zleZ8V2tJ%Qe~x3pLXM$P^-<2~M+drWtaR3Sy`B+Segvs7`A<%YTF6PYz=Tv-$Xz27 zyaQmoj#RPHWU86g6N*gSfUvffMp(N>jvj_QOg9fPqPy{VSYlW)Y| z0JZ^B|s`13$Bgn-WC(Qmux*0%09-`)Bl`n0hkOrUGQdk1@P8_x{FCw{J!A3FNM z(GPxi3in|%KUMc{QMdi@=MX;q6bc#PXHK`x>Tc{k-A%91bvEVj%u_Q@o$HtgGTq2Q zrbW8Uf(wi_t&x%RV0UAjwB=PWy)U)_fE?nZyTJ3dHFgwv^y-nRUu8H(Hw}L*d8D*F z6bLK`5@%L-c!5Uw#k$pCD&4_Xm@g+6uE)xBwkhzps>0>2s@UXoyQvh3ew0B8E`qMd zLsWvzilu~y%Zc@qMFQ`U8=F{5`CKr|rzi(eO|9j7!3RZ(W{7ebMl)AfU4y)do;V{u z1!%=$T0ums*UzA~f)H^w2mXKd-Ud9X^2{4QnMpE}5WZqiY|)-7ZWG0j5WdA~KKPQa zED04`Y&wt;Qiqu|nLzOGYP8_u%C6XgVhfgT{laTtBMAx^G+{|5xfWe)jorSN{;#%g z`+vJ+c(=Wz@3vdt<$vGL{XFM9=ggVONiqo^nP|ey`9Ak^KlgKg{%&J5evW}T9<;?A zg#}P-^Szys*LGgb%t6%vN_rH&!lXb^cNb6|qQk7XfNe_^uxE@p?>hDI-=pW*m6C6xo2CTA?R`k zeWlP0&RZ89cp!;Cqd?C6aQ?d(F)NAxH6if}vAT5ofxbhneQ#~=d!`jj3GrtE3!Woz z6xP$p(S~@z23Qj=yWB5X16ev1dH|NsY>gbFb7l(`;e{0hHuHbuv4~z|31Bmkm$n0E zMBdzf{;gdAHp3a^Drb_VrJ9uEOrjBFlrf3kb{gxXq+B-{TKJpHyXKg}BjwYDj?D3I zF-wN9Z{?&t#J5!;dj@QJhKs8zcf)7QVZ)SWwD%j~yPo8iFvM&}eCXR$z3p^LMtPlg z1GMA}_#KEYypRc5HxPn-N{21baM~q0Psc(~mD|QjRK(mR3o7QvpyFQv73B;+oiaKl z<^3Z>P3PsLCW0~(PsSkTy)lT1EGbeYtq3XhjSvx2FDDTvXhh^mdNNb;#`3YI_U+o# zz5|%^ZJ?< z`ZoqQIkGGsgG>r&m~40qH$Fz?wpy>ty|p^H$QSSg*_iu0+ZF}tHhY3OD!jriF}zH- z+&b;n0zh)nUtpgizkrgyxGvC8TR%>5QF9*n#3A4f(d6{?^(z6`JbR(PdU=iCTc6Jw zbqBZkye?O5eW}musnho*TihgD+-Pi($(zG_>grwT^^A+$;2&l)&7q8eDX}`RwKUM+ z4>~eIWh|@nY%TTre6ERQHTAVs#nshSVpA4OLO7PE>E>jC2++Sy9SeIG)iipm=~~KI z*e!pT)lO2BmU;Xu117DrmUQ=Tb45vOuE=$Fgyc^R>2)Q0x^lx>uN66!$1T1DeMM#N z*iH)_;e3qURV3|KkK`O#{Hy;8r`;|_tGXK_l z7Hqr(Qf6#?$~ZOKEiLosKdHSt^XEp&B$Q`Z?vQCVeT~9J|3{D}--0x{OEjURnG~Ni zx>;*Yn#3|qO{M6PBiclLiOnXbpF5WHGzTtduz*cZ3P>Q!OpZ^NG@WId>oz@i;n7P* zF_R#=klkNd(y*9$(9y(lzQB8ok)Uz@S}={(e7g8yM^Do!_Yw4qB#=1Q#V5`P%_ovH zOSXFa=IKOC^R8eTE6S|>_*Cd(TWWWLDRa{mK^e3md6pu}W|K|xUr?G?rXbGUnyj(0 zKXcU7H`N_mqrRhO+32zEJW@Vb+@bQgdj;g#dLvs|A$+d5NhO`jh8q@9A2) z*^Au}a}Y)0!ruK*NgjE=H5We}Z^~11S5(}&bj8AXbMp*J%HZE6Zcn7t-~Z*3GRfTC zh*~Wg+9k#4fF#-kB15SD=o@6 zmJC{-UlFXU@o%h8$sW+zrcON615LE7QxvNK#jv_Opyf268kc@uNgz5CuB45RFHs~- zWH{AVqK!a>w4%)if;Lvm%I`bfM}~nm+3{&JLJKZwBN`;2JYVxkgMCu0Ds!~?NmOp#VoI;OOVbkl@VY)X8JjnIt4Kmzp9UA1yCBp6~r zuuQYxlD4Ap)gZN%8{@y}FlZ~Z=!p&+?3Ef>wVCq-y^;{I&fRfzm2ukIHpDat8#T^@ z(}oQ7xB{9e3mjFO*9WSoW$mCHF2klT;p!@{V%Qp3?fCSZc`3$%;F*P3>5vC;s>U~2 z4f>yt274jm-2Tbw&kwIVzB^1&l;|ZIJ?8q!!WS0r68$XTLT@70l9wolk+sAM6_>Rp zCRxkpUD@FCxhF_UH`BL=qKYGH$x6W0#ad`mmsTyWe4yMYhaH5n#6b<5&AP~<CX52Pn+8PfwRY{vH}9HND+Oe{(dS)m`KQx(Pzm%~i@E3>*xf z`Iz!K=nCvi5o*zmxRk4kdt>{xLFphNIbtGH?zUU8DX^7=`7-Pnp7K1QAm7W1g)xda z9b)t`4->~7YHKXSD*|4MBPj-r*bBfrQU*^p0tLwjwKiYqoYEn)NVMop)P?&I$ht+P z2ki++LsnsKW2$k?G^bhce$DNjo#@}a*cJ>?qN@sCP51jWc?3oXP9DsSz(m(vp8kZn z5n^dUpr8fto6EL|bg0{53tj=;e+f&5a>duDbj{H*49QS3vCWPkPV8ARqAw_?ba$~` z5)=E4AbH&*PhO#1ke3b9Pog>b0V5}C_5a)#e-jW_j#A*{{{*JK;9pgl6q?eF3u2_R z>C~eqj7ve3Une6e;+J{1K`LQ=y=x4t%i>G_TJhjTyoESNj}MKYs^Hk6I5+Fb@-e%^ zzi7dcXMRR;q8NC?M!edR&P~11@_UHa>ql%`vAS7~a8?&`#LVjGFxKVB5E(r)$>@T& zlZ-x~iPI0G>-q_KH7k5uqN4Hva!Q>PPEE5@3LSTiZ#ITs2^SpM)Ad~EFgQ0S*j??0 zA)`ac0y2D7#4>yYylj-=a~F`uX!yu0AeNpBF+rtE{h2|9UaOTg;Eb(sf`c^ey)mZxaEtu+PkyHv8k)@j; zkIfr&jbBo{a`D17TAp9#B1Dj+sHSC|t_??}>~hpS0=FosT@M5WxHAA1e-7I+AxI`+E2~-oG+l8n@2W>vypCHK--^B>`tcc3EC9wry&L>s z$(xQu%P+?(r|5FG#k^cLdX$6#jMa{06vE}Aaj9q!!F5C9$e}{{%R3KiUYntIFt#yB zB4i%$1?m#p!T81)DZKgl{o-~p`sm=loIZRglk_1WpjSF_`f%PHee_Xu1&YFY8VZK& z-{E1sp9&dc4hxTXSnuZe`qT&oizmuqy%pxTUOTCsT3k=hc+|8QS%MhTgmt0+h4`;( zitBNRv+-XUN~o8wnPXthEcSo90dvm?MKXthN@*!bZ5oQ?N*k-D{z|v%<=94ug#wN( zPEHsnEf~&p?KWdIm@f2knb3?NfQ5>q+0BUV!l@l+LhWs*LaE)TqRQ&)9n#(fVXU`r z46lRO*AQcopJgy505h+$o$#o^!)+&8&yr?Pfu#~-6nTl)mSK)VGLu715FKvdbg*jn zy9VhH^T&)!5_$E&`R3hFR-(qlz7;Fa5D74JI3B_xsVpWeFy}=!n;e1`qpaB2I8A19 z&;nwQJ2-n(Ytuy2{IZLqringj{^d4(V#us7PmcpV6GGS{5JMMY5~)h`H2OL0$DT`` zPMlzPmZ}hRIo{7cFC`XHj?bo998QkNbq^=k&S-Mw{Jm*5VS8+Zw)*Z9FlR7VjV2H( zyOI5`0|>@9auEZoWqV%>bOAbb;fI8T#ST~R1ds@QAN5%l*UD3;$JzTJ0#!o?q1)6E zr<|k@Pz*wchOkfwek&9Lvr7fNn>Td?Pi{YT@u(XTFcX-V{iXQpp&pk>8_pa$i8u@r z!Gbt{jzt`_cD9EhWBu%|!%c}Nka`&j1O_TIw_UaV0u3XVx8qtNicrTnxk2fCS4k`O z)ok>;(mXzZs~nILks^#?KFbSa96LuEpXKjpvs`a7R1Nem$_H5Lw!Y?l8ZHx{UBC7O zSjRB8@1O=hXwu%HB0e}Y+yWFQXcrcFX*Z&S=h;G%w?BC;-30wFp;lmLW>un)oAeC5 z#BnnxONRwnz6oTRna^~I$br_#{+BH&a)*g*dH?)E;jH`u_+gOxcgDj$vriDn2EV_? zUk#yqZ)4B^0XJBxNC3xFC%treiPTh>H#-t+GpJ@qLmWlf7)Y!;;Rd19nf{IAOrXBY zOCbYGDF04QBEdp~B2gm7_43onsErkJ^@3)YpU<#;7Bh_Cfx!C)Eow-TfN~LU!kES@ z-dFo`YmjVeGFYVfB)W$!UQ@0C4>-R}+Lj>4ptxm_Pb$RX~XmKM5Tq)yQj2ea(mFYpp1?_LHDV zLL*B2t9PQr6R4{so&c>Yp<5+3tJIrTTAvl8gJo{tGp`$ZR?b%orxzBe^ssqJ1mSB7 zLD<086N#@M06$SowiYNkCcx{QCBW7)AKPPIYbH!G*|o)F##MGUSMP6T!LAv6mECQz z%5DOl66n+|$6&Q3FIeQ@?(;{RK&M{-?RYIUeNgmaVKz1bGHCj@ebu}IkMybwv3zrX zgYqi9zriwck`)kj9FK^=-F2GZ6m8GMwl^5$B5hD74EQo`>{f!vGJGq?-LZ%TG8ZAH zaZ@aCE~y-XH-4C~SfG8IMcz=g)RCSjl6p$e*5$0nqz-M(^;1ET(W#$GR3eP$g=sLUtP1o6AaYV=TlBwjEuKQQ3qm5l*_VbzvSm&z8>l8lVub_j%ppbudDD4QL>;xX!ap+Ro0_(CGM%XoNz(1F2>_15zOo z?~swoxaZ16wgWeJ6nM}XG81?_#$knQ_h@)>n<&#tVDK)*c5G@mk?jaoY3VkW*&;{o z>WDC36BKoMq?{T8~AMK>^emn2QVu&xP?PQ~~%m zdZXcS7zU;ZV!-*oX--e){A*r#zlaYMn%aT&FqEb^p}Psn#dA$tao%HP>81}b|7!X#<#b>967OX2(H6nr-{J{ZE!GCj!4-mh-m{wXhn{hBQlZH z!zLsL@3T4%I&_8F4|VMZWpPUAOdC#8Rl&|&(5)5r{qE?Q5OwRKzO3CRn!8>;jrqrw zEjjN7&mBI2W#wmDGLDGiIIM|5cmyn*B9H{V$Jc^z?MYnn=~}sGJ)QT$kto~f9$2u9 z+F4$!j!8n-*wdC8-gA_W#b*q{dA9&k$!+lW(eUzP_d+!eZYfk|v2FNP!7%Qj-el`~ zjn|}7DTXd%fAqjoTj|-d&7k?&UtVQ~j;+90hZsaV^i;&gPhVQkz;e=|ApN15#&mmW zGYC|^-bV;0*D;`S;u^8hz*dB0jx!Az3nv>__9%2ACflfXvu1%Tswk$3XAnijaYWJm zOcV`EYK?t99;9UMPYMZQ7+6IRV^p(>wrpVt)W9ou#^Dv~Ws9P}SNXDKlrMTT)0EYnHJopLqp5uhG`m^YakjCPSz)Nb!qc4%N-}t{!MD`^P@v>t`vNw$ zqsYFx0C!6UFQT2^H!Sgbs=eUpj}ptef92WwgoQ~M{1ec+oHU0bwm z(4K{FyZsAMfr(`B!m7j4wHdq+{y*}H3hPUD0Om6XAUDn(^|2j*DRCWuLX`LGk{eDp zTtXdP*d;_a7p>e~7`@PsU~u^O)!l_&dz+3gs(7Y>5uPtGXyZ4OG=dXhWz~J&fDe{c zY1o`qQYv*0dE>3XFXuQj$uwt??bjrG8UbA=Z1pW61ljaSGH z;aS1(p{}*P5h#VkBLuc*wA~N*c#+` zq)p|j%3^?P!glF$m-OqTeFE}LZ!0uWNUUXXl&xvpl_8X^QeXvr8O-IMp%({45l2?_ zic*`>?2ma;ZNes6vVJsNq9v&|nU%0;ftggBG<(ldZIT34Y{iKSDxo-C!E!1+DW{Su zkgvf@)`2UY;UK58%n}BJA)RGSDqoVV22n^}H6=(BV*4 zf?6;K;80o*3@()gFj7pJE(yjS3%+dL zOnGZuwmH5e;&FV{EMP3BvbLz$^@?O0c0WVb5*dvc-H~OS*rzJO347u8P_kzu#Mz5!;L70w)f7Z!%W- z!BJBd*y?xX7)Zsp%HADWLbxI3!g9!6afhLFlXt_zC4t5)c5QMR$zEv3-!Mflixe1# zM~no|P5ly#ggHK@Dtq2nLO2ST_1V?g+Igl$)ucZ*FKP^*=@28MK}ev>F<05#+tH4@ zrMeRPl0SAHhm8Q3tk>BY;vscr*ZH4$GKJE}-2XYWzVozTvA*k`%pCg!xl%lt&XMwD z0uNSEzCNcT+A4B$u7@Mp5w;+_vrJFq)y--)`ZFD$g z7K0W96;QR~^TFhES8VWssI1^AW7I=J)Voj7U@bpVu3HkQdxW3nsmouDH6qS&&Pm42 zqIC5-mX1R=(T-NqxH0JVV0JMSGEw0bJIrl1u}F+%2>BQ7)7C|vlC{deBG6Fpy&q`r zb4{Rk(znQ#YZ1IF<8_1O`s3(Aj8_s_h{4-N7z;6eWMR6l0zR3Qk3B805Tm&Xk*!U( z=s>^PXE#evbpM=YW!z|W7#z#A&;Z*aQhlvTFevZ2@2w_ydnCY#eUa_Qhe`vY*|1Z> zl=o~z*(l^t@WccnF+Mg4xbLE+^}-AL`hK$Onjir|UOC-lKyn&5?iEYB?!rM-r?o1e zRU=^aZ6iBy={(QR9rRI^rNP%i;5*p)925Gv;4}ySbZ^T5y0#>4$-L}fs|29Q+QS!X zG~y}Sg7XJOqalhYc{RE0L?T4mk~NE?NF?Ors3#G1a9I}cZ>;cWd^Db<$7F68Xf>x3 z%qoPnAB}J2AZ(&uDy;w@pKlcfQ|9Gso?!tOMF+8EcjTq#A}{QKazVB4`)}s{`uUb2 z)C_9t{m4o|3!zuCrUD8oOSFMV)?jpLj6(gv=5gd?icyHt3oAaMHYa_ry&QQ7_#{CJ z4zkK+=aTX@t4o&@SD3j(5My-8G^Iis(QSjXz z!CujI8C#}%Iw?*$ANFP(QJ@9Y9gwa#9k2&7jo>kr}a1>a-njr3&U3`L`bkus5$g` z=nl3OyIC{vBrWE9B@kWr3Ok2|v|Cp;Y+hJh6QtophlTi5V@v?W%K`uk&XPbIO4#Y&rV+fv{+kr4>EQy(;q+rx=ZSRHCpPb&) zm7geSk*Y;UMgRkC3#g` z|6>5n{wzg^jR4>^QvrtvsVktr__oD$Uax;ZIUp8LXPDn17(fKd&E+8IDAq%~#0;3^ zbM0q$jG8w$<#tTc#7Lzfu|tmX6>^#EkfVGK5!ckxQ=PwX3^YG=i26kT(KJI0Nng!0 zM-vaI%`o)n%HV6w-WVapLdb@F?TN_2=LVM$tGOWghhZmzFqma^DvAOI)cVbw0#+@B zzm773{S@Y@yc6P%<9(r4#JE#c))f$F(s|k2Zs_Y+b-8wB64CS_%GJ1Fvd!pzl}!^g2O}3odXNq z-?mb7H0)XfSw+Wpg7AuxY!*v?OhG^5#E_aAQDQ||@d^M}7bFqMCqfAvRD|tnPd+hf zMMYdIx&c#&om!u6E4fcCjeu8XfO2@@#eLBA9wrYihKx<5cW;4uUxrGV-`0hxC?!GpXQw!K&FzVpTmaWyQ0!>s6SZwnicmg zT`nax5Pft_dh`;AxCc@`O3d7&tJ9`oo4zYHUHLSS%PyQR#-qVE zgdJT7c68*aU43u74sO!E=4V0U4}rTF>}vducEMFh2ZMv~a6CF_{_?_^K!+DX@W#{5 zAKQK5sblyF{)s$u5V_)NB*RRDN3bIv8T2VJ3&^njIJgd`VPRHF8+;P{e^t`J;2P|W zM}xK6l$Z_H@w2OLZ%SGmoZwj9&WC)Vgn} zTtdpJqePMxw<6$_*0mbOlhUh0tGDPOoaN-Arb+~_3^_gOELB8I|qr0M#jj5^#U zFa{f9u91BC4oVq1BqFI+!LbK~`mcf|h^ZmXdt*nIwHPXDgZ%`>Fj?X<`9_cs4_FZ5 zLwke(J1Fu(Glr34rVm}|gox7d416Kxi^dqEY`#QM$G|LtIvTf(GU^x|j57_c)`^Zd zNthdiC@F*_BT7S!9B94pyktf$P zgbL5fooR5m&J*;o%Er_Z5@%pG=3aC?_wB;;6y2-_$FoR3xPy`p?l7hv#22z7O$uq^ zPy}a5G3an>%(kOOmC-$O$Sv)Bh|<$;6Ra{JMHI~G`FXeD)Pb=^=i~9_Tos@y^7?jI zwCBF;BhC_;tfgqVUfjx8_ldQ^$ zTCcadq#+m#_{U103wb<%I?;chD?g4L?HQ<`H5+&j%dW7g8kSqB$_!=y*|R6kbp^v6 z?NF)~n%aT;Qy2L>!HmqszHPOe^2jin0ZMOIF}t{MiD(x$vvP?*#ZwQ4ki7 zeNeIitQ3E7yZ+OpDDc11)I|TlU-+mz{`lj{d+)smJ1(*Rl}nfK6a2z|xC#Cg=|7h) zeTHA|+4eZw_Mda++yfi#`pb(y{0nTDQ@^!->pew9@4dI}@%LJait3Bzz@N|V`V0Fh zngfS^27m8)@4XXnPuvNc=G+5&|NQ^_7vFm6KkMhf{r~(T zoDX-Jvvn)p^}Y9Agwu

Mw1rzo#CbAAXA9ZuOTgZH0e}?t!PnA3VOOCgwd_-^R&rc@Nzh-lq{bg)ebW>rCIijjkrZN}{~3#cu+f-cpj^P`gr4mRF;by& ztTV|**904hE_(yu9v*`t?)lGH+=JqPaZgh8Tx+6d5In;}cEmH|#jX2S~}X3%h*-Bj17X9iWnFI z^=@+zN6m@BQ8{7YDD}cq2m9VQMA;zCgzkpv5a7cI0YobQ$shw z?g&%5Pld|f%>}S{#0)qSntU1|`bXM~=3_Vx9Mh|-R(pcpGOgUn`Cm*lIrxh>z9q~v z-8(QI-UIwZs>%{EFe7EYR!b&ba=GS*;g>8V+E`pN8(VK9LP_JBGvC232XH~Cu3zq1 z@AZw<9y02Jr7qDKxIv1P+7QbE_7%}dLc%c7lKP4eOj+*)KQav zM55x$oVgl>jLb5~`X!yI-OAz6iL!S)+Sm1x)E}~}w*l^BS)VSy$TCeblS9xkm%oTF z`b7}*rQk^WIb61`fY-=ezTQ_Q55@0Dlh*JDcIxGY?&5}EprYmxuUi`yd>dS6(DEvK zw^0#qG{gmXfS>`I6HHs=_-p9{lTMymkre27T#U^4jACESM*n7LX5n%NJ%kr;@umo6 z)Y0=t7`24GrHy(^nf0RI5(D8C%fF@A&o!UxusS7H5Y3f@UZDcZ@)TT)OqVP zEy|q6aQK`*O*QhnKCC*wzf1aI(KR`&g;n~n{@L`RSNE_&TVUq>G4Qai9=}B|t4-Ew zjfV}YzH&I@$aKIC&WGPSm^~i~n=>7*h}o6`MUiA4SUS&sxwfN_-980csakNT;#$bu_`0g@UQrU*51;QzW<$zE7AR z?`WFhK`B8Tdxx^4@yt#e<`{-9%cU*wqsCTsg z?&yR9l|jHyXI*qvWoie)!cQz9(B;XeCv}T%>N~@tn|icV%)u6ytbQIslMoW!uL6)3 z3kg7Y6H1H$c3|)8Xg20Slrz_WwWZ#z5&|I<;1c>47>OUespi=qq_hpb)!ym>j*$U_ zH1^;`^$m=6xsV*2QNYuLNscuLIcA0Jr&VCgK-|*p2l@`R_Pw>e@0nIngD%i1(57bi z6jJqp?s2h(r?5}A!6JUi9w>u$NEL!5YcSNMN4vNT(_o%Ka5n>-FfkP7R%Ua`b$JDCiWOD^_?KnL+Lt z2C8A(6UtGDL9}~g5DnQ)q!U;XOzayWVx^7*u_kE5;+YLHlif@>oUx|o?b`Ib1E$~G zKs$Nb>5N8GSU+Zj=$AGU^cyeH&&+O|e6i-JOg_O{R%|E8Cyp5*@}&KmYdv)k>CMQ%0vFyu*bPmv*hlA?l)>LR1BCW+uYY53lOxOG zF-X~u?ESIfG2HkVmD_5)F89{z;38kZ6J%rV^K4rbsN3ub=BV%rw?qXgXu~bHPP?@L zN+|Ug*r&)ZprkLZ3pCW$k5gRKwh}&Zwl#Rc)7RIpgqA@?plS7bh@g?XhDs#tnC+NL@ z#>8*Vrt8URzj`F+$l_o9S2*onNnyqwg9%WWi82))e~FngPZ4Dvi=p}*h~>z zzgr`YjfF^GZmy62qUoCGNWG_IyfT!<1;Waufz9g!@=IYp0K>8KDdhYDb8mda#Mf*mrKedX)CicsCllT zVP=dTn4(cMGIV>-q;7K$Ob09@U7gFr*|?rikRAIm=BPi`3^(qis|DQb~ooSiU(HK6{kzh```3fRZ z1xNL?Akw?Bh=lc=x}cid;XX1A$_zgbxj{Qhpw%?xiXamSD2@zkL8YJCqtdyb6&zXc z&c3r)Dwj|y-E>7ziNunCyhJiNpEugwuL`@{tU{rF9SltZ>oVc~nh94BZ3N(@6>UBc zw6XF@{JztDWEg0Z9iKMC>XQ)m4%tC6*EkxfgyRHR-GXVHyW<$B<1}+;h^bdL3YG?E z0?P?oU=A}7Fjp3t=~eV?(B9->Gm_EZlILYg_n|Jent6Pn^}nI=XnrRZ+sI0 z=afGm4faBcOZz9MKR>+g`0g-;f}^cA3H6MG;@k^|=u&}DNwfL^wJdb$jf?9qQ) z)7yRYH%IdoOsvlZJXHjvo2!&ThF36r=3`2?q${v9Mb?Gx=T5n*WPR)q_sA<4Ig%H? zVpCu%^TcP^@y*L#eaiQFS+VffqedY{|4gX49mic&tdtRiwiHKF+8M$_0Pjc%w%G`r zBp=k;e4%qnhs+|;ib|p`+>iRA%TGN|kDx$gVQ^dgG{;%+e$DNjofzu9*cJ>?HHr#0 zyZe2bJOUF0Cl97Q(xef2dwQNNf&wjo-&{ks^6jt%uYk6G!g7^e@gp}vD@Gy)$|>Otu}@-RzY!#_d*sP0RB;MKVmf^^CqH21WDUZA=l|RU#FY~kaPofw zQ(y3}s!R$^=|=T2(%E$C(G$j{ASy7HkreUEyxSn_zrNlz2G(WqrGFc8@FLzqoTJBw zMo?97>`WK-7AvB*n;xixHb95l$k(B~(Ek+bF`wuUu`Yk2{`|jXqdo z84qrbT0+xP3e!^xlzs$6dS$uC@AYNW`m2cb$)Epw=Du+7!Yt=fts&36%o6VwuWwaD z&|Bw9U%v&b9xUoh09CAX6Qs0zgRb#QidQaPxJFC)&s>C5*^ocR-Tn_hZ2K*J*<9Kp(z1w15FB@I3!UjfE0S z7^9#kKfhn}F-9LOr6X47^xqfeBNT!WmET|C@J{!QT{AHkgL z+u|!v!x|aZ^~;H}H++TJ9o|klrsfXUD;+eIMV1xD@*rKpe>wiEn%vA$%U+eIzW>{CSF;M9&Yq4u^@q10~FM`d004r%X#Fe2bIhSxz@c!=x7 z0Fj8zOYW>9qBqgu22KYnn3y$4hnPRmiUit&0OTt40YUKn$g2m=H}8gWQuV8GaYSLE z86p9O0?12CIzti#&LiwH=S4P~9D)|34EV!1P3CYsH)4-FID1rU(?rwqvWugpi9Tii z)T`Z?^!R!W{uoM3pCsu0pT-p@WSB^CjXE1Yu- zQso{_uAR~3%K3ZKY{GuD2pjj^Ct%KCWcS5R zWsV)L-U+Zx`abN_qhBjeogQcJgV^*F`U2gijyUC{m7f9*I#QFx(qAW*ezX4sU70s^ z1W#^1b@6C|Q!f81{(7hfVbX@P(m)~(gD0{e&Qr07gLcjKFjVlJ-F3Jr@dWzHWh4+- zqs+E;)%puGOkdt*>ld6J&T&p|J33pHGzO#ZO7r+C1GNKEB2rA2?<~0`wIhws^2fAU zt~bs>(5#|-z|?N*Yu=|VjtnQu&=ZLPtHBnqX`y`$%=xIM)0T^<{W)vt3h003w1N(d z(jer9)Q+1uHI7?Q<3XUtOr%C@WdF;I2;dGtXiRDmg`Z56%KPUR3TNdPzz@UoztfTm zx~+Pd=pp$C2oPoI@{;0}LX~y$<~@Q>2GzW0h~p<~|B3Y!+@Mq6@F|X;Ad7W4S_;{S zW)cbJ8J#3Dz>8+HCb>1sOQ1d(Tjc_&nBbSY2|BphV(zG%a}p*RHRC(~_Wr&%URR-a zpVSx-TKhpitERr@L-VyBfm&ZcPzInwApX@`1mX$Q?hj9Zo`TRu5W5KK-2|=AiqTpy zx9^$P4b24StA*1G3sid8yk!5tYpZ{tfv+bLUq1k*eoVF&fMuo@UO7vEtz|y8$Gp}| zm}IhRi^)u8D-R@0VzG%CTqikbp_6KGSU;pC_d)NeW)B?k3$ADX+W7exE~}1_-W*R z$wZ8+jS!M8L-^U{tQ9HZZ;;6NGKmbq8>3TIm#8#>Su+dQmM$!>tcoI&;GNM)ri{vH zpitdcLqf*SXVvBYKLO<^pC)8#N31A1^U*oTaDh6+3(9qMs{t6GW zJT@Te6@f~6G>J-zV5<29u3GB#`HTrfUtCnv=&fdetNfVdn5JYr=!T{K>Y5FnV4$u( zpOTPbq$o{_IuH|BTn1LV-h2%2qWH%g^Ny9C&EE91;<_4-FY3bViN`3}(m7uPgm*yE za*x-6Wa%}ax60x=&o*hh5nz_@h(?#?JCJI|Gaz>jv1%EqjC-zJR8sI-A)A}VJQz8FE_OYko?7CFKN1<*NTgos`N3U@qx))V z@MtO^b^eCvKAkh8d6s?==?+!InC(n?DHFPzpcpXMv=wJD)(vg?0CQXt$hgk<Jh`|h7d7KHAf72pB++pMI`7Y3x8BOjMMCVweMMI zu=6ze@WHekniXk(Y7Nrw5I0OX7MgS}yC33VWkC5VB0ACGMo#nH7Iat#bO65`bFxKV z+6}FnAv+?M$b#RuzZ^NSZwPLNVW)|~7h~|mQH-!`)#5d}BQ9o)a3ZZGO-K$_&8;fq zph;S&{ZQ9#SXrio&a_d{0yalemGQ9ecSp~Js9_owvZ_k=iRP}CPh-MaWlPSx!E=XC zVA0^2mW(5!^a0bIvG^6!;;95yZ?m=_Tze85xzV+9&w4uVg(GoYqkCXE8jA9~R=wh! zuCb>rHN5929gEKxg!68JI`rG%@1x=6$L@thYur+(%wpT{t%70PL+#<#^%}29iSP{R z)c)v!TDQ`(Wt(A{uy4B9TNA83ZE+K;p$0cN6Al+n`ey-*)>KqP&<%Pp4HYt!vZMDGJdEWm8yR zk~`0l&w}3EICsmDPwmy z6joZWR>a-i(Vh!`*Y=`otKf*zgElYXX07c-8y78H`IsrKR0xdruKsdp&z|`huZO54 z=Q_`VyDX*am0rBo*dEyizDqS0fDwubTEu^9+xIqJAv=U;1;dBB*7ioA_63g+$Zb(v z=diz)SsDvA3cm&G<{A>8gOFKUAqr_wN$%9yGZuych#PMC?UL5@e-RIaKlUS3tXu(2ixo@5QX=Q?Sh*r=;o6NSWD7Dw5d z#$6dg*(wDN(3inn{uwZfA&NM%s#lcSlxBa-lWG%ok(2eK;Sw!LwaKi6MGMTN+9d2f zYqd!dRIwE&E~td!bOp<)^rW0hszAO5FIfk!c!q&+HKX>hY+LR|bNzHtuY5P{4jWxd#Mm33c299A)GI%GE*3%;@m5R=o3Z6p6zXIC(!Ga3qI99wc#g7AOr}kJVp1f22T=)>raIko3am9WE^#M z9y?85)F@Sc0O&rWUX^zNz7d5$M?#-xAUs^?#BzdS+X{4nQbHJI|5Bou!O;oO16J-# zaFAZbF3?f*?j~2xWP|uJ_&;?|&Ny*UadovwnsDAsg@#ZG)^OG8!?uBg;6kPgUjvBVx0UY`_mg2w=gssxlqE6+)h(su+-OlYOWDN(#5`VtE>2H77FXxPlE1067r(`)MyRsi^7Bk%<_t$C)iM5;;Bok z2*O{=LZnKUzZ2MaHK}4nokVtMF$x1^&-;_QmCzwr6>)_`Bu-pQbEOOjj9lLdzfGr< zkP=$^!Q2jEz2dn7Iz9He2!tyK3($_(9j0J`3T+o~GNfKQs0={e&)DEA3HqaIlx?Iu zq%#n~`f-*yJ*jv_W=MAQgu?TA3lHa$iqh}ljc*R%@aFbYp#dDeq_g0Ny~A@bh6jK) zg)`=J??eC3j%J_X>U5@KhN8sQdd5`LY_9cr88O}Nike5fi|cA?-DB6(dn>lpL-NHU zXiETAf@p{Ug;-Tf{k082i8UR${24XQbZ+O#JjL)D=+eMg5}BHqDl_ThPfufM%8u@} zC-C2bBdNf)`S2eYs?7MD+A#^zeT4Ce-w<&buW$|w*I@6TkFM>-gq##OZ*%XVlV_lx z$dqn`lSR`NOIuJy6bhup3cVCHI9JB{Ez1L2y>;H|*c6iFpr8Wro&kVaOwOqqaAlJy zLreGgmU|xxS|C>%FU_!QAbZ_cwJfkcP*u6D*2`o$2dx~>vfOwzh@(-+fE;&mLok2? z=N7m&IoP;iX8!q>gKFdlht$57R`tRQ`_#Ul?3$m>6ENLDA7#I3Kr*mrz1KIB-I2c; z-O}g6@5q6d}B)YkHcl}it$A;WM6Se+u&R6tu_?<^e+R%Vr+Ek@rn^nNdHEi zkc5%r{1UAd!qfVs7G<^|CCh=C0gOpZj0~Hrd=5=!2KIWfbCmmkOM`M0d;G>NXN&{y zyR7D6kDrYrq2V|S$ROh{?5Gw4Y4yGs;49MJmnP;w266=6G!v%?<`Y(U*jp|jQIx^v z$6C&}BWCjX4hsX|OrYjae7+S@5nGKkVrFBlH<; zIt94GV0icYwoA5hKALa1X}%2-=iC5qJ2(Hri~Cdny=Eeafm=gGY@C-Jhcqts-v-sVd^Pq2 zf)YNMKsAuvA{MrL*nJ%|aW~uHDqPqK0g1Tp$rsf~bF&Ias9*#iP~$NbyYEWR#wu*x z$=>%~dS5rfX(Mo{rw%Nl>+@#vrAAx&_Ql|cMAD(W$?+{pVk)dal*RDhJrnD>1hCpTBH7Gfzy z`YJzqJzd$ReWpA%+0z-fA_Ad>RzN4UZHw!?UjGeJe{Qr&VzyF~TXxfd45vsqr>-|& zhu0Zhlmjm8JcKBc!jVzerO2cq@k&ojw@5n2Xv;4{hq^?oNMt0dUVv=7;vBNd7WY{xVDcGFyB>dvXr{5)7}kXf2C*o+EK%Q=B0aI!i7zXI77840K;{ zNfqv8B8A%|G?j(!{ylDHqC!XJ2i0PrfeG_jpQB`7L`~5FSSY|fgPEejMj82;8Y{MN z4a_(}RC&VoJMql?VV-zc`-H0Bi@y9pg6mAUfKiknh`Sh6< zY2)P6yTj+Yq$AOiYVWzwxxYD2z5p(*C-`bnU&zTM996Jm~ zUS$74y!6g}&|3@k!3!AsiA>`yHKwUx6~gg&%87ko5ke6WrwP6|zS*2S^}@5ek#M25 z$WeYl+%Xp(<*8kSzz^P@$P0)2QA<+ndu0YG^O9Vv} zkevkC<)~M^wI6gjxCUrZ>>_z;)VX)|9cl%A>caPSN~cR3jTh3c(~k-@CMkSJpYV-q zV50G;r&XBbD+`9?7JyX{JsWaz;7n$>2X}yt8ID-ZG}D=% z7MY7#LFmC%dI-9i?a{0q^tBcoX+IY=I|qCLJ2Q&bb#pYA&nFR5-H}2QY8pJ++K*3# zF1DpYJ`H5pz%-!%h?q`yskm)QcO$^S;$%vNa*%1tr0$Dt$3FZe1SDWB`4eHn{2vGGv2m47gt-IN6m8(F_5}%Baoh4&YiGQYW%56917WEl0N}l z4H$;Rlh3rQJD#hQAMSaZC8&Kk;Z6K^-N&DIuR9KhW%I+bdiTG5{HNfdCv5IL3u#DGyE@L{ZWJ*GKg3UYZS6fhComzitane>C#T`< zLoc2c$K-*VBpV$O`X%%ecAkoP3ZjJIDHB?<(NlyUKRri|@$7MY!{^c z{X${xxaj(}?iWC`eJ}<|=D@_d_t( z%9ozxiBZoJc2>&q%mTK|Kmu1D%OVijPk%$pC1!O+=NZwmiD>PZ%+T418tL{^YXNai zib=+D?F|f2U@$?+q=WwIa?s-zKF*Sl2Mt7(?_MN>fWyoo)cdkB->Cw@Bl zwAc`(eWs@%z9aL7&$Q(P&tmh%B5CgLDA|Y`YfkPo%2wfltY!-#EW%!%H>WC?IfofH zxJLy%M@;gzHG2jI8MZA6!K?4n?G{!K@p>SZL9-_e|!mHzS#EHl z!i+tAGYdCiS|>r18jjL8vuG8bB=+CIQb9vuZAU0fo5TS*nBkX8So6FEbeqlD^ zx8jw=2>^&1l_hZ1Jh`3qm(mF=vs1Z5F}b0$ZvzSm+T-A+hSz@ZC|_sM_k+j=WTu9~ zXOEY?i!vqhvrWCZtY-=urDgA8*AiRapsb{UI{FOMxPD(WZ_MmxmMu7ojm*d73I=^u zPM=xKWsrsT|(*_J=*YK1MGf+nd_`$!Yc_w&PR2$uQsB&Pqh{#Hw6@5R$AOgFm3%}+ku`b9aGvw0z2umd2OGb#xliJmQ9WpVW@p`Z$Hy* z?A0*cVpmbR;-iQsv&n;y_zA6i#~5a_?i`JQer}QQffK0+YBvg$W1#BCw1=za}bNU=&k6T^81_N1A~!Cx{$637t&y6I9hh5_&8ohs^P%J zIC?Iyg_JhSjLytLor^7uJv8$yI`CM|eu`x*3s@ln@cA#wsKlz92TzNuE|vY`D)}g= zsegJ0Tjk)&N&$^YAfA2?m6@W7Z9F(w8sBUTzY;DuvZw30PO<$=sG}XT1o~M|2i6`Z zIoqy@*%sHS(w~`%`&B3hm=gM^3r*AFoNwMA`QaY*F|}|8eFVs}3w!smy@f^E z-lEy^US_WrX&38=Zh(<97O!4Z0JS^3zYjYn!4EKpzYRQq9rH8;(FCJPynBo#-aJJP z@PDM$8g2j7?z!*aJdbqZ+9-5peYM6FT^CGr1UA$926zP!-ayE_2jMu%7Dt4he&%^b zQg0r8dUM=)j^RmNjWnyqxRSubmlhb4LO%Gk^w4eNj!9tn)(AS9Kn!JrzUWWcg zMDsJxD3Pp%RsP1DXq;i-(Z!B-m{En35;sxF-ZZU*ZyKxco5r#Y;BcG=csM4Y;gS*g z*(+f@4L=|JP<%p2u(u%}yS975JHg&5-C7EoNPENLKs@DQTgQpFl|LPR^zG)Zw4dRY z$)_g*Vi8RKTlt-C>JV2&Z}Nh7)Np$b8lmitXFosuwzBqLedj_aj{g+5D4~~`*BQ@2 zm-Y_8?aH3YFNG;&bP>##!^3gQr>8?K=K9uTTk--MbRHS*H#zGq(~ zP?=n{@0r&D!bhFY_d;dz^T(#Czkceu`3M~Q-6!z#_vcf8Llp~cs2&=N73fo6b93b2 zUaCXRjl8u7zZ~BQWj}e51KU+Xt%>Y!>-+J30Hxal&w-oeXMjp)D%z&&sduY|@HmAt z3ku*Vrl~XF%RK(M2tLo6L)&M<=OX@j7JQyDgSO9x&u}t3caHe{eRytGsvY|tbLD&R zYq5LqYq5J2O7|#|?t!229#Pfb+Wq9)M_z1FaR?5yja%)l^?HI!5kzH+$LE-F9c=(O z&^l?W3tBYSLoRxH9{-@u%r7XMrj`b3x7F2b+!R#rfo8P@cfy}Sb^SIK7)M|NvS}91RBVt0Xz+KEJ_ZLQ? zPdY;a-cyI4{DZ(=O!Hu)X@XufLq5g@WK78{^VZjF^dqohinAuw`3HE6tjcoFMsF!# z&(sBc?(&U*dS1MlBViKS0Y}<(ZcOEK(fJ<=B?{)iWF)v%#GS*eRZL9S^FE-@v1SbD zv692Re}JSXJVqQrzBN!K`u$JDqZNRspsTc>6IVgcIU-{Uj~iYU;SEXVlRpmjo~vLXbsWz_H^ZjC!fY| z9qpf-BU=fN6-_gCh7rXSkH@WIR5FV<1Z%bcDCLX>kLda(6{Q@;)a~)X+=1TJ zv7>Dnm7et+)#!ShN=yCK-bP1?KC2WLY^?|eYTY{2{5ZkTgvJ9AbM^tiNL&*PyI_lw zQHdAW(-`Q-%Ssxvi_439*Y(;r#|dkWxI zVtV{52pNxzm@6m(K}b?@6-@?GwJ#nv9Y9>pbP(lLC3ER!AT<#wH8xd+7@7#c@PO%7 z=6$FNrhiqn*GJ2-+sQJ71r+RkDMAMPlOjtX_xdfXJvH^-YFPm3NVFO>w>(;3tEsP9 z@AJCh5g1M@p|ujer-R_)7Zb3XbDX%XBZ~&30S04SL3G;X_=0J$T_l5Ie(8knCYa;2 z9S3E1M-ZZK|JHl<`1k^fyrBn>28H?A!6&G~HB<(-D01vDbrS}*00$j?3!*g*4({Z( z6scu4weJ>Jyh}w{vHX}mJCzok9TV{08q~DBS5+n!V6xZR@Som^8f?@~@shDlMKOks zO=O2pPvgU)y=H$&928`&0nAmy-UUp?s+A>c78kG3n28T+5g*jgHSD}B!Ob~^@Pc=$ zQ2%_sr43O;QJaF_klMGa2^5}hAa0D|=RxStqTQ1N_RZ$#!iVi64;Kem}jij>nr# z^YsOwGy2+e#+CH~9fTe27JU!;;*h0<2wmGdw_{Hiu1_>yRdA-rlR-a|&cmq?EhAKj z^mnvN>pjHB#TDtg;|lcWgrgx_m9k^S3Oc2Ad;v!ND1MK#RYv9(*P^G>kE7Ky{_{`; zB0djS94}pJ8bIfljPgKjL+uK$zri(@eXPP|ws=LQ8=Y25YW%?reUXI4ZdF~ix6To_ z3kfWlq7Rr0Iba!f1=qF!I3nuzt}NEbptQ;WnV3l%3o9AZgxI>SY;=(oNnC50?ZQsb4e#v!mW< zRvQ;`wQ;Iu_Dm!->HrLc9sOSrS|+p6CeSC}C^Vz6R-2j#QL7(SF>0WwF6dexmbr#b zpoTY+hLp~!DVn44dW?{>%0$66%;AVilwhnZJOsO^XgmepIs;Vr3gJ=bJoO+DgESm$ zGJ}gOi!*3SFA~ZPU>HP_JcYsvLit74-5*+!n^Hle!iq-JtZTi^RxnH9PPLVA*xkUi=_|kS2 z&`zJj&b|jYBz6o~M^jSUWEqH~&~j3bH5?-89L{DE<3j1+$Tqn!2C<|!`R#-`i$P%B z1VHJI%9n`5VF<{M9Cs!s&*8Qct!JZP;w|a|qa~8daQxB#fw6Ej;AK&V zM!VT=5ywzxTajymzQ9R}6T2J$P;S zs?bODR9yR|)|gKs^M|lc&55^IYmGK5%uC6V?Sk;uwU4krirzg+;)8p!G7x0qrplm` zao?J|7JS-Es!CQdS?_Q$my9UNo1{6kZy|F!$hZg_yJM~xIs{SGLg`OZU#`kS$0NC| zqbu{KF~DrZFNPxHn5vpM|9406TISk53=r!m$a<|XRteF4iQn<>Ey|ydy5C3t4SJ3b z^h|&(z+70Fa-m}Q7TEGA4b2JTJJa5ea zI_?drmGt1&L^(M+X_afRfE@Z94GUSpL<`Tn)ZsM3%nkwyfWlyyLYTYBypFOQ=;&#D z6Jh~d{tPnlsZorq%yL(VIC_s9}1_J12tu*z1lxx0|GZEgv3FR}AkK6$?Z zFBQua#%%5xN&(12)U~rAwK(2(Tcb_$y1WXqOG9$9K5T3hAA^D%3GB>xH*!X7v_190qjxGM*eJlK{d||?9zcO zVKuzW*CX$gM=}QU4}kLp<4+*Juhw9lyt~w4U3h^+%)&=X$7G513XFXZQrpyq}`E*h}srf)&j$c zGDP)#7!ZpOr=}k(bpwE>P`M_jm*|S}NEwU`&lYc^DtE(K6lBM@BVAP=Uiz+6BA$xl z9vq7&<*He(qUop)!88`CBt|sLR@6+yPzuImfmM0qpWZ=!wUDM*kvRZq3KmDX$M5xx zq0ET;0b#{M>cbDH2rRk)WRSTL4wG>+hsUxfGZRDQ(O#?AeE|^UPW5~{R+iHHd-4?kRSO$x;8SBJw&QIw;ZRnSwCP+oWIvaDY#axPA z^S7DL-lm#+IOC=~;5cKfT+bc03|Jd8JLb|dC*RGvTO`!lz8xvFc5XL=$yvkgUbS^Q z)Fbfi1k<9*7w?8Vp@R?8JVwT`e3;&|7$(eXz>GL~m~eQQh-Tn-xYvH-)=-N=Wos*n zMGVOs#3GN_VG$%E>B@*#MuDn$L=;&nyf$PiqvC8%#otF$F$bqs*rf+m4;xZKa_?PudG@@QsV%*_;2EGXLj*pLnfWyMa&IzzVsIq38W&Pc1|Wju87n-E%f0@M!A*|%+4bpACec_EbWsK_BUAjMi1f;>3#)5_ z7&@t_DuenBL08_eLkJcvJB5c%z6^BLX+$|GD6){ktT+%TtkWI$V__SrF>+3wM8PNn zOVf4JZ`3nWRz37k%?7VXP?;mqB}WVaOIC^UJ0*ZH%ZcHLFuDvJEM-U}4u&$C>3OA4 zrouoOOam(bigA;bb5$$b3x%m2NxNd!EpOKsP_x-Ugmoc;xxfg?G%d$wi{MA7T`&} z)boS8hP!$UbJ#`oy#x=y)J~U{+fBvpm@YV-r5FlY$;IyJ29%4cROi0}yPC9To{^n} zijnh_NZdUitr=xwsX!O#ufnJo!?gi^pWEURp8ELcEP61O(eXnvvQEMQ%y_ZZm7Zbfax+g~Me~5Ug z^B8w#Z34PrW-RG+t!I4LnlR;GPGGH-a)Um z&}&`g!NyrgvRr_Xiy99)Q>+kZIHN>E*1<}SX#k{v9^;*1kqF`{_HWn}sH-27?s<5* z_n}~#=V6$aZVwbn0YcPf`<>n7SSqxAYS`?rAD5C*>;uf3&44Z9atA%7@UOQ{h&xoW zDU&C2tGB)+5b$|De*4TcD7XXx9|X4vz@rdEeu^@d1*GyzJ*;b$25san^8`JW+iJZo z*VgJFK4AuKxxc0wtd0~nyd{0S*}b@~mOkFAfH=nm!Ue|cQvXANl7~(AaswAuuk!o0 zWti@Y@)dcBb()5C89(nhnWsqiyji=a^Q2;N(^Lhrh%=C|>=`mZxu^*)3e;`(1k;_j zPAg!$h~^nU^OX&o*L&+s&nFoWS=us`o;6SUaRUw%Tb;nqWqgSow3Y#;3w%O=)TPtU z4fI>&3wVNK%WCRteV%Rnp;B+1cB`trl%vMtod!%u*619-BoL~i?~NT2`DSQ$a;Byj zZe^lD%rQ!b*PGkXbP8*xD*yG9RxN8ly2}LZE{^I!-6R!mB8sxK8yIO>vDxF3nbD!& zbAfzMC4F&SprN*YoZ=#m$4?>~Yl1EY2|K`^o)LALFeI;&u2<^y`OwVHU?mS_fvtYm zSlSI05cu_mB`^&DeJp=@jo(|JkH^!zfkmRk=h^V^Wa9zLy<5DdBfcPxpxL_!V6^f9 zVaT!-qjoj?r_vx&h#jYBqR+u-4?q9jZxD z2eP*@WN%z=K8922k2&TYI8f5pedbZVLo-}`@fIka2*VP5Kt_W=Lj)yO$9{&cfkNiy&@O!}jP)*(DGN3`wn+Y2< z!fXsI3T$YoUk$WT+^YkSM$q67Ix;dVpx(&mD*+yMW!BdNC|?jr=F5azmTc6XtrFB2 zH*Bh`^Z4r>${4T}v`b`;f!U37k0FCZO;woTVrIImrYlN-I?q--M&4g2Hp12MR+~J2 zKoZN5=DW6a;wr$hVq+d4xG%4Kp(=5AxKQy!umYC{>Vt+0Xo|2lOn>}5<#6jsKNNS)BRNMF|LVVtG;tii*%Y?U(P_J3WB?sPK7~Eh0-i`@LH6Yw= zT?%P&!YsgLE=IT;4Is>+viz_zo*!nFdP%TJeNVPVUN{`t4&5&H?u;DV4lv1muZHZv zCXIocmM>hq)O^o%aqfvQpm(Ylp4|<7HXs)by!kr;e+7O4ueg6GXoR0$wrcr(#S6{% z492-9PcdzI9f7Aq@aM@8boMx8@0JknTkrKzYw2n1!Vz_mIXqEC}FZh%Q-ITDdO#(`g<2#pu9FAyhJ$_DWLV1Jc zV?{9smM4vr=A-jzVd0pQh-bruQ~^UwptEDbFeM$RFx^B_F|GcX!iAbW)%c(;fNeW) zVhU{mQ^SmM4B@)FPv{!MF!5xD&Xbn|A6QPj;%!ez#{yS5&qbiDD;+x>bBM8+&nnR> zD#HZ;=nMD-X{lPzv<79Zvv;uE6kiFZTxLAJxfF&*ulu3(+x;_^Ja8hczND%XWrG-kSjF;RkP?MN4V z2c+1Jlbb(~k_h_C^ssvy2Mp-%j;4mCOQ-9(0=LV#0{tbfm|nmISN`PiA;>114#R=f zInq7)dwiCtV#-dr)s%!GC!!edJp>yb>R3)|L2Bv#-R5nsX&S)Z8oaq2?v>p-d9n?5+Z_s4$2;tdpJ6 zic7RIVR?;KmdgS-4Byr$-&sF&SsfV15+ZfZ-)N<2e<#lP9X>@=^QrA_LMyF-Q0q=;EA8nfy6-`*mTQY4eM%vmylG0$- zh{P|K_0*twWk@_@#*1ZuaXg=wB7w{z=gj&phO9I5Rg8&b*AF<6O!Am>TaL2G9GWdR z7UUsTB25K-|1tRV=-YV^@)B)KZCiBwvi2;xnQ+g6T6Fp|p{D<(tjbG4v%Dkwyj4)%*geVg%ZIQ=U?@dpwtZVQpy2P`rl!MOJo(5mA9_%)KeJDxV zX;3D3jg~uUHd)e6yUgW9iM7)V1wdvC>Pof42*TN^*Ya>t`I2^644?rFS0>|Kb`|+#yvr`7uK9RZGMFT= z3X;JjGhBr&{DfpMX+(laSEZ3c__V2-kushcDFQBv0!BG)d5YfU%XYwsU)r9jGMIpo z{!B?jC26SGhkqK0Fi0{n&#wNK3>ev^R5D;>mr}`qkzGn9GGLT6RFZ~Dtc1X%p)wS( zw$T?&0r+Ooou;ZZSm&#PygX(}IR7_8EpXh*E9TaTVxlvObt0HvXk*=t(_B)hHxSmV zv{GcF$Fa_N2CO8GFHI%DyiE#ged>Hel&?(|U=vy9N7Ellv%D~dfMq#~l2utz>-AQb zGyoK?f6V5RpdV6lw|Ljok|}jNgRuUAxXBE0lN=j2Nr9Vmw5Kled4d_4i+$T_H{~O? zY~~}dV+;J2tiZqcvju*0;a7#<3Gkbuuvk8RP_m);9e;7V{?nu=@W0a3ME}5F_^3So z_~XiZ@4W{*F0ucWOPBBy{K9{@3H}rn6)8^m13z0Ir++i}_s56!{nF!)|Nre>U2IfE z6u#Xp-Jf=w7K%c6aE+*t2rSfunh?vf6+vhv?GpDvv)pd4mUP=)cW?g^qr~VN50YSF zAAID&WZ5YC015;MbZG(vqBNSwo3AFAlBkIZo^R&P+_|@Rw?CBV10<#QXYQG~bLPxB zcRJ_$9?rG5$23BSCBZw#i{s-spPHKb4CkHnL%-WYQ&X%$s*P1B&Wm&HMcj|E;#7EU z=bYoblRZuXsEbC4sL@8Y`1SO&x1x;H6F>l| zTiAPxsYql|3Jmb(UL$Yl=6;}jj_Fz7jy3#3pQ#s=s{uj~1-MVcX6qpO^48e)m!gSW zezJhv$7tscg0kO2|80-mD{j(W(BcF&qGtOq31Of| zADdhz!hp*ldCxL~bfl@f^Du4ap{-(Yk+A0b4=7 zlMP1$JfEnRoHbcW^x@f4m2KMRH;-QiZ3)NukO2rB|C#3(Z&n_fx*ysL*bf&>HAnlf zV2@Q3t{!?xMYgKlV7WoWUMx6-QV!@NK+)l`;YJ3E;{Vd>BmZjx6~+I%u)?68B{4(^ z;2jOxBVm=ys#Q1~nhLKM21K2VsiaPwWG&WNzeHp4pSDumJE(J)x)tY9Q`{F#;Ay|K zW`pIrCp6c#&#GIS8|Y2Jk_7hAPp_xWDf!uL_BPB9)oqwn2pbqY%n}y1vB`9SEupk8 zkTWKD<)C||hsRv6T|GUV?R8~MAOp0UAvp+w%63#29|0{$D?3!3nc@qm!L<o=IUN7<#33fiPMlEJtRC62K-1m_e>G*r~TD62k!}r))TdPHmL`QFl&UDB1 zOHOyRJbwf8{}vLO;{(U`y}n(JSWfl#!Tzyc{bA$%$5jjy9DUMDMufwzc|x>@#|6;C_X8^i2wVvtx!xccHMc$3fFu{yoI zSz23qaQ^4JH_n1u@&2`7**=^2W}97E<7Qipz zJNDA~3nkIj0Ad1HUFp)**|pb+PO<`uMA73;6$vCzLIty|MU>EcyLacZ|-$kBo=`vkI30+wf4)s;xS4LgYEiLV6?Cu@Yv z{&cTy8tL99tmO6+yBs5*3G^k?Z{-R@k%XQZGzJdm2dGdn7}|T($PQ2_N|a0?Vy!VI ztYapOJsIZWwhr{a3k=q*!MVsxvoF=tm*Rthn9p;0A7N*PlZSHo(R{ZtG8$n=Sg21E z=V~Khp=niT$e1h!g2Q^ZJ~FCj>AQ}V3aoY%W+!}RJ;VW?-I=*sf*ElhWEo+L+1&L%P1m|E9y$&G+)DV4Cn~!uIEJ6G zNiV@(Dm;$68M2;v%~1SB2=iTH(8vshWOINK&7EFU`{O$V2XJt3ZoFyR=>Fq%p31AV zvL0o=ZQgq{;a-n1VWw%qm(53S{&wbI<%=JQn0Q92${*UTh+U&T>MfYi{>N0o4XiqG MRgrsSLAjdtFXop2j{pDw literal 0 HcmV?d00001 diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.json b/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.json new file mode 100644 index 00000000..3848ecc9 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KANJUB.json @@ -0,0 +1,26695 @@ +{ + "class": "TwM_KanJub", + "name": "wM_KanJub", + "flags": [], + "child_pos": null, + "properties": { + "Left": 228, + "Top": 138, + "Width": 1145, + "Height": 710, + "HelpContext": 4600, + "BorderIcons": [ + "biSystemMenu", + "biMaximize" + ], + "Caption": "제잡비 계산", + "Color": "clBtnFace", + "Constraints.MinHeight": 400, + "Constraints.MinWidth": 1145, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "KeyPreview": true, + "OldCreateOrder": false, + "Position": "poScreenCenter", + "Scaled": false, + "OnCloseQuery": "FormCloseQuery", + "OnCreate": "FormCreate", + "OnKeyDown": "FormKeyDown", + "OnMouseWheel": "SclBx_MouseWheel", + "OnResize": "FormResize", + "PixelsPerInch": 96, + "TextHeight": 12 + }, + "children": [ + { + "class": "TPanel", + "name": "Panel1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 1129, + "Height": 40, + "Align": "alTop", + "BevelInner": "bvRaised", + "BevelOuter": "bvLowered", + "TabOrder": 3 + }, + "children": [ + { + "class": "TComboBox", + "name": "Cmbx_PORD1_H", + "flags": [], + "child_pos": null, + "properties": { + "Left": 234, + "Top": 11, + "Width": 160, + "Height": 20, + "Hint": " 단가의 조사시점 선택 ", + "Style": "csDropDownList", + "Color": "clSkyBlue", + "Ctl3D": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림", + "Font.Style": [ + "fsBold" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "ItemHeight": 12, + "ItemIndex": 0, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 9, + "Text": " 당초 / 변경 대비인쇄", + "Visible": false, + "OnClick": "wCombo_Click", + "Items.Strings": [ + " 당초 / 변경 대비인쇄", + " 변 경 분 만 인 쇄" + ] + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Print", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3, + "Left": 481, + "Top": 9, + "Width": 50, + "Height": 22, + "Hint": "원가계산서를 인쇄 합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Enabled": false, + "Caption": "원가", + "OnClick": "mBtn_PrintClick", + "ShowHint": true, + "Visible": false, + "TabOrder": 8 + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Set_Def", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1, + "Left": 7, + "Top": 7, + "Width": 100, + "Height": 26, + "Hint": "공사의 금액, 종류, 기간에 따른 원가 계산 기준율(제비율표)로 재계산합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Caption": " 기준선택", + "ParentFont": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "OnClick": "mBtn_Set_DefClick", + "ShowHint": true, + "ParentColor": false, + "Color": "clMoneyGreen", + "TabOrder": 0 + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Change", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2, + "Left": 531, + "Top": 9, + "Width": 90, + "Height": 22, + "Hint": "발주처별 별도요율 또는 사용자 임의의 요율을 입력/계산 합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Caption": "요율수정", + "ParentFont": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "OnClick": "mBtn_ChangeClick", + "ShowHint": true, + "ParentColor": false, + "Color": "clMoneyGreen", + "TabOrder": 1 + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Quit", + "flags": [], + "child_pos": null, + "properties": { + "Left": 711, + "Top": 9, + "Width": 80, + "Height": 22, + "Hint": "제비율 계산화면을 종료합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Caption": "&Q. 종료", + "OnClick": "mBtn_QuitClick", + "ShowHint": true, + "TabOrder": 2 + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Result", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3, + "Left": 621, + "Top": 9, + "Width": 90, + "Height": 22, + "Hint": "계산결과를 확인합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Caption": "결과보기", + "OnClick": "mBtn_ChangeClick", + "ShowHint": true, + "TabOrder": 4 + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_K_JeolSa", + "flags": [], + "child_pos": null, + "properties": { + "Left": 233, + "Top": 10, + "Width": 185, + "Height": 22, + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 3, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "Visible": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "간접비 절사기준을 선택하세요", + "Items.Strings": [ + "간접비 절사없음", + "간접비 10원미만 절사", + "간접비 100원미만 절사", + "간접비 1,000원미만 절사", + "간접비 10,000원미만 절사", + "간접비 100,000원미만 절사", + "간접비 1,000,000원미만 절사" + ], + "Values.Strings": [ + "간접비 절사없음", + "간접비 10원미만 절사", + "간접비 100원미만 절사", + "간접비 1,000원미만 절사", + "간접비 10,000원미만 절사", + "간접비 100,000원미만 절사", + "간접비 1,000,000원미만 절사" + ], + "OnValueChange": "Ed_R_CExit" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Chasu", + "flags": [], + "child_pos": null, + "properties": { + "Left": 111, + "Top": 10, + "Width": 120, + "Height": 22, + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 5, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "제잡비 산", + "Items.Strings": [ + " 원설계", + " 1차변경", + " 2차변경", + " 3차변경" + ], + "Values.Strings": [ + " 원설계", + " 1차변경", + " 2차변경", + " 3차변경" + ], + "OnValueChange": "cBx_ChasuValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_W_Type", + "flags": [], + "child_pos": null, + "properties": { + "Left": 273, + "Top": 10, + "Width": 141, + "Height": 22, + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 6, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "Visible": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "제잡비 계산방식", + "Items.Strings": [ + "제잡비 원가계산방식", + "제잡비 표준시장방식" + ], + "Values.Strings": [ + "제잡비 원가계산방식", + "제잡비 실적공사방식" + ], + "OnValueChange": "cBx_W_TypeValueChange" + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Rate", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2, + "Left": 441, + "Top": 9, + "Width": 90, + "Height": 22, + "Hint": "원가계산기준율(제비율)을 수정합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Caption": "제비율표", + "OnClick": "mBtn_RateClick", + "ShowHint": true, + "TabOrder": 7 + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_P_Jab", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3, + "Left": 431, + "Top": 9, + "Width": 50, + "Height": 22, + "Hint": "총괄내역서를 인쇄 합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "Enabled": false, + "Caption": "총괄", + "OnClick": "mBtn_PrintClick", + "ShowHint": true, + "Visible": false, + "TabOrder": 10 + }, + "children": [] + } + ] + }, + { + "class": "TPageControl", + "name": "Pg_Ctrl", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 413, + "Width": 804, + "Height": 237, + "ActivePage": "TbSh_TA", + "Align": "alLeft", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "HotTrack": true, + "MultiLine": true, + "ParentFont": false, + "TabIndex": 2, + "TabOrder": 2, + "TabPosition": "tpBottom", + "TabStop": false + }, + "children": [ + { + "class": "TTabSheet", + "name": "TbSh_T", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "일반형식", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [ + { + "class": "TScrollBox", + "name": "SclBx_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 796, + "Height": 212, + "HorzScrollBar.Range": 782, + "HorzScrollBar.Visible": false, + "VertScrollBar.Range": 1304, + "Align": "alClient", + "AutoScroll": false, + "Color": "clInfoBk", + "Ctl3D": true, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 0, + "OnMouseWheel": "SclBx_MouseWheel" + }, + "children": [ + { + "class": "TPanel", + "name": "Pn03_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 919, + "Width": 782, + "Height": 205, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 2 + }, + "children": [ + { + "class": "TLabel", + "name": "Label75", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 679, + "Height": 15, + "Caption": "라. 공급가액 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label76", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 부가가치세 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label13", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 공사보험료 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label15", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 45, + "Width": 664, + "Height": 15, + "Caption": " 작업설 등(△) ...................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "LR16", + "flags": [], + "child_pos": null, + "properties": { + "Left": 264, + "Top": 25, + "Width": 64, + "Height": 15, + "Caption": "X ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGGUP_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSA_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUGA_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUSAN_B_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SAGUP_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 125, + "Width": 656, + "Height": 15, + "Caption": " 사급자재대 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP2_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 125, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_R_KongSa_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 271, + "Top": 24, + "Width": 45, + "Height": 17, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label9", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 105, + "Width": 656, + "Height": 15, + "Caption": " 비과세자재대 ...................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_NBUGAM_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 105, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label55", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 85, + "Width": 656, + "Height": 15, + "Caption": " 매입세 .........................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PURCHAS_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 85, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add03_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 145, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 5, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KongSa_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 130, + "Left": 129, + "Top": 22, + "Width": 130, + "Height": 19, + "Hint": "공사손해보험료 적용액(기본:공급가액+관/사급내용)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_KongSa_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 337, + "Top": 25, + "Width": 105, + "Height": 17, + "Hint": "공사손해보험료를 임의적용(기본:공급가액+관/사급내용)", + "Caption": "별도비용적용", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_BUGA_UP_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 129, + "Top": 65, + "Width": 203, + "Height": 17, + "Caption": "1원보정 (계산결과+1원)", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 3, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_MBuga_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 361, + "Top": 62, + "Width": 140, + "Height": 19, + "Hint": "직접재료비에 포함된 금액중 면세품목의 금액을 입력하십시요.", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Jeol_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 500, + "Left": 444, + "Top": 3, + "Width": 135, + "Hint": "공급가액 및 공사손해보험료 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "공급가액절사기준", + "Items.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn01_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 0, + "Width": 782, + "Height": 629, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 0 + }, + "children": [ + { + "class": "TLabel", + "name": "Label47", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 711, + "Height": 15, + "Caption": "나. 순공사원가(ㄱ+ㄴ+ㄷ)........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label48", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 27, + "Width": 648, + "Height": 15, + "Caption": " ㄱ. 재 료 비 ..................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label49", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 47, + "Width": 656, + "Height": 15, + "Caption": " ㄴ. 노 무 비 ...................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label50", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 67, + "Width": 616, + "Height": 15, + "Caption": " 1) 직접노무비 .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label51", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 107, + "Width": 616, + "Height": 15, + "Caption": " 2) 간접노무비<ㄴ.1)직접노무비 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label52", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 129, + "Width": 648, + "Height": 15, + "Caption": " ㄷ. 경 비 ..................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label53", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 149, + "Width": 600, + "Height": 15, + "Caption": " 1) 내역서경비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label54", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 169, + "Width": 616, + "Height": 15, + "Caption": " 2) 산재보험료< ㄴ.노 무 비 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_ANJUN_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 289, + "Width": 658, + "Height": 13, + "Caption": " 8) 산업안전보건관리비<(직.간재+직노+(관급+사급)/1.1 -내역서안전관리비) x ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label56", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 309, + "Width": 608, + "Height": 15, + "Caption": " + 천원 > .....................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label57", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 409, + "Width": 600, + "Height": 15, + "Caption": " 11) 기타 경비<ㄱ+ㄴ × ○○ %> ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "tmBae", + "flags": [], + "child_pos": null, + "properties": { + "Left": 342, + "Top": 309, + "Width": 64, + "Height": 15, + "Caption": "의 1.2배", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label10", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 189, + "Width": 616, + "Height": 15, + "Caption": " 3) 고용보험료< ㄴ.노 무 비 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_TBUGUM_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 269, + "Width": 624, + "Height": 15, + "Caption": " 7) 퇴직공제부금비<ㄴ.1)직접노무비 × ○○ %> ........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_T_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DAMT_M_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 27, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 209, + "Width": 616, + "Height": 15, + "Caption": " 4) 건강보험료<ㄴ.1)직접노무비 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_L_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 47, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_S_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 129, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DAMT_L_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 67, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KANNO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 107, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DAMT_S_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 149, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SANBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 169, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KOBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 189, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 309, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KITA_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 409, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TBUGUM_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 269, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_YUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 249, + "Width": 616, + "Height": 15, + "Caption": " 6) 연금보험료<ㄴ.1)직접노무비 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label64", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 429, + "Width": 616, + "Height": 15, + "Caption": " 12) 공사이행 수수료< ○○○ 천원 + (직접공사비- 억원) × ○○ %>", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label65", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 469, + "Width": 600, + "Height": 15, + "Caption": " 13) 하도대금 수수료<(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label66", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 489, + "Width": 600, + "Height": 15, + "Caption": " 14) 환 경 보 전 비 <(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 209, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_YUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 249, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HADOSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 469, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Disp_Y_KONGSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 358, + "Top": 449, + "Width": 272, + "Height": 15, + "Caption": " × 공기( 0.0)년 .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 449, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_Y_KONGSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 428, + "Top": 447, + "Width": 36, + "Height": 19, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.0", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HWAN_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 489, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 187, + "Width": 20, + "Height": 19, + "Hint": "공사예정금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 267, + "Width": 20, + "Height": 19, + "Hint": "공사예정(추정)금액 1억원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 287, + "Width": 20, + "Height": 19, + "Hint": "공사금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton4", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 427, + "Width": 20, + "Height": 19, + "Hint": "최저가,기술제안, 추정가격 300억이상 PQ대상공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton5", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 467, + "Width": 20, + "Height": 19, + "Hint": " 토목및 산업설비, 건축공사, 턴키(대안)공사 의\r\n 추정가격 ~50, 50~100억, 100~300, 300~ (억원)을 기준으로적용 \r\n * 적용제외: 전문공사, 국가유산수리공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton15", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 167, + "Width": 20, + "Height": 19, + "Hint": "(공사예정금액-부가가치세-관,사급부가세) 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_DSAMT_M_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 142, + "Top": 30, + "Width": 198, + "Height": 12, + "Caption": "(내역:1,000,000 + 사급:1,000,000)", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SLVBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 229, + "Width": 616, + "Height": 15, + "Caption": " 5) 장기요양보험료<(4)건강보험료 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SLVBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 229, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_ANJUN2_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 14, + "Top": 329, + "Width": 618, + "Height": 12, + "Caption": " (직.간재+직노+ 관급/1.1+사급재 -내역서안전관리비) x 3.15 % + 12,345 천원 .............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_ANJUN1_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 14, + "Top": 349, + "Width": 624, + "Height": 12, + "Caption": " <(직.간재+직노 -내역서안전관리비) x 3.15 % + 12,345 천원 > 의 1.2배 ......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN2_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 539, + "Top": 328, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN1_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 539, + "Top": 348, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun2_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 410, + "Top": 327, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun2_G_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 469, + "Top": 327, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun1_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 308, + "Top": 347, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun1_G_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 367, + "Top": 347, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJun2_K_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 184, + "Top": 327, + "Width": 96, + "Height": 16, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton25", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 407, + "Width": 20, + "Height": 19, + "Hint": "기타경비 : 수도광열비, 복리후생비, 소모품비 및 사무용품비, 여비·교통통신비,\r\n 세금과 공과, 도서인쇄비, 지급수수료", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label187", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 509, + "Width": 600, + "Height": 15, + "Caption": " 15) 건설기계 대여금<(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EQIPSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 509, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label12", + "flags": [], + "child_pos": null, + "properties": { + "Left": 105, + "Top": 87, + "Width": 504, + "Height": 12, + "Hint": "※※※ 일반적인 방법의 도서할증은 누무비 단가에 할증값을 반영합니다.\r\n ☆☆ 특수한 경우에만 본 제잡비 항목에 입력하십시요.", + "Caption": " 도 서 할 증 <내역서노무비 × ○○ %> ...........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DoseoH_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 488, + "Top": 87, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_DSAMT_L_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 70, + "Width": 222, + "Height": 12, + "Caption": "(내역:1,000,000 + 도서할증:1,000,000)", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton27", + "flags": [], + "child_pos": null, + "properties": { + "Left": 656, + "Top": 328, + "Width": 35, + "Height": 33, + "Action": "Act_Sel_Small", + "Flat": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label44", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 369, + "Width": 600, + "Height": 15, + "Caption": " 9) 안전관리비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_B_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 369, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label79", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 389, + "Width": 600, + "Height": 15, + "Caption": " 10) 품질관리비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PUMJIL_B_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 389, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_AnPum_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 370, + "Width": 187, + "Height": 32, + "Hint": "안전관리비, 품질관리비의 산출경비로 제외 옵션은\r\n상단【 계산/인쇄 설정 】에서 수정할 수 있습니다.", + "AutoSize": false, + "Caption": "( 산 출 경 비 로 포 함 ) \r\n( 산출경비 = 내역서경비 + α )", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "Layout": "tlCenter", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_DAMT_S_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 174, + "Top": 150, + "Width": 138, + "Height": 12, + "Caption": "(산출경비 = 1,000,000 )", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label201", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 529, + "Width": 616, + "Height": 15, + "Caption": " 16) 석면분담금 < ㄴ.노 무 비 × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_SM_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 529, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label202", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 549, + "Width": 616, + "Height": 15, + "Caption": " 17) 임금채권부담금 < ㄴ.노 무 비 × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_IC_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 549, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add01_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 569, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 24, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 46, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 452, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 152, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KanNo_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 370, + "Top": 104, + "Width": 45, + "Height": 19, + "Hint": "간접노무비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SanBo_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 376, + "Top": 166, + "Width": 47, + "Height": 19, + "Hint": "산재보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KoBo_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 376, + "Top": 186, + "Width": 39, + "Height": 19, + "Hint": "고용보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJun_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 618, + "Top": 286, + "Width": 46, + "Height": 19, + "Hint": "안전관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 12, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KiTa_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 287, + "Top": 406, + "Width": 54, + "Height": 19, + "Hint": "기타경비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 15, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_TBuGum_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 151, + "Left": 376, + "Top": 266, + "Width": 39, + "Height": 19, + "Hint": "퇴직부금비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 10, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Hwan_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 486, + "Width": 39, + "Height": 19, + "Hint": "환경보전비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 20, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_AnJun_G_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 217, + "Top": 306, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 13, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_K_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 330, + "Top": 286, + "Width": 143, + "Height": 19, + "Ctl3D": false, + "TabOrder": 11, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관/사급비 지정", + "Items.Strings": [ + "없음", + "관급/사급 내용", + "사급자재대" + ], + "Values.Strings": [ + "없음", + "관급/사급 내용", + "사급자재대" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_B_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 336, + "Top": 306, + "Width": 90, + "Height": 19, + "Ctl3D": false, + "TabOrder": 14, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "Items.Strings": [ + "", + "의 1.2배" + ], + "Values.Strings": [ + "", + "의 1.2배" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 376, + "Top": 206, + "Width": 47, + "Height": 19, + "Hint": "건강보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 6, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_YUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 376, + "Top": 246, + "Width": 39, + "Height": 19, + "Hint": "연금보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 9, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KONGSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 558, + "Top": 426, + "Width": 55, + "Height": 19, + "Hint": "공사이행보증수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 18, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "f38e53742497ff9f0240" + }, + "Precision": 4, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_HADOSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 466, + "Width": 47, + "Height": 19, + "Hint": "건설하도대금지급보증서발급수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 19, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_A_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 229, + "Top": 426, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 16, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_KUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 185, + "Top": 206, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 5, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "건강보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_YUNBO_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 185, + "Top": 246, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 8, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "연금보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SlvBo_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 368, + "Top": 226, + "Width": 47, + "Height": 19, + "Hint": "노인장기요양보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 7, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_EQIPSU_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 423, + "Top": 506, + "Width": 39, + "Height": 19, + "Hint": "건설기계대여대금 지급보증서발급금액 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 21, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_MA_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 448, + "Top": 426, + "Width": 46, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 17, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "Value": 9999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_Anjun_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 20, + "Top": 286, + "Width": 700, + "Height": 78, + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 25, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label63", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 3, + "Width": 518, + "Height": 13, + "Caption": " 8) 산업안전보건관리비< 설계변경전의 안전관리비 + 설계변경으로 인한 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label67", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 23, + "Width": 616, + "Height": 15, + "Caption": " 안전관리비 증감액 > ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_T1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 500, + "Top": 23, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label70", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 43, + "Width": 612, + "Height": 12, + "Caption": " ○ 설계변경으로 인한 안전관리비 증감액 = 설계변경 전의 안전관리비 × 대상액의 증감 비율 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label97", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 63, + "Width": 648, + "Height": 12, + "Caption": " ○ 대상액의 증감 비율 = [(설계변경후 대상액 - 설계변경 전 대상액) / 설계변경 전 대상액] × 100% ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_DoseoH_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 370, + "Top": 84, + "Width": 45, + "Height": 19, + "Hint": " ※※ 일반적인 방법 ※※\r\n 노무비의 도서할증비는 단가목록표의 노무비할증 기능을 이용하여 \r\n 노무비단가에 할증비율을 곱하여 계산하지만, \r\n \r\n ☆☆ 일반적이지 않은 방법 ☆☆ \r\n 내역서 노무비금액에 할증요율을 곱하여 적용할 때 입력합니다. \r\n < 도서할증비 = 내역서노우비 x 도서할증 요율 > ", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabStop": false, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "cBx_DoSeoH_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 168, + "Top": 84, + "Width": 17, + "Height": 17, + "Hint": "※※※ 일반적인 방법의 도서할증은 누무비 단가에 할증값을 반영합니다.\r\n ☆☆ 특수한 경우에만 본 제잡비 항목에 입력하십시요.", + "TabStop": false, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "OnClick": "cBx_DoSeoH_TClick" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Pn_EIS_T1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 84, + "Width": 683, + "Height": 20, + "BevelOuter": "bvNone", + "Ctl3D": false, + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 26, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label199", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 2, + "Width": 624, + "Height": 15, + "Caption": " Ⅰ 주휴수당 <고용개선, 정산, 일부제경비에 반영>.........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_HoliLAB_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 498, + "Top": 2, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_SM_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 423, + "Top": 526, + "Width": 47, + "Height": 19, + "Hint": "석면분담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 22, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_IC_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 423, + "Top": 546, + "Width": 47, + "Height": 19, + "Hint": "임금채권부담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 23, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pn02_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 629, + "Width": 782, + "Height": 290, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 1 + }, + "children": [ + { + "class": "TLabel", + "name": "Label58", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 664, + "Height": 15, + "Caption": "5) 일반관리비<( 나.순공사원가 + 관리품목자재대 ) × ○○ %> .....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label59", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 30, + "Width": 679, + "Height": 15, + "Caption": "다.소 계 <나.순공사원가 + 5)일반관리비> ...........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label60", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 50, + "Width": 680, + "Height": 15, + "Caption": "6) 이윤<(다.소계-재료비) ×15.00000 %>-........................................" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ILBAN_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TOT_1_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 30, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_IYUN_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 50, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_R_IYUN_C_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 469, + "Top": 50, + "Width": 88, + "Height": 15, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Alignment": "taLeftJustify", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#0.00000", + "IsNull": false, + "Prefix": "(≒ ", + "Suffix": "%)" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label61", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 130, + "Width": 672, + "Height": 15, + "Caption": " 사급자재대 .......................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP1_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 130, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iLBan_Hint_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 3, + "Width": 20, + "Height": 19, + "Hint": "공사규모 : 추정가격\r\n 지방: ~50, 50~300, 300~1000, 1000~ (억원)\r\n 국가: ~5, 5~30, 30~300, 300~1000, 1000~ (억원)\r\n을 기준으로적용 (단 전문공사: 1/10 규모)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iYun_Hint_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 48, + "Width": 20, + "Height": 19, + "Hint": "추정가격 ~50, 50~300, 300~1000, 1000~ (억원)을 기준으로적용", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label167", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 70, + "Width": 664, + "Height": 15, + "Caption": " 건설공사안전점검비< (나.순공사원가+관급/1.1+사급재) × ○○ %>..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUNP_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 70, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJunP_K_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 317, + "Top": 68, + "Width": 122, + "Height": 19, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0 + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label113", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 90, + "Width": 672, + "Height": 15, + "Caption": " 미확정설계공종(PS) ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PSAMT_B_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 90, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label154", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 110, + "Width": 672, + "Height": 15, + "Caption": " 제비율적용제외공종 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EXCEPT_B_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 110, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_ILBan_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 437, + "Top": 2, + "Width": 45, + "Height": 19, + "Hint": "일반관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Iyun_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 280, + "Top": 47, + "Width": 68, + "Height": 19, + "Hint": "이윤 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 7, + "MaxValue": { + "extended_hex": "c971a774b0feffc70540" + }, + "Precision": 5, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_IYUN_M_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 383, + "Top": 47, + "Width": 87, + "Height": 19, + "Hint": "이윤 보정액", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 9, + "MaxValue": 999999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_K_MAT_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 277, + "Top": 2, + "Width": 118, + "Height": 19, + "Hint": "관리품목 자재대( 시멘트, 철근 등.. )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_IYUN_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 46, + "Top": 49, + "Width": 69, + "Height": 17, + "Ctl3D": false, + "TabOrder": 2, + "Alignment": "taCenter", + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "이윤표기", + "Items.Strings": [ + "이윤", + "수수료" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "Ed_C_IYUN_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJunP_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 478, + "Top": 67, + "Width": 45, + "Height": 19, + "Hint": "건설공사 안전점검비(건설공사 안전관리 지침) 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 5, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Pn_EIS_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 150, + "Width": 740, + "Height": 80, + "BevelOuter": "bvNone", + "Ctl3D": false, + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 7 + }, + "children": [ + { + "class": "TLabel", + "name": "Lb_EIS_SupPay_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 1, + "Width": 672, + "Height": 15, + "Caption": " 고용개선지원비 (PS단가) <주휴수당 + 사회보험 + 장려금>...........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_SupPay_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 523, + "Top": 0, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lb_EIS_HoliPay_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 33, + "Top": 23, + "Width": 616, + "Height": 13, + "Caption": " 주휴수당< 직접노무비 × ○○ % × ○○ % × 1.4(제경비)>............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_HoliPay_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 493, + "Top": 23, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lb_EIS_SocInsu_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 33, + "Top": 42, + "Width": 616, + "Height": 13, + "Caption": " 국민연금,건강보험료< 직접노무비 × ○○ % × ○○ %>................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_SocInsu_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 493, + "Top": 42, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lb_EIS_IncMoney_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 33, + "Top": 61, + "Width": 616, + "Height": 13, + "Caption": " 고용개선장려금 < 주휴수당 설계반영 금액의 × ○○ %>................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_IncMoney_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 493, + "Top": 61, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_R_SocIR1_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 281, + "Top": 39, + "Width": 51, + "Height": 19, + "Hint": "서울시 고용개선 지원비 \r\n 사회보험(국민연금,건강보험)지원비 요율", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "IsNull": false, + "Value": { + "extended_hex": "08ac1c5a643bdfa90340" + } + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_HoliR1_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 209, + "Top": 20, + "Width": 45, + "Height": 18, + "Hint": "서울시 고용개선 지원비 \r\n 주휴수당 원가반영 비율", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_HoliR2_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 286, + "Top": 20, + "Width": 45, + "Height": 18, + "Hint": "서울시 고용개선 지원비 \r\n 주휴수당 예산편성 반영비율", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 999, + "Precision": 1, + "Value": 50, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SocIR2_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 364, + "Top": 39, + "Width": 45, + "Height": 18, + "Hint": "서울시 고용개선 지원비 \r\n 사회보험(국민연금,건강보험)지원비 예산편성 반영비율", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 999, + "Precision": 1, + "Value": 50, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Incent_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 364, + "Top": 58, + "Width": 45, + "Height": 18, + "Hint": "서울시 고용개선 지원비 \r\n 고용개선장려금 예산편성 반영비율", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 999, + "Precision": 1, + "Value": 50, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TRealGrid", + "name": "Disp_Add02_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 230, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 6, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 19, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Pn_EIS_T2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 170, + "Width": 740, + "Height": 40, + "BevelOuter": "bvNone", + "Ctl3D": false, + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 8, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label197", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 672, + "Height": 15, + "Caption": " 국민연금,건강보험료 <고용개선지원비, 정산>........................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_SocInsu_T2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 523, + "Top": 0, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label198", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 20, + "Width": 672, + "Height": 15, + "Caption": " 고용개선장려금 <고용개선지원비, 정산>........................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EIS_IncMoney_T2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 523, + "Top": 20, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TPanel", + "name": "Pn04_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1124, + "Width": 782, + "Height": 145, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 3 + }, + "children": [ + { + "class": "TLabel", + "name": "Label78", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 678, + "Height": 15, + "Caption": "마. 도급공사비 .............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_D_T_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(도급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DOGUP_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 17, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 도급공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"20%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_DOGUP_DblClick" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_D_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SAGUP_T_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 사급자재대 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_K_T_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 45, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(관급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_K_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add04_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 85, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_DOGUP_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 54, + "Top": 5, + "Width": 115, + "Height": 17, + "Ctl3D": false, + "TabOrder": 1, + "Alignment": "taCenter", + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "도급공사비표기", + "Items.Strings": [ + "도급공사비", + "도급예정액" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "Ed_C_DOGUP_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_Jeol_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 23, + "Width": 135, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 2, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_UPDN_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 23, + "Width": 60, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 3, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_DOGUP_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 575, + "Top": 5, + "Width": 160, + "Height": 17, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_Jeol_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 44, + "Width": 135, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 5, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_UPDN_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 44, + "Width": 60, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 6, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn05_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1269, + "Width": 782, + "Height": 35, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 4 + }, + "children": [ + { + "class": "TLabel", + "name": "Label89", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 10, + "Width": 661, + "Height": 15, + "Caption": "바. 총공사비 ........................................... + ...............", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TOTAL_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 7, + "Width": 178, + "Height": 20, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 총공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"20%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_TOTAL_DblClick" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Tot_Jeol_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 700, + "Left": 388, + "Top": 7, + "Width": 135, + "Hint": "총공사비 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.\r\n\r\n도급액 버림기준(기본기준 변경)을 선택하면 \r\n총공사비 조정기준을 선택할 수 없습니다.", + "Ctl3D": false, + "TabOrder": 1, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "총공사비절사기준", + "Items.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "cBx_Tot_Add_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 542, + "Top": 7, + "Width": 31, + "Height": 20, + "Hint": "총 공사비 절사 후 보정금액을 선택합니다.\r\n보정금액 : 입력값 * 절사기준 / 10 ", + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 1, + "MaxValue": 9, + "Spinner": true, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyDown": "cBx_Tot_Add_TKeyDown", + "OnKeyPress": "Ed_KeyPress", + "OnChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "cBx_TOTAL_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 136, + "Top": 12, + "Width": 97, + "Height": 17, + "Hint": "도급공사비 이후 추가금액이 없어도 총공사비를 인쇄합니다.", + "Caption": "(항상인쇄)", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_TOTAL_T", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 20, + "Left": 575, + "Top": 7, + "Width": 160, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "TbSh_S", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "수공형식", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ImageIndex": 1, + "ParentFont": false + }, + "children": [ + { + "class": "TScrollBox", + "name": "SclBx_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 796, + "Height": 212, + "HorzScrollBar.Range": 782, + "HorzScrollBar.Visible": false, + "VertScrollBar.Range": 1234, + "Align": "alClient", + "AutoScroll": false, + "Color": "clInfoBk", + "Ctl3D": true, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 0, + "OnMouseWheel": "SclBx_MouseWheel" + }, + "children": [ + { + "class": "TPanel", + "name": "Pn03_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 889, + "Width": 782, + "Height": 165, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 3 + }, + "children": [ + { + "class": "TLabel", + "name": "Label14", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 671, + "Height": 15, + "Caption": "4. 공급가액 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label17", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 부가가치세 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label19", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 공사보험료 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label20", + "flags": [], + "child_pos": null, + "properties": { + "Left": 264, + "Top": 25, + "Width": 64, + "Height": 15, + "Caption": "X ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSA_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUGA_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_R_KongSa_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 271, + "Top": 24, + "Width": 45, + "Height": 16, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label155", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 45, + "Width": 656, + "Height": 15, + "Caption": " 작업설 등(△) ..................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUSAN_B_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label77", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 85, + "Width": 656, + "Height": 15, + "Caption": " 매입세 .........................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PURCHAS_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 85, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add03_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 105, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 5, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KongSa_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 130, + "Left": 129, + "Top": 22, + "Width": 130, + "Height": 19, + "Hint": "공사손해보험료 적용액(기본:공급가액+관/사급내용)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_KongSa_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 337, + "Top": 25, + "Width": 105, + "Height": 17, + "Hint": "공사손해보험료를 임의적용(기본:공급가액+관/사급내용)", + "Caption": "별도비용적용", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_BUGA_UP_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 129, + "Top": 65, + "Width": 203, + "Height": 17, + "Caption": "1원보정 (계산결과+1원)", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 3, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_MBuga_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 361, + "Top": 62, + "Width": 140, + "Height": 19, + "Hint": "직접재료비에 포함된 금액중 면세품목의 금액을 입력하십시요.", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Jeol_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 500, + "Left": 444, + "Top": 3, + "Width": 135, + "Hint": "공급가액 및 공사손해보험료 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "공급가액절사기준", + "Items.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn01_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 0, + "Width": 782, + "Height": 689, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 0 + }, + "children": [ + { + "class": "TLabel", + "name": "Label21", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 712, + "Height": 15, + "Caption": "1. 순공사원가(가+나+다).........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label22", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 27, + "Width": 640, + "Height": 15, + "Caption": " 가. 순 공 사 비 ..............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label23", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 47, + "Width": 696, + "Height": 15, + "Caption": " 나. 간접노무비 <(직접노무비) × ○○ %> ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label24", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 69, + "Width": 648, + "Height": 15, + "Caption": " 다. 경 비 ..................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label25", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 309, + "Width": 600, + "Height": 15, + "Caption": " 9) 품질관리비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label26", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 89, + "Width": 616, + "Height": 15, + "Caption": " 1) 산재보험료<(직접노무비+간접노무비) × ○○ %> .....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label27", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 209, + "Width": 616, + "Height": 15, + "Caption": " 7) 산업안전보건관리비<(직재+간재 + 직노 + ) x ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label30", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 229, + "Width": 608, + "Height": 15, + "Caption": " + 천원 > .....................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label32", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 289, + "Width": 592, + "Height": 15, + "Caption": " 8) 안전관리비 <별도내역> ......................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label33", + "flags": [], + "child_pos": null, + "properties": { + "Left": 342, + "Top": 229, + "Width": 64, + "Height": 15, + "Caption": "의 1.2배", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label35", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 109, + "Width": 624, + "Height": 15, + "Caption": " 2) 고용보험료<(직접노무비+간접노무비) × ○○ %> ......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_TBUGUM_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 189, + "Width": 632, + "Height": 15, + "Caption": " 6) 퇴직공제부금비<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_T_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DAMT_T_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 27, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label37", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 549, + "Width": 608, + "Height": 15, + "Caption": " 20) 환경보전비<(재료비 + 직노 + 산출경비) × ○○ %> ................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KANNO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 47, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_S_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 69, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PUMJIL_B_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 309, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SANBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 89, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KOBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 109, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 229, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_B_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 289, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TBUGUM_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 189, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HWAN_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 549, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label38", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 329, + "Width": 624, + "Height": 15, + "Caption": " 10) 수도 광열비 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label39", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 349, + "Width": 624, + "Height": 15, + "Caption": " 11) 복리 후생비 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label40", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 369, + "Width": 624, + "Height": 15, + "Caption": " 12) 소모품및 사무용품비<(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label120", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 389, + "Width": 624, + "Height": 15, + "Caption": " 13) 여비,교통비,통신비 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label122", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 409, + "Width": 624, + "Height": 15, + "Caption": " 14) 세금,공과금 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label124", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 429, + "Width": 624, + "Height": 15, + "Caption": " 15) 폐기물처리비 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label126", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 449, + "Width": 624, + "Height": 15, + "Caption": " 16) 도서 인쇄비 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label128", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 469, + "Width": 624, + "Height": 15, + "Caption": " 17) 지급 수수료 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SUDO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 329, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BOKRI_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 349, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SOMO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 369, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TONGSIN_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 389, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_JIGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 469, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DOSEO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 449, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PEGI_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 429, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SEGUM_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 409, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 129, + "Width": 632, + "Height": 15, + "Caption": " 3) 건강보험료<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_YUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 169, + "Width": 632, + "Height": 15, + "Caption": " 5) 연금보험료<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 129, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_YUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 169, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label71", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 489, + "Width": 616, + "Height": 15, + "Caption": " 18) 공사이행 수수료< ○○○ 천원 + (직접공사비- 억원) × ○○ %>", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label72", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 529, + "Width": 600, + "Height": 15, + "Caption": " 19) 하도대금 수수료<(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HADOSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 529, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label73", + "flags": [], + "child_pos": null, + "properties": { + "Left": 358, + "Top": 509, + "Width": 272, + "Height": 15, + "Caption": " × 공기( 0.0)년 .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 509, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_Y_KONGSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 428, + "Top": 507, + "Width": 36, + "Height": 19, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.0", + "IsNull": false + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton8", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 107, + "Width": 20, + "Height": 19, + "Hint": "공사예정금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton9", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 187, + "Width": 20, + "Height": 19, + "Hint": "공사예정(추정)금액 1억원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton10", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 207, + "Width": 20, + "Height": 19, + "Hint": "공사금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton11", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 487, + "Width": 20, + "Height": 19, + "Hint": "최저가,기술제안, 추정가격 300억이상 PQ대상공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton12", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 527, + "Width": 20, + "Height": 19, + "Hint": " 토목및 산업설비, 건축공사, 턴키(대안)공사 의\r\n 추정가격 ~50, 50~100억, 100~300, 300~ (억원)을 기준으로적용 \r\n * 적용제외: 전문공사, 국가유산수리공사 ", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton16", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 87, + "Width": 20, + "Height": 19, + "Hint": "(공사예정금액-부가가치세-관,사급부가세) 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SLVBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 149, + "Width": 608, + "Height": 15, + "Caption": " 4) 장기요양보험료<(4)건강보험료 × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SLVBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 149, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label6", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 249, + "Width": 612, + "Height": 12, + "Caption": " (직.간재+직노 + 관급/1.1+사급재 ) x 3.15 % + 12,345 천원 ............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label16", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 269, + "Width": 612, + "Height": 12, + "Caption": " <(직.간재+직노) x 3.15 % + 12,345 천원 > 의 1.2배 ......................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN2_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 540, + "Top": 249, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN1_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 540, + "Top": 269, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun2_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 321, + "Top": 247, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun2_G_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 380, + "Top": 247, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun1_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 207, + "Top": 267, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun1_G_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 266, + "Top": 267, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJun2_K_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 200, + "Top": 247, + "Width": 100, + "Height": 16, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label188", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 569, + "Width": 600, + "Height": 15, + "Caption": " 21) 건설기계 대여금<(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EQIPSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 569, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton28", + "flags": [], + "child_pos": null, + "properties": { + "Left": 656, + "Top": 249, + "Width": 35, + "Height": 33, + "Action": "Act_Sel_Small", + "Flat": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_AnPum_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 290, + "Width": 187, + "Height": 32, + "Hint": "안전관리비, 품질관리비의 산출경비로 제외 옵션은\r\n상단【 계산/인쇄 설정 】에서 수정할 수 있습니다.", + "AutoSize": false, + "Caption": "( 산 출 경 비 로 포 함 ) \r\n( 산출경비 = 내역서경비 + α )", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "Layout": "tlCenter", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label203", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 589, + "Width": 616, + "Height": 15, + "Caption": " 22) 석면분담금 <(직노 + 간노) × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_SM_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 589, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label204", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 609, + "Width": 616, + "Height": 15, + "Caption": " 23) 임금채권부담금 <(직노 + 간노) × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_IC_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 609, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add01_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 629, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 29, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 46, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 452, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 152, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KanNo_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 391, + "Top": 44, + "Width": 45, + "Height": 19, + "Hint": "간접노무비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SanBo_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 390, + "Top": 86, + "Width": 47, + "Height": 19, + "Hint": "산재보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KoBo_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 390, + "Top": 106, + "Width": 39, + "Height": 19, + "Hint": "고용보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJun_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 574, + "Top": 206, + "Width": 46, + "Height": 19, + "Hint": "안전관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 10, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_TBuGum_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 151, + "Left": 390, + "Top": 186, + "Width": 39, + "Height": 19, + "Hint": "퇴직부금비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 8, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Hwan_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 546, + "Width": 38, + "Height": 19, + "Hint": "환경보전비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 25, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_AnJun_G_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 217, + "Top": 226, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 11, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_K_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 399, + "Top": 206, + "Width": 143, + "Height": 19, + "Ctl3D": false, + "TabOrder": 9, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관/사급비 지정", + "Items.Strings": [ + "없음", + "관급/사급 내용" + ], + "Values.Strings": [ + "없음", + "관급/사급 내용" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_B_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 336, + "Top": 226, + "Width": 90, + "Height": 19, + "Ctl3D": false, + "TabOrder": 12, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "Items.Strings": [ + "", + "의 1.2배" + ], + "Values.Strings": [ + "", + "의 1.2배" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SUDO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 326, + "Width": 47, + "Height": 19, + "Hint": "기타경비-수도광열비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 13, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BOKRI_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 346, + "Width": 47, + "Height": 19, + "Hint": "기타경비-복리후생비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 14, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_TONGSIN_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 386, + "Width": 47, + "Height": 19, + "Hint": "기타경비-여비,교통비,소모품 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 16, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SOMO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 366, + "Width": 47, + "Height": 19, + "Hint": "기타경비-소모품 및 사무용품비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 15, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_JIGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 466, + "Width": 47, + "Height": 19, + "Hint": "기타경비-지급수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 20, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_DOSEO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 446, + "Width": 47, + "Height": 19, + "Hint": "기타경비-도서인쇄비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 19, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SEGUM_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 406, + "Width": 47, + "Height": 19, + "Hint": "기타경비-세금,공과금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 17, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_PEGI_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 426, + "Width": 47, + "Height": 19, + "Hint": "기타경비-폐기물처리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 18, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 390, + "Top": 126, + "Width": 47, + "Height": 19, + "Hint": "건강보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_YUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 390, + "Top": 166, + "Width": 39, + "Height": 19, + "Hint": "연금보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 7, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_KUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 185, + "Top": 126, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 3, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "건강보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_YUNBO_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 185, + "Top": 166, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 6, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "연금보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KONGSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 558, + "Top": 486, + "Width": 55, + "Height": 19, + "Hint": "공사이행수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 23, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "f38e53742497ff9f0240" + }, + "Precision": 4, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_HADOSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 526, + "Width": 47, + "Height": 19, + "Hint": "건설하도대금지급보증서발급료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 24, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_A_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 229, + "Top": 486, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 21, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SlvBo_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 382, + "Top": 146, + "Width": 47, + "Height": 19, + "Hint": "노인장기요양보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 5, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_EQIPSU_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 566, + "Width": 38, + "Height": 19, + "Hint": "건설하도대금지급보증서발급료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 26, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_MA_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 448, + "Top": 486, + "Width": 46, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "Value": 9999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_Anjun_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 20, + "Top": 206, + "Width": 700, + "Height": 78, + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 30, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label98", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 3, + "Width": 518, + "Height": 13, + "Caption": " 7) 산업안전보건관리비< 설계변경전의 안전관리비 + 설계변경으로 인한 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label104", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 23, + "Width": 616, + "Height": 15, + "Caption": " 안전관리비 증감액 > ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_S1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 500, + "Top": 23, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label106", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 43, + "Width": 612, + "Height": 12, + "Caption": " ○ 설계변경으로 인한 안전관리비 증감액 = 설계변경 전의 안전관리비 × 대상액의 증감 비율 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label107", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 63, + "Width": 648, + "Height": 12, + "Caption": " ○ 대상액의 증감 비율 = [(설계변경후 대상액 - 설계변경 전 대상액) / 설계변경 전 대상액] × 100% ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_SM_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 586, + "Width": 47, + "Height": 19, + "Hint": "석면분담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 27, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_IC_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 606, + "Width": 47, + "Height": 19, + "Hint": "임금채권부담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 28, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pn02_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 689, + "Width": 782, + "Height": 180, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 1 + }, + "children": [ + { + "class": "TLabel", + "name": "Label41", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 682, + "Height": 15, + "Caption": "2. 일반관리비<(순공사비+간접노무비+경비) × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label42", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 30, + "Width": 622, + "Height": 15, + "Caption": "3. 이윤<(순공사원가+일반관리비-재료비)× 5.500 %> - .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ILBAN_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_IYUN_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 30, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iLBan_Hint_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 3, + "Width": 20, + "Height": 19, + "Hint": "공사규모 : 추정가격\r\n 지방: ~50, 50~300, 300~1000, 1000~ (억원)\r\n 국가: ~5, 5~30, 30~300, 300~1000, 1000~ (억원)\r\n을 기준으로적용 (단 전문공사: 1/10 규모)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iYun_Hint_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 28, + "Width": 20, + "Height": 19, + "Hint": "추정가격 ~50, 50~300, 300~1000, 1000~ (억원)을 기준으로적용", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label168", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 50, + "Width": 680, + "Height": 15, + "Caption": " 건설공사안전점검비<(순공사원가 + 관급/1.1+사급재) × ○○ %>......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUNP_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 50, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJunP_K_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 299, + "Top": 48, + "Width": 122, + "Height": 19, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0 + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label159", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 70, + "Width": 672, + "Height": 15, + "Caption": " 미확정설계공종(PS) ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label163", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 90, + "Width": 672, + "Height": 15, + "Caption": " 제비율적용제외공종 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PSAMT_B_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 70, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EXCEPT_B_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 90, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add02_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 110, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 4, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_ILBan_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 465, + "Top": 2, + "Width": 45, + "Height": 19, + "Hint": "일반관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Iyun_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 369, + "Top": 27, + "Width": 68, + "Height": 19, + "Hint": "이윤 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 7, + "MaxValue": { + "extended_hex": "c971a774b0feffc70540" + }, + "Precision": 5, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_IYUN_M_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 486, + "Top": 27, + "Width": 87, + "Height": 19, + "Hint": "이윤 보정액", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 9, + "MaxValue": 999999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJunP_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 460, + "Top": 47, + "Width": 45, + "Height": 19, + "Hint": "건설공사 안전점검비(건설공사 안전관리 지침) 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn04_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1054, + "Width": 782, + "Height": 145, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 4 + }, + "children": [ + { + "class": "TLabel", + "name": "Label43", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 670, + "Height": 15, + "Caption": "5. 도급공사비 .............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_D_S_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(도급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DOGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 17, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 도급공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"20%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_DOGUP_DblClick" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_D_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SAGUP_S_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 사급자재대 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_K_S_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 45, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(관급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_K_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add04_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 85, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_DOGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 46, + "Top": 5, + "Width": 115, + "Height": 17, + "Ctl3D": false, + "TabOrder": 1, + "Alignment": "taCenter", + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "도급공사비표기", + "Items.Strings": [ + "도급공사비", + "도급예정액" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "Ed_C_DOGUP_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_Jeol_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 23, + "Width": 135, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 2, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_UPDN_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 23, + "Width": 60, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 3, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_DOGUP_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 575, + "Top": 5, + "Width": 160, + "Height": 17, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_Jeol_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 44, + "Width": 135, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 5, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_UPDN_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 44, + "Width": 60, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 6, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn05_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1199, + "Width": 782, + "Height": 35, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 5 + }, + "children": [ + { + "class": "TLabel", + "name": "Label46", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 10, + "Width": 662, + "Height": 15, + "Caption": "6. 총공사비 ............................................ + ...............", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TOTAL_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 7, + "Width": 178, + "Height": 20, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 총공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"20%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_TOTAL_DblClick" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Tot_Jeol_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 700, + "Left": 388, + "Top": 7, + "Width": 135, + "Hint": "총공사비 금액에서 절사 기준을 선택합니다.\r\n총공사비 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.\r\n도급액 버림기준(기본기준 변경)을 선택하면 \r\n총공사비 조정기준을 선택할 수 없습니다.", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clInfoBk", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "총공사비절사기준", + "Items.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "cBx_Tot_Add_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 542, + "Top": 7, + "Width": 31, + "Height": 20, + "Hint": "총 공사비 절사 후 보정금액을 선택합니다.\r\n보정금액 : 입력값 * 절사기준 / 10 ", + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 1, + "MaxValue": 9, + "Spinner": true, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyDown": "cBx_Tot_Add_TKeyDown", + "OnKeyPress": "Ed_KeyPress", + "OnChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_TOTAL_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 20, + "Left": 575, + "Top": 7, + "Width": 160, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pnSI_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 869, + "Width": 782, + "Height": 20, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 2 + }, + "children": [ + { + "class": "TLabel", + "name": "Label18", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 5, + "Width": 696, + "Height": 15, + "Caption": "시공도작성비<(순공사원가+일반관리비+이윤+사급비)x ○○%> x ...........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SIGONG_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SIGONG_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 414, + "Top": 1, + "Width": 39, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SIGONG_1_S", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 502, + "Top": 1, + "Width": 39, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "TbSh_TA", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "실적일반", + "ImageIndex": 2 + }, + "children": [ + { + "class": "TScrollBox", + "name": "SclBx_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 796, + "Height": 212, + "HorzScrollBar.Range": 782, + "HorzScrollBar.Visible": false, + "VertScrollBar.Range": 1170, + "Align": "alClient", + "AutoScroll": false, + "Color": "clInfoBk", + "Ctl3D": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 0, + "OnMouseWheel": "SclBx_MouseWheel" + }, + "children": [ + { + "class": "TPanel", + "name": "Pn03_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 779, + "Width": 782, + "Height": 185, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 2 + }, + "children": [ + { + "class": "TLabel", + "name": "Label81", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 671, + "Height": 15, + "Caption": "5. 공급가액 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label82", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 부가가치세 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label84", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 공사보험료 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label85", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 45, + "Width": 664, + "Height": 15, + "Caption": " 작업설 등(△) ...................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "LR16A", + "flags": [], + "child_pos": null, + "properties": { + "Left": 264, + "Top": 25, + "Width": 64, + "Height": 15, + "Caption": "X ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGGUP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUGA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUSAN_B_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SAGUP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 125, + "Width": 656, + "Height": 15, + "Caption": " 사급자재대 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP2_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 125, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_R_KongSa_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 271, + "Top": 24, + "Width": 45, + "Height": 17, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label11", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 105, + "Width": 656, + "Height": 15, + "Caption": " 비과세자재대 ...................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_NBUGAM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 105, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label83", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 85, + "Width": 656, + "Height": 15, + "Caption": " 매입세 .........................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PURCHAS_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 85, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add03_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 145, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 5, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KongSa_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 130, + "Left": 129, + "Top": 22, + "Width": 130, + "Height": 19, + "Hint": "공사손해보험료 적용액(기본:공급가액+관/사급내용)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_KongSa_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 337, + "Top": 25, + "Width": 105, + "Height": 17, + "Hint": "공사손해보험료를 임의적용(기본:공급가액+관/사급내용)", + "Caption": "별도비용적용", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_BUGA_UP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 129, + "Top": 65, + "Width": 203, + "Height": 17, + "Caption": "1원보정 (계산결과+1원)", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 3, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_MBuga_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 361, + "Top": 62, + "Width": 140, + "Height": 19, + "Hint": "직접재료비에 포함된 금액중 면세품목의 금액을 입력하십시요.", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Jeol_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 500, + "Left": 444, + "Top": 3, + "Width": 135, + "Hint": "공급가액 및 공사손해보험료 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "공급가액절사기준", + "Items.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn01_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 0, + "Width": 782, + "Height": 589, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 0 + }, + "children": [ + { + "class": "TLabel", + "name": "Label87", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 9, + "Width": 688, + "Height": 15, + "Caption": "1. 직접공사비 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label88", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 109, + "Width": 616, + "Height": 15, + "Caption": " 1) 간접노무비<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label90", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 129, + "Width": 608, + "Height": 15, + "Caption": " 2) 산재보험료<(노 무 비) × ○○ %> ......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_ANJUN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 249, + "Width": 637, + "Height": 13, + "Caption": " 8) 산업안전보건관리비<(재+ 직노 + (관급+사급)/1.1 -내역서안전관리비) x ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label92", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 269, + "Width": 608, + "Height": 15, + "Caption": " + 천원 > .....................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label93", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 369, + "Width": 600, + "Height": 15, + "Caption": " 11) 기타 경비<재+노 × ○○ %> ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label94", + "flags": [], + "child_pos": null, + "properties": { + "Left": 342, + "Top": 269, + "Width": 64, + "Height": 15, + "Caption": "의 1.2배", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label95", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 149, + "Width": 608, + "Height": 15, + "Caption": " 3) 고용보험료<(노 무 비) × ○○ %> ......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_TBUGUM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 229, + "Width": 616, + "Height": 15, + "Caption": " 7) 퇴직공제부금비<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DAMT_T_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 9, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 169, + "Width": 616, + "Height": 15, + "Caption": " 4) 건강보험료<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KANNO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 109, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SANBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 129, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KOBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 149, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 269, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KITA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 369, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TBUGUM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 229, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_YUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 209, + "Width": 616, + "Height": 15, + "Caption": " 6) 연금보험료<(직접노무비) × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label99", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 389, + "Width": 616, + "Height": 15, + "Caption": " 12) 공사이행 수수료< ○○○ 천원 + (직접공사비- 억원) × ○○ %>", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label100", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 429, + "Width": 592, + "Height": 15, + "Caption": " 13) 하도대금 수수료< 직접공사비 × ○○ %> .........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label101", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 449, + "Width": 600, + "Height": 15, + "Caption": " 14) 환 경 보 전 비 < 직접공사비 × ○○ %> ..........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 169, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_YUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 209, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HADOSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 429, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Disp_Y_KONGSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 310, + "Top": 409, + "Width": 328, + "Height": 15, + "Caption": " × 공기( 0.0)년 ........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 409, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_Y_KONGSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 380, + "Top": 407, + "Width": 36, + "Height": 19, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.0", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HWAN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 449, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton6", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 147, + "Width": 20, + "Height": 19, + "Hint": "공사예정금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton7", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 227, + "Width": 20, + "Height": 19, + "Hint": "공사예정(추정)금액 1억원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton13", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 247, + "Width": 20, + "Height": 19, + "Hint": "공사금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton14", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 387, + "Width": 20, + "Height": 19, + "Hint": "최저가,기술제안, 추정가격 300억이상 PQ대상공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton17", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 427, + "Width": 20, + "Height": 19, + "Hint": " 토목및 산업설비, 건축공사, 턴키(대안)공사 의\r\n 추정가격 ~50, 50~100억, 100~300, 300~ (억원)을 기준으로적용 \r\n * 적용제외: 전문공사, 국가유산수리공사 ", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label102", + "flags": [], + "child_pos": null, + "properties": { + "Left": 54, + "Top": 31, + "Width": 152, + "Height": 15, + "Caption": "제경비율 조정계수 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 250, + "Top": 31, + "Width": 96, + "Height": 15, + "Caption": "재 료 비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 250, + "Top": 49, + "Width": 96, + "Height": 15, + "Caption": "직접노무비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label105", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 87, + "Width": 688, + "Height": 15, + "Caption": "2. 간접공사비 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_S_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 87, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 250, + "Top": 67, + "Width": 96, + "Height": 15, + "Caption": "노 무 비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDMDL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 442, + "Top": 31, + "Width": 96, + "Height": 15, + "Caption": "재 + 직 노 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDML_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 442, + "Top": 49, + "Width": 96, + "Height": 15, + "Caption": "재 + 노 :" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton18", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 127, + "Width": 20, + "Height": 19, + "Hint": "(공사예정금액-부가가치세-관,사급부가세) 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_DSAMT_M_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 12, + "Width": 198, + "Height": 12, + "Caption": "(내역:1,000,000 + 사급:1,000,000)", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateMxA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 415, + "Top": 33, + "Width": 120, + "Height": 12, + "Caption": "안전관리비상한비율 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateMxK_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 428, + "Top": 56, + "Width": 108, + "Height": 12, + "Caption": "기타경비상한비율 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 231, + "Top": 249, + "Width": 64, + "Height": 15, + "AutoSize": false, + "Caption": "직공x상한", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxK_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 369, + "Width": 88, + "Height": 15, + "AutoSize": false, + "Caption": "직공비x상한", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SLVBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 189, + "Width": 616, + "Height": 15, + "Caption": " 5) 장기요양보험료<(4)건강보험료 × ○○ %> .......................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SLVBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 189, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_ANJUN2_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 289, + "Width": 606, + "Height": 12, + "Caption": " (재료+직노 + 관급/1.1+사급재 -내역서안전관리비) x 3.15 % + 12,345 천원 .............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_ANJUN1_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 309, + "Width": 564, + "Height": 12, + "Caption": " <(재료+직노 -내역서안전관리비) x 3.15 % + 12,345 천원 > 의 1.2배 ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN2_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 535, + "Top": 288, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN1_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 535, + "Top": 308, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun2_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 406, + "Top": 287, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun2_G_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 465, + "Top": 287, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun1_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 298, + "Top": 307, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun1_G_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 357, + "Top": 307, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJun2_K_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 179, + "Top": 287, + "Width": 98, + "Height": 16, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxA_TA2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 113, + "Top": 289, + "Width": 54, + "Height": 12, + "AutoSize": false, + "Caption": "직공x상한", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxA_TA1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 113, + "Top": 309, + "Width": 54, + "Height": 12, + "AutoSize": false, + "Caption": "직공x상한", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton26", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 367, + "Width": 20, + "Height": 19, + "Hint": "기타경비 : 수도광열비, 복리후생비, 소모품비 및 사무용품비, 여비·교통통신비,\r\n 세금과 공과, 도서인쇄비, 지급수수료", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label189", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 469, + "Width": 592, + "Height": 15, + "Caption": " 15) 건설기계 대여금< 직접공사비 × ○○ %> .........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EQIPSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 469, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton29", + "flags": [], + "child_pos": null, + "properties": { + "Left": 648, + "Top": 288, + "Width": 35, + "Height": 33, + "Action": "Act_Sel_Small", + "Flat": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label164", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 329, + "Width": 600, + "Height": 15, + "Caption": " 9) 안전관리비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_B_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 329, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label174", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 349, + "Width": 600, + "Height": 15, + "Caption": " 10) 품질관리비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PUMJIL_B_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 349, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_AnPum_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 330, + "Width": 187, + "Height": 32, + "Hint": "안전관리비, 품질관리비의 산출경비로 제외 옵션은\r\n상단【 계산/인쇄 설정 】에서 수정할 수 있습니다.", + "AutoSize": false, + "Caption": "( 산 출 경 비 로 포 함 ) \r\n( 산출경비 = 내역서경비 + α )", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "Layout": "tlCenter", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label205", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 489, + "Width": 600, + "Height": 15, + "Caption": " 16) 석면분담금 < 노 무 비 × ○○ %> ..........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_SM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 489, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label206", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 509, + "Width": 600, + "Height": 15, + "Caption": " 17) 임금채권부담금 < 노 무 비 × ○○ %> ..........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_IC_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 509, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 350, + "Top": 28, + "Width": 47, + "Height": 19, + "Hint": "재료비 조정계수 입력 ( 재료비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 350, + "Top": 46, + "Width": 47, + "Height": 19, + "Hint": "직접노무비 조정계수 입력 ( 직접노무비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 350, + "Top": 64, + "Width": 47, + "Height": 19, + "Hint": "노무비 조정계수 입력 ( 노무비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDMDL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 542, + "Top": 28, + "Width": 47, + "Height": 19, + "Hint": "재료비+직·노 조정계수 입력 ( 재료비+직·노 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 5, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDML_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 542, + "Top": 46, + "Width": 47, + "Height": 19, + "Hint": "재료비+노무비 조정계수 입력 ( 재료비+노무비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 6, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add01_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 529, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 33, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 46, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 452, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 152, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KanNo_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 368, + "Top": 106, + "Width": 45, + "Height": 19, + "Hint": "간접노무비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 11, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SanBo_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 375, + "Top": 126, + "Width": 47, + "Height": 19, + "Hint": "산재보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 12, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KoBo_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 375, + "Top": 146, + "Width": 39, + "Height": 19, + "Hint": "고용보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 13, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJun_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 598, + "Top": 246, + "Width": 46, + "Height": 19, + "Hint": "안전관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 21, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KiTa_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 287, + "Top": 366, + "Width": 54, + "Height": 19, + "Hint": "기타경비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 24, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_TBuGum_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 151, + "Left": 375, + "Top": 226, + "Width": 39, + "Height": 19, + "Hint": "퇴직부금비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 19, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Hwan_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 342, + "Top": 446, + "Width": 39, + "Height": 19, + "Hint": "환경보전비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 29, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_AnJun_G_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 217, + "Top": 266, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_K_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 311, + "Top": 246, + "Width": 143, + "Height": 19, + "Ctl3D": false, + "TabOrder": 20, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관/사급비 지정", + "Items.Strings": [ + "없음", + "관급/사급 내용", + "사급자재대" + ], + "Values.Strings": [ + "없음", + "관급/사급 내용", + "사급자재대" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_B_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 336, + "Top": 266, + "Width": 90, + "Height": 19, + "Ctl3D": false, + "TabOrder": 23, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "Items.Strings": [ + "", + "의 1.2배" + ], + "Values.Strings": [ + "", + "의 1.2배" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 375, + "Top": 166, + "Width": 47, + "Height": 19, + "Hint": "건강보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 15, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_YUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 375, + "Top": 206, + "Width": 39, + "Height": 19, + "Hint": "연금보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 18, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KONGSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 558, + "Top": 386, + "Width": 55, + "Height": 19, + "Hint": "공사이행보증수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 27, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "f38e53742497ff9f0240" + }, + "Precision": 4, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_HADOSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 334, + "Top": 426, + "Width": 47, + "Height": 19, + "Hint": "건설하도대금지급보증서발급수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 28, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_A_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 229, + "Top": 386, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 25, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_KUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 185, + "Top": 166, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 14, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "건강보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_YUNBO_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 185, + "Top": 206, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 17, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "연금보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_LTYP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 54, + "Top": 56, + "Width": 176, + "Height": 19, + "Hint": "실적공사비중 노무비 금액 산정방식을 지정합니다.\r\n(2008년 이후 직접노무비산정)", + "Ctl3D": false, + "TabOrder": 1, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Width": 164, + "ListOption.Titles": "노무비 계산방식 선택", + "Items.Strings": [ + "노무비 = 직공비 x 조정계수", + "노무비 = 내역서 직접노무비" + ], + "Values.Strings": [ + "노무비 = 직공비 x 조정계수", + "노무비 = 내역서 직접노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateMxA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 549, + "Top": 28, + "Width": 47, + "Height": 19, + "Hint": "산업안전보건관리비 기초금액 상한비율을 입력\r\n(재료비+직접노무비) < (직접공사비 * 상한요율)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 7, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateMxK_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 549, + "Top": 53, + "Width": 47, + "Height": 19, + "Hint": "기타경비 기초금액 상한비율을 입력\r\n(재료비+노무비) < (직접공사비 * 상한요율)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 8, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_RateMxA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 601, + "Top": 28, + "Width": 114, + "Height": 19, + "Hint": "안전관리비 계산시 상한비율 강제적용여부를 지정합니다.", + "Ctl3D": false, + "TabOrder": 9, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "상한비 적용방식", + "Items.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "Values.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_RateMxK_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 601, + "Top": 53, + "Width": 114, + "Height": 19, + "Hint": "기타경비 계산시 상한비율 강제적용여부를 지정합니다.", + "Ctl3D": false, + "TabOrder": 10, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "상한비 적용방식", + "Items.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "Values.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SlvBo_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 367, + "Top": 186, + "Width": 47, + "Height": 19, + "Hint": "노인장기요양보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 16, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_MTYP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 54, + "Top": 31, + "Width": 176, + "Height": 19, + "Hint": "실적공사비중 안전관리비 및 기타경비의 산정방식을 지정합니다.\r\n(2012년 이후 직접공사비 * 요율 산정)", + "Ctl3D": false, + "TabOrder": 0, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Width": 164, + "ListOption.Titles": "실적공사 계산방식 선택", + "Items.Strings": [ + "직접공사비 * 요율 방식", + "조정계수 입력방식" + ], + "Values.Strings": [ + "1", + "0" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_MTYP_T", + "flags": [], + "child_pos": null, + "properties": { + "Left": 240, + "Top": 28, + "Width": 329, + "Height": 57, + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 34 + }, + "children": [ + { + "class": "TLabel", + "name": "Label74", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 1, + "Width": 102, + "Height": 12, + "Caption": "직 접 공 사 비 : " + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label80", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 19, + "Width": 96, + "Height": 12, + "Caption": "노 무 비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label86", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 37, + "Width": 96, + "Height": 12, + "Caption": "노무비 외 금액 :" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_MTYP_T_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 1, + "Width": 173, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".........................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_MTYP_L_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 19, + "Width": 173, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".........................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_MTYP_M_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 37, + "Width": 173, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".........................", + "Suffix": "원" + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_EQIPSU_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 334, + "Top": 466, + "Width": 39, + "Height": 19, + "Hint": "건설하도대금지급보증서발급수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 30, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_MA_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 448, + "Top": 386, + "Width": 46, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 26, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "Value": 9999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_Anjun_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 20, + "Top": 246, + "Width": 700, + "Height": 78, + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 35, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label108", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 3, + "Width": 518, + "Height": 13, + "Caption": " 8) 산업안전보건관리비< 설계변경전의 안전관리비 + 설계변경으로 인한 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label144", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 23, + "Width": 616, + "Height": 15, + "Caption": " 안전관리비 증감액 > ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_TA1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 500, + "Top": 23, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label145", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 43, + "Width": 612, + "Height": 12, + "Caption": " ○ 설계변경으로 인한 안전관리비 증감액 = 설계변경 전의 안전관리비 × 대상액의 증감 비율 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label151", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 63, + "Width": 648, + "Height": 12, + "Caption": " ○ 대상액의 증감 비율 = [(설계변경후 대상액 - 설계변경 전 대상액) / 설계변경 전 대상액] × 100% ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_SM_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 334, + "Top": 485, + "Width": 47, + "Height": 19, + "Hint": "석면분담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 31, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_IC_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 334, + "Top": 505, + "Width": 47, + "Height": 19, + "Hint": "임금채권부담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 32, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pn02_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 589, + "Width": 782, + "Height": 190, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 1 + }, + "children": [ + { + "class": "TLabel", + "name": "Label109", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 699, + "Height": 15, + "Caption": "3. 일반관리비<(직공비+간접비 + 관리품목자재 ) × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label110", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 30, + "Width": 705, + "Height": 15, + "Caption": "4. 이윤<(직공비+간접비+일반관리비)×15.0000 %>- ...........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ILBAN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_IYUN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 30, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label111", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 110, + "Width": 664, + "Height": 15, + "Caption": " 사급자재대 ......................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP1_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 110, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iLBan_Hint_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 3, + "Width": 20, + "Height": 19, + "Hint": "공사규모 : 추정가격\r\n 지방: ~50, 50~300, 300~1000, 1000~ (억원)\r\n 국가: ~5, 5~30, 30~300, 300~1000, 1000~ (억원)\r\n을 기준으로적용 (단 전문공사: 1/10 규모)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iYun_Hint_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 28, + "Width": 20, + "Height": 19, + "Hint": "추정가격 ~50, 50~300, 300~1000, 1000~ (억원)을 기준으로적용", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label169", + "flags": [], + "child_pos": null, + "properties": { + "Left": 30, + "Top": 50, + "Width": 656, + "Height": 15, + "Caption": " 건설공사안전점검비< (직공비+간접비 + 관급/1.1+사급재) × ○○ %>................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJunP_K_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 331, + "Top": 48, + "Width": 122, + "Height": 19, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0 + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUNP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 568, + "Top": 50, + "Width": 155, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label177", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 70, + "Width": 672, + "Height": 15, + "Caption": " 미확정설계공종(PS) ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PSAMT_B_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 70, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EXCEPT_B_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 90, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label193", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 90, + "Width": 672, + "Height": 15, + "Caption": " 제비율적용제외공종 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add02_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 130, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 6, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_ILBan_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 452, + "Top": 2, + "Width": 45, + "Height": 19, + "Hint": "일반관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Iyun_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 370, + "Top": 27, + "Width": 68, + "Height": 19, + "Hint": "이윤 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 7, + "MaxValue": { + "extended_hex": "c971a774b0feffc70540" + }, + "Precision": 5, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_IYUN_M_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 477, + "Top": 27, + "Width": 87, + "Height": 19, + "Hint": "이윤 보정액", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 9, + "MaxValue": 999999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_K_MAT_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 289, + "Top": 2, + "Width": 118, + "Height": 19, + "Hint": "관리품목 자재대( 시멘트, 철근 등.. )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_IYUN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 44, + "Top": 29, + "Width": 73, + "Height": 17, + "Ctl3D": false, + "TabOrder": 2, + "Alignment": "taCenter", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clWindowText", + "ListOption.Font.Height": -15, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "이윤표기", + "Items.Strings": [ + "이윤", + "수수료" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "Ed_C_IYUN_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJunP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 494, + "Top": 47, + "Width": 45, + "Height": 19, + "Hint": "건설공사 안전점검비(건설공사 안전관리 지침) 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 5, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn04_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 964, + "Width": 782, + "Height": 145, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 3 + }, + "children": [ + { + "class": "TLabel", + "name": "Label112", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 670, + "Height": 15, + "Caption": "6. 도급공사비 .............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_D_TA_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(도급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DOGUP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 17, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 도급공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"15%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_DOGUP_DblClick" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_D_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SAGUP_TA_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 사급자재대 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_K_TA_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 45, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(관급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_K_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add04_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 85, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_DOGUP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 46, + "Top": 5, + "Width": 115, + "Height": 17, + "Ctl3D": false, + "TabOrder": 1, + "Alignment": "taCenter", + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "도급공사비표기", + "Items.Strings": [ + "도급공사비", + "도급예정액" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "Ed_C_DOGUP_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_Jeol_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 23, + "Width": 135, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 2, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_UPDN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 23, + "Width": 60, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 3, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_DOGUP_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 575, + "Top": 5, + "Width": 160, + "Height": 17, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_Jeol_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 44, + "Width": 135, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 5, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_UPDN_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 44, + "Width": 60, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 6, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn05_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1109, + "Width": 782, + "Height": 35, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 4 + }, + "children": [ + { + "class": "TLabel", + "name": "Label115", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 10, + "Width": 662, + "Height": 15, + "Caption": "7. 총공사비 ............................................ + ...............", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TOTAL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 7, + "Width": 178, + "Height": 20, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 총공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"15%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_TOTAL_DblClick" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Tot_Jeol_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 700, + "Left": 388, + "Top": 7, + "Width": 135, + "Hint": "총공사비 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.\r\n도급액 버림기준(기본기준 변경)을 선택하면 \r\n총공사비 조정기준을 선택할 수 없습니다.", + "Ctl3D": false, + "TabOrder": 1, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clInfoBk", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "총공사비절사기준", + "Items.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "cBx_Tot_Add_TA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 542, + "Top": 7, + "Width": 31, + "Height": 20, + "Hint": "총 공사비 절사 후 보정금액을 선택합니다.\r\n보정금액 : 입력값 * 절사기준 / 10 ", + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 1, + "MaxValue": 9, + "Spinner": true, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyDown": "cBx_Tot_Add_TKeyDown", + "OnKeyPress": "Ed_KeyPress", + "OnChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "cBx_TOTAL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 125, + "Top": 12, + "Width": 97, + "Height": 17, + "Hint": "도급공사비 이후 추가금액이 없어도 총공사비를 인쇄합니다.", + "Caption": "(항상인쇄)", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_TOTAL_TA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 20, + "Left": 575, + "Top": 7, + "Width": 160, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "TbSh_SA", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "실적수공", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ImageIndex": 3, + "ParentFont": false + }, + "children": [ + { + "class": "TScrollBox", + "name": "SclBx_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 796, + "Height": 212, + "HorzScrollBar.Range": 782, + "HorzScrollBar.Visible": false, + "VertScrollBar.Range": 1280, + "Align": "alClient", + "AutoScroll": false, + "Color": "clInfoBk", + "Ctl3D": true, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 0, + "OnMouseWheel": "SclBx_MouseWheel" + }, + "children": [ + { + "class": "TPanel", + "name": "Pn03_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 929, + "Width": 782, + "Height": 165, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 3 + }, + "children": [ + { + "class": "TLabel", + "name": "Label116", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 671, + "Height": 15, + "Caption": "5. 공급가액 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label117", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 부가가치세 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label118", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 공사보험료 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label119", + "flags": [], + "child_pos": null, + "properties": { + "Left": 264, + "Top": 25, + "Width": 64, + "Height": 15, + "Caption": "X ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUGA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_R_KongSa_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 271, + "Top": 24, + "Width": 45, + "Height": 16, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label196", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 45, + "Width": 656, + "Height": 15, + "Caption": " 작업설 등(△) ..................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUSAN_B_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label91", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 85, + "Width": 656, + "Height": 15, + "Caption": " 매입세 .........................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PURCHAS_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 85, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add03_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 105, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 5, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KongSa_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 130, + "Left": 129, + "Top": 22, + "Width": 130, + "Height": 19, + "Hint": "공사손해보험료 적용액(기본:공급가액+관/사급내용)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_KongSa_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 337, + "Top": 25, + "Width": 105, + "Height": 17, + "Hint": "공사손해보험료를 임의적용(기본:공급가액+관/사급내용)", + "Caption": "별도비용적용", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "Ck_B_BUGA_UP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 129, + "Top": 65, + "Width": 203, + "Height": 17, + "Caption": "1원보정 (계산결과+1원)", + "Color": "clInfoBk", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 3, + "OnClick": "Ed_C_R_Change", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_MBuga_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 140, + "Left": 361, + "Top": 62, + "Width": 140, + "Height": 19, + "Hint": "직접재료비에 포함된 금액중 면세품목의 금액을 입력하십시요.", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Jeol_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 500, + "Left": 444, + "Top": 3, + "Width": 135, + "Hint": "공급가액 및 공사손해보험료 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "공급가액절사기준", + "Items.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn01_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 0, + "Width": 782, + "Height": 729, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 0 + }, + "children": [ + { + "class": "TLabel", + "name": "Label121", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 9, + "Width": 661, + "Height": 15, + "Caption": "1. 직접공사비 ............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label123", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 109, + "Width": 616, + "Height": 15, + "Caption": " 1) 간접노무비 <(직접노무비) × ○○ %> .....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label125", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 349, + "Width": 600, + "Height": 15, + "Caption": " 10) 품질관리비 .......................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label127", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 129, + "Width": 608, + "Height": 15, + "Caption": " 2) 산재보험료<(직접노무비+간접노무비) × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label129", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 249, + "Width": 595, + "Height": 13, + "Caption": " 9) 산업안전보건관리비<(직접노무비 + 재료비 + ) x ○○ %", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label130", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 269, + "Width": 608, + "Height": 15, + "Caption": " + 천원 > .....................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label131", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 329, + "Width": 592, + "Height": 15, + "Caption": " 9) 안전관리비 <별도내역> ......................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label132", + "flags": [], + "child_pos": null, + "properties": { + "Left": 342, + "Top": 269, + "Width": 64, + "Height": 15, + "Caption": "의 1.2배", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label133", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 149, + "Width": 616, + "Height": 15, + "Caption": " 3) 고용보험료<(직접노무비+간접노무비) × ○○ %> .....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_TBUGUM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 229, + "Width": 616, + "Height": 15, + "Caption": " 7) 퇴직공제부금비<(직접노무비) × ○○ %> .....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DAMT_T_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 9, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label135", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 589, + "Width": 608, + "Height": 15, + "Caption": " 21) 환경보전비<(재료비 + 직노 + 산출경비) × ○○ %> ................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KANNO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 109, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PUMJIL_B_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 349, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SANBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 129, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KOBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 149, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 269, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_B_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 329, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TBUGUM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 229, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HWAN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 589, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label136", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 369, + "Width": 624, + "Height": 15, + "Caption": " 11) 수도 광열비 <(직노+간노+재료비) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label137", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 389, + "Width": 624, + "Height": 15, + "Caption": " 12) 복리 후생비 <( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label138", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 409, + "Width": 624, + "Height": 15, + "Caption": " 13) 소모품및 사무용품비<( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label139", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 429, + "Width": 624, + "Height": 15, + "Caption": " 14) 여비,교통비,통신비 <( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label140", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 449, + "Width": 624, + "Height": 15, + "Caption": " 15) 세금,공과금 <( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label141", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 469, + "Width": 624, + "Height": 15, + "Caption": " 16) 폐기물처리비 <( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label142", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 489, + "Width": 624, + "Height": 15, + "Caption": " 17) 도서 인쇄비 <( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label143", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 509, + "Width": 624, + "Height": 15, + "Caption": " 18) 지급 수수료 <( 〃 ) × ○○ %> ..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SUDO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 369, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BOKRI_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 389, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SOMO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 409, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TONGSIN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 429, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_JIGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 509, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DOSEO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 489, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PEGI_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 469, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SEGUM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 449, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 169, + "Width": 608, + "Height": 15, + "Caption": " 4) 건강보험료<(직접노무비) × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_YUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 209, + "Width": 608, + "Height": 15, + "Caption": " 6) 연금보험료<(직접노무비) × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 169, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_YUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 209, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label146", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 529, + "Width": 616, + "Height": 15, + "Caption": " 19) 공사이행 수수료< ○○○ 천원 + (직접공사비- 억원) × ○○ %>", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label147", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 569, + "Width": 600, + "Height": 15, + "Caption": " 20) 하도대금 수수료<(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_HADOSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 569, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label148", + "flags": [], + "child_pos": null, + "properties": { + "Left": 358, + "Top": 549, + "Width": 272, + "Height": 15, + "Caption": " × 공기( 0.0)년 .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KONGSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 549, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Ed_Y_KONGSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 428, + "Top": 547, + "Width": 36, + "Height": 19, + "Color": "clInfoBk", + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "0.0", + "IsNull": false + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton19", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 147, + "Width": 20, + "Height": 19, + "Hint": "공사예정금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton20", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 227, + "Width": 20, + "Height": 19, + "Hint": "공사예정(추정)금액 1억원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton21", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 247, + "Width": 20, + "Height": 19, + "Hint": "공사금액 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton22", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 527, + "Width": 20, + "Height": 19, + "Hint": "최저가,기술제안, 추정가격 300억이상 PQ대상공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton23", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 567, + "Width": 20, + "Height": 19, + "Hint": " 토목및 산업설비, 건축공사, 턴키(대안)공사 의 \r\n 추정가격 ~50, 50~100억, 100~300, 300~ (억원)을 기준으로적용 \r\n * 적용제외: 전문공사, 국가유산수리공사 ", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label149", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 87, + "Width": 661, + "Height": 15, + "Caption": "2. 간접공사비 ............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label150", + "flags": [], + "child_pos": null, + "properties": { + "Left": 54, + "Top": 31, + "Width": 152, + "Height": 15, + "Caption": "제경비율 조정계수 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 250, + "Top": 31, + "Width": 96, + "Height": 15, + "Caption": "재 료 비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 250, + "Top": 49, + "Width": 96, + "Height": 15, + "Caption": "직접노무비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 250, + "Top": 67, + "Width": 96, + "Height": 15, + "Caption": "노 무 비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDMDL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 442, + "Top": 31, + "Width": 96, + "Height": 15, + "Caption": "재 + 직 노 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateDML_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 442, + "Top": 49, + "Width": 96, + "Height": 15, + "Caption": "재 + 노 :" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAMT_S_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 87, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton24", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 127, + "Width": 20, + "Height": 19, + "Hint": "(공사예정금액-부가가치세-관,사급부가세) 2천만원이상 건설공사", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "Visible": false, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateMxA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 415, + "Top": 33, + "Width": 120, + "Height": 12, + "Caption": "안전관리비상한비율 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_R_RateMxK_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 428, + "Top": 56, + "Width": 108, + "Height": 12, + "Caption": "기타경비상한비율 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 232, + "Top": 249, + "Width": 136, + "Height": 15, + "AutoSize": false, + "Caption": "직접공사비x상한비율", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxK_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 262, + "Top": 369, + "Width": 127, + "Height": 15, + "Alignment": "taCenter", + "AutoSize": false, + "Caption": "직공비x상한비율", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SLVBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 189, + "Width": 608, + "Height": 15, + "Caption": " 5) 장기요양보험료<(5)건강보험료 × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SLVBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 520, + "Top": 189, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label45", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 289, + "Width": 582, + "Height": 12, + "Caption": " (재료+직노 + 관급/1.1+사급재 ) x 3.15 % + 12,345 천원 ..........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label62", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 309, + "Width": 534, + "Height": 12, + "Caption": " <(재료+직노) x 3.15 % + 12,345 천원 > 의 1.2배 ............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN2_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 535, + "Top": 289, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN1_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 535, + "Top": 309, + "Width": 114, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun2_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 304, + "Top": 287, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun2_G_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 363, + "Top": 287, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_R_AnJun1_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 190, + "Top": 307, + "Width": 29, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "0.00#", + "IsNull": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "lb_C_AnJun1_G_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 249, + "Top": 307, + "Width": 42, + "Height": 16, + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken", + "Format": "#,0", + "IsNull": false, + "Value": 1234 + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJun2_K_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 287, + "Width": 100, + "Height": 16, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clTeal", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsSunken" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxA_SA2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 113, + "Top": 289, + "Width": 54, + "Height": 12, + "AutoSize": false, + "Caption": "직공x상한", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_MxA_SA1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 113, + "Top": 309, + "Width": 54, + "Height": 12, + "AutoSize": false, + "Caption": "직공x상한", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label190", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 609, + "Width": 600, + "Height": 15, + "Caption": " 22) 건설기계 대여금<(재료비+직노+산출경비) × ○○ %> ...............", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EQIPSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 609, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "SpeedButton30", + "flags": [], + "child_pos": null, + "properties": { + "Left": 648, + "Top": 289, + "Width": 35, + "Height": 33, + "Action": "Act_Sel_Small", + "Flat": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_AnPum_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 182, + "Top": 330, + "Width": 187, + "Height": 32, + "Hint": "안전관리비, 품질관리비의 산출경비로 제외 옵션은\r\n상단【 계산/인쇄 설정 】에서 수정할 수 있습니다.", + "AutoSize": false, + "Caption": "( 산 출 경 비 로 포 함 ) \r\n( 산출경비 = 내역서경비 + α )", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "Layout": "tlCenter", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label207", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 629, + "Width": 616, + "Height": 15, + "Caption": " 22) 석면분담금 <(직노 + 간노) × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_SM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 629, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label208", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 649, + "Width": 616, + "Height": 15, + "Caption": " 23) 임금채권부담금 <(직노 + 간노) × ○○ %> .................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_BUDM_IC_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 521, + "Top": 649, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 350, + "Top": 28, + "Width": 47, + "Height": 19, + "Hint": "재료비 조정계수 입력 ( 재료비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 350, + "Top": 46, + "Width": 47, + "Height": 19, + "Hint": "직접노무비 조정계수 입력 ( 직접노무비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "Ctl3D": false, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 350, + "Top": 64, + "Width": 47, + "Height": 19, + "Hint": "노무비 조정계수 입력 ( 노무비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Ctl3D": false, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDMDL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 542, + "Top": 28, + "Width": 47, + "Height": 19, + "Hint": "재료비+직·노 조정계수 입력 ( 재료비+직·노 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 5, + "Ctl3D": false, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateDML_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 542, + "Top": 46, + "Width": 47, + "Height": 19, + "Hint": "재료비+노무비 조정계수 입력 ( 재료비+노무비 = 직접공사비 x 조정계수 )", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 6, + "Ctl3D": false, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add01_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 669, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 40, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 46, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 452, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 152, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KanNo_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 384, + "Top": 106, + "Width": 45, + "Height": 19, + "Hint": "간접노무비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 11, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SanBo_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 390, + "Top": 126, + "Width": 47, + "Height": 19, + "Hint": "산재보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 12, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KoBo_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 390, + "Top": 146, + "Width": 39, + "Height": 19, + "Hint": "고용보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 13, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJun_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 555, + "Top": 246, + "Width": 46, + "Height": 19, + "Hint": "안전관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 21, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_TBuGum_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 151, + "Left": 390, + "Top": 226, + "Width": 39, + "Height": 19, + "Hint": "퇴직부금비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 19, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Hwan_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 586, + "Width": 38, + "Height": 19, + "Hint": "환경보전비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 36, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_AnJun_G_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 217, + "Top": 266, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_K_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 390, + "Top": 246, + "Width": 143, + "Height": 19, + "Ctl3D": false, + "TabOrder": 20, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관/사급비 지정", + "Items.Strings": [ + "없음", + "관급/사급 내용" + ], + "Values.Strings": [ + "없음", + "관급/사급 내용" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_AnJun_B_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 336, + "Top": 266, + "Width": 90, + "Height": 19, + "Ctl3D": false, + "TabOrder": 23, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "Items.Strings": [ + "", + "의 1.2배" + ], + "Values.Strings": [ + "", + "의 1.2배" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SUDO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 366, + "Width": 47, + "Height": 19, + "Hint": "기타경비-수도광열비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 24, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BOKRI_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 386, + "Width": 47, + "Height": 19, + "Hint": "기타경비-복리후생비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 25, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_TONGSIN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 426, + "Width": 47, + "Height": 19, + "Hint": "기타경비-여비,교통비,소모품 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 27, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SOMO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 406, + "Width": 47, + "Height": 19, + "Hint": "기타경비-소모품 및 사무용품비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 26, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_JIGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 506, + "Width": 47, + "Height": 19, + "Hint": "기타경비-지급수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 31, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_DOSEO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 486, + "Width": 47, + "Height": 19, + "Hint": "기타경비-도서인쇄비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 30, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SEGUM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 446, + "Width": 47, + "Height": 19, + "Hint": "기타경비-세금,공과금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 28, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_PEGI_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 466, + "Width": 47, + "Height": 19, + "Hint": "기타경비-폐기물처리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 29, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 390, + "Top": 166, + "Width": 47, + "Height": 19, + "Hint": "건강보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 16, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_YUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 150, + "Left": 390, + "Top": 206, + "Width": 39, + "Height": 19, + "Hint": "연금보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 18, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_KUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 185, + "Top": 166, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 14, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "건강보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_YUNBO_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 185, + "Top": 206, + "Width": 144, + "Height": 19, + "Ctl3D": false, + "TabOrder": 17, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "연금보험료 적용선택", + "Items.Strings": [ + "ㄴ.1)직노", + "당해 상시근로자노무비" + ], + "Values.Strings": [ + "ㄴ.1)직접노무비", + "당해 상시근로자노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KONGSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 558, + "Top": 526, + "Width": 55, + "Height": 19, + "Hint": "공사이행보증수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 34, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "f38e53742497ff9f0240" + }, + "Precision": 4, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_HADOSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 566, + "Width": 47, + "Height": 19, + "Hint": "건설하도대금지급보증서발급수수료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 35, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_A_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 229, + "Top": 526, + "Width": 61, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 32, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_LTYP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 54, + "Top": 56, + "Width": 176, + "Height": 19, + "Hint": "실적공사비중 노무비 금액 산정방식을 지정합니다.\r\n(2008년 이후 직접노무비산정)", + "Ctl3D": false, + "TabOrder": 1, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Width": 164, + "ListOption.Titles": "노무비 계산방식 선택", + "Items.Strings": [ + "노무비 = 직공비 x 조정계수", + "노무비 = 내역서 직접노무비" + ], + "Values.Strings": [ + "노무비 = 직공비 x 조정계수", + "노무비 = 내역서 직접노무비" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateMxA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 549, + "Top": 28, + "Width": 47, + "Height": 19, + "Hint": "산업안전보건관리비 기초금액 상한비율을 입력\r\n(재료비+직접노무비) < (직접공사비 * 상한요율)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 7, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_RateMxK_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 549, + "Top": 53, + "Width": 47, + "Height": 19, + "Hint": "기타경비 기초금액 상한비율을 입력\r\n(재료비+노무비) < (직접공사비 * 상한요율)", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 8, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 1, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_RateMxA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 601, + "Top": 28, + "Width": 114, + "Height": 19, + "Hint": "안전관리비 계산시 상한비율 강제적용여부를 지정합니다.", + "Ctl3D": false, + "TabOrder": 9, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "상한비 적용방식", + "Items.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "Values.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_RateMxK_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 601, + "Top": 53, + "Width": 114, + "Height": 19, + "Hint": "기타경비 계산시 상한비율 강제적용여부를 지정합니다.", + "Ctl3D": false, + "TabOrder": 10, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "상한비 적용방식", + "Items.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "Values.Strings": [ + "상한비 자동계산", + "상한비 강제적용", + "상한비 적용안함" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SlvBo_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 382, + "Top": 186, + "Width": 47, + "Height": 19, + "Hint": "노인장기요양보험료 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 15, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_MTYP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 54, + "Top": 31, + "Width": 176, + "Height": 19, + "Hint": "실적공사비중 안전관리비 및 기타경비의 산정방식을 지정합니다.\r\n(2012년 이후 직접공사비 * 요율 산정)", + "Ctl3D": false, + "TabOrder": 0, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Width": 164, + "ListOption.Titles": "실적공사 계산방식 선택", + "Items.Strings": [ + "직접공사비 * 요율 방식", + "조정계수 입력방식" + ], + "Values.Strings": [ + "1", + "0" + ], + "OnValueChange": "Ed_C_R_Change" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_MTYP_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 240, + "Top": 28, + "Width": 329, + "Height": 57, + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 41 + }, + "children": [ + { + "class": "TLabel", + "name": "Label114", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 1, + "Width": 102, + "Height": 12, + "Caption": "직 접 공 사 비 : " + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label160", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 19, + "Width": 96, + "Height": 12, + "Caption": "노 무 비 :" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label165", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 37, + "Width": 96, + "Height": 12, + "Caption": "노무비 외 금액 :" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_MTYP_T_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 1, + "Width": 173, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".........................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_MTYP_L_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 19, + "Width": 173, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".........................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_MTYP_M_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 141, + "Top": 37, + "Width": 173, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".........................", + "Suffix": "원" + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_EQIPSU_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 606, + "Width": 38, + "Height": 19, + "Hint": "환경보전비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 37, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KONGSU_MA_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 448, + "Top": 526, + "Width": 46, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 33, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 6, + "MaxValue": 999999, + "Value": 9999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_Anjun_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 20, + "Top": 246, + "Width": 700, + "Height": 78, + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 42, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label152", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 3, + "Width": 518, + "Height": 13, + "Caption": " 8) 산업안전보건관리비< 설계변경전의 안전관리비 + 설계변경으로 인한 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label153", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 23, + "Width": 616, + "Height": 15, + "Caption": " 안전관리비 증감액 > ...............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUN_SA1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 500, + "Top": 23, + "Width": 152, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label171", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 43, + "Width": 612, + "Height": 12, + "Caption": " ○ 설계변경으로 인한 안전관리비 증감액 = 설계변경 전의 안전관리비 × 대상액의 증감 비율 ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label172", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 63, + "Width": 648, + "Height": 12, + "Caption": " ○ 대상액의 증감 비율 = [(설계변경후 대상액 - 설계변경 전 대상액) / 설계변경 전 대상액] × 100% ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_SM_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 626, + "Width": 47, + "Height": 19, + "Hint": "석면분담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 38, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_BUDM_IC_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 422, + "Top": 646, + "Width": 47, + "Height": 19, + "Hint": "임금채권부담금 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 39, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pn02_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 729, + "Width": 782, + "Height": 180, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 1 + }, + "children": [ + { + "class": "TLabel", + "name": "Label156", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 638, + "Height": 15, + "Caption": "3. 일반관리비<(직접공사비 + 간접노무비) × ○○ %> ....................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label157", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 30, + "Width": 696, + "Height": 15, + "Caption": "4. 이윤<(직공비+간접비+일반관리비)×15.0000 %>- ..............................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ILBAN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_IYUN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 30, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iLBan_Hint_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 3, + "Width": 20, + "Height": 19, + "Hint": "공사규모 : 추정가격\r\n 지방: ~50, 50~300, 300~1000, 1000~ (억원)\r\n 국가: ~5, 5~30, 30~300, 300~1000, 1000~ (억원)\r\n을 기준으로적용 (단 전문공사: 1/10 규모)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_iYun_Hint_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 0, + "Top": 28, + "Width": 20, + "Height": 19, + "Hint": "추정가격 ~50, 50~300, 300~1000, 1000~ (억원)을 기준으로적용", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_HintClick" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label170", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 50, + "Width": 672, + "Height": 15, + "Caption": " 건설공사안전점검비<(직공비+간접비 + 관급/1.1+사급재) × ○○ %>..................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_ANJUNP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 568, + "Top": 50, + "Width": 155, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "lb_C_AnJunP_K_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 323, + "Top": 48, + "Width": 122, + "Height": 19, + "Caption": "관급/1.1+사급재", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0 + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label194", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 70, + "Width": 672, + "Height": 15, + "Caption": " 미확정설계공종(PS) ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label195", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 90, + "Width": 672, + "Height": 15, + "Caption": " 제비율적용제외공종 ...............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_PSAMT_B_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 70, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_EXCEPT_B_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 90, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add02_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 110, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 4, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_ILBan_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 393, + "Top": 2, + "Width": 45, + "Height": 19, + "Hint": "일반관리비 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_Iyun_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 335, + "Top": 27, + "Width": 68, + "Height": 19, + "Hint": "이윤 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 7, + "MaxValue": { + "extended_hex": "c971a774b0feffc70540" + }, + "Precision": 5, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_IYUN_M_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 442, + "Top": 27, + "Width": 87, + "Height": 19, + "Hint": "이윤 보정액", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 9, + "MaxValue": 999999999, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_AnJunP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 484, + "Top": 47, + "Width": 45, + "Height": 19, + "Hint": "건설공사 안전점검비(건설공사 안전관리 지침) 요율", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "8195438b6ce7fb9f0240" + }, + "Precision": 3, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn04_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1094, + "Width": 782, + "Height": 145, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 4 + }, + "children": [ + { + "class": "TLabel", + "name": "Label158", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 5, + "Width": 670, + "Height": 15, + "Caption": "6. 도급공사비 .............................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_D_SA_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 25, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(도급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_DOGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 5, + "Width": 178, + "Height": 17, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 도급공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"15%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_DOGUP_DblClick" + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_D_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 25, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_SAGUP_SA_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 65, + "Width": 656, + "Height": 15, + "Caption": " 사급자재대 .....................................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SAGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 65, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KWAN_K_SA_", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 45, + "Width": 656, + "Height": 15, + "Caption": " 관급자재대(관급자설치) .........................................................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_KWANGUP_K_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 45, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "Disp_Add04_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 22, + "Top": 85, + "Width": 740, + "Height": 60, + "Enabled": false, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentColor": true, + "ParentCtl3D": false, + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "비고", + "Transparent": true, + "DataWidth": 16, + "ColWidth": 15, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Layout": "tlTop", + "Title.Caption": "명 칭", + "Transparent": true, + "DataWidth": 0, + "ColWidth": 508, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Layout": "tlTop", + "MaxLength": 12, + "Title.Caption": "금 액", + "Transparent": true, + "DataType": "wdtFloat", + "DisplayFormat": "\".......................\"#,#0원", + "ColWidth": 178, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Ctl3D": false, + "BorderStyle": "bsNone", + "EndLines.HorzStyle": "psClear", + "EndLines.VertStyle": "psClear", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Layout": "tlTop", + "Headers.ColHeight": 20, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.HorzStyle": "psClear", + "Lines.VertStyle": "psClear", + "Lines.CellStyle": "psClear", + "Lines.LevelStyle": "psClear", + "ScrollBars": "ssNone", + "SelTrans": 0, + "MaxRowCount": 10, + "OnDrawCell": "Disp_Add_DrawCell", + "ColRowHeight": 20, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "Ed_C_DOGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 46, + "Top": 5, + "Width": 115, + "Height": 17, + "Ctl3D": false, + "TabOrder": 1, + "Alignment": "taCenter", + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "도급공사비표기", + "Items.Strings": [ + "도급공사비", + "도급예정액" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "Ed_C_DOGUP_Change" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_Jeol_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 23, + "Width": 135, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 2, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_UPDN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 23, + "Width": 60, + "Hint": "관급자재대의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.\r\n ※ 안전관리비 계산시는 본래의 값을 이용하여 계산합니다.", + "Ctl3D": false, + "TabOrder": 3, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_DOGUP_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 10, + "Left": 575, + "Top": 5, + "Width": 160, + "Height": 17, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 4, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_Jeol_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 351, + "Top": 44, + "Width": 135, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 5, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "관급자재대절사기준", + "Items.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 절상(절사) 없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_KWN_K_UPDN_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 485, + "Top": 44, + "Width": 60, + "Hint": "관급자재대(관급자설치)의 절상(절하) 기준을 선택하며,\r\n절상(절하)된 금액은 도급공사비 이후의 계산에만 영향을 줍니다.", + "Ctl3D": false, + "TabOrder": 6, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "절상(절사)", + "Items.Strings": [ + "절상", + "반올림", + "절사" + ], + "Values.Strings": [ + "절상", + "반올림", + "절사" + ], + "OnValueChange": "cBx_KWN_Jeol_TValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Pn05_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 30, + "Left": 0, + "Top": 1239, + "Width": 782, + "Height": 35, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 5 + }, + "children": [ + { + "class": "TLabel", + "name": "Label161", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 10, + "Width": 662, + "Height": 15, + "Caption": "7. 총공사비 ............................................ + ...............", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_TOTAL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 575, + "Top": 7, + "Width": 178, + "Height": 20, + "Hint": " \r\n 『 사용자 개별요율 수정 』 단계에서 \r\n 마우스로 더블클릭시 총공사비 금액을 직접 입력할 수 있으며, \r\n 차액은 이윤에서 자동보정됩니다.\r\n 입력범위는 이윤요율이 \"0%\"일때와 \"15%\" 사이일때로 제한됩니다.\r\n ", + "Color": 16776176, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "BorderStyle": "mlbsLine", + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원", + "OnDblClick": "Disp_TOTAL_DblClick" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Tot_Jeol_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 700, + "Left": 388, + "Top": 7, + "Width": 135, + "Hint": "총공사비 금액에서 절사 기준을 선택합니다.\r\n절사된 금액은 이윤에서 자동보정 됩니다.\r\n도급액 버림기준(기본기준 변경)을 선택하면 \r\n총공사비 조정기준을 선택할 수 없습니다.", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clInfoBk", + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.TitleColor": "clMoneyGreen", + "ListOption.Titles": "총공사비절사기준", + "Items.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 이윤보정액 입력", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "cBx_Tot_Add_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 542, + "Top": 7, + "Width": 31, + "Height": 20, + "Hint": "총 공사비 절사 후 보정금액을 선택합니다.\r\n보정금액 : 입력값 * 절사기준 / 10 ", + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 1, + "MaxValue": 9, + "Spinner": true, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyDown": "cBx_Tot_Add_TKeyDown", + "OnKeyPress": "Ed_KeyPress", + "OnChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wEd_TOTAL_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 20, + "Left": 575, + "Top": 7, + "Width": 160, + "Height": 20, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": false, + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnEnter": "Ed_Enter", + "OnExit": "wEd_TOTAL_TExit", + "OnKeyPress": "wEd_TOTAL_TKeyPress" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pnSI_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 909, + "Width": 782, + "Height": 20, + "Align": "alTop", + "BevelOuter": "bvNone", + "Color": "clInfoBk", + "TabOrder": 2 + }, + "children": [ + { + "class": "TLabel", + "name": "Label162", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 5, + "Width": 688, + "Height": 15, + "Caption": " 시공도작성비<(Σ1.직접공사비~Σ4.이윤+사급비)x ○○%> x ...........................", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TwNumLabel", + "name": "Disp_SIGONG_SA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 5, + "Width": 178, + "Height": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlack", + "Font.Height": -15, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentColor": true, + "ParentFont": false, + "BorderStyle": "mlbsLine", + "BorderWidth": 0, + "Format": "#,#0", + "IsNull": false, + "Prefix": ".......................", + "Suffix": "원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SIGONG_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 407, + "Top": 1, + "Width": 39, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 0, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_SIGONG_1_SA", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 110, + "Left": 495, + "Top": 1, + "Width": 39, + "Height": 19, + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 1, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "OnEnter": "Ed_Enter", + "OnExit": "Ed_Exit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + } + ] + } + ] + } + ] + }, + { + "class": "TStatusBar", + "name": "StBar", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 650, + "Width": 1129, + "Height": 21, + "Hint": " 추정가격 : 설계금액(도급공사비) - 부가가치세 \r\n 추정금액 : 설계금액(도급공사비) + 관급자재대(도급자설치) ", + "Color": 41215, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBtnText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "Panels": [ + { + "Alignment": "taCenter", + "Text": "직재:", + "Width": 130 + }, + { + "Alignment": "taCenter", + "Text": "직노:", + "Width": 130 + }, + { + "Alignment": "taCenter", + "Text": "산경:", + "Width": 130 + }, + { + "Alignment": "taCenter", + "Text": "안기:", + "Width": 130 + }, + { + "Alignment": "taCenter", + "Text": "안12:", + "Width": 130 + }, + { + "Alignment": "taCenter", + "Text": "이윤:", + "Width": 130 + }, + { + "Width": 50 + } + ], + "ParentShowHint": false, + "ShowHint": true, + "SimplePanel": false, + "SizeGrip": false, + "UseSystemFont": false + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Pn0_Input", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 40, + "Width": 1129, + "Height": 132, + "Hint": "공사의 기준(계산형식, 종류, 기간 .. )을 설정하면 \r\n설정한 기준에 해당하는 각 항목별 제비율을 자동입력합니다.", + "Align": "alTop", + "BevelInner": "bvLowered", + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 0 + }, + "children": [ + { + "class": "TPanel", + "name": "Panel3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 2, + "Width": 804, + "Height": 128, + "Align": "alLeft", + "BevelOuter": "bvNone", + "TabOrder": 0 + }, + "children": [ + { + "class": "TLabel", + "name": "lbl_Kobo_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 54, + "Left": 15, + "Top": 25, + "Width": 120, + "Height": 20, + "AutoSize": false, + "Caption": "4.고 용 보 험 료:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label4", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 51, + "Left": 15, + "Top": 8, + "Width": 110, + "Height": 12, + "AutoSize": false, + "Caption": "제잡비계산형식 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Kong_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 52, + "Left": 287, + "Top": 4, + "Width": 130, + "Height": 20, + "AutoSize": false, + "Caption": "2.공사의종류(주) :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Lbl_Kong_Kikan", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 53, + "Left": 560, + "Top": 4, + "Width": 100, + "Height": 20, + "AutoSize": false, + "Caption": "3.공사의기간 :", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_JeolSa", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 60, + "Left": 9, + "Top": 88, + "Width": 118, + "Height": 20, + "AutoSize": false, + "Caption": "11.공급가절사기준:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Buga", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 281, + "Top": 88, + "Width": 124, + "Height": 20, + "AutoSize": false, + "Caption": "12.부 가 가 치 세 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_TBugum", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 57, + "Left": 287, + "Top": 25, + "Width": 109, + "Height": 20, + "AutoSize": false, + "Caption": "5.퇴직공제부금비 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Hwan", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 58, + "Left": 287, + "Top": 46, + "Width": 118, + "Height": 20, + "AutoSize": false, + "Caption": "8.환 경 보 전 비 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_AnJun_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 55, + "Left": 15, + "Top": 46, + "Width": 132, + "Height": 20, + "AutoSize": false, + "Caption": "7.산업안전보건관리비:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Kwan_Sa", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 560, + "Top": 25, + "Width": 100, + "Height": 20, + "AutoSize": false, + "Caption": "6.관/사급내용:", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Pos_Sagup", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 61, + "Left": 554, + "Top": 88, + "Width": 100, + "Height": 20, + "AutoSize": false, + "Caption": "13.사급비 위치: ", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Bid_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 63, + "Left": 9, + "Top": 109, + "Width": 118, + "Height": 20, + "AutoSize": false, + "Caption": "14. 낙 찰 방 식 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Nag_Rate", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 64, + "Left": 281, + "Top": 109, + "Width": 124, + "Height": 20, + "AutoSize": false, + "Caption": "15. 이행보증 방식 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Set_Base", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 65, + "Left": 554, + "Top": 109, + "Width": 100, + "Height": 20, + "AutoSize": false, + "Caption": "16. 적용기준 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_iLBan", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 66, + "Left": 616, + "Top": 67, + "Width": 93, + "Height": 20, + "AutoSize": false, + "Caption": "10.일반관리비 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label191", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 67, + "Left": 9, + "Top": 67, + "Width": 182, + "Height": 20, + "AutoSize": false, + "Caption": " 9.건설기계대여금 지급수수료:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kobo_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 54, + "Left": 125, + "Top": 25, + "Width": 93, + "Hint": "조달청등급별 유자격자명부 등록및운용기준 에 의한 등급선택", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 3, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "고용보험료 등급", + "Items.Strings": [ + "없음", + "1 등급", + "2 등급", + "3 등급", + "4 등급", + "5 등급", + "6 등급", + "7 등급이하" + ], + "Values.Strings": [ + "없음", + "1 등급", + "2 등급", + "3 등급", + "4 등급", + "5 등급", + "6 등급", + "7 등급이하" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_JAB_TYPE", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 51, + "Left": 125, + "Top": 4, + "Width": 146, + "Hint": "제잡비 계산형식 선택", + "Color": "clRed", + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [ + "fsBold" + ], + "ListOption.ShowTitle": true, + "ListOption.Titles": "제잡비 계산형식", + "Items.Strings": [ + "일반 형식", + "토지개발공사 형식", + "인천상수도 형식", + "수자원공사 형식", + "지역난방공사 형식", + "고용개선지원(서울)" + ], + "Values.Strings": [ + "일반 형식", + "토지개발공사 형식", + "인천상수도 형식", + "수자원공사 형식", + "지역난방공사 형식", + "고용개선지원(서울)" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kong_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 52, + "Left": 401, + "Top": 4, + "Width": 140, + "Hint": "기본 제비율 적용 공사의 종류를 선택.\r\n - 조달청 제비율 적용\r\n (1) 일반(토목)공사\r\n (2) 조경공사\r\n (3) 산업설비(토목)\r\n (4) 건축공사\r\n (5) 산업설비(건축)\r\n (6) 국가유산수리\r\n - 일반관리비, 이윤, 부가가치세만 적용.\r\n (7) 폐기물처리\r\n (8) 소규모용역", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 1, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "공사의 종류", + "Items.Strings": [ + "(1) 일반(토목)공사", + "(2) 조경공사", + "(3) 산업설비(토목)", + "(4) 건축공사", + "(5) 산업설비(건축)", + "(6) 국가유산수리", + "(7) 폐기물처리", + "(8) 소규모용역" + ], + "Values.Strings": [ + "0", + "2", + "4", + "3", + "1", + "5", + "8", + "9" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_JeolSa", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 60, + "Left": 125, + "Top": 88, + "Width": 146, + "Hint": "공급가액 절사기준 선택(이윤에서 자동보정)", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 10, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "공급가액절사기준", + "Items.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 총공사비에서 조정", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Buga", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 401, + "Top": 88, + "Width": 140, + "Hint": "부가가치세 종류 선택\r\n - 공급가액의 10%\r\n - 재료비의 10%\r\n - 없음\r\n - 산림조합 형식 (재료비 + 산출경비 의 10%) \r\n - 산림조합-면세품 (재료비-면세품 + 산출경비의 10%) ", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 11, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "부가가치세", + "Items.Strings": [ + "(0) 공급가액의 10%", + "(1) 재료비의 10%", + "(2) 없음", + "(3) 산림조합 형식", + "(4) 산림조합-면세품" + ], + "Values.Strings": [ + "(0) 공급가액의 10%", + "(1) 재료비의 10%", + "(2) 없음", + "(3) 산림조합 형식", + "(4) 산림조합-면세품" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_TBugum", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 57, + "Left": 401, + "Top": 25, + "Width": 77, + "Hint": "퇴직공제 부금비의 구분선택\r\n(국가유산수리: 토목적용)", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 4, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "퇴직부금비", + "Items.Strings": [ + "토목공사", + "준설공사", + "건축공사", + "기타" + ], + "Values.Strings": [ + "토목공사", + "준설공사", + "건축공사", + "기타" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Hwan", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 58, + "Left": 401, + "Top": 46, + "Width": 389, + "Hint": "환경보전비 적용기준 선택\r\n※적용제외 : 전기,정보통신,소방시설,국가유산수리공사", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 7, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 15, + "ListOption.ShowTitle": true, + "ListOption.Titles": "환경보전비", + "Items.Strings": [ + "◈ 없음(전기, 정보통신, 소방시설, 국가유산수리)", + "◈ 도로(교량, 터널, 활주로)", + "◈ 플랜트(발전소, 쓰레기소각로)", + "◈ 지하철", + "◈ 철도", + "◈ 상하수도(폐수, 하수처리장, 정수장)", + "◈ 항만(오탁, 준설토, 방지막설치필요시(간척, 준설))", + "◈ 항만(방지막설치불필요시(간척, 준설))", + "◈ 댐", + "◈ 택지개발", + "◈ 주택(재개발, 재건축)", + "◈ 주택(신축)", + "◈ 주택(재개발, 재건축, 주택(신축))외 건축", + "◈ 조경", + "◈ 기타토목(하천등)" + ], + "Values.Strings": [ + "◈ 없음(전기, 정보통신, 소방시설, 국가유산수리)", + "◈ 도로(교량, 터널, 활주로)", + "◈ 플랜트(발전소, 쓰레기소각로)", + "◈ 지하철", + "◈ 철도", + "◈ 상하수도(폐수, 하수처리장, 정수장)", + "◈ 항만(오탁, 준설토, 방지막설치필요시(간척, 준설))", + "◈ 항만(방지막설치불필요시(간척, 준설))", + "◈ 댐", + "◈ 택지개발", + "◈ 주택(재개발, 재건축)", + "◈ 주택(신축)", + "◈ 주택(재개발, 재건축, 주택(신축))외 건축", + "◈ 조경", + "◈ 기타토목(하천등)" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_AnJun_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 55, + "Left": 146, + "Top": 46, + "Width": 125, + "Hint": "산업안전보건관리비 적용시 건설업의 분류 선택", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 6, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "안전관리비", + "Items.Strings": [ + "건축공사", + "토목공사", + "중건설공사", + "특수건설공사" + ], + "Values.Strings": [ + "0", + "1", + "3", + "4" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kwan_Sa", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 650, + "Top": 25, + "Width": 140, + "Hint": "산업안전보건관리비 계산시 관/사급 내용에 계산될 항목 선택", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 5, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "관/사급비 지정", + "Items.Strings": [ + "관급자재대/1.1", + "관급자재대", + "사급자재대/1.1", + "사급자재대", + "관급/1.1+사급재", + "관급재+사급/1.1", + "(관급+사급)/1.1", + "관급재+사급재" + ], + "Values.Strings": [ + "관급자재대/1.1", + "관급자재대", + "사급자재대/1.1", + "사급자재대", + "관급/1.1+사급재", + "관급재+사급/1.1", + "(관급+사급)/1.1", + "관급재+사급재" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Pos_Sagup", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 61, + "Left": 650, + "Top": 88, + "Width": 140, + "Hint": "사급자재비 위치를 선택\r\n기본 : 재료비에 포함(직접공사비로 적용)", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 12, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "사급자재비 위치", + "Items.Strings": [ + "재료비에 포함", + "이윤 다음", + "도급공사비 직전", + "관급자재대 다음" + ], + "Values.Strings": [ + "3", + "1", + "2", + "0" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kun_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 62, + "Left": 651, + "Top": 4, + "Width": 140, + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 16, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "Visible": false, + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "공사의 기간", + "Items.Strings": [ + "청사(11층이하)", + "청사(12층이상)", + "학교", + "국가유산", + "관람집회시설", + "전시시설", + "기타" + ], + "Values.Strings": [ + "청사(11층이하)", + "청사(12층이상)", + "학교", + "국가유산", + "관람집회시설", + "전시시설", + "기타" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Bid_Type", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 63, + "Left": 125, + "Top": 109, + "Width": 146, + "Hint": "건설하도급대금지급보증서발급수수료 계산방식을 위한 선택사항", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 13, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "300억 이상공사", + "Values.Strings": [ + "종합심사낙찰 외 공사", + "종합심사낙찰대상공사", + "턴키(대안) 공사" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_KONGSU", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 64, + "Left": 401, + "Top": 109, + "Width": 140, + "Hint": "공사이행보증 수수료 계산을 위한 이행보증방식을 선택\r\n( 일반계약일경우 추정가격 300억 이상공사에 적용 )", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 14, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "낙찰제방식 선택", + "Items.Strings": [ + "일반계약", + "최저가,기술제안" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Set_Base", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 65, + "Left": 650, + "Top": 109, + "Width": 140, + "Hint": "제비율표 적용기준 선택(간접노무비, 일반관리비, 이윤)\r\n - 일반(국가계약법) : 조달청 제비율표 적용.\r\n - 일반(지방계약법) : 조달청 제비율표 적용.\r\n - 행자부기준 : 행정자치부 제비율 적용.", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 15, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "적용기준 선택", + "Items.Strings": [ + "일반(국가계약법)", + "일반(지방계약법)", + "행자부기준" + ], + "Values.Strings": [ + "2", + "0", + "1" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kong_Kikan", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 53, + "Left": 650, + "Top": 4, + "Width": 140, + "Hint": "공사기간 30일 미만 선택시 건강,연금보험료 및 노인장기요양보험료 계상제외", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 2, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "공사의 기간", + "Items.Strings": [ + " 6개월이하", + " 7개월 ~ 12개월이하", + "13개월 ~ 36개월이하", + "36개월이상" + ], + "Values.Strings": [ + " 30일 미만", + " 6개월이하", + " 7개월 ~ 12개월이하", + "13개월 ~ 36개월이하", + "37개월이상" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_iLBan", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 66, + "Left": 713, + "Top": 67, + "Width": 77, + "Hint": "일반관리비의 전문공사여부 선택\r\n국가계약법, 지방계약법 선택은 [16.적용기준] 에서 설정", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 9, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "일반관리비", + "Items.Strings": [ + "(주)공사", + "전문공사" + ], + "Values.Strings": [ + "(주)공사", + "전문공사" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_EQIP", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 67, + "Left": 190, + "Top": 67, + "Width": 406, + "Hint": "건설기계대여금지급보증서발급수수료 적용기준 선택", + "Color": "clBlue", + "Ctl3D": false, + "TabOrder": 8, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnEnter": "cmBx_Kong_TypeEnter", + "OnExit": "cmBx_Kong_TypeExit", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": "clMoneyGreen", + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 15, + "ListOption.ShowTitle": true, + "ListOption.Titles": "건설기계대여대금 지급보증액 발급금액", + "Items.Strings": [ + "◈ 없음(국가유산수리공사)", + "◈ 일반공사(토목,산업설비,조경,건축)", + "◈ 준설, 포장공사, 토공사, 비계·구조물해제", + "◈ 상하수도설비, 보링·그라우팅, 수중공사", + "◈ 석공사, 시설물유지관리, 철근·콘크리트, 가스시설공사(1종)", + "◈ 조경시설물설치, 조경식재, 철도궤도, 도장공사, 철강재설치공사", + "◈ 기계설비공사업 및 그외" + ], + "Values.Strings": [ + "-1", + "0", + "1", + "2", + "3", + "4", + "5" + ], + "OnValueChange": "TYPEChange" + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_Kobo", + "flags": [], + "child_pos": null, + "properties": { + "Left": 222, + "Top": 25, + "Width": 49, + "Height": 20, + "Hint": "고용보험료율 등급 자동적용( 단위 : 등급, 억, ↑:이상, ↓:미만 ) \r\n공사의 공사배정규모(추정금액)을 기준으로 요율을 자동적용.\r\n토목공사 = 1 : 1400↑, 2 : 900↑, 3 : 570↑, 4 : 370↑, 5 : 220↑, 6 : 140↑, 7 : 140↓\r\n건축공사 = 1 : 1400↑, 2 : 800↑, 3 : 520↑, 4 : 340↑, 5 : 210↑, 6 : 130↑, 7 : 130↓\r\n국가유산수리공사 = 건축공사와 동일", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Caption": "자동", + "ParentFont": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "OnClick": "mBtn_KoboClick", + "ParentColor": false, + "Color": 16776176, + "TabOrder": 17 + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TPanel", + "name": "Pn1_Input", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 172, + "Width": 1129, + "Height": 241, + "Align": "alTop", + "BevelInner": "bvLowered", + "BevelOuter": "bvNone", + "TabOrder": 1, + "DesignSize": [ + 1129, + 241 + ] + }, + "children": [ + { + "class": "TPageControl", + "name": "PgAddAmt", + "flags": [], + "child_pos": null, + "properties": { + "Left": 1, + "Top": 1, + "Width": 1127, + "Height": 239, + "Hint": " \r\n1. 기본 추가금액 : 관급자재대 등 기본추가금액\r\n 사급자재대 등 기타추가금액을 입력.\r\n \r\n2. 일반관리비 직전 : 순공사원가(경비) 금액에 포함될 추가금액 입력.\r\n \r\n3. 이윤~공급가액 : 공급가액에 포함될 추가금액 입력.\r\n \r\n4. 도급공사비 직전 : 도급공사비에 포함될 추가금액 입력.\r\n \r\n5. 관급자재~총공사비 : 총공사비에 포함될 추가금액 입력.\r\n \r\n6. 기준변경 및 인쇄설정 : 요율수정 상태에서 변경할 수 있는 설정변경.\r\n ", + "ActivePage": "tabAdd_BSC", + "Align": "alClient", + "ParentShowHint": false, + "ShowHint": true, + "TabHeight": 22, + "TabIndex": 1, + "TabOrder": 0, + "TabStop": false, + "OnChange": "PgAddAmtChange", + "OnChanging": "PgAddAmtChanging" + }, + "children": [ + { + "class": "TTabSheet", + "name": "tabAdd5", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 5, + "Hint": "공사비 산출에 필요한 기본추가금액 및 공사기간등을 입력합니다.\r\n \r\n요율수정상태에서 변경할 수 있는 계산방식을 설정합니다.", + "Caption": " 계산/인쇄 설정 ", + "ImageIndex": 4, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [ + { + "class": "TPanel", + "name": "pnSet_Def_Amt_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 776, + "Top": 2, + "Width": 330, + "Height": 175, + "BevelInner": "bvRaised", + "BevelOuter": "bvLowered", + "Enabled": false, + "TabOrder": 0, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label5", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 71, + "Width": 270, + "Height": 12, + "Hint": "『산업안전보건관리비』,『건설공사안전점검비』,『공사손해보험료』 계산시 \r\n 기준선택 『 7.관/사급내용 』에 선택된 금액을 반영하여 계산하며, \r\n ※ 이때 관급자재대는 【 도급자설치 관급자재대 】를 의미합니다.", + "Caption": "※ 도급자설치 관급자재대 금액만 계산식에 적용", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_NBUGAM_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 51, + "Width": 252, + "Height": 12, + "Caption": "- 비과세 자 재 대 : [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label166", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 132, + "Width": 252, + "Height": 12, + "Caption": "- 관급자설치 관급비: [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lbl_Kwan_Combo_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 90, + "Width": 252, + "Height": 12, + "Caption": "- 도급자설치 관급비: [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label96", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 109, + "Width": 252, + "Height": 12, + "Caption": " ┕ (조달수수료): [ ]원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KWANGUP_del", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 70, + "Left": 154, + "Top": 87, + "Width": 100, + "Height": 18, + "Hint": " [도급자설치관급자재대 + 관급자설치관급자재대] 금액을 입력하세요. \r\n ( 도급자설치관급자재대 금액만 산업안전보건관리비 대상액에 포함 ) \r\n \r\n 『도급자설치 관급자재대에 포함된』조달수수료를 입력합니다. \r\n ( 조달수수료 : 산업안전보건관리비 대상액에 제외 ) ", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabStop": false, + "TabOrder": 2, + "Visible": false, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_NBUGAM_del", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 111, + "Left": 154, + "Top": 48, + "Width": 100, + "Height": 18, + "Hint": "경비(안전관리비~환경보전비) 및 일반관리비의 산식중 \r\n재료비를 포함하는 산식에 비과세자재대가 포함되어 계산됨.\r\n※ 직접재료비/공급가액에 포함되지 않음", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 0, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KWANGUP_K_del", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 72, + "Left": 154, + "Top": 129, + "Width": 100, + "Height": 18, + "Hint": " 관급자설치 관급자재대 금액을 입력하세요. \r\n ( 산업안전보건관리비 대상액에 제외 )", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 5, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KWANGUP_D_d", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 71, + "Left": 154, + "Top": 87, + "Width": 100, + "Height": 18, + "Hint": " 도급자설치 관급자재대 금액을 입력하세요. \r\n ( 산업안전보건관리비 대상액에 포함 )\r\n \r\n 『도급자설치 관급자재대에 포함된』조달수수료를 입력합니다. \r\n ( 조달수수료 : 산업안전보건관리비 대상액에 제외 ) ", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_JODAL_del", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 120, + "Left": 154, + "Top": 106, + "Width": 100, + "Height": 18, + "Hint": " 도급자설치 관급자재대에 포함된 조달 수수료를 입력 \r\n ( 산업안전 보건관리비 대상액에 제외 ) ", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 4, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "cBx_Kwan_Comb_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 21, + "Top": 69, + "Width": 292, + "Height": 17, + "Hint": "※ 도급자설치 관급자재대 금액만 산업안전보건관리비 계산식에 적용\r\n \r\n『산업안전보건관리비』,『건설공사안전점검비』,『공사손해보험료』 계산시 \r\n 기준선택 『 7.관/사급내용 』에 선택된 금액을 반영하여 계산하며, \r\n ※ 이때 관급자재대는 【 도급자설치 관급자재대 】를 의미합니다.", + "Caption": "(도급자설치 + 관급자설치) 관급자재대 분리입력", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "TabOrder": 1, + "OnClick": "cBx_Kwan_Comb_delClick" + }, + "children": [] + }, + { + "class": "TCheckBox", + "name": "cBx_Auto_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 239, + "Top": 25, + "Width": 77, + "Height": 17, + "Hint": "비과세 자재대, 관급자재대(도금, 관급), 조달수수료 등\r\n위 항목의 금액란을 마우스 더블클릭 할때 \r\n내역서의 공종구분에서 설정된 금액을 불러 자동으로 입력합니다.", + "TabStop": false, + "Caption": "금액 자동", + "TabOrder": 6 + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pnSet_Optn", + "flags": [], + "child_pos": null, + "properties": { + "Left": 40, + "Top": 2, + "Width": 330, + "Height": 195, + "BevelInner": "bvRaised", + "BevelOuter": "bvLowered", + "TabOrder": 1 + }, + "children": [ + { + "class": "TLabel", + "name": "Label3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 14, + "Top": 44, + "Width": 180, + "Height": 12, + "Caption": "- 산업안전보건관리비 자동계산:", + "ParentShowHint": false, + "ShowHint": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label175", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 13, + "Top": 147, + "Width": 132, + "Height": 20, + "AutoSize": false, + "Caption": "- 부 가 가 치 세 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label176", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 61, + "Top": 83, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": "┕ 관/사급내용:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label68", + "flags": [], + "child_pos": null, + "properties": { + "Left": 11, + "Top": 15, + "Width": 252, + "Height": 12, + "Caption": "- 상시 근로자노무비: [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label185", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 13, + "Top": 168, + "Width": 132, + "Height": 20, + "AutoSize": false, + "Caption": "- 도급액 버림기준 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label34", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 61, + "Top": 104, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": "┕ 1.2배 비교", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label36", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 61, + "Top": 62, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": "┕ 건설업 분류:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label200", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 13, + "Top": 126, + "Width": 132, + "Height": 20, + "AutoSize": false, + "Caption": "- 안전.품질 관리비 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_ANJUN", + "flags": [], + "child_pos": null, + "properties": { + "Left": 195, + "Top": 42, + "Width": 126, + "Height": 19, + "Hint": "산업안전 보건관리비의 비교금액을 제비율표에 의해 자동계산합니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 1, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.Titles": "자동계산 여부지정", + "Items.Strings": [ + "사용자 수동계산", + "제비율표자동계산" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "cmBx_ANJUNValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Buga1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 142, + "Top": 147, + "Width": 140, + "Hint": "부가가치세의 종류를 선택합니다.\r\n - 공급가액의 10%\r\n - 재료비의 10%\r\n - 없음\r\n - 산림조합 형식 (재료비 + 산출경비 의 10%) \r\n - 산림조합-면세품 (재료비-면세품 + 산출경비의 10%) ", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 5, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "부가가치세", + "Items.Strings": [ + "(0) 공급가액의 10%", + "(1) 재료비의 10%", + "(2) 없음", + "(3) 산림조합 형식", + "(4) 산림조합-면세품" + ], + "Values.Strings": [ + "(0) 공급가액의 10%", + "(1) 재료비의 10%", + "(2) 없음", + "(3) 임 협 식", + "(4) 산림조합-면세품" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kwan_Sa1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 176, + "Top": 83, + "Width": 125, + "Hint": "산업안전 보건관리비의 재료비에 포함될 관급자재대의 계산방식을 선택합니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 3, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "관/사급비 지정", + "Items.Strings": [ + "관급자재대/1.1", + "관급자재대", + "사급자재대/1.1", + "사급자재대", + "관급/1.1+사급재", + "관급재+사급/1.1", + "(관급+사급)/1.1", + "관급재+사급재" + ], + "Values.Strings": [ + "관급자재대/1.1", + "관급자재대", + "사급자재대/1.1", + "사급자재대", + "관급/1.1+사급재", + "관급재+사급/1.1", + "(관급+사급)/1.1", + "관급재+사급재" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_SANGSI", + "flags": [], + "child_pos": null, + "properties": { + "Left": 144, + "Top": 12, + "Width": 100, + "Height": 18, + "Hint": "건강,연금 보험료 계산시 비교검토금액", + "Color": "clBtnFace", + "Enabled": false, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 7, + "BorderStyle": "bsNone", + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Dog_Jeol", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 142, + "Top": 168, + "Width": 140, + "Hint": "도급공사비 금액에서 버림(절사) 기준을 선택합니다.\r\n도급액 버림기준을 선택하면 총공사비 조정기준을 선택할 수 없습니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 6, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ItemCount": 9, + "ListOption.ShowTitle": true, + "ListOption.Titles": "도급공사비 버림기준", + "Items.Strings": [ + " 도급액 버림없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "Values.Strings": [ + " 도급액 버림없음", + " 10원 미만", + " 100원 미만", + " 1,000원 미만", + " 10,000원 미만", + " 100,000원 미만", + " 1,000,000원 미만", + " 10,000,000원 미만", + "100,000,000원 미만" + ], + "OnValueChange": "cBx_Tot_Jeol_ValueChange" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_CH_BO", + "flags": [], + "child_pos": null, + "properties": { + "Left": 7, + "Top": 4, + "Width": 277, + "Height": 34, + "Hint": " 설계변경내역의 건강보험료,연금보험료, \r\n 노인장기요양보험료,퇴직부금기 계산방식을 선택합니다. \r\n 단, 장기요양보험료 및 퇴직부금비 적용기준은 \r\n \"당초액 + 증감액(비율)\" 일때만 적용됩니다.", + "BevelInner": "bvLowered", + "TabOrder": 0, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label103", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 59, + "Left": 7, + "Top": 8, + "Width": 99, + "Height": 20, + "AutoSize": false, + "Caption": "- 건강연금퇴직: ", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_CH_BO", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 68, + "Left": 104, + "Top": 8, + "Width": 161, + "Hint": " 설계변경내역의 건강보험료,연금보험료, \r\n 노인장기요양보험료,퇴직부금기 계산방식을 선택합니다. \r\n 단, 장기요양보험료 및 퇴직부금비 적용기준은 \r\n \"당초액 + 증감액(비율)\" 일때만 적용됩니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentFont": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "보험료 계산방식", + "Items.Strings": [ + "직접노무비 x 요율", + "당초액 + 직노증감x요율", + "당초액 + 증감액(비율)" + ], + "Values.Strings": [ + "0", + "1", + "2" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TwCombo", + "name": "cmBx_Anjun_DN", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 69, + "Left": 176, + "Top": 104, + "Width": 143, + "Hint": "산업안전 보건관리비의 1.2배 비교값 계산전 소수점 버림여부를 선택합니다.\r\n( 기본값 ː 소수 버림 후 1.2배 단, 지역난방 ː 소수 버림전 1.2배 ) ", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 4, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "배교금액 계산방식", + "Items.Strings": [ + "소수 버림 후 1.2배", + "소수 버림 전 1.2배" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_AnJun_Type1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 55, + "Left": 176, + "Top": 62, + "Width": 108, + "Hint": "산업안전보건관리비 적용시 건설업의 분류 선택", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 2, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.ShowTitle": true, + "ListOption.Titles": "안전관리비", + "Items.Strings": [ + "건축공사", + "토목공사", + "중건설공사", + "특수건설공사" + ], + "Values.Strings": [ + "0", + "1", + "3", + "4" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_AnPum", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 73, + "Left": 142, + "Top": 126, + "Width": 139, + "Hint": "안전관리비 및 품질관리비를 산출경비로 포함하여 계상\r\n아래의 금액 계산시 영향을 줍니다.\r\n - 공사이행보증수수료\r\n - 건설하도급대금지급보증서발급수수료\r\n - 환경보전비\r\n - 건설기계대여지급보증서발급수수료\r\n산출경비 = 내역서경비 + 안전관리비 + 품질관리비", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 8, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "안전관리비,품질관리비", + "Items.Strings": [ + "산출경비로 포함", + "산출경비로 미포함" + ], + "Values.Strings": [ + "1", + "0" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pnSet_Wonga", + "flags": [], + "child_pos": null, + "properties": { + "Left": 410, + "Top": 2, + "Width": 330, + "Height": 195, + "BevelInner": "bvRaised", + "BevelOuter": "bvLowered", + "TabOrder": 2 + }, + "children": [ + { + "class": "TLabel", + "name": "Label178", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 32, + "Width": 252, + "Height": 12, + "Caption": "- 간 접 재 료 비 : [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label179", + "flags": [], + "child_pos": null, + "properties": { + "Left": 24, + "Top": 82, + "Width": 144, + "Height": 12, + "Caption": "- 원가계산서 비고란 인쇄" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label180", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 58, + "Top": 100, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": "┕ 직접재료비:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label181", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 58, + "Top": 144, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": "┕ 직접노무비:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label182", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 58, + "Top": 166, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": "┕ 산출경비 :", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label69", + "flags": [], + "child_pos": null, + "properties": { + "Left": 57, + "Top": 13, + "Width": 191, + "Height": 12, + "Caption": "※ 원가계산서 인쇄시 적용 ※ ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label184", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 56, + "Left": 58, + "Top": 122, + "Width": 94, + "Height": 20, + "AutoSize": false, + "Caption": " 간접재료비:", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label186", + "flags": [], + "child_pos": null, + "properties": { + "Left": 36, + "Top": 54, + "Width": 240, + "Height": 12, + "Caption": "작업설,부산물(△): [ ]원" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KAN_M", + "flags": [], + "child_pos": null, + "properties": { + "Left": 157, + "Top": 29, + "Width": 100, + "Height": 18, + "Hint": "직접재료비에 포함된 간접재료비를 입력합니다.\r\n원가계산서 인쇄시에만 적용됩니다.", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 0, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnExit": "Ed_C_KAN_MExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwEdit", + "name": "Ed_S_DAMT_M", + "flags": [], + "child_pos": null, + "properties": { + "Left": 146, + "Top": 100, + "Width": 126, + "Height": 18, + "Hint": "원가계산서의 비고란에 인쇄될 직접재료비의 내용을 입력합니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 2, + "ImeName": "Microsoft Office IME 2007", + "MaxLength": 20, + "ParentCtl3D": false, + "Layout": "tlCenter", + "OnExit": "Ed_C_KAN_MExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwEdit", + "name": "Ed_S_DAMT_L", + "flags": [], + "child_pos": null, + "properties": { + "Left": 146, + "Top": 144, + "Width": 126, + "Height": 18, + "Hint": "원가계산서의 비고란에 인쇄될 직접노무비의 내용을 입력합니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 4, + "ImeName": "Microsoft Office IME 2007", + "MaxLength": 20, + "ParentCtl3D": false, + "Layout": "tlCenter", + "OnExit": "Ed_C_KAN_MExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwEdit", + "name": "Ed_S_DAMT_S", + "flags": [], + "child_pos": null, + "properties": { + "Left": 146, + "Top": 166, + "Width": 126, + "Height": 18, + "Hint": "원가계산서의 비고란에 인쇄될 산출경비의 내용을 입력합니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 5, + "ImeName": "Microsoft Office IME 2007", + "MaxLength": 20, + "ParentCtl3D": false, + "Layout": "tlCenter", + "OnExit": "Ed_C_KAN_MExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwEdit", + "name": "Ed_S_KAMT_M", + "flags": [], + "child_pos": null, + "properties": { + "Left": 146, + "Top": 122, + "Width": 126, + "Height": 18, + "Hint": "원가계산서의 비고란에 인쇄될 간접재료비의 내용을 입력합니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 3, + "ImeName": "Microsoft Office IME 2007", + "MaxLength": 20, + "ParentCtl3D": false, + "Layout": "tlCenter", + "OnExit": "Ed_C_KAN_MExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_BUSAN", + "flags": [], + "child_pos": null, + "properties": { + "Left": 157, + "Top": 51, + "Width": 100, + "Height": 18, + "Hint": "내역서에 반영되어 직접재료비에서 감액된 작업설,부산물 입력합니다.\r\n( 기존 시설물의 철거, 해체, 이설등으로 발생된 금액은 해당없음 )\r\n \r\n재료비 전체 금액에는 변동이 없으나, 산업안전보건관리비 계산시 \r\n직접재료비 금액에 작업설,부산물 금액이 합산 적용됩니다. \r\n( 이유 : 작업,부산물 금액이 (-) 금액 이므로 )", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 12, + "MaxValue": 999999999, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "tabAdd_BSC", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 7, + "Caption": " 수동/자동 금액 ", + "ImageIndex": 6, + "DesignSize": [ + 1119, + 207 + ] + }, + "children": [ + { + "class": "TLabel", + "name": "Label183", + "flags": [], + "child_pos": null, + "properties": { + "Left": 12, + "Top": 189, + "Width": 234, + "Height": 12, + "Caption": "◆ 공사이행 수수료 : 공기 [ 5.0 ]년공사" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label29", + "flags": [], + "child_pos": null, + "properties": { + "Left": 283, + "Top": 189, + "Width": 192, + "Height": 12, + "Caption": "◆ PQ공사손해보험요율:[ 5.000 ]%" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label173", + "flags": [], + "child_pos": null, + "properties": { + "Left": 513, + "Top": 185, + "Width": 153, + "Height": 20, + "Hint": "관급자재대( 도급자설치 + 관급자설치 ) 금액을 통합하여 적용합니다.\r\n분리인쇄 선택시 절상/절사 기준도 각각 적용됩니다.", + "AutoSize": false, + "Caption": "※ 도급자설치 관급자설치:", + "Color": "clBlue", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWhite", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "RGrid_Base1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 7, + "Left": 7, + "Top": 0, + "Width": 474, + "Height": 181, + "Hint": "자동란에 체크된 비목은 \r\n내역서의 공종구분(안전관리비..관급자재대)에 설정된 금액이\r\n자동으로 입력되어 계산합니다.\r\n수동 입력일경우 더블클릭으로 내역서에서 금액을 불러올 수 있습니다.", + "Anchors": [ + "akLeft", + "akTop", + "akBottom" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 0, + "Columns": [ + { + "Alignment": "taCenter", + "Ctl3D": false, + "EditStyle": "wesBoolean", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Title.Caption": "자동", + "DataType": "wdtBool", + "DataWidth": 1, + "ColWidth": 30, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "비목구분 (비목명)", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditColor": true, + "EditFormat": "#,0", + "EditStyle": "wesNumber", + "Footer.Style": [], + "MaxLength": 12, + "MaxValue": "999999999999", + "MinValue": "0", + "Title.Caption": "금 액", + "DataType": "wdtFloat", + "DisplayFormat": "#,# ", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "설 명", + "DataWidth": 50, + "ColWidth": 260, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "세부공종코드", + "Visible": false, + "DataWidth": 16, + "ColWidth": 100, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "공종구분", + "Visible": false, + "DataType": "wdtSmall", + "DataWidth": 2, + "ColWidth": 60, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnClick": "RGrid_Base_Enter", + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "RGrid_Base_Enter", + "OnExit": "RGrid_Base_CellExit", + "OnKeyDown": "RGrid_KeyDown", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.Title.Caption": "9", + "Headers.ColHeight": 25, + "Headers.GrpHeight": 42, + "FixedStyle.CellStyle": "wcsNormal", + "FixedStyle.Color": "clInfoBk", + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "FixedStyle.Options": [ + "wfxColumnColor", + "wfxEditing", + "wfxSelecting" + ], + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoFocusRect" + ], + "RowCount": 9, + "ScrollBars": "ssVertical", + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellEnter": "RGrid_Base_Enter", + "OnCellExit": "RGrid_Base_CellExit", + "OnDrawCell": "RGrid_Base1DrawCell", + "OnRowChange": "RGrid_Base_RowChange", + "OnSelectionChange": "RGrid_Base_CellExit", + "OnAfterPost": "RGrid_Base_AfterPost", + "OnValueChanged": "RGrid_Base_ValueChanged", + "ColRowHeight": 25, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "RGrid_Base2", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 7, + "Left": 488, + "Top": 0, + "Width": 625, + "Height": 181, + "Hint": "자동란에 체크된 비목은 \r\n내역서의 공종구분(안전관리비..관급자재대)에 설정된 금액이\r\n자동으로 입력되어 계산합니다.\r\n수동 입력일경우 더블클릭으로 내역서에서 금액을 불러올 수 있습니다.", + "Anchors": [ + "akLeft", + "akTop", + "akBottom" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 1, + "Columns": [ + { + "Alignment": "taCenter", + "Ctl3D": false, + "EditStyle": "wesBoolean", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "Footer.Style": [], + "Title.Caption": "자동", + "DataType": "wdtBool", + "DataWidth": 1, + "ColWidth": 30, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "비목구분 (비목명)", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditColor": true, + "EditFormat": "#,0", + "EditStyle": "wesNumber", + "Footer.Style": [], + "MaxLength": 12, + "MaxValue": "999999999999", + "MinValue": "0", + "Title.Caption": "금 액", + "DataType": "wdtFloat", + "DisplayFormat": "#,# ", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "설 명", + "DataWidth": 50, + "ColWidth": 260, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "세부공종코드", + "Visible": false, + "DataWidth": 16, + "ColWidth": 100, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "공종구분", + "Visible": false, + "DataType": "wdtSmall", + "DataWidth": 2, + "ColWidth": 60, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnClick": "RGrid_Base_Enter", + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "RGrid_Base_Enter", + "OnExit": "RGrid_Base_CellExit", + "OnKeyDown": "RGrid_KeyDown", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.Title.Caption": "9", + "Headers.ColHeight": 25, + "Headers.GrpHeight": 42, + "FixedStyle.CellStyle": "wcsNormal", + "FixedStyle.Color": "clInfoBk", + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "FixedStyle.Options": [ + "wfxColumnColor", + "wfxEditing", + "wfxSelecting" + ], + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoFocusRect" + ], + "RowCount": 9, + "ScrollBars": "ssVertical", + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellEnter": "RGrid_Base_Enter", + "OnCellExit": "RGrid_Base_CellExit", + "OnDrawCell": "RGrid_Base2DrawCell", + "OnRowChange": "RGrid_Base_RowChange", + "OnSelectionChange": "RGrid_Base_CellExit", + "OnAfterPost": "RGrid_Base_AfterPost", + "OnValueChanged": "RGrid_Base_ValueChanged", + "ColRowHeight": 25, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_Y_KONGSU", + "flags": [], + "child_pos": null, + "properties": { + "Left": 175, + "Top": 186, + "Width": 28, + "Height": 18, + "Hint": "공사이행보증수수료 계산시 적용될 공기", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 2, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "cdccccccccccccc70540" + }, + "Precision": 1, + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_R_KONGSA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 422, + "Top": 186, + "Width": 41, + "Height": 18, + "Hint": "공사손해보험 요율을 입력합니다.", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 3, + "AutoSelect": false, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 3, + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cmBx_Kwan_Comb", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 650, + "Left": 667, + "Top": 185, + "Width": 100, + "Hint": "관급자재대( 도급자설치 + 관급자설치 ) 금액을 통합하여 적용합니다.\r\n분리인쇄 선택시 절상/절사 기준도 각각 적용됩니다.", + "Color": 8454143, + "Ctl3D": false, + "TabOrder": 4, + "ImeName": "한국어(한글) (MS-IME98)", + "ParentCtl3D": false, + "OnClick": "wCombo_Click", + "OnKeyPress": "Ed_KeyPress", + "EnableNull": false, + "ListOption.Color": 16776176, + "ListOption.Font.Charset": "HANGEUL_CHARSET", + "ListOption.Font.Color": "clBlack", + "ListOption.Font.Height": -12, + "ListOption.Font.Name": "굴림체", + "ListOption.Font.Style": [], + "ListOption.ShowTitle": true, + "ListOption.Titles": "통합인쇄설정", + "Items.Strings": [ + "(0) 분리인쇄", + "(1) 통합인쇄" + ], + "Values.Strings": [ + "0", + "1" + ], + "OnValueChange": "cmBx_Kwan_Sa1ValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TTabSheet", + "name": "TabSheet1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 6, + "Hint": "기타금액은 필요할 경우에만 입력하여 계산하십시요. \r\n \r\n원가계산서(실적방식제외)에 인쇄될 내용을 입력합니다.", + "Caption": " 기타금액 및 인쇄 ", + "ImageIndex": 5, + "TabVisible": false + }, + "children": [ + { + "class": "TPanel", + "name": "pnSet_Etc_Amt_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 40, + "Top": 2, + "Width": 330, + "Height": 175, + "BevelInner": "bvRaised", + "BevelOuter": "bvLowered", + "TabOrder": 0 + }, + "children": [ + { + "class": "TLabel", + "name": "lb_ANJUN_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 32, + "Top": 68, + "Width": 252, + "Height": 12, + "Caption": "- 내역서 안전관리비: [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_PEGI_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 32, + "Top": 92, + "Width": 252, + "Height": 12, + "Caption": "- 폐기물 수 수 료 : [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "lb_KOLJAE_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 32, + "Top": 116, + "Width": 252, + "Height": 12, + "Caption": "- 골 재 사 용 료 : [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label7", + "flags": [], + "child_pos": null, + "properties": { + "Left": 32, + "Top": 143, + "Width": 252, + "Height": 12, + "Caption": "- 사 급 자 재 대 : [ ]원" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label134", + "flags": [], + "child_pos": null, + "properties": { + "Left": 3, + "Top": 8, + "Width": 321, + "Height": 41, + "AutoSize": false, + "Caption": "※ 아래 기타금액은 호환을 위한 금액입니다. \r\n 필요할 경우에만 금액을 입력하여 계산하십시요.", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_ANJUN_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 165, + "Top": 65, + "Width": 100, + "Height": 18, + "Hint": "안전관리비 계산시 제외할(내역서에 이미 계산된) \r\n안전관리비 대상액을 입력합니다.", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 0, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_PEGI_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 165, + "Top": 89, + "Width": 100, + "Height": 18, + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": false, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_KOLJAE_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 165, + "Top": 113, + "Width": 100, + "Height": 18, + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Ed_C_SAGUP_del", + "flags": [], + "child_pos": null, + "properties": { + "Left": 165, + "Top": 137, + "Width": 100, + "Height": 18, + "Hint": " 사급자재대를 내역서 안에 포함하여 직접공사비로 계산한 \r\n 경우에는 금액을 입력하지 마십시요. ", + "Color": 8454143, + "ParentColor": false, + "ParentCtl3D": false, + "ParentShowHint": false, + "PopupMenu": "Popup_Add_AMT", + "ShowHint": true, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 12, + "OnDblClick": "Ed_KN_SADblClick", + "OnEnter": "Ed_R_C_Enter", + "OnExit": "Ed_R_CExit", + "OnKeyPress": "Ed_KeyPress" + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "tabAdd1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1, + "Caption": " 일반관리비 직전 ", + "DesignSize": [ + 1119, + 207 + ] + }, + "children": [ + { + "class": "TRealGrid", + "name": "RGrid_Add01", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1, + "Left": 98, + "Top": 0, + "Width": 1022, + "Height": 207, + "Hint": "좌측의 비용추가/비용삭제 버튼을 클릭하여\r\n일반관리비 직전의 경비 항목을 추가/삭제 할 수 있습니다.\r\n※ 산출경비대상 옵션 ※\r\n※ 적용대상 : 해당비용은 경비금액에 계상되지 않음 ※", + "Anchors": [ + "akLeft", + "akTop", + "akRight", + "akBottom" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "추가비용의 명칭", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "단위", + "DataWidth": 6, + "ColWidth": 42, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "규격 / 비고", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "Title.Caption": "금 액", + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "1단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "2단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "3단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "4단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "5단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "6단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "7단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "8단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "9단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "Items.Strings": [ + "", + "포함된금액" + ], + "ListOption.Color": 16776176, + "Title.Caption": "산출경비대상", + "Values.Strings": [ + "0", + "1" + ], + "DataWidth": 16, + "ColWidth": 78, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnDblClick": "Ed_KN_SADblClick", + "OnDragDrop": "RGrid_Add_DragDrop", + "OnDragOver": "RGrid_Add_DragOver", + "OnExit": "RGrid_SelectionChange", + "OnKeyDown": "RGrid_KeyDown", + "OnMouseDown": "RGrid_Add_MouseDown", + "PopupMenu": "Popup_Add_AMT", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.ColHeight": 25, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoFocusRect" + ], + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellExit": "RGrid_SelectionChange", + "OnDrawCell": "RGrid_Add01DrawCell", + "OnRowChange": "RGrid_AfterPost", + "OnSelectionChange": "RGrid_SelectionChange", + "OnAfterPost": "RGrid_AfterPost", + "ColRowHeight": 22, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + } + ] + }, + { + "class": "TTabSheet", + "name": "tabAdd2", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2, + "Caption": " 이윤 ~ 라)공급가액 ", + "DesignSize": [ + 1119, + 207 + ] + }, + "children": [ + { + "class": "TRealGrid", + "name": "RGrid_Add02", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 2, + "Left": 98, + "Top": 0, + "Width": 1022, + "Height": 207, + "Hint": "좌측의 비용추가/비용삭제 버튼을 클릭하여\r\n공급가액 직전에 항목을 추가/삭제 할 수 있습니다.", + "Anchors": [ + "akLeft", + "akTop", + "akRight", + "akBottom" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "추가비용의 명칭", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "단위", + "DataWidth": 6, + "ColWidth": 42, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "규격 / 비고", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "Title.Caption": "금 액", + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "1단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "2단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "3단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "4단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "5단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "6단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "7단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "8단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "9단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditStyle": "wesPickList", + "Footer.Style": [], + "Items.Strings": [ + "적용안함", + "대상적용" + ], + "ListOption.Color": 16776176, + "Title.Caption": "부가가치세", + "Values.Strings": [ + "False", + "True" + ], + "DataType": "wdtBool", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 66, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnDblClick": "Ed_KN_SADblClick", + "OnDragDrop": "RGrid_Add_DragDrop", + "OnDragOver": "RGrid_Add_DragOver", + "OnExit": "RGrid_SelectionChange", + "OnKeyDown": "RGrid_KeyDown", + "OnMouseDown": "RGrid_Add_MouseDown", + "PopupMenu": "Popup_Add_AMT", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.ColHeight": 25, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoFocusRect" + ], + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellExit": "RGrid_SelectionChange", + "OnRowChange": "RGrid_AfterPost", + "OnSelectionChange": "RGrid_SelectionChange", + "OnAfterPost": "RGrid_AfterPost", + "ColRowHeight": 22, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + } + ] + }, + { + "class": "TTabSheet", + "name": "tabAdd3", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3, + "Caption": " 마)도급공사비 직전 ", + "DesignSize": [ + 1119, + 207 + ] + }, + "children": [ + { + "class": "TRealGrid", + "name": "RGrid_Add03", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 3, + "Left": 98, + "Top": 0, + "Width": 1022, + "Height": 207, + "Hint": "좌측의 비용추가/비용삭제 버튼을 클릭하여\r\n도급공사비 직전에 항목을 추가/삭제 할 수 있습니다.", + "Anchors": [ + "akLeft", + "akTop", + "akRight", + "akBottom" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "추가비용의 명칭", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "단위", + "DataWidth": 6, + "ColWidth": 42, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "규격 / 비고", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "Title.Caption": "금 액", + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "1단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "2단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "3단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "4단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "5단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "6단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "7단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "8단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "9단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnDblClick": "Ed_KN_SADblClick", + "OnDragDrop": "RGrid_Add_DragDrop", + "OnDragOver": "RGrid_Add_DragOver", + "OnExit": "RGrid_SelectionChange", + "OnKeyDown": "RGrid_KeyDown", + "OnMouseDown": "RGrid_Add_MouseDown", + "PopupMenu": "Popup_Add_AMT", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.ColHeight": 25, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoFocusRect" + ], + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellExit": "RGrid_SelectionChange", + "OnRowChange": "RGrid_AfterPost", + "OnSelectionChange": "RGrid_SelectionChange", + "OnAfterPost": "RGrid_AfterPost", + "ColRowHeight": 22, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + } + ] + }, + { + "class": "TTabSheet", + "name": "tabAdd4", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4, + "Caption": " 관급자재 ~ 바)총공사비 ", + "DesignSize": [ + 1119, + 207 + ] + }, + "children": [ + { + "class": "TRealGrid", + "name": "RGrid_Add04", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 4, + "Left": 98, + "Top": 0, + "Width": 1022, + "Height": 207, + "Hint": "좌측의 비용추가/비용삭제 버튼을 클릭하여\r\n총공사비 직전에 항목을 추가/삭제 할 수 있습니다.", + "Anchors": [ + "akLeft", + "akTop", + "akRight", + "akBottom" + ], + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "추가비용의 명칭", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "단위", + "DataWidth": 6, + "ColWidth": 42, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "규격 / 비고", + "DataWidth": 30, + "ColWidth": 186, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "Title.Caption": "금 액", + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "1단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "2단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "3단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "4단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "5단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "6단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "7단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "8단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "EditFormat": "#,#", + "Footer.Style": [], + "MaxLength": 12, + "ReadOnly": true, + "Title.Caption": "9단가", + "Visible": false, + "DataType": "wdtFloat", + "DisplayFormat": "#,#", + "ColWidth": 105, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnDblClick": "Ed_KN_SADblClick", + "OnDragDrop": "RGrid_Add_DragDrop", + "OnDragOver": "RGrid_Add_DragOver", + "OnExit": "RGrid_SelectionChange", + "OnKeyDown": "RGrid_KeyDown", + "OnMouseDown": "RGrid_Add_MouseDown", + "PopupMenu": "Popup_Add_AMT", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.ColHeight": 25, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoFocusRect" + ], + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellExit": "RGrid_SelectionChange", + "OnRowChange": "RGrid_AfterPost", + "OnSelectionChange": "RGrid_SelectionChange", + "OnAfterPost": "RGrid_AfterPost", + "ColRowHeight": 22, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TPanel", + "name": "pn_Ctrl_Add", + "flags": [], + "child_pos": null, + "properties": { + "Left": 750, + "Top": 35, + "Width": 92, + "Height": 196, + "Anchors": [ + "akLeft", + "akTop", + "akBottom" + ], + "BevelInner": "bvLowered", + "ParentShowHint": false, + "ShowHint": true, + "TabOrder": 1, + "DesignSize": [ + 92, + 196 + ] + }, + "children": [ + { + "class": "TLabel", + "name": "Label8", + "flags": [], + "child_pos": null, + "properties": { + "Left": 7, + "Top": 170, + "Width": 24, + "Height": 12, + "Anchors": [ + "akLeft", + "akBottom" + ], + "Caption": "비용" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "mBtn_MoveUp", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 154, + "Width": 50, + "Height": 20, + "Anchors": [ + "akLeft", + "akBottom" + ], + "Caption": "상", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "mBtn_MoveUpClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "mBtn_MoveDn", + "flags": [], + "child_pos": null, + "properties": { + "Left": 42, + "Top": 174, + "Width": 50, + "Height": 20, + "Anchors": [ + "akLeft", + "akBottom" + ], + "Caption": "하", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "mBtn_MoveDnClick" + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_AddAmt", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 2, + "Width": 88, + "Height": 22, + "Hint": "우측 선택 위치에 비용을 추가합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "HotTrack": false, + "Caption": "비용추가(&A)", + "ParentFont": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clNavy", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "OnClick": "mBtn_AddAmtClick", + "ParentColor": false, + "Color": "clInfoBk", + "TabOrder": 0, + "Align": "alTop" + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "mBtn_DelAmt", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 24, + "Width": 88, + "Height": 22, + "Hint": "우측 선택 항목의 비용을 삭제합니다.", + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "HotTrack": false, + "Caption": "비용삭제(&D)", + "ParentFont": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "OnClick": "mBtn_DelAmtClick", + "ParentColor": false, + "Color": "clSkyBlue", + "TabOrder": 1, + "Align": "alTop" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "pn_ShowAdd", + "flags": [], + "child_pos": null, + "properties": { + "Left": 1096, + "Top": 1, + "Width": 27, + "Height": 27, + "Anchors": [ + "akTop", + "akRight" + ], + "BevelOuter": "bvLowered", + "TabOrder": 2 + }, + "children": [ + { + "class": "TSpeedButton", + "name": "sBtn_ShowAdd", + "flags": [], + "child_pos": null, + "properties": { + "Left": 1, + "Top": 1, + "Width": 25, + "Height": 25, + "Hint": "추가금액 및 인쇄설정 화면을 확장/축소 합니다.", + "Caption": "▲", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -16, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_ShowAddClick" + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TPanel", + "name": "pn_Kan_Amt", + "flags": [], + "child_pos": null, + "properties": { + "Left": 804, + "Top": 413, + "Width": 325, + "Height": 237, + "Align": "alClient", + "BevelInner": "bvLowered", + "TabOrder": 5, + "Visible": false + }, + "children": [ + { + "class": "TRealGrid", + "name": "rGrd_Kan_Amt", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 1, + "Left": 2, + "Top": 62, + "Width": 321, + "Height": 173, + "Hint": "좌측의 비용추가/비용삭제 버튼을 클릭하여\r\n일반관리비 직전의 경비 항목을 추가/삭제 할 수 있습니다.", + "ImeName": "한국어(한글) (MS-IME98)", + "TabOrder": 0, + "Columns": [ + { + "Color": "clInfoBk", + "Footer.Style": [], + "ReadOnly": true, + "Title.Caption": "간접비 종류", + "DataWidth": 20, + "ColWidth": 126, + "GrpWidth": 64 + }, + { + "Alignment": "taCenter", + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "적용", + "DataType": "wdtBool", + "DataWidth": 1, + "ColWidth": 42, + "GrpWidth": 64 + }, + { + "Color": 8453888, + "EditFormat": "#,0", + "Footer.Style": [], + "MaxLength": 12, + "Title.Caption": "적용금액", + "DataType": "wdtFloat", + "Defaults": "0", + "DisplayFormat": "#,0", + "ColWidth": 105, + "GrpWidth": 64 + }, + { + "Color": "clInfoBk", + "Footer.Style": [], + "Title.Caption": "인쇄될 산출식 <직접 입력금액>", + "DataWidth": 45, + "ColWidth": 270, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "Title.Caption": "구분", + "Visible": false, + "DataType": "wdtLong", + "DataWidth": 4, + "ColWidth": 64, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "OnExit": "rGrd_Kan_AmtExit", + "OnKeyDown": "RGrid_KeyDown", + "Align": "alClient", + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.Title.Font.Charset": "HANGEUL_CHARSET", + "Headers.Title.Font.Color": "clRed", + "Headers.Title.Font.Height": -12, + "Headers.Title.Font.Name": "굴림체", + "Headers.Title.Font.Style": [ + "fsBold" + ], + "Headers.ColHeight": 31, + "Headers.GrpHeight": 42, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "HANGEUL_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Lines.HorzColor": "clGray", + "Options": [ + "wgoAlwaysShowSelection", + "wgoArrowMove", + "wgoCancelOnExit", + "wgoConfirmDelete", + "wgoEditing", + "wgoEnterToTab", + "wgoFocusRect" + ], + "RowCount": 10, + "SelBgColor": "clTeal", + "SelTrans": 0, + "MaxRowCount": 10, + "OnCellExit": "rGrd_Kan_AmtSelectionChange", + "OnDrawRow": "rGrd_Kan_AmtDrawRow", + "OnDrawCell": "rGrd_Kan_AmtDrawCell", + "OnRowChange": "rGrd_Kan_AmtAfterPost", + "OnSelectionChange": "rGrd_Kan_AmtSelectionChange", + "OnAfterPost": "rGrd_Kan_AmtAfterPost", + "ColRowHeight": 25, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel4", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 2, + "Width": 321, + "Height": 60, + "Align": "alTop", + "BevelInner": "bvRaised", + "BevelOuter": "bvLowered", + "TabOrder": 1 + }, + "children": [ + { + "class": "TLabel", + "name": "Label192", + "flags": [], + "child_pos": null, + "properties": { + "Left": 132, + "Top": 2, + "Width": 187, + "Height": 56, + "Align": "alClient", + "Alignment": "taCenter", + "Caption": "직접 입력할 간접비의 적용에\r\n \r\n체크후 금액을 입력하십시요.", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TPanel", + "name": "pn_Same", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 2, + "Width": 130, + "Height": 56, + "Align": "alLeft", + "BevelInner": "bvLowered", + "TabOrder": 0 + }, + "children": [ + { + "class": "TSpeedButton", + "name": "sBtn_Same", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 65, + "Height": 56, + "Hint": " 직접입력 간접비 금액을 당초(직전차수) 금액과 동일하게 입력합니다. ", + "Caption": "당초금액\r\r적용", + "Flat": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true, + "OnClick": "sBtn_SameClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_ChOpt", + "flags": [], + "child_pos": null, + "properties": { + "Left": 65, + "Top": 0, + "Width": 65, + "Height": 56, + "Hint": "건강보험료, 연금보험료, 노인장기요양보험료, 퇴직부금비의 직접입력 옵션을 변경합니다.\r\n( 사후정산으로 당초금액과 동일하게 할 경우 체크후 당초금액 적용 버튼을 클릭하세요 )", + "Action": "Act_Ch_Opt", + "Flat": true, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clMaroon", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false, + "ParentShowHint": false, + "ShowHint": true + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_R", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_R.dbf", + "TableType": "ttSXNSX", + "Left": 48, + "Top": 48 + }, + "children": [] + }, + { + "class": "TPopupMenu", + "name": "Popup_Add_AMT", + "flags": [], + "child_pos": null, + "properties": { + "AutoHotkeys": "maManual", + "OnPopup": "Popup_Add_AMTPopup", + "Left": 336, + "Top": 256 + }, + "children": [ + { + "class": "TMenuItem", + "name": "mi_From_Nae", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "내역서에서 불러오기(기본)", + "OnClick": "Ed_KN_SADblClick" + }, + "children": [] + }, + { + "class": "TMenuItem", + "name": "mi_From_List", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "단가목록표에서 불러오기", + "OnClick": "mi_From_ListClick" + }, + "children": [] + }, + { + "class": "TMenuItem", + "name": "mi_Recall", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "원내역 재생", + "OnClick": "mi_RecallClick" + }, + "children": [] + }, + { + "class": "TMenuItem", + "name": "mi_From_Joong", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "중기시간집계의 노무비 가져오기", + "OnClick": "mi_From_JoongClick" + }, + "children": [] + } + ] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_M", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_M.dbf", + "TableType": "ttSXNSX", + "Left": 104, + "Top": 48 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_A_", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_A.dbf", + "TableType": "ttSXNSX", + "Left": 48, + "Top": 96 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_B", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_B.dbf", + "TableType": "ttSXNSX", + "Left": 96, + "Top": 96 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_RA", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_RA.dbf", + "TableType": "ttSXNSX", + "Left": 48, + "Top": 144 + }, + "children": [] + }, + { + "class": "TActionList", + "name": "ActionList1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 336, + "Top": 208 + }, + "children": [ + { + "class": "TAction", + "name": "Act_Call_Calc", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "계산기", + "ShortCut": 32881, + "OnExecute": "Act_Call_CalcExecute" + }, + "children": [] + }, + { + "class": "TAction", + "name": "Act_Sel_Small", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "자동\r선택", + "Hint": "비교금액중 작은금액을 자동으로 선택합니다.", + "OnExecute": "Act_Sel_SmallExecute" + }, + "children": [] + }, + { + "class": "TAction", + "name": "Act_Ch_Opt", + "flags": [], + "child_pos": null, + "properties": { + "AutoCheck": true, + "Caption": "보험료 등\r\r옵션변경", + "Hint": "건강보험료, 연금보험료, 노인장기요양보험료, 퇴직부금비의 직접입력 옵션을 변경합니다.", + "OnExecute": "Act_Ch_OptExecute" + }, + "children": [] + }, + { + "class": "TAction", + "name": "Act_Next_Tab", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "다음페이지", + "ShortCut": 16393, + "OnExecute": "Act_Next_TabExecute" + }, + "children": [] + }, + { + "class": "TAction", + "name": "Act_Prev_Tab", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "Act_Prev_Tab", + "ShortCut": 24585, + "OnExecute": "Act_Next_TabExecute" + }, + "children": [] + } + ] + } + ] +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.dfm b/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.dfm new file mode 100644 index 0000000000000000000000000000000000000000..d23019f9b79849cf72e55b90907cd6a7255f9dbd GIT binary patch literal 175236 zcmeI53t&{m)%b7jCfQ9$cmz;8Fm1gtHPgqMa#Nfd2uaY-()b=ggKH-uO# zSkYRwRjXKSwZ*o!(l1a{w4gx23W+U#)vvYhhi(1Ze<8M5^`q6V<$umSGqZOmyPNFn z9V`7@*zDfN-us&~=gc`XcOI=v=2n%pb}d|f$?QeTm(FgTGtBY5u-RIf@EkKdt=Yqil=zK6|ejb(TngB^)bG*VG)7{>Dljh<(Ew(qOjW;|Qe7!5~b-jcR( zLn1Oa*k+A^OUDzjU?`G^PlewTz~ea#`97^>JLH@`hnk5HWwJDHm(lF;#R^t zV*cz!^X6RIyu5M#?4>PpT1)Auee<%m@Ul>(J=)a@Ng8G!psSm&mDpR0f@`b_50EFe z?%uWI5dF3#(H*vi8Ksw4-AiKD+K|;%GJJ8ky)kA56V_ssiO;tr8V_Nzy~8`AEp0K& ziZogvxL9#ZTQF?3`^pwa8pF}J^?^<+*6kfWHyT@$-1fmi`(j?WAsn#3mn@FJ4V$7} z5igL&*02q@(86eE+*-EUvcldG@wVj+>ykUlmxR_?;rJ5Brbydr^QuxzC`)3wQQW#D z7_q{|_TL&i|4qt%gJu8cc=nr>MYF@9RS|DdFbw)p+F-4#5IH+c0@R8XO5V}?O~_1}E2zklsZ^0mP*;J>k91AV|>_-d?Qzux%HcfJD$j@$o@~X$DaJOuV4S#4E#RhJ~*}>PVRbb27Jep z>W|qc9KX*#dB$B`ui**x>+i#p1GtS>!)-hPw*zp3y$vVW+i-%t4JW`h+^%c=vG@%8 zb~6I?GvR7o$Kd{WJGfsQPXINrdElfjRKvK$59h-D@h1Rp+eBJ58R<}jbc#ZSNK0_7 zMQZYKGo=vu;Lr<^QqbA{%^Ui^^ibuwE$?hCF*>@iFhT1AF+=IH;bz)C7NG5$*|u$s zRQf<3p!s(}D(x43#}`=caWww*a2*Z}a-F8y;`6F((U&-_ThOfUL zrJqCIrW^;)$6ow+pb9U81^;WukE83VI%#^dN_ z@b}ApC++@PcjlYX5O_8#5oT_XxW_W`5@DgS*4yXZ-okHV@=x z>h|$tsoPK#WV;?J85~bZZ-yv@l*7(_rX1eZuIAthh^*LG1%;G`)1xuhTGuU;P`9k+8`)q=hq)!KXc}5#{x4vBYfZ*A+TBxF@1et z#vS(cW*+OZU1Q08_t~xyZf3hi*uDc@Bi{UY{cCa9z7Jg^ZpZ771?afP-o|JOwt<(y zqHCOS2mFCoJ#N5jhFvnkcHG_sK6+tF;FY$lBtMEekhF%z=$aK#Z(GB<*+RXiTLB3@@}HtPUltF^(fGtD#9Dln7fT zV;y_#J@$_ZkG^%>7$qNy+ifJyG9%?~wlIfZ77TY<@u@8dh+kI43o42r+pD(yZTIPY zO?xYQZDYIgN5-?ieEOkY``D*nyrXx+9xQ~6^2HJR*U&N&S!H=ESSC95!L`buO<ub*7P24s#gn70o8TL`Opung!N)VQ)(!+Tk-wTJbA1b0pX;c+*lb+b&(O z1_0>7g+^&Bw7W#Z;fClsuiYxLd?^*)sVyA0@D>hF%p5&G8oP%5Dj1u(6vgCu*&KbD z6-&swo4j%gOJ{c`u&oE~>0<>w*NwMH@40Sc+m_F%+es-K+1rbtNr>E?{kN`;Bvxq~ z_ym^m2ZXyT=Q&UTaT~ZdKe#-<@kUS2KHkvhH%{++uopFR=prbF7D3SQ9Gl~cSH>Hn z;daBBY$LUWYlg#ld#*ECa#jlknCEdeYn7~6+Z^q(VphA9nMq+5!1e8huwwf!3l8j- z3D0x92~AwzJf)~*b+E(omaK?FyH#^2Vj-a80;~y+F7Q}^44C!;C9O-XV0d0E)IK~m zFV?<%DYQW@za+XMN{KDQtn>Vs!`#60&htY<_~M~wP3HE}Aw(fcrE*f((7qQ9cdm)V zhZi_v7+)et4XZ4ZlFiAGswlKXLP-g&wFO4eyjZle!!$S0Ww0}xh!+=Bl{bar9pPX%wh{*u#onr_sZ~|}32FH+ z0u{6+17aN-5Ssc+JzEaGzWb*y9@<$B&8F)fseP(x??f>DN$>_!Ct0%6{v4*ppESJ7 z>?aBFQfwkCkY0x2r3{M?H(20s@_Z`@jp^~JXex0#%Y@5q2nXA)9+!H8E!@;IM)5OX zH{%&A_CY3c##84)J9)dU5E<`w+JJM?+_1zJ=E7*ZRdOk9J1v!p~Dnjl`u)10O2j z&$1po(F(r;cM3lr$g6#EB-~vxG+W0fUvKpIjT`$MWsRdCoS!TR+tmxgT&XbRtur1! z;5YvE)S+E&7L2vY^jxHz9y7=Ej2VsT>A&Z3|8@SlD*Qb1t(`}{ahr0&#+(EfWQD$e zvcI|}P+RBkfAs$TFW!;#0m-C#ZiCV|olBLRSQ;03_j5*%GG=ziG;2sq+^ahst0zbK z+qJGbcU>i5&YyHJWK%1+`jL?f%yjt`(EFj z=rOkT>}uMJK}1jQp`A^8CmZ{p9o0tx#bm?STC(kq-k#oMXyG>|Lx^Fk-L~L?^nu3L z3f{Sa#zpT28d?I4!nZ5XC`$$!OIdZT)UF-#AmbbnWITDI1sSG0LB`NR3v3k*Z^ib4 zjeF7t7vPqX-uP{+W~E2D$AOZ2p;rz`Ox63`^0-raDFfp^{CJPwejRyYqoV++6w$Wl zXtDr-@5-TVL5_44*pB6P>(NEYVmU)dJJhx~XVji^ttofG53!!(N}WQx;B#%ZI|DS~ z@*n$+Jy4y0eYf8z?DHF$Bk%3|?tgAi&)|)EufKz1?Q`CZwY9|B|B6PvhUiBltLTZw zsrD0%J^bm2B|O$cCtAE+=#Ix4TD+aMDX&I&DAQ4`&!Z`CNGxMchqCBH{{AoA-GBeX z&_LDy#NCItZ}5NEKgoaivBwYZ+^*aJGv)%ga!P|2T)wjZ8`r~i&&U0KXkLS6u!(Rh zyMZjjV-b&0kn?j9Xs)myeI|N8{o?DpA9!}$)8n4T=OZ5y%@x#mQE4}E;6u`;z30QD zd*fLjG-V{4I6e$jB7BbWMo-nYN~7tKiSS4syAn)g&E)*~d;2@M=&gLW=+#p67Ufb| z$me;Av$7Cur)SBYyXe8RD0=6LqW6Sr>L_xj=*=}8$3_pd{9kT;_{qU53U8iJ6$RhG z0@YDdSe|ovdM?N+(KCMk?0AO~*qGV6S)w zm!j_muzH?K=hWnqdnw9B)p_kvb=A~J%*)Qntk;ow9q%$6NHc1VjjW{pDZUl)7U=31 zws>c&Vt!@TO@jCOk~&)!L*F82U#{sCKBx44Gq2?s)pBpPbPohM!I)`an}I6(S!MqN zJNj?9zPz-u|0_58U)i+9-+yb5zyFgx6JghpPu|zRefyEyHozIL+}`ubriUjMHwU|; zoe8fm5vG1SaHUj%1&Gt`V(mGL%gf@RA04v1vWv&-)u{9o15^N+47*1R9As#QWoLrp+&G zdD3r;*j;Xv+7IEz?{C_hmc`K}jpYWRRLRm9nWjgZl%2ICPWvH==T6qnXwKvE%w7HM zUahacu>aW&dwkoP_GZszpR8TfqtSB@C1@_|8S;7FEzUf3$m+$jcFd_DTBu_5Z@%-$ zjXRI@>^QP(qoaC}ov$RRh0vR&3r0rb0N7#tOHF-^r!}~$@Vcq*aeaeoHFTAR?kPmwkT8E4*4cz!nXpZXuuKQxG@GzYBJ^zH2A!KC4%dNLZzB$u5x1!!j?jTP-A4S! zEnE}7L><()t>h-ekva%x*o47bB|}P^zRjT6T=1Nb`Mxz)Q&!7_QeRp!> zV}x9pawB|?4niuy9+U`^3YHtiafKS<1v(JPv83h zm3Ew{TIkg1KqTK1k`WaPoq!HRaxNd05fuxaS{;bwU9Of96$_m@9f;&z!ZM;_p)*Yf zB6*iJGNNLkQ?CP&yvqTBIET8WoW>s&PRgmxpfM}ruRnInXJ7uS^u)n294~DWLB#tv$+F-9M3=$Wk$Z_ z`vQ^4Od#eav!;QFIm)btJjV|N5R=(LHJL3K2$Z+XYRGduFA$l`1Y&M7n>P?KSD8@> z_eas3x0$@{%RC^+%{DI{2;`8N($l~|4V7@e5DiBR@gHi4m*_yG67C10(SsqLq^5bz zIuNOZ`|jPmU4|iEpoX|m2O^bu=WUV@=c^$u(t${2-mNlXPz`ah2E+iBf)7j03fFLJ z$*u8dVpc+>4hVs1WGxX<2(k!Yu@W*pZ$v&PiK7qgoR5V%s2|KIyLE6q%V1Bh$$}Nn z3D<>o$-krvt-^S_JcfO}JKoNk%4RgpCirz?7)i=N$EORF2Rb@B^$cl9iT;6(xsJEP z)daBna@DqHdW^^V4`2sozme?13^U_FCuSV_k!kjep>|~IuNPQ zsg@BHb@6f?h*ap*$cX2tnadR#5T{W_Z;>i-cd1q4CTSpK{oH#+CGMY6i|MI3HR?7D zMD&PmJRQA5Luz z6>4W7TNaJYiQ)(Nits%vqAR1U0p;{lTvvd$r0rzQ%P_+-%IT{dI6VM0l z;ej6$qFNuUvo#RbQpECeVHd0&{7<}q%dH*!y#o<*YX`5brRSx;5J0Rr6F|8c>O}*A zREo3OTGnY&V6jIU0xP%X`S%UPa#*a=W1!kvD&l@45Ls55JU-4XE8jm5G1si5Q1c}L z#IjNV<(8E*2Lh>OC6&Fu7FaAR1y*iZIcp$RPFa~UgtLYXvU{8!{=CWhcX>AFGs^Bg zILdD014p*(fJwHF+`8lN&YNk@E%ul9OUy9z?SpAOYTa}amt6>Xf$}z(59uIGv zv!M^BvwjW6-SXG%t%k7<4*2IRoQr3-!*4zXvk{>Hov(W<4C6~MmiBwF(~lQ*yv`o& zF}}aD(0~gVQ{e4~H(YLV!K?xUClkU21LcqX2BZ)H^Xo6_0N{y7&mWSHujmy1E*bj$#0Bx zaGm0dzHPkz({AGfaD2)4b{a=3o-3+4=i9Kl=W|8>_`*lK{&6l$yA9`|KF)x56}<8F zPuRy_tKs)JNf^HVaqjsb6_g7+!a2XdnB|*1vSajfMbD4_b{C50CHUQCqyMpL9qg<6 z#9OQW2HP{>6Ss@jzqJalF$>bszShoup{Mv;E_)NczoTUT!q8+t|KX(U4da#u$lVh{ z_9$;|=lk~UOUVId=J{l z@9v~>gP(i(t%p1L`Gue9HcFPRHPfC4$M84&7%vCVcJcT42ai1i_rYzv5C6pd_*>kU zfa|O|m@J!czhTg|u?%yT1$eHrEVvD}d0BwhzWnxXr z>0|;Sn(+Xf^D-RogUp#H$%G%nI4P4%P_}nJH@45{+0ujYi1W?U=tf#F4Vac5P^5He zaq>}a9Y5~O-yZnwad_j)c`k1A^KrkM%*cw&`ynn$$9xFx_Y|Ci^4~XVp#1ruh43_`+yL7sY z*WmVz`F}qsBFgmKqJj3^1J}Sjei+XA`Y^*72It86kH;`x&Lqn)9K(70sF4g z^qwCbq_txF#=}p(v;&XvH1kiC$3%ELx6^&+`?##oez~mRtLu7)vO>K}Co3!qQMXVY zr@=yRvaI;A!OFr!&)6PXACBfSMGfQWbbhAOnMz;)1luP#ee*t0Y}hScI^uNhZ~09? zRo?Z@AOo(OPCq@E?c%xVY!_wAZFdTMUj(+v{gLdOH^TAR@D9Q`8^CCvfKR9G@?+SR z&Glt1=V()dm1!tvlsEcVjPYc7m%&BQkA4u2-2~_Ck>t&f`Qcuf zWsvCDtF2jZGSSZaNsEHGVe zrV0H8rit6HoF*qHFaMo(i*>Z$!|(CsJQuh5`M94m<8OJ~iShMP*v2+e2nCHN-}MV` zn_obA^E}D)eK4EB-=!<3KDiD*!Qg8xcI=V-aS3r56*>iop0oKZu9Ty_NUv&Wr$@q z*K7DHWILD)hg#O746&?FSMD5w`(b&G4<#LA~J5lQKZpds3$mC|I9ANo|(;~}y z7lz{x!TWAF2g~YX@QGy;fAM2Qu%nspWS_iT!?HSA2Yq|WYD^QB)#=jY;KOgsVoyOm0`p$J-M>`9q5zC8oY3uOD=Zh% z$%?nL*g6jFEV8VyT)<<4wX-A_%gw!=h3k)7HjV8`Xw%!_Gm}l%z%jJxP4J02%wG?| z7d!_4GwMIubaLA7x5uV2O=#2U(uDTNU))BWX+oP`hzWw1^IY8K=i~kf@P_O*+{g!H zMP{_obj%OKeb5e3*0+I;%K5;Lfl6j%4#P35>*3HfYzuw-0M+xLJrst!VI5>(-pFmC z7%Sr&_w(=k(@lAx98ex;hw0?O?aqYci5W6y!oZGlf`TKF;edB(J~!?DDZ zeJ>h4u)yPscOSg+#q`f8WZRRso%yIchDMp7ji!^ywU8dPLzKyl(C{P6gdg)|kqPz# zqebP@`$N3U!a=wS*_(Sk6g=6R+*TAPU-}$j3IHwuj z&KK8Vw9D=LdV1eZyTml1U8YNulan(#(}Z?80n&*t=efAe&&T~dAMm$2?Gn?1c9||M z+%7SH&@SctLA%6b@bipmIT7s=WrB8@PA1$gG2LjFvP{q}@z^`vE-^mmJ|>f0o&o2e zU0x5LsE7Q8c8SLZv&*9ge6VuaPhUK=^X>7Mm?pGK^qX>;(5Co{+nF;>XqPkKcldIi zi`)Es-2ZmjC8h=KGF@7FfCFt0^8o9da{lmR|5xgqC@Zwrbh6^HuC2=u>&mi1d&Ofq zW8F%~FSyOS&-VY1^t;2pO<1<}!>3#hZ3I1-4ew4kwgJxh9(+2>A%1MIXZw7TmE@Yc zhA|7SJJ_3-UxUSW;KI_jrNeH~j{(z&X~i-(U0R#*WcK1^s57l!gpJ$a_xN(2i`)Es z-0vncvLZ8&L$LwQ^X=g9Kl$G~hemVx*@5nC9s?Xl9pb%7__a>3QpYmEC39oqH$ zLF$*8Di=(vQ#MX{@V*MpzM6QxuC@S_56TJ4r*v{U1oy@=2<3$3lPo8GOs#xEExMz( zr%o(5K! zHhz6~+{nM*xDoE>uv|;0b1#D~d;xTADd^mdaL$*c@|_>Uc%>QM&KHmAHo#8)ETvNP zpqmT>ijAJ>`;%pxzxR&bEj@Si`i)n2z*^`7#+0BhzEFB&dFI^b+{W|ANXPM9=e`NB z4aLx)ZTLfp9Z-fphHGKjcNI8SId*W$hsy>;D_&dR_ao6M!^?RtZu9eTKWD~M2m9_u zxrFJ#bYWSZE?qanF)Xit2cOuVehz>+)5VYJtaEcYxRKr|kd6c-0Br-?2IYLjGV~-! zBgTLK0iVBzPxvoh{21=T{Bpi{J}!ZsiQe&Iynvhh$c_A{kLmc^;ocaRA%7nzw#?6u zK{H84{#H1~`@&)z;e5N97EA-C1$8i8TAcFbvW3&d3*)W3*be8pcmh8k_q)lAtjLV^ zl8$*F+z)L6-Q;@MDA77}mjmx%J^Ec{#y9-AoIn0n>td zn=VhV{Q6Z1r6mRdl$;iR4D%^do?xue(U%b8lilP;ZsbRMOUJ(vj-gFqUOYd1AU{6_ zNzBN96&$PDW;{!Mu_hUQ=$TX5J8wD95B`a|=7%@eIo$7NTBpGEF#hFbd^)}RKAaPV zbFh5*0lb~|!;cN7cU9Z=J&zupr;C5OnHEd~rUms6%S$;en;{+Oi!d#>K%Gxc3qJ-~ znlay2!!c^tbGGG8hW;D(KPRUzQyh|RzngNv^rIZO-;m|tv?*T3Ir9{K+^698_;Q|$ z+x&do?SJ==@neJKo$TYB-fb}7_ICL*EOWRn%Xt@uV-Lam zcksseQLdNrV?}Tr^T_$)d57h1Vb7>O^77XQxh*_~vtJxhZ3~to?cg?B`T)JmqixnOAcYYl_hWgkJZ+@LS;rGuvwox{B z!}~1bDE#HG4LFSpdpW=JeW{=PeopTD;O0(l+(vGGu9J8tSO+sHN&wsqv`?;LEHPnp>87@muH zifnva7aQh_lMS~svGH>;Pmzsp>te%v!M=UYJe>;0k||H|T+Gw+;T-;3WE&6rb>yj& z4f81z8y>@RF;9_=Z|h>id~vejb|yA{F6Jq+@oimfm@oMJ%$cVRAeT&eisxdU&W3aN zZ;|bP;jJT2ootv-nb`0co{M>kYGqg&XCQH~b#8a4pnL zya(1_`SvE*#{0N+4~%_w!ZlxD_rUENVH@S;);)gC?(ti858QU+9^7uA2oo_g%IQk5 z4{l?aH@MBu1(g+XF+Ug6-v;OKZJlg?kl1iL6B`~wwpSP%ZtG<0fU?FZH{8y|hR2Yt z3qDb9xa|g;Q~xoB!+ZRl-2=DXzK01h4c?;!J~17*?Z!R0++^L{2-kPY7`OSkvTour zWV;nUkqx(XvJEdxWy9@EY+YL6Sj4`Ihdn|xY zya#T(eUGK=9#^n?;Ieti0zNVQxUG}zBM>Y( z*>F1(8y-V83qFwzx7}cK=0C>9JT}F9;IrM!4raepPev1}=VH{b6@ ze=58-zIC+a@@w<9Tx^%e7#m-5I(YgZ6cK3!_aeSSh$g;+yG~gPVlHfBe&985osCJe zsLqKpg`Pav?z(~A$?y0ZY%@k4{Eaz_75e^t_WN0zOuQ|NMdT^>R>ExCA=f%&t5cd&ZW)E8|Tkn+A^oLl#WKj(U`Za zExargX^(cbTI&+S>;vwGF zxME?bEf$SOS0?-m7S8e4R8<917N03y5{y}q1YXeRYYnbg9Ba2?rtvRXyS)NUh<6<* zhmNI{#+t1#O+oMWeG`q6reGqtEYzM@ZPtk8#LfA>d9e=KJ3p7j#0!0pi|vae;qH>5 ztsjosj=iC9G?@=kTDvl{6f}Bq5;twbe3h z_SR+>n&G9=BRMAId;07N6Q2idgZfjaE2pmo;8*Teu+{Y`c0~>Irr+lX}J| zeg^Dj$~RW*gQA)3yXe%pp>`rm zS8bXzclM>tt=y}Q9dP162YZry4kLeKjC{a$t3|V8p|S{x zjVnVqT-nH^i&YI_a`viNdTf4S%aiI3tk@1;&PlR6qL)eOqnGq<*mQ<0IVS{bF5CA_ zHOBAvLn(|&nrOI~D2G#4PgKr|g1OVtx2MO>(GBjdy&NAmjHqVrV{JRvMDTz{2 zGc?e5K$(-0kQ1@YNlAdNGDlxs*UJO${3^YYQ*(xKQWcM#spYoVwwdfhjdjlCjLykA zXC<^bPc$SfcPqbR0fY~(psFuUI)c^T+NYZKx`Xm=1vOcdJ+UgNWAdn=o-&jQYS*I9 zHFMfSiDCRpb(FIDnSgHe&qM9Nk;sL8e+K)#9ABik-Mdg?ovY>t^={oMjX3ILcBu_afA-UX*OcFjJQP&aik8! zdK>XqGUC%}h@&(h2FRixx<|_BU#KBg=s+YXmV919d|eH3v<^gybk@j-<))H%8KVP{ zBApjx#BVB`N+`#EZRo#fzuvKqM(%D1tGDs2DGvrU9{zBAqYEh>G#z={gW8 z(lJH6$fT$kFTO_yB9)7KMZCxm730M-bRbfsbGC?d7@}glc%}|Siga$05f$S_zYau- zbPmgiit*xEIuI$+c~r!UETa|U#j|xFl8-(~L^=#nF#R(b^r;&I0x`-E9Mk~gP=juQt?@}rv9fqhFFP^6Zk-SSpMpTR!D|H}}clj?F zQ88Yer~{F_%TGkScv?X|?TZaM5Xrl|R|I1WQ88X@)PYFe<;yanV!YU-1ChLoN5qRv zii+{#936<{UA`mYMTV#tFV5A0NZ#cf5$P~Q#dvX^2E=;uE}xPS730PEIuOab9FY+f ztWkkhzu~`Qqd6(bFh>G#z zLLG?YUA`gWMV8Tu@!}#Kh~!;{iAaYbD#nY8bs&;=iOPtI@!}F4h~!;XvKJOg$_jWE@dLpVTg+HVw(;`@-7`RqGG(*t^<+0%a3G4#dy)ufk@uv=OSLb zFRys<8Xbt_UEVK(F@~rZFMeDHB6*ju$cT#Z;EsW%6ydrpHa#RZ*J$GthBtP?A5j`?Swdm3FIW3IjXU-FG4`WmdA3b+zVI)6u ztIVhvKi;i{k^IbGWJbmKagz?l8uByW7V#s?YsL8S9xaUIXHFAw4`Wn}A3v{!k^Ibh znNcx*yjKe&`I+C#jEeE&eOegF&-{moA6Z^2#*bgn!bpB*got|>qhkE{MJ3j8ukikQo(Yvwd0^sjl#{%%~Wf z?bpG`W^U*au^G#2#n|j=EsW%6Mv9n%F)GGp-_^oMekLI^D#m8dXkjEj^HZ5oF*ZA( zg^~QsuS9G%JFnR6ds-OD&&(FF8Dmsz+xxy2M)ETc$&8Be;~_1K%B`KmI@mBO5pW8JSTretcdFBl($EWk$vL@dYi6 ztwcV*L1DS{TXCyhp@6j8QRu{Gk>`@-x@VjEeE&kF+q7pZRZ@Q89jeQ41sa znXMvzWO=O^KmJ$?Bl($8BJN>~it*!5v@nvN>6952uvf%AjB&csv{0VkXkjE@ z_>}O4jPZUo#+S4(k}v$0C?6T4p)@g+2g3J8d*V(v`@~HnU-%ZRFHI9nexLO5zt!~d z4_X+>7yjio&iFlIT%eZMf7HTAzVIiaKEvd=RgLlgX<;N^_R@E!{r8FTkufTkkFRQBBtNr5l#h&2v3&fi z2F5@Q`I(;yeS9^qne(Q)UxWv0$j!V@ggp#VE$lHb(16Is2R|qys# z&ZMZ;AZ1qTKqOtRxj4`T3W1g>RVI==j zD#9_ws1}ZS9@4@{4(6bU#~7npJm&ej7Dnqp6yx~$;W>gE!JdbE$BtO$2$31EdWuC9*%UImHBp9*6Ui)wLG7Cqa5 zLW7Kqp=e~xX|P0L-F5yzRsTJYm;3$x zBj4J2DPbryk;21t^b z(t*gT^q-ax)uMm%qdE{-m0m_v3;xZkbs(}Ty^N?9`L@fytJPs22E}Q5}e6(a*|=YH`2Wp#zaD`h3w9g6X1K*l&JJ z2O?SY8#1C=)NjUgAX4S&iqA;qq89XS?fLI)yMoz4UQZuJ z*VRxMeTERr)r6qf$>!(oie-9=SVr=!a!)L8fLK!NUNcf|nQ;G>|0CbBrYhx@KXw0> z$1-GofV^CVh`3nhEB0RcMZTGzrk+<9pwh2ccw)w=*n8=hS{NzjdQ5`IU|_YK!dv%gEN6m-MXRto3+a%rU)a|5KO z4jWH+%SmZv|K^QHdUpEjU?;VvO!WK9OAqhd-v6}?hacPRKXUth{SWLeFNK}(d1U*& zhj(l^^7Wo0yEa1m3%uZn-`{`3_5KU}haca1csu-PWB;Z-M;_f|A9-cdy>O)e8yk*n z-y)7s@m~1G8*doAOwZUrlA7VQB>pvag9sPD>0XAvnZ7uwnNG#YE24Jv05uz3qSBw; zG~EvZYNk`1@&QqpFv4~vLXQSQ);r*FneY=zgoQc?NrtD0!j5F*c>ARyn;D^+BA%>+ko@iwGNGCxj?+NM8U{}lipZ9rR8+)M zbRd!t{~{ETRy|Tw#P{nUq|l{BWHTdFQ^c7X2-&cdZ_9*gia5)C!df=i>@=Z>Y;7w= zMVzexk(G!?g(A{&3W|!jR0km`VynnzMyRHUE$$Q6)llQ_PMJ_m5nFW-k_=B5ipUnt zP*lWAH6XGH&HgGBktS$XRK&G92&rB5GLg-UP)!lLbP!Tg){`=!nj)^#K}Z4E8A1`+ zG~9}c*sTMR!r0e@BGOEcYKrK&CEqH0+NKX`n_DLGnIS4^qUTmEh*Ty%B_k@SqUSap zh%D4TQ|Ka_(o;%i@QZmGeotV-k}ANN*%w*X*TFz zF{dBb!bmlOH$+a;BovA{eNYP`m5f)2oMwn>#ZIplL@F8g$cSpn2>o$f@2OYEI{%y{ zl#$IgqNt3|YGI^!@p2(XX47gp{g@6!R>^-=*b9x8QL`6wl7@_~qq6%_Aw))~Bt&zv z4niurcgciG)?!Z4K}ZqpdxWvDF;Qy9VxF%9k(|r_2t}mc!D@==`H~h}A>XoB&K4QX`dF)FwC6!BjO1KCD2q|apgmvC7cu48PBnX&*Go_7#S?MfHP}qo zQGoZq&97(hTZZ?tP&~9EZ25Q>VXxgqcp5#wPJQ}jCW&%-_;w~feB+&$OW~;*>%EMR z)>!Z10X>A1Txq)s*VR)crBQVDW|QyyKcy!Yp5Nu0qv`5;_2h~ti$O(PpT1)Au-7&5VhL?mQ?a{7QYh7ZPePF&7TD3Z1zFuN) zEefu&Dm);O#Ma%rb{wMLwj{d4*09tr7o|&rF&N2$Kl1rNW{YF(R?IZY7DpCFJLA?e zkY(6ABHp&VVO??ucak)Yh6(H{oWaVRKu^jc3gkUv%6T4C3|u1;f8Rhm6GPy22FGE%6LOG+-^8iEA@`6VZ(tgwv%xoOU7?a zp6`t&^;29BiNLU*k`-&4qg__af~Bofx+*$k2xEJeTEXzVSg5@$HZRt`d}%OYflk_8 zSj1AZP?b~>5R@^*qWG6MeWTf%o+$o`G4cVsSS^|z z3kAaiF3h}fh2u9|okoz5G0q?ng4dfD3wE>pSTd%H*0(g;)fnxJB+Mcn$UqR`Esn== z_^hwR3b)3BkvRBu_#K?ffKMs|u_rg%%i*XkSh|)`4u_rFSO?`Ut=#F-SO~B*#iyNe z;`+1#SA1H|MKLdMsRAc;pKe#`X@QHtqF8#RSUgUJ2#hX!_qgnjVu!G=0iY zqUo+hoonW_hZ4j1m)bgN`MqYWhb>jW#-PA_Mk-@airsJIudSno-(Sm!(2+w0(W?WI z9>zADBuNn-aH$|dORd{$Qq@T}Hf9 z4RM4HMDi|YoGwZ6n`($7bs&;=`J{~aT{Xl}IuOabT>KtMioaAttk8i--esGN_=Xzd zXdQ^;T`JCyq&QsZ`LQ`h2O@cwwKC#)YKUVsAhIQJJ}!bWHdItGUOZI?B6*kJ$cT#Z z;%Pb%$-6X)V2nvoF@#1@QAd+`!6TujhqGG&wh7LsXF1<3MV!U{! z4n*=UlSMGbq^KA#`gI_Zce!0gRE!tT(t$|cWtj-Zm=qP`#j|xFl6QGZMpTR!&(VO$ z`$dXij7d>3UL3Cjk-WX0INmv704it*xk zIuOabj26KdlcHk0Sg8Y%yi1pis2DF!)PYFe;yz*>Tg+;m zjHnoleLx2yd6!R!V62H&`cMqUF4KWX-sQJ4qGIFSG98HIUFL{jj7d>3Uc6ifB6*iB zGNNL;HttsGNNL1ChMT zjWVKQycpDhNZw_k2*#Kc730MfIuOabJR&11#*1w_5XrlY6~P#jqGG%V!!F(KkX2Vr z-lbbcRE!rb9f;&zUJ}6=i@FtqvBta+`Dmcw$9j)vrdzPjc**bC<-IU?2(f39Eb7V*mwCZsdu&9vwTtZ zF^ic-S4v&HaTb>C`wkqKf1t4Mbr`y9Z0*^FoxLlKp58+{oAyq&yM3>Fr1mNNZfq^t zMx#B-ch`>YeU=w9`&ExNH>a}4EljI3Xj9Gbo^myvKrUV|i0&sh8=N4q$Sy>cU2 z@TH`KPiQdaBpfqSHMOeBKfyoQUtJTZt@HOkdVl{H?+|VZ%EV-1mnbJT=kZfG> ztS)$GIEIU~4)FgsAJspSrU6JZvq5sa|HxeY#3`xc{nbV&1p-tFd0-Upw_8t(VW}-a zvpVlO2p>8n#!v+U)WTH&Ga%7=QH)S&nnNASDhC48z=d-(ISEx)8q%<4aiEr3kIo;R zifAfLxv68}=RhrMJQB6x5j5GH;?olit11WBQtmei#6=R~IeeO|3O>~m#;HEOVK;Il z=UU3Ts~Kh)iMvF*k{2T|s#$5~HTI zh2p^tlbGUz8x8CH25PA+StJmd!~|k)63e>I?@%O0&1hp!=H&*HnBvno4eLt>*u2&! z2}C9_ftZ`bvaT;Z1c}vAIo2(3$X$6xtBuvsunKaZjvB##B_mEzL)5Sea)1q-o;{B1 z9h0Ks0`?kKw+YmdX_ScPmke=^niMrG5fotS=57|j-GliAch~9&?#NmSMd-u`)q=ZE z=pZCxSuGK&26yXqAkyQQDiPcb|4n{UYew^?wj8XXG+!#Npg^{X5*UF4)PTI3k z3nLYcFUgE*UfOe`7Dg%@n}nNYd9CKAJ)hFTNTp+$@Y9S@%};x7(!f~D`k!1U%AUX4 zD^e?#kLFbOi}2cNGMV4Wh-$^7d4Uc@vY5G|bYxOgD|yT+9f)Kw-;@#63UISp2O?FH zR|}E% zT^5Occ}$9mT?a4Jfk@uvQ5jLO>)?BJAd+`EN%YHOQdI0Zc##f7@-ElNh>BeY-=_hQ zHS7dMp~Kpqy42d9G%T%L8z6HzAS2$PhNxj_<=Oz5%S2J=FeyH*hWK$E8BMzQs*Jcr z4e=Tsh!p9xi;QOVD>Ys8+^nO1#h!Ba$&6~s==ro3Mv8T&h^%IERMSQ+%V^iKHL72i z8P(KL&uZj#B*)K*MsJ#P)ofOpEYx)0V(RKBWc(kQ&{87wXdq;5cpnsv-b{wqDG?Ux zAf$kCuSDqiyxN4TMLH141KuUFnWi{VRK$~X5RwBtCKIYD;>kJ)DO~)J$Yv%(HANh! zgOEJ*cO*hpMLb0ZB6;Y$MK;qw6GcUQzYaobinvk;krAq8^DG^NX;hYCHZRpc$fmdayG*E7-n8f-B)9Tmk{9fago?h%C43ZZB!lXMW0Tlt8{W=5!{h*NYBl2>_JB2-nx^K~GSTX|E? zW;I2eoF^fS5GZNoOWGFUlC}%^YO2MwnQ=i|uf1mL@`be8sQqlvWPxt#YPRW?t-Uap zWovm~RlDPAvajk8*O2wu3$0hz%^=YBlvQN=__!l8xr*#~5Xu?n`e6u!-}v;4WBcyt zz5G8n?C~1~eOnGDSCp+Z3VTNN(J;O#a3-$PNkjc`3zwe60Tn}EVb$GrXYDkzl(RMF zJwK-Bx3}}!$mzUiaJgey)!~WYQe5Zv;?8&?w6dEkLj_+pN{pGr)ooMm!UlG+yL?0W zF1Q|1=DV;(bmN$dp8Z_kZcHu)JcP91GQqq4YuwYg^iHMG|HFrRrx?bwvqY}7Lo&P$2pepOFrqQh)qg%a?-)d$qwc6Y{m)mPEIdMI5t^Lx$BC0(c`(;!XN zHG|!aS=>W(w+H#%7Upuda=076Q+7etkRZ*Kwh8=(-OY1;ni3Sp02bRNXtGqq(zMdJ zNDPAJ1E6swtoOsQb$A@gOu1YMkp8pVp2p_I_xv?^Tc5q)dFUF;$4jd*t#Fy&-FuVY z-~Ygl{`pigje*ZeqE_zJ>y3|51z-;Dv%7UX@DD`|*@1$E9a}_ZC{>D!M zl6`|mcJy!j8eF#yE#=6!b{_f0ZGdUNCQRY`(U3A6rvsS28?F~W9Kc6T&%^jkF1@UL zn>QZm**WF#&h4+CeNLLOsFOxI7LpcgDlc0dN?5Kf zL;Y_)N;Nqab$A|QQOD=9TAp{IwY;jD&F}c~sl{vzWhoU?B7&aEi>c8mRTRDAU&00iC?RKp(EGXP5Zg^6G93$7TO2H58N{h*6Rq*_g$B~XY3s%QoxoNZi z$Tzn@0Ovpa$PR!16Pxg>|CL*I`TK9a7r#PP!4Gu>ypIE{hU!M94d(d+7lj}*o8%vm z@aPBTaycb*zO%_GK-F#Y47*19SzdWa*6c;Bk3nOdQDr=S0ILnMKmt^eHcz&%^G$x8 zWNU=DPBC1^&#si{-M??Zl~`ubmHumxD+PckBNJ#KihhTR~QmSj}W3 zfk>R!PTVx(^qwCb^c!gfMb$NvE_F@DOO3%+1!yk0uDZrgRl@;-VvPy*l{_NrGEh|; zHH<1<0&7{T%c(S_)M*SW+2|rtm|Ay`nQECD5R*`Y3`~9_o1|))BG9$=^6VRUt-(cA z%QS&5C3I@wr7AE32N4x(OrdKDt;%q%L6XSqo33RJY<=QlA3_qHD(X2o^QDH6#5z_e zjIz~zB2$KD9;r_q*jiLE)>eFM4aPZ~sG+K-7w73)_Xy5}g#WhhyZGR6*oEA~L^;{Xh%7xs@m!it9aYgSs(uZ4nU`L!b-0<3^qVRJLLDssVd zQo*o>SZ93oRPx;L@MfVE>6G#^z#J{hOSOye(yf59ViwB^t`DBW#t=wY(dL<**F~73 zU7y!QSc~6&y2y}aQqsz2VZtD=nupMLpULY-ho}km2rp_Uauv%`H}~R`&qTDtmuv%b zw28$-I4P*UN9Gixj}_(VZr!As*NdxUPSNP0$mwqL0&r5kSIeAF z<(cp9wle@H<$I0H`GY(;-EDBF=529@&PcU)lTXT_nC&XTJG zEtmXmb5gz^lsWS)=g)MTlk)w5%$cv>Ji}eiI+pKkGH1SR4DWH9lk$Cq#A)Uk)}8J) zCS`k2#>}%R0_0{VV**-q}NFoKLpNr)gjC_!b7& zT^0;?T1BNl`D(}eN`LZYb5_ZcnAH}FhoTYFv64&LiR!Cs$ZNhN5PwUE<5(AIvnD6R zG*zOaB;xki>N{V#_IPiR6VWrsT>7xkjonLVy+HhHUQ$fc`jNL3*=#i%1mbP9`ha3a zr)l`eACZPtUM~=tE*@9Y#WZam`6H5P-yjfKMk^wwY3|4$kqXI;0+D63B4V1Bj+_un zTNj2R4V{TZG%_OIkcce5Bp6u~U5*1mXh1<3=^;$iyDZe6SPdh^xH+FPe5uu81rrM* z&;e_0Fl^S0rX4MbV9c@C3&R$%C@G%EzW8gWR#i{&H%2?UV>m+2KNB8CRhQ}NWgC^@QHh}vw9_rCb+h@aO*QY+xK}FM;gPSwyV8kBz}7@@A_qrcx1i9 z%HSC@^cCx#7qhHLvT%f94BpnR#^{)^TIFU6RMAwj^Sq$f`Ilt791Bc27CDdzU@%(AU?q&nRCU zu}^DU9gM89ycI05j(w6O;I1Tz8zf0Iab3t!5@Y`blEAJaRR#@rslbhD=SB_N7?N-X z4E1f`J#=WOZ^O{XxqvP%3q{(aU9Hx-M2^E<4Cjbqvvf%?WD19Tw(psqaZgto zn_t-SXw5O|3yQY(+z`SNqrFBVL7(CwGU>kHBwo6-Syi}1r+{rYCI1bA(Y$_s#O~FbM1IA&o>lUP5x1s=) ztEV^pIIL;ng66c0*GpM#Qo1;fI>%mkE?wS~E|2W4UECvG91CmSi_j(hLg^OhCh->e zq#>P5^2twAZ+@m+J{@~rvT(BN$gWTRv7+ z-ZR(=(y4kjrUI^r!vJU;z~RRphk@0f>`7fY`V@BU;e#v;D$&~4#&HESupqx{|4T-A z*1QcPJWK2{ePOiSD)~P%*t0B`!JcQNEC#h9)5aNNrYg1mN_%0MoR#6eioOlmMy4YOVl` z1u@JOv(izvlB(a?7eQ(2+5la7lh1E z6bZBUw^1V`cQQf{GD}e;%-+*Rjgb7wNI}RfMUgOj9~(77awya9ku2peYL=3He1sYy zd6XG~kXec%VfOw%YJ}ucE);~!QWOcZ_xw>KB%ktLLC7pckudvHYb8RqAkjsFkXec% zVfM%WYJ}ud?iYkC^s3-bGII;PvX9VFBP5^lfFNX+qDYv%r-vFL`IIjSLS`w7gxUMd zs1cG+`LZBnmZC_Qz4wtCA^DWef{|+@3W^yNIu0Bgv?SD3A6WpR3jvx;t_<*QWOcZ_ajvz3{X9#P!KXpQ6wCnwXc>M zA^DUk_ez#>rJAK=AC;^|NIvC!LC7pck#K?r8In(#DhQdSC=#BlfslO41%i-SiX!28 z8VJd!R0%?6DT;)Z8VJd!+#v{A^tE2iQnHVWSF;rIDR&A&W+{q<6E(6h*@9Yp<&jl27@YAY_)J zNSJ-;bu~irDgG}=(O0jUrDUHkK#h=m%2|StS&AZI_O;>F2+60MEeM&VC=zC08eWZ% ze9Ae3kXec%VfK~bl?dyoo-$q#GD}e;%)T(Z8X@_Vje?N*l*4M4l4eAS;!{2GOsbB2 z%8i1MS&AZI_Lb|^WJo^cCPBz7MUgQ3!u4u||!sDY4t z$`L`xEJcy6WLh>oig7DG22rtn|E(m+T)WxF6`mZC_w*nL8_R_`N%kXec%;Svpm z%zdDWe4;vlKz@;=dvfLV%Sf16nv^pJeY`voDh6h*@9t6Hnc zkbKHaLC7pck?=ANG9;feOAsMG!JeQ6#)V10ng8uL?qDDT;(2)Idl+PkXec%;Z+(4$){9{XQRwg6#LsWY9J(^QX>eNr6>{xH4u_d2?#=FDT;(EG!T+c zsTG9GQWOc>G!T+csS||EQWOc>H4u_d*(3;=r6~5dY0^MQKII-k$Sg&XkWVX80yFG2 zTai_X)n>j=d}feO`Me-xmZC_wQiBZ1r`#(DnWZQau5yhqIjJI>H~Bt+$V^2MakUOa z@+yB9h|E?Ld)&;?fk~=F(2O{~Fa|I$Z7e&N1IuOaZoF@>OxhNt=bRd#< zsT7FJToe(b8W5|g$}&+PGILQx?9hQo-sRH*k(rBP-;~F??f_K94Dd+4B5;SkBmA*MHCB43$s+YR}l2oFuFpmkf5mu(iHz7|(z6DKPS; zsRNoo)u1%jNHlDQS)%y>?`oYdO`r;B>ISFzxJ1KNk|vrxZqe8vm|1)rdWM|3R-$2x zOWTvsdM2~ZwVoY(7Fu&b8pWYqG#$5@UW;gwS9@0M?3(iloc6mpxWWp1>4U8}|6W^< zx#nES^>}>h?bd`>#G6AA%bqgZc@?IBbd__MH6*XXmE2y4y=t4^*!R5O*wf=Tn)VLy z25e>Vds3%#9wDYJhC$9aMY7imQ%tW8B_w0Z$W6)t^VZtQXW*W^FUwYAr{1+Dld5NU zzO-x+Y<5{roA+hen&l~?O%`SIGUZU}D)zOsYI*9M+m5Rg%?^iFMZCqqaI>{CQDSec zfhoMbzC^GQKCPG!=izS&U1Rx#y5KVLRoi^e`L+cQlpCc6zW49D@dceHK+yd>X zvWKKAS zF6=|#*LNp+jIBMpn)c?0oOa0+ig}Md$cKUrvnT#D*_5q0_C+@GbdYHYDdc@a5T0gt zQ&l8%Z{ojX3uz5Syscl6WH^NtW4VodaBu!j2O$N#R|rBTLp8#DXN3bL$0_#{!9-`g zAs8!aNx)yng!`UHxm)`jpK;$DOF>h7xG}6Hw5B6$*};p?Fv?nIcfi#B(bgbLG+dHc zv3zMTVJ%-=))Y(xR|MmE7xNOOS zNV~O;eYY=WFFE1E%S~-xv9iS8*V^4-dA*55%jJt&E+=GYz=(F3RT4=lCs{h%EtFw) z%9hT~O0zmUO~Z1xXi9CGhHNmN&Eye4Hp5yMcUY08P%s=_Rn`<gRPsJY>!;ircRLq5+p5BLrJgzlRwas|85>`MNw|k;-tue`1 z&W=qrE;brqs~Yz5^$C(I5zIFD*?b>Ae|FmQ8#12XV0dZik@&FT(UtQpziB n4^7WKBhv#2lUwMnW-ZLBSw9t;mEQiBx(l;3E6mM8GRFT02O1fR literal 0 HcmV?d00001 diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.json b/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.json new file mode 100644 index 00000000..ae620eb8 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/TWM_KAN_RATE.json @@ -0,0 +1,19393 @@ +{ + "class": "TwM_KAN_RATE", + "name": "wM_KAN_RATE", + "flags": [], + "child_pos": null, + "properties": { + "Left": 247, + "Top": 108, + "Width": 930, + "Height": 750, + "HelpContext": 4800, + "BorderIcons": [ + "biSystemMenu", + "biMaximize" + ], + "Caption": "원가계산기준", + "Color": "clBtnFace", + "Constraints.MaxWidth": 1696, + "Constraints.MinHeight": 480, + "Constraints.MinWidth": 800, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [], + "KeyPreview": true, + "OldCreateOrder": false, + "Position": "poScreenCenter", + "Scaled": false, + "OnCloseQuery": "FormCloseQuery", + "OnCreate": "FormCreate", + "OnKeyDown": "FormKeyDown", + "OnMouseWheel": "sc_BxMouseWheel", + "PixelsPerInch": 96, + "TextHeight": 13 + }, + "children": [ + { + "class": "TPanel", + "name": "Panel2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 914, + "Height": 40, + "Align": "alTop", + "BevelInner": "bvRaised", + "BevelOuter": "bvNone", + "TabOrder": 0, + "DesignSize": [ + 914, + 40 + ] + }, + "children": [ + { + "class": "TSpeedButton", + "name": "sBtn_Edit", + "flags": [], + "child_pos": null, + "properties": { + "Left": 345, + "Top": 9, + "Width": 100, + "Height": 25, + "Anchors": [ + "akTop", + "akRight" + ], + "Caption": "수 정(&E)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "sBtn_EditClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_Cancel", + "flags": [], + "child_pos": null, + "properties": { + "Left": 445, + "Top": 9, + "Width": 100, + "Height": 25, + "Anchors": [ + "akTop", + "akRight" + ], + "Caption": "취 소(&C)", + "Enabled": false, + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "sBtn_CancelClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_Save", + "flags": [], + "child_pos": null, + "properties": { + "Left": 635, + "Top": 9, + "Width": 90, + "Height": 25, + "Anchors": [ + "akTop", + "akRight" + ], + "Caption": "저장(&S)", + "Enabled": false, + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "sBtn_SaveClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_Print", + "flags": [], + "child_pos": null, + "properties": { + "Left": 725, + "Top": 9, + "Width": 90, + "Height": 25, + "Anchors": [ + "akTop", + "akRight" + ], + "Caption": "출력(&P)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "sBtn_PrintClick" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_Close", + "flags": [], + "child_pos": null, + "properties": { + "Left": 815, + "Top": 9, + "Width": 90, + "Height": 25, + "Anchors": [ + "akTop", + "akRight" + ], + "Caption": "종료(&Q)", + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "sBtn_CloseClick" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 11, + "Top": 9, + "Width": 200, + "Height": 25, + "Caption": " 수정기준선택 ☞", + "Color": "clInfoBk", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentFont": false, + "Alignment": "taLeftJustify" + }, + "children": [] + }, + { + "class": "TSpeedButton", + "name": "sBtn_Call", + "flags": [], + "child_pos": null, + "properties": { + "Left": 545, + "Top": 9, + "Width": 90, + "Height": 25, + "Anchors": [ + "akTop", + "akRight" + ], + "Caption": "불러오기", + "Enabled": false, + "Flat": true, + "Glyph.Data": { + "binary_size": 378, + "binary_hex": "76010000424d7601000000000000760000002800000020000000100000000100" + }, + "NumGlyphs": 2, + "OnClick": "sBtn_CallClick" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Sel", + "flags": [], + "child_pos": null, + "properties": { + "Left": 116, + "Top": 12, + "Width": 90, + "Height": 18, + "Ctl3D": false, + "TabOrder": 0, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "OnKeyDown": "cBx_PntKeyDown", + "EnableNull": false, + "ListOption.Color": "clWhite", + "ListOption.ShowTitle": true, + "ListOption.TitleColor": 16776176, + "ListOption.Titles": "수정기준선택", + "ListOption.Ctl3D": false, + "Values.Strings": [ + "기본제비율", + "표준시장", + "행자부기준" + ], + "OnValueChange": "cBx_SelValueChange" + }, + "children": [] + } + ] + }, + { + "class": "TPageControl", + "name": "Pg_Ctrl", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 40, + "Width": 914, + "Height": 650, + "ActivePage": "Tab_Rn", + "Align": "alClient", + "TabHeight": 16, + "TabIndex": 0, + "TabOrder": 2, + "TabPosition": "tpBottom", + "TabStop": false + }, + "children": [ + { + "class": "TTabSheet", + "name": "Tab_Rn", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "Tab_Rn", + "ImageIndex": 4 + }, + "children": [ + { + "class": "TScrollBox", + "name": "sc_Bx_R", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 906, + "Height": 626, + "HorzScrollBar.Range": 740, + "VertScrollBar.Range": 1860, + "Align": "alClient", + "AutoScroll": false, + "Color": "clWhite", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 0, + "OnMouseWheel": "sc_BxMouseWheel" + }, + "children": [ + { + "class": "TLabel", + "name": "Label55", + "flags": [], + "child_pos": null, + "properties": { + "Left": 40, + "Top": 37, + "Width": 197, + "Height": 13, + "Caption": "☞ 공사원가계산 제잡비율", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel9", + "flags": [], + "child_pos": null, + "properties": { + "Left": 11, + "Top": 638, + "Width": 872, + "Height": 839, + "BevelInner": "bvLowered", + "Color": "clWhite", + "TabOrder": 1 + }, + "children": [ + { + "class": "TBevel", + "name": "Bevel1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 1, + "Top": 205, + "Width": 872, + "Height": 25, + "Shape": "bsTopLine" + }, + "children": [] + }, + { + "class": "TBevel", + "name": "Bevel2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 1, + "Top": 435, + "Width": 872, + "Height": 25, + "Shape": "bsTopLine" + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_Kobo", + "flags": [], + "child_pos": null, + "properties": { + "Left": 12, + "Top": 214, + "Width": 131, + "Height": 211, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 0, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "Title.CellStyle": "wcsUp", + "Title.Caption": "등급", + "DataWidth": 30, + "ColWidth": 64, + "GrpWidth": 70 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 64, + "GrpWidth": 60 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "고용보험료\r(노무비) * 율", + "Title.Height": 35, + "Width": 130, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 35, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 7, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_Anjun", + "flags": [], + "child_pos": null, + "properties": { + "Left": 308, + "Top": 10, + "Width": 421, + "Height": 161, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 1, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공 종", + "DataWidth": 30, + "ColWidth": 72, + "GrpWidth": 100 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "5억 미만", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 52, + "GrpWidth": 60 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "5억 ~ 50억 미만", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 % + 12345 천원", + "ColWidth": 52, + "GrpWidth": 140 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Title.Caption": "추가", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 64, + "GrpWidth": 64 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "50억 이상", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 52, + "GrpWidth": 60 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 4, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "800억이상", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 64, + "GrpWidth": 60 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "산업안전보건관리비\r(재료비+직접노무비+관급자재) * 율 + 추가금액", + "Title.Height": 35, + "Width": 420, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 4, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_R2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 10, + "Width": 291, + "Height": 186, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 2, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "Title.CellStyle": "wcsUp", + "Title.Caption": "구 분", + "DataWidth": 30, + "ColWidth": 140, + "GrpWidth": 70 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataWidth": 30, + "ColWidth": 150, + "GrpWidth": 60 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "고용보험료\r(노무비)*율", + "Title.Height": 35, + "Width": 130, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 35, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 6, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 25, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_Hwan", + "flags": [], + "child_pos": null, + "properties": { + "Left": 168, + "Top": 215, + "Width": 501, + "Height": 211, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 3, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "구 분", + "DataWidth": 40, + "ColWidth": 240, + "GrpWidth": 240 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 60, + "GrpWidth": 60 + }, + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "구 분", + "DataWidth": 40, + "ColWidth": 240, + "GrpWidth": 140 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 60, + "GrpWidth": 60 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "환 경 보 전 비\r(재료비+직접노무비+산출경비) * 율", + "Title.Height": 35, + "Width": 500, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 35, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 7, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_Bojng", + "flags": [], + "child_pos": null, + "properties": { + "Left": 26, + "Top": 445, + "Width": 357, + "Height": 165, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 4, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공 종", + "DataWidth": 50, + "ColWidth": 64, + "GrpWidth": 100 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "Title.CellStyle": "wcsUp", + "Title.Caption": "[ 요율 + 추가 ] * 공기", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": " 12345 천원 + (직공- 123 억원) * 00.000 %", + "ColWidth": 64, + "GrpWidth": 256 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사이행보증수수료\r[추가금액 + (직접공사비-기준금액) * 율] * 공기(년)", + "Title.Height": 40, + "Width": 356, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 40, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 5, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_Hado", + "flags": [], + "child_pos": null, + "properties": { + "Left": 403, + "Top": 445, + "Width": 326, + "Height": 186, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 5, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "DataWidth": 40, + "ColWidth": 240, + "GrpWidth": 250 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.000 %", + "ColWidth": 60, + "GrpWidth": 95 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "건설하도급대금지급보증서발급수수료\r(재료비+직접노무비+산출경비) * 율", + "Title.Height": 35, + "Width": 345, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 35, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 6, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel12", + "flags": [], + "child_pos": null, + "properties": { + "Left": 403, + "Top": 555, + "Width": 126, + "Height": 51, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "Panel12", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 6 + }, + "children": [ + { + "class": "TLabel", + "name": "Label58", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 124, + "Height": 49, + "Align": "alClient", + "Alignment": "taCenter", + "Caption": "300억 이상\r\n(종 합 심 사)\r\n(낙찰대상포함)", + "Layout": "tlCenter" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Panel13", + "flags": [], + "child_pos": null, + "properties": { + "Left": 11, + "Top": 545, + "Width": 101, + "Height": 106, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 7, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label70", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 57, + "Width": 99, + "Height": 47, + "Align": "alBottom", + "Alignment": "taCenter", + "AutoSize": false, + "Caption": "건 축", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label69", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 99, + "Height": 48, + "Align": "alTop", + "Alignment": "taCenter", + "AutoSize": false, + "Caption": "토목 및\r\n산업설비", + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TBevel", + "name": "Bevel3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 48, + "Width": 99, + "Height": 16, + "Shape": "bsTopLine" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Panel14", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 145, + "Width": 71, + "Height": 51, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "퇴직부금비", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 8 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel15", + "flags": [], + "child_pos": null, + "properties": { + "Left": 150, + "Top": 70, + "Width": 151, + "Height": 26, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "직접노무비 * 00.000 %", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 9, + "Visible": false + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit272", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104601, + "Left": 241, + "Top": 49, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 10, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit273", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104701, + "Left": 241, + "Top": 74, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 11, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit274", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104706, + "Left": 241, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 13, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit275", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104711, + "Left": 241, + "Top": 99, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 12, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit276", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104716, + "Left": 241, + "Top": 149, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 14, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit277", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104718, + "Left": 241, + "Top": 174, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 15, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit278", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101117, + "Left": 414, + "Top": 74, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 16, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit279", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101217, + "Left": 414, + "Top": 99, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 17, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit280", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101317, + "Left": 414, + "Top": 149, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 19, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit282", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101517, + "Left": 414, + "Top": 124, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 18, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit283", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102117, + "Left": 474, + "Top": 74, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 20, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit284", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102217, + "Left": 474, + "Top": 99, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit285", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102317, + "Left": 474, + "Top": 149, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 26, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit287", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102517, + "Left": 474, + "Top": 124, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 24, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit288", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102118, + "Left": 537, + "Top": 74, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 21, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit289", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102218, + "Left": 537, + "Top": 99, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 23, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit290", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102318, + "Left": 537, + "Top": 149, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 27, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit292", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102518, + "Left": 537, + "Top": 124, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 25, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit293", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102617, + "Left": 615, + "Top": 74, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 28, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit294", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102717, + "Left": 615, + "Top": 99, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 29, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit295", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102817, + "Left": 615, + "Top": 149, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 31, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit297", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103017, + "Left": 615, + "Top": 124, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 30, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit298", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104611, + "Left": 87, + "Top": 253, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 36, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit299", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104612, + "Left": 87, + "Top": 278, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 37, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit300", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104613, + "Left": 87, + "Top": 303, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 38, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit301", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104614, + "Left": 87, + "Top": 328, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 39, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit302", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104615, + "Left": 87, + "Top": 353, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 40, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit303", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104801, + "Left": 414, + "Top": 254, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 43, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit304", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104802, + "Left": 414, + "Top": 279, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 44, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit305", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104803, + "Left": 414, + "Top": 304, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 45, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit306", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104804, + "Left": 414, + "Top": 329, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 46, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit307", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104805, + "Left": 414, + "Top": 354, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 47, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit308", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104806, + "Left": 414, + "Top": 379, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 48, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit309", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104807, + "Left": 414, + "Top": 404, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 49, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit310", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104808, + "Left": 614, + "Top": 254, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 50, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit311", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104809, + "Left": 614, + "Top": 279, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 51, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit312", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104810, + "Left": 614, + "Top": 304, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 52, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit313", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104811, + "Left": 614, + "Top": 329, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 53, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit314", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104812, + "Left": 614, + "Top": 354, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 54, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit315", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104813, + "Left": 614, + "Top": 379, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 55, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit316", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104901, + "Left": 325, + "Top": 539, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 67, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "de718a8ee4f2ffc70540" + }, + "Precision": 4, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit317", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104902, + "Left": 130, + "Top": 539, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 65, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": 99999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit318", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104906, + "Left": 325, + "Top": 564, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 70, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "de718a8ee4f2ffc70540" + }, + "Precision": 4, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit319", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104907, + "Left": 130, + "Top": 564, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 68, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": 99999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit320", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104911, + "Left": 325, + "Top": 589, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 73, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "de718a8ee4f2ffc70540" + }, + "Precision": 4, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit321", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104912, + "Left": 130, + "Top": 589, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 71, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": 99999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit324", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102119, + "Left": 672, + "Top": 484, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 74, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit325", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102619, + "Left": 672, + "Top": 509, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 75, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit326", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103119, + "Left": 672, + "Top": 534, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 76, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit327", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103619, + "Left": 672, + "Top": 559, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 77, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit328", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103719, + "Left": 672, + "Top": 584, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 78, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit329", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103819, + "Left": 672, + "Top": 609, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 79, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit330", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104616, + "Left": 87, + "Top": 378, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 41, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit366", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104814, + "Left": 614, + "Top": 404, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 56, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_Eqip", + "flags": [], + "child_pos": null, + "properties": { + "Left": 17, + "Top": 639, + "Width": 711, + "Height": 186, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 80, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "구 분", + "DataWidth": 40, + "ColWidth": 240, + "GrpWidth": 140 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 60, + "GrpWidth": 60 + }, + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "구 분", + "DataWidth": 120, + "ColWidth": 240, + "GrpWidth": 450 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "요율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 60, + "GrpWidth": 60 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "건설기계대여대금 지급보증서 발급금액\r(재료비+직접노무비+산출경비) * 율", + "Title.Height": 35, + "Width": 710, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 35, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 6, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit368", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105001, + "Left": 162, + "Top": 703, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 81, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit369", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105002, + "Left": 162, + "Top": 728, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 82, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit370", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105003, + "Left": 162, + "Top": 753, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 83, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit371", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105004, + "Left": 162, + "Top": 778, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 84, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit375", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105006, + "Left": 672, + "Top": 703, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 85, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit376", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105007, + "Left": 672, + "Top": 728, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 86, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit377", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105008, + "Left": 672, + "Top": 753, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 87, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit378", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105009, + "Left": 672, + "Top": 778, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 88, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit379", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105010, + "Left": 672, + "Top": 803, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 89, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit367", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104617, + "Left": 87, + "Top": 403, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 42, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit372", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104903, + "Left": 254, + "Top": 539, + "Width": 26, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 66, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": 999, + "ReadOnly": true, + "Value": 123 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit373", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104908, + "Left": 254, + "Top": 564, + "Width": 26, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 69, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": 999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit374", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104913, + "Left": 254, + "Top": 589, + "Width": 26, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 72, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": 999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit426", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103617, + "Left": 676, + "Top": 74, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 32, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit427", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103717, + "Left": 676, + "Top": 99, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 33, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit428", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103817, + "Left": 676, + "Top": 149, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 35, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit430", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104017, + "Left": 676, + "Top": 124, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 34, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit441", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104922, + "Left": 130, + "Top": 489, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 59, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": 99999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit442", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104923, + "Left": 254, + "Top": 489, + "Width": 26, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 60, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": 999, + "ReadOnly": true, + "Value": 123 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit443", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104921, + "Left": 325, + "Top": 489, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 61, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "de718a8ee4f2ffc70540" + }, + "Precision": 4, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit444", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104927, + "Left": 130, + "Top": 514, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 62, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": 99999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit445", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104928, + "Left": 254, + "Top": 514, + "Width": 26, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 63, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": 999, + "ReadOnly": true, + "Value": 123 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit446", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104926, + "Left": 325, + "Top": 514, + "Width": 42, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 64, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "de718a8ee4f2ffc70540" + }, + "Precision": 4, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel25", + "flags": [], + "child_pos": null, + "properties": { + "Left": 693, + "Top": 250, + "Width": 160, + "Height": 26, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "석면분담금 %", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 90 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit586", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105021, + "Left": 794, + "Top": 254, + "Width": 41, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 57, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel26", + "flags": [], + "child_pos": null, + "properties": { + "Left": 693, + "Top": 274, + "Width": 160, + "Height": 26, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "임금채권부담금 %", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 91 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit587", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 105026, + "Left": 794, + "Top": 278, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 58, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel27", + "flags": [], + "child_pos": null, + "properties": { + "Left": 693, + "Top": 215, + "Width": 160, + "Height": 36, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "법 정 부 담 금", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 92 + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Panel10", + "flags": [], + "child_pos": null, + "properties": { + "Left": 11, + "Top": 1482, + "Width": 872, + "Height": 363, + "BevelInner": "bvLowered", + "Color": "clWhite", + "TabOrder": 2 + }, + "children": [ + { + "class": "TImage", + "name": "Image1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 2, + "Top": 2, + "Width": 868, + "Height": 359, + "Align": "alClient", + "AutoSize": true, + "Center": true, + "Picture.Data": { + "binary_size": 25714, + "binary_hex": "09544d65746166696c6568640000010000006c0000002400000026000000c813" + }, + "Stretch": true + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Panel8", + "flags": [], + "child_pos": null, + "properties": { + "Left": 11, + "Top": 58, + "Width": 872, + "Height": 582, + "BevelInner": "bvLowered", + "Color": "clWhite", + "TabOrder": 0 + }, + "children": [ + { + "class": "TRealGrid", + "name": "rGrd_Rate_R", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 11, + "Width": 853, + "Height": 561, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 0, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모\r\r(국가유산)", + "DataWidth": 50, + "ColWidth": 72, + "GrpWidth": 72 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 4, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "일반건설", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Color": 16448250, + "Footer.Style": [], + "Group": 4, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "전문", + "DataWidth": 30, + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 4, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "국가유산", + "DataWidth": 30, + "ColWidth": 64, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 5, + "Title.CellStyle": "wcsUp", + "Title.Caption": "이윤\r(노+경+일)*율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 64, + "GrpWidth": 52 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Height": 35, + "Width": 252, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Height": 35, + "Width": 252, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "일반관리비\r(재+노+경) * 율", + "Title.Height": 35, + "Width": 156, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "이윤", + "Title.Visible": false, + "Width": 52, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 5, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 100, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_R1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 82, + "Top": 11, + "Width": 577, + "Height": 561, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 1, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사기간", + "DataWidth": 16, + "ColWidth": 72, + "GrpWidth": 72 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "토목", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (토목)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 64, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "조경", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "건축", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 4, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (건축)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Footer.Style": [], + "Group": 2, + "LevelIndex": 5, + "Title.CellStyle": "wcsUp", + "Title.Caption": "국가\r유산", + "DataWidth": 16, + "ColWidth": 64, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "토목", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 3, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "조경", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 3, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (토목)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 64, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 3, + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "건축", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 3, + "LevelIndex": 4, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (건축)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00#", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Footer.Style": [], + "Group": 3, + "LevelIndex": 5, + "Title.CellStyle": "wcsUp", + "Title.Caption": "국가\r유산", + "DataWidth": 16, + "ColWidth": 64, + "GrpWidth": 42 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "Title.Height": 35, + "Title.Visible": false, + "Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사기간", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "간접노무비\r(직접노무비) * 율(%)", + "Title.Height": 35, + "Width": 252, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "기타경비\r(재료비+노무비) * 율(%)", + "Title.Height": 35, + "Width": 252, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 20, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit128", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102101, + "Left": 157, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 6, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit129", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102201, + "Left": 157, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 7, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit130", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102301, + "Left": 157, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 8, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit131", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102401, + "Left": 157, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 9, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit140", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103101, + "Left": 157, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 10, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit141", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103201, + "Left": 157, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 11, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit142", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103301, + "Left": 157, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 12, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit143", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103401, + "Left": 157, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 13, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit144", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103601, + "Left": 157, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 14, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit145", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103701, + "Left": 157, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 15, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit146", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103801, + "Left": 157, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 16, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit147", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103901, + "Left": 157, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 17, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit132", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104101, + "Left": 157, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 18, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit137", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104201, + "Left": 157, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 19, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit138", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104301, + "Left": 157, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 20, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit139", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104401, + "Left": 157, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 21, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit148", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102102, + "Left": 199, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 26, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit149", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102202, + "Left": 199, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 27, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit150", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102302, + "Left": 199, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 28, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit151", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102402, + "Left": 199, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 29, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit152", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103102, + "Left": 199, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 30, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit153", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103202, + "Left": 199, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 31, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit154", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103302, + "Left": 199, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 32, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit155", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103402, + "Left": 199, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 33, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit156", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103602, + "Left": 199, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 34, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit157", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103702, + "Left": 199, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 35, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit158", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103802, + "Left": 199, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 36, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit159", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103902, + "Left": 199, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 37, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit160", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104102, + "Left": 199, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 38, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit161", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104202, + "Left": 199, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 39, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit162", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104302, + "Left": 199, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 40, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit163", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104402, + "Left": 199, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 41, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit164", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102103, + "Left": 283, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 66, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit165", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102203, + "Left": 283, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 67, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit166", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102303, + "Left": 283, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 68, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit167", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102403, + "Left": 283, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 69, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit168", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103103, + "Left": 283, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 70, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit169", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103203, + "Left": 283, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 71, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit170", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103303, + "Left": 283, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 72, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit171", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103403, + "Left": 283, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 73, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit172", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103603, + "Left": 283, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 74, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit173", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103703, + "Left": 283, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 75, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit174", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103803, + "Left": 283, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 76, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit175", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103903, + "Left": 283, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 77, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit176", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104103, + "Left": 283, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 78, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit177", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104203, + "Left": 283, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 79, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit178", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104303, + "Left": 283, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 80, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit179", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104403, + "Left": 283, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 81, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit180", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102104, + "Left": 325, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 86, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit181", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102204, + "Left": 325, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 87, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit182", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102304, + "Left": 325, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 88, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit183", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102404, + "Left": 325, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 89, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit184", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103104, + "Left": 325, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 90, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit185", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103204, + "Left": 325, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 91, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit186", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103304, + "Left": 325, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 92, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit187", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103404, + "Left": 325, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 93, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit188", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103604, + "Left": 325, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 94, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit189", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103704, + "Left": 325, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 95, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit190", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103804, + "Left": 325, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 96, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit191", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103904, + "Left": 325, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 97, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit192", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104104, + "Left": 325, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 98, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit193", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104204, + "Left": 325, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 99, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit194", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104304, + "Left": 325, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 100, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit195", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104404, + "Left": 325, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 101, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit196", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102106, + "Left": 409, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 122, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit197", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102206, + "Left": 409, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 123, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit198", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102306, + "Left": 409, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 124, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit199", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102406, + "Left": 409, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 125, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit200", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103106, + "Left": 409, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 126, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit201", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103206, + "Left": 409, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 127, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit202", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103306, + "Left": 409, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 128, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit203", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103406, + "Left": 409, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 129, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit204", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103606, + "Left": 409, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 130, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit205", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103706, + "Left": 409, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 131, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit206", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103806, + "Left": 409, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 132, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit207", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103906, + "Left": 409, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 133, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit208", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104106, + "Left": 409, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 134, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit209", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104206, + "Left": 409, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 135, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit210", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104306, + "Left": 409, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 136, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit211", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104406, + "Left": 409, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 137, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit212", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102107, + "Left": 451, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 142, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit213", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102207, + "Left": 451, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 143, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit214", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102307, + "Left": 451, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 144, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit215", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102407, + "Left": 451, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 145, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit216", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103107, + "Left": 451, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 146, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit217", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103207, + "Left": 451, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 147, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit218", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103307, + "Left": 451, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 148, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit219", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103407, + "Left": 451, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 149, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit220", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103607, + "Left": 451, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 150, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit221", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103707, + "Left": 451, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 151, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit222", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103807, + "Left": 451, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 152, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit223", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103907, + "Left": 451, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 153, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit224", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104107, + "Left": 451, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 154, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit225", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104207, + "Left": 451, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 155, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit226", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104307, + "Left": 451, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 156, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit227", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104407, + "Left": 451, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 157, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit228", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102108, + "Left": 535, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 182, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit230", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102308, + "Left": 535, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 184, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit231", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102408, + "Left": 535, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 185, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit232", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103108, + "Left": 535, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 186, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit233", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103208, + "Left": 535, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 187, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit234", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103308, + "Left": 535, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 188, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit235", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103408, + "Left": 535, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 189, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit236", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103608, + "Left": 535, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 190, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit237", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103708, + "Left": 535, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 191, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit238", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103808, + "Left": 535, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 192, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit239", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103908, + "Left": 535, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 193, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit240", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104108, + "Left": 535, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 194, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit241", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104208, + "Left": 535, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 195, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit242", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104308, + "Left": 535, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 196, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit243", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104408, + "Left": 535, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 197, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit244", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102109, + "Left": 577, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 202, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit245", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102209, + "Left": 577, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 203, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit246", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102309, + "Left": 577, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 204, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit247", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102409, + "Left": 577, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 205, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit248", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103109, + "Left": 577, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 206, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit249", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103209, + "Left": 577, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 207, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit250", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103309, + "Left": 577, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 208, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit251", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103409, + "Left": 577, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 209, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit252", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103609, + "Left": 577, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 210, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit253", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103709, + "Left": 577, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 211, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit254", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103809, + "Left": 577, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 212, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit255", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103909, + "Left": 577, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 213, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit256", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104109, + "Left": 577, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 214, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit257", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104209, + "Left": 577, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 215, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit258", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104309, + "Left": 577, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 216, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit259", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104409, + "Left": 577, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 217, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit229", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102208, + "Left": 535, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 183, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit260", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102111, + "Left": 662, + "Top": 212, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 222, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit261", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103111, + "Left": 662, + "Top": 312, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 223, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit262", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103611, + "Left": 662, + "Top": 412, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 224, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit263", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104111, + "Left": 662, + "Top": 512, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 225, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit264", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101115, + "Left": 715, + "Top": 229, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 230, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit265", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101615, + "Left": 714, + "Top": 329, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 231, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit266", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102615, + "Left": 715, + "Top": 429, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 232, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit267", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103115, + "Left": 715, + "Top": 529, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 233, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit268", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102116, + "Left": 818, + "Top": 212, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 239, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit269", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103116, + "Left": 818, + "Top": 312, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 240, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit270", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103616, + "Left": 818, + "Top": 412, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 241, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit271", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104116, + "Left": 818, + "Top": 512, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 242, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit322", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102105, + "Left": 241, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 46, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit323", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102205, + "Left": 241, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 47, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit380", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102305, + "Left": 241, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 48, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit381", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102405, + "Left": 241, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 49, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit382", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103105, + "Left": 241, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 50, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit383", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103205, + "Left": 241, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 51, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit384", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103305, + "Left": 241, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 52, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit385", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103405, + "Left": 241, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 53, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit386", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103605, + "Left": 241, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 54, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit387", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103705, + "Left": 241, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 55, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit388", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103805, + "Left": 241, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 56, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit389", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103905, + "Left": 241, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 57, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit390", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104105, + "Left": 241, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 58, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit391", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104205, + "Left": 241, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 59, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit392", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104305, + "Left": 241, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 60, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit393", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104405, + "Left": 241, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 61, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit394", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102110, + "Left": 494, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 162, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit395", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102310, + "Left": 494, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 164, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit396", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102410, + "Left": 494, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 165, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit397", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103110, + "Left": 494, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 166, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit398", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103210, + "Left": 494, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 167, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit399", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103310, + "Left": 494, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 168, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit400", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103410, + "Left": 494, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 169, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit401", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103610, + "Left": 494, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 170, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit402", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103710, + "Left": 494, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 171, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit403", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103810, + "Left": 494, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 172, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit404", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103910, + "Left": 494, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 173, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit405", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104110, + "Left": 494, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 174, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit406", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104210, + "Left": 494, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 175, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit407", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104310, + "Left": 494, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 176, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit408", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104410, + "Left": 494, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 177, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit409", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102210, + "Left": 494, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 163, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel16", + "flags": [], + "child_pos": null, + "properties": { + "Left": 763, + "Top": 172, + "Width": 51, + "Height": 397, + "BevelOuter": "bvNone", + "Caption": "5~ 30억\r 미만\r\r00.00 %", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 243 + }, + "children": [ + { + "class": "TLabel", + "name": "Label2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 51, + "Height": 397, + "Align": "alClient", + "Alignment": "taCenter", + "Caption": "00.00 %", + "Color": "clWhite", + "ParentColor": false, + "Layout": "tlCenter" + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit447", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100121, + "Left": 367, + "Top": 175, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 102, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit448", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100221, + "Left": 367, + "Top": 200, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 103, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit449", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100321, + "Left": 367, + "Top": 225, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 104, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit450", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100421, + "Left": 367, + "Top": 250, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 105, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit451", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100621, + "Left": 367, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 106, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit452", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100721, + "Left": 367, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 107, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit453", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100821, + "Left": 367, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 108, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit518", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100921, + "Left": 367, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 109, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit519", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101121, + "Left": 367, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 110, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit520", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101221, + "Left": 367, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 111, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit521", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101321, + "Left": 367, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 112, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit522", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101421, + "Left": 367, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 113, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit523", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101621, + "Left": 367, + "Top": 475, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 114, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit524", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101721, + "Left": 367, + "Top": 500, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 115, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit525", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101821, + "Left": 367, + "Top": 525, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 116, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit526", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101921, + "Left": 367, + "Top": 550, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 117, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit543", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100131, + "Left": 766, + "Top": 361, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 238, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel17", + "flags": [], + "child_pos": null, + "properties": { + "Left": 617, + "Top": 172, + "Width": 41, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 244 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit527", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100126, + "Left": 619, + "Top": 212, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 218, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel18", + "flags": [], + "child_pos": null, + "properties": { + "Left": 617, + "Top": 272, + "Width": 41, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 245 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel19", + "flags": [], + "child_pos": null, + "properties": { + "Left": 617, + "Top": 372, + "Width": 41, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 246 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel20", + "flags": [], + "child_pos": null, + "properties": { + "Left": 617, + "Top": 472, + "Width": 41, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 247 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit531", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 100626, + "Left": 619, + "Top": 312, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 219, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit535", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101126, + "Left": 619, + "Top": 412, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 220, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit539", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101626, + "Left": 619, + "Top": 512, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 221, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel21", + "flags": [], + "child_pos": null, + "properties": { + "Left": 617, + "Top": 72, + "Width": 41, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 248 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel23", + "flags": [], + "child_pos": null, + "properties": { + "Left": 659, + "Top": 72, + "Width": 203, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 249 + }, + "children": [ + { + "class": "TLabel", + "name": "Label3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 203, + "Height": 99, + "Align": "alClient", + "Alignment": "taCenter", + "Caption": "50억 미만\r\n(전문 5억미만) \r\n기준과 동일\r\n \r\n일반관리비 \r\n 상 : 국가계약법\r\n 하 : 지방계약법", + "Color": 16119285, + "ParentColor": false, + "Layout": "tlCenter" + }, + "children": [] + } + ] + }, + { + "class": "TPanel", + "name": "Panel24", + "flags": [], + "child_pos": null, + "properties": { + "Left": 365, + "Top": 72, + "Width": 41, + "Height": 99, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 250 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit281", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101101, + "Left": 157, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit286", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101201, + "Left": 157, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit291", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101301, + "Left": 157, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 4, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit296", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101401, + "Left": 157, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 5, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit334", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101102, + "Left": 199, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit340", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101202, + "Left": 199, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 23, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit345", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101302, + "Left": 199, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 24, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit350", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101402, + "Left": 199, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 25, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit355", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101103, + "Left": 283, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 62, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit359", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101203, + "Left": 283, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 63, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit364", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101303, + "Left": 283, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 64, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit429", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101403, + "Left": 283, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 65, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit434", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101104, + "Left": 325, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 82, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit439", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101204, + "Left": 325, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 83, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit528", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101304, + "Left": 325, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 84, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit529", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101404, + "Left": 325, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 85, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit530", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101106, + "Left": 409, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 118, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit532", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101206, + "Left": 409, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 119, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit533", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101306, + "Left": 409, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 120, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit534", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101406, + "Left": 409, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 121, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit536", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101107, + "Left": 451, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 138, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit537", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101207, + "Left": 451, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 139, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit538", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101307, + "Left": 451, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 140, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit540", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101407, + "Left": 451, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 141, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit541", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101108, + "Left": 535, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 178, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit542", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101308, + "Left": 535, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 180, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit544", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101408, + "Left": 535, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 181, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit545", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101109, + "Left": 577, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 198, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit546", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101209, + "Left": 577, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 199, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit547", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101309, + "Left": 577, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 200, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit548", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101409, + "Left": 577, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 201, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit549", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101208, + "Left": 535, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 179, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit550", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101105, + "Left": 241, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 42, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit551", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101205, + "Left": 241, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 43, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit552", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101305, + "Left": 241, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 44, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit553", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101405, + "Left": 241, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 45, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit554", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101110, + "Left": 494, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 158, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit555", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101310, + "Left": 494, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 160, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit556", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101410, + "Left": 494, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 161, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit557", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101210, + "Left": 494, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 159, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel11", + "flags": [], + "child_pos": null, + "properties": { + "Left": 711, + "Top": 272, + "Width": 51, + "Height": 99, + "BevelOuter": "bvNone", + "Caption": "5~ 30억\r 미만\r\r00.00 %", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 251, + "Visible": false + }, + "children": [ + { + "class": "TLabel", + "name": "Label60", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 51, + "Height": 99, + "Align": "alClient", + "Alignment": "taCenter", + "Caption": "5~ 30억\r\n 미만\r\n \r\n00.00 %", + "Layout": "tlCenter", + "Visible": false + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit578", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102211, + "Left": 662, + "Top": 232, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 226, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit579", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103211, + "Left": 662, + "Top": 332, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 227, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit580", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103711, + "Left": 662, + "Top": 432, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 228, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit581", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 104211, + "Left": 662, + "Top": 532, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 229, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit582", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101215, + "Left": 715, + "Top": 249, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 234, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit583", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 101715, + "Left": 714, + "Top": 349, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 235, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit584", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 102715, + "Left": 715, + "Top": 449, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 236, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit585", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 103215, + "Left": 715, + "Top": 549, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 237, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "Tab_RA", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "Tab_RA", + "ImageIndex": 3 + }, + "children": [ + { + "class": "TScrollBox", + "name": "ScrollBox1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 906, + "Height": 626, + "HorzScrollBar.Range": 740, + "VertScrollBar.Range": 650, + "Align": "alClient", + "AutoScroll": false, + "Color": "clWhite", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 0, + "OnMouseWheel": "sc_BxMouseWheel" + }, + "children": [ + { + "class": "TLabel", + "name": "Label1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 96, + "Top": 37, + "Width": 158, + "Height": 13, + "Caption": "표준시장단가 제잡비율", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel22", + "flags": [], + "child_pos": null, + "properties": { + "Left": 74, + "Top": 58, + "Width": 737, + "Height": 579, + "BevelInner": "bvLowered", + "Color": "clWhite", + "TabOrder": 0 + }, + "children": [ + { + "class": "TRealGrid", + "name": "rGrd_Rate_RA", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 11, + "Width": 353, + "Height": 561, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 0, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "DataWidth": 30, + "ColWidth": 72, + "GrpWidth": 72 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "일반건설", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "전문", + "DataWidth": 30, + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Title.CellStyle": "wcsUp", + "Title.Caption": "이윤\r(노+경+일)*율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 64, + "GrpWidth": 52 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Height": 35, + "Width": 208, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 5, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 100, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_RA1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 82, + "Top": 11, + "Width": 281, + "Height": 561, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 1, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사기간", + "DataWidth": 16, + "ColWidth": 72, + "GrpWidth": 72 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "토목", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "조경", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 2, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (토목)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 64, + "GrpWidth": 42 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "건축", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 41 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 2, + "LevelIndex": 4, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (건축)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 41 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "토목", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "조경", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "LevelIndex": 3, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산.설 (건축)", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 52 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "건축", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "ColWidth": 52, + "GrpWidth": 52 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "Title.Height": 35, + "Title.Visible": false, + "Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사기간", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "기타경비\r직접공사비 * 율", + "Title.Height": 35, + "Width": 208, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 20, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit454", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202106, + "Left": 157, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 6, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit455", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202206, + "Left": 157, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 7, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit456", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202306, + "Left": 157, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 8, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit457", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202406, + "Left": 157, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 9, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit458", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203106, + "Left": 157, + "Top": 276, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 10, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit459", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203206, + "Left": 157, + "Top": 301, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 11, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit460", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203306, + "Left": 157, + "Top": 326, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 12, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit461", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203406, + "Left": 157, + "Top": 351, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 13, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit462", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203606, + "Left": 157, + "Top": 376, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 14, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit463", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203706, + "Left": 157, + "Top": 401, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 15, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit464", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203806, + "Left": 157, + "Top": 426, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 16, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit465", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203906, + "Left": 157, + "Top": 451, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 17, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit466", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204106, + "Left": 157, + "Top": 476, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 18, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit467", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204206, + "Left": 157, + "Top": 501, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 19, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit468", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204306, + "Left": 157, + "Top": 526, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 20, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit469", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204406, + "Left": 157, + "Top": 551, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 21, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit470", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202107, + "Left": 199, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 26, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit471", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202207, + "Left": 199, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 27, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit472", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202307, + "Left": 199, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 28, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit473", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202407, + "Left": 199, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 29, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit474", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203107, + "Left": 199, + "Top": 276, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 30, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit475", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203207, + "Left": 199, + "Top": 301, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 31, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit476", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203307, + "Left": 199, + "Top": 326, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 32, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit477", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203407, + "Left": 199, + "Top": 351, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 33, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit478", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203607, + "Left": 199, + "Top": 376, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 34, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit479", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203707, + "Left": 199, + "Top": 401, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 35, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit480", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203807, + "Left": 199, + "Top": 426, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 36, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit481", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203907, + "Left": 199, + "Top": 451, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 37, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit482", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204107, + "Left": 199, + "Top": 476, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 38, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit483", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204207, + "Left": 199, + "Top": 501, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 39, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit484", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204307, + "Left": 199, + "Top": 526, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 40, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit485", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204407, + "Left": 199, + "Top": 551, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 41, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit486", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202108, + "Left": 283, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 66, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit487", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202308, + "Left": 283, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 68, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit488", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202408, + "Left": 283, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 69, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit489", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203108, + "Left": 283, + "Top": 276, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 70, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit490", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203208, + "Left": 283, + "Top": 301, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 71, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit491", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203308, + "Left": 283, + "Top": 326, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 72, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit492", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203408, + "Left": 283, + "Top": 351, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 73, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit493", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203608, + "Left": 283, + "Top": 376, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 74, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit494", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203708, + "Left": 283, + "Top": 401, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 75, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit495", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203808, + "Left": 283, + "Top": 426, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 76, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit496", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203908, + "Left": 283, + "Top": 451, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 77, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit497", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204108, + "Left": 283, + "Top": 476, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 78, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit498", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204208, + "Left": 283, + "Top": 501, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 79, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit499", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204308, + "Left": 283, + "Top": 526, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 80, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit500", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204408, + "Left": 283, + "Top": 551, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 81, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit501", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202109, + "Left": 324, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 86, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit502", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202209, + "Left": 324, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 87, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit503", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202309, + "Left": 324, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 88, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit504", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202409, + "Left": 324, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 89, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit505", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203109, + "Left": 324, + "Top": 276, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 90, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit506", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203209, + "Left": 324, + "Top": 301, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 91, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit507", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203309, + "Left": 324, + "Top": 326, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 92, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit508", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203409, + "Left": 324, + "Top": 351, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 93, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit509", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203609, + "Left": 324, + "Top": 376, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 94, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit510", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203709, + "Left": 324, + "Top": 401, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 95, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit511", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203809, + "Left": 324, + "Top": 426, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 96, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit512", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203909, + "Left": 324, + "Top": 451, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 97, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit513", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204109, + "Left": 324, + "Top": 476, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 98, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit514", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204209, + "Left": 324, + "Top": 501, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 99, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit515", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204309, + "Left": 324, + "Top": 526, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 100, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit516", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204409, + "Left": 324, + "Top": 551, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 101, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit517", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202208, + "Left": 283, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 67, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_An_A", + "flags": [], + "child_pos": null, + "properties": { + "Left": 370, + "Top": 11, + "Width": 361, + "Height": 461, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 102, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "DataWidth": 60, + "ColWidth": 72, + "GrpWidth": 72 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사규모", + "Title.Height": 35, + "Title.Visible": false, + "Width": 72, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "NoColTitles": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사종류", + "Title.Height": 35, + "Visible": false, + "Width": 78, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "산업안전보건관리비\r(재료비+직접노무비+관급)*율+추가금액", + "Title.Height": 35, + "Visible": false, + "Width": 140, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "Group0", + "Title.Height": 35, + "Visible": false, + "Width": 70, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 21, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 4, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 22, + "GrpRowHeight": 100, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_Rate_An_A1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 442, + "Top": 11, + "Width": 289, + "Height": 461, + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "ParentFont": false, + "TabOrder": 103, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Footer.Style": [], + "Group": 0, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "공사종류", + "DataWidth": 30, + "ColWidth": 78, + "GrpWidth": 120 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 1, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "산업안전보건관리비\r(직접공사비+관급)*율\r+추가금액", + "DataWidth": 30, + "Defaults": "00.00 % + 12345 천원", + "ColWidth": 140, + "GrpWidth": 80 + }, + { + "Alignment": "taCenter", + "Footer.Style": [], + "Group": 0, + "LevelIndex": 2, + "ReadOnly": true, + "Title.CellStyle": "wcsUp", + "Title.Caption": "비 고\r규모비율", + "DataType": "wdtShort", + "DataWidth": 1, + "Defaults": "0", + "DisplayFormat": "00.00 %", + "ColWidth": 70, + "GrpWidth": 160 + } + ], + "Groups": [ + { + "Title.CellStyle": "wcsUp", + "Title.Caption": "산업안전보건관리비\r(직접공사비+관급자재) * 율 + 추가금액", + "Title.Height": 35, + "Width": 360, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Ctl3D": false, + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 60, + "Headers.GrpHeight": 60, + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "Lines.LevelColor": "clBlack", + "RowCount": 16, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 25, + "GrpRowHeight": 25, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit337", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201117, + "Left": 567, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 104, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit338", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201217, + "Left": 567, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 105, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit339", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201317, + "Left": 567, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 107, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit341", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201517, + "Left": 567, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 106, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit342", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202117, + "Left": 527, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 108, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit347", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202118, + "Left": 590, + "Top": 176, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 109, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit343", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202217, + "Left": 527, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 110, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit348", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202218, + "Left": 590, + "Top": 201, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 111, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit344", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202317, + "Left": 527, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 114, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit349", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202318, + "Left": 590, + "Top": 251, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 115, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit346", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202517, + "Left": 527, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 112, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit351", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202518, + "Left": 590, + "Top": 226, + "Width": 35, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 113, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": 9999, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit352", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202617, + "Left": 567, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 116, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit353", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202717, + "Left": 567, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 117, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit354", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202817, + "Left": 567, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 119, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit356", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203017, + "Left": 567, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 118, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit331", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201120, + "Left": 673, + "Top": 75, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 124, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit332", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201220, + "Left": 673, + "Top": 100, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 125, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit333", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201320, + "Left": 673, + "Top": 150, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 127, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit335", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201520, + "Left": 673, + "Top": 125, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 126, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit336", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202120, + "Left": 673, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 128, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit357", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202220, + "Left": 673, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 129, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit358", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202320, + "Left": 673, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 131, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit360", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202520, + "Left": 673, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 130, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit361", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202620, + "Left": 673, + "Top": 275, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 132, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit362", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202720, + "Left": 673, + "Top": 300, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 133, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit363", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202820, + "Left": 673, + "Top": 350, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 135, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit365", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203020, + "Left": 673, + "Top": 325, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 134, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit410", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202110, + "Left": 242, + "Top": 176, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 46, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit411", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202210, + "Left": 242, + "Top": 201, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 47, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit412", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202310, + "Left": 242, + "Top": 226, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 48, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit413", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 202410, + "Left": 242, + "Top": 251, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 49, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit414", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203110, + "Left": 242, + "Top": 276, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 50, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit415", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203210, + "Left": 242, + "Top": 301, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 51, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit416", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203310, + "Left": 242, + "Top": 326, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 52, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit417", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203410, + "Left": 242, + "Top": 351, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 53, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit418", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203610, + "Left": 242, + "Top": 376, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 54, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit419", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203710, + "Left": 242, + "Top": 401, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 55, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit420", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203810, + "Left": 242, + "Top": 426, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 56, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit421", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203910, + "Left": 242, + "Top": 451, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 57, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit422", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204110, + "Left": 242, + "Top": 476, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 58, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit423", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204210, + "Left": 242, + "Top": 501, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 59, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit424", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204310, + "Left": 242, + "Top": 526, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 60, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit425", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204410, + "Left": 242, + "Top": 551, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 61, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit431", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203617, + "Left": 567, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 120, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit432", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203717, + "Left": 567, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 121, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit433", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203817, + "Left": 567, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 123, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit435", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204017, + "Left": 567, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 122, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit436", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203620, + "Left": 673, + "Top": 375, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 136, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit437", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203720, + "Left": 673, + "Top": 400, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 137, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit438", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 203820, + "Left": 673, + "Top": 450, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 139, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit440", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 204020, + "Left": 673, + "Top": 425, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 138, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit558", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201106, + "Left": 157, + "Top": 76, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit559", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201206, + "Left": 157, + "Top": 101, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit560", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201306, + "Left": 157, + "Top": 126, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 4, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit561", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201406, + "Left": 157, + "Top": 151, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 5, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit562", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201107, + "Left": 199, + "Top": 76, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit563", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201207, + "Left": 199, + "Top": 101, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 23, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit564", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201307, + "Left": 199, + "Top": 126, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 24, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit565", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201407, + "Left": 199, + "Top": 151, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 25, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit566", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201108, + "Left": 283, + "Top": 76, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 62, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit567", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201308, + "Left": 283, + "Top": 126, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 64, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit568", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201408, + "Left": 283, + "Top": 151, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 65, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit569", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201109, + "Left": 324, + "Top": 76, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 82, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit570", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201209, + "Left": 324, + "Top": 101, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 83, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit571", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201309, + "Left": 324, + "Top": 126, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 84, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit572", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201409, + "Left": 324, + "Top": 151, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 85, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit573", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201208, + "Left": 283, + "Top": 101, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 63, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit574", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201110, + "Left": 242, + "Top": 76, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 42, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit575", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201310, + "Left": 242, + "Top": 126, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 44, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit576", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201410, + "Left": 242, + "Top": 151, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 45, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit577", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 201210, + "Left": 242, + "Top": 101, + "Width": 36, + "Height": 18, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 43, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "Tab_M", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "Tab_M", + "ImageIndex": 3 + }, + "children": [ + { + "class": "TScrollBox", + "name": "sc_Bx_M", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 906, + "Height": 626, + "VertScrollBar.Range": 570, + "Align": "alClient", + "AutoScroll": false, + "Color": "clWhite", + "ParentColor": false, + "TabOrder": 0, + "OnMouseWheel": "sc_BxMouseWheel" + }, + "children": [ + { + "class": "TLabel", + "name": "Label159", + "flags": [], + "child_pos": null, + "properties": { + "Left": 100, + "Top": 37, + "Width": 456, + "Height": 13, + "Caption": "☞ 행정자치부 적용 제잡비율(간접노무비, 일반관리비, 이윤) ", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label160", + "flags": [], + "child_pos": null, + "properties": { + "Left": 214, + "Top": 143, + "Width": 28, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "토목", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label161", + "flags": [], + "child_pos": null, + "properties": { + "Left": 214, + "Top": 167, + "Width": 28, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "건축", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label162", + "flags": [], + "child_pos": null, + "properties": { + "Left": 115, + "Top": 193, + "Width": 133, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "특수공사(포장,준설)", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label163", + "flags": [], + "child_pos": null, + "properties": { + "Left": 110, + "Top": 217, + "Width": 140, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "기타(전문,전기,통신)", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label164", + "flags": [], + "child_pos": null, + "properties": { + "Left": 200, + "Top": 268, + "Width": 42, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "~ 5 억", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label165", + "flags": [], + "child_pos": null, + "properties": { + "Left": 186, + "Top": 293, + "Width": 56, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "5 ~ 30억", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label166", + "flags": [], + "child_pos": null, + "properties": { + "Left": 179, + "Top": 317, + "Width": 63, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "30억 ~ ", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label168", + "flags": [], + "child_pos": null, + "properties": { + "Left": 186, + "Top": 368, + "Width": 56, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "~ 6 개월", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label170", + "flags": [], + "child_pos": null, + "properties": { + "Left": 172, + "Top": 392, + "Width": 70, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "6 ~ 12개월", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label171", + "flags": [], + "child_pos": null, + "properties": { + "Left": 165, + "Top": 417, + "Width": 77, + "Height": 13, + "Alignment": "taRightJustify", + "Caption": "12개월 ~ ", + "Visible": false + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label128", + "flags": [], + "child_pos": null, + "properties": { + "Left": 102, + "Top": 479, + "Width": 301, + "Height": 13, + "Caption": "☆ 일반관리비 (<재료비+노무비+경비> x 율)" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label134", + "flags": [], + "child_pos": null, + "properties": { + "Left": 102, + "Top": 539, + "Width": 498, + "Height": 13, + "AutoSize": false, + "Caption": "☆ 이윤 : (재료비 제외금액<노무비+경비+일반관리비> x %)" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label135", + "flags": [], + "child_pos": null, + "properties": { + "Left": 129, + "Top": 496, + "Width": 567, + "Height": 13, + "Caption": "ㅇ 일반건설 50억미만 : %, 50억~ 300억미만 : %, 300억이상 : %" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label139", + "flags": [], + "child_pos": null, + "properties": { + "Left": 129, + "Top": 514, + "Width": 567, + "Height": 13, + "Caption": "ㅇ 전문,기타 5억미만 : %, 5억~ 30억미만 : %, 30억이상 : %" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label147", + "flags": [], + "child_pos": null, + "properties": { + "Left": 356, + "Top": 138, + "Width": 98, + "Height": 13, + "Caption": "소수 위미만 " + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label148", + "flags": [], + "child_pos": null, + "properties": { + "Left": 129, + "Top": 54, + "Width": 217, + "Height": 12, + "Caption": "※ 이외항목 기본 제비율과 동일 ※", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clRed", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_RateM", + "flags": [], + "child_pos": null, + "properties": { + "Left": 100, + "Top": 78, + "Width": 233, + "Height": 389, + "Color": "clWhite", + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "TabOrder": 0, + "Columns": [ + { + "Alignment": "taCenter", + "Color": "clBtnFace", + "Ctl3D": false, + "Footer.Style": [], + "Title.Caption": "구 분", + "DataWidth": 25, + "ColWidth": 142, + "GrpWidth": 64 + }, + { + "Footer.Style": [], + "Title.Caption": "간접노무비", + "DataWidth": 16, + "ColWidth": 86, + "GrpWidth": 64 + } + ], + "Groups": [], + "Footers": [], + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 35, + "Headers.GrpHeight": 42, + "FixedStyle.Color": "clWhite", + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 14, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 25, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0100", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400100, + "Left": 266, + "Top": 143, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0101", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400101, + "Left": 266, + "Top": 167, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0102", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400102, + "Left": 266, + "Top": 193, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0103", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400103, + "Left": 266, + "Top": 217, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 4, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0200", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400200, + "Left": 266, + "Top": 268, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 5, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0201", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400201, + "Left": 266, + "Top": 293, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 6, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0202", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400202, + "Left": 266, + "Top": 317, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 7, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0300", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400300, + "Left": 266, + "Top": 368, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 8, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0301", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400301, + "Left": 266, + "Top": 392, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 9, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_0302", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 400302, + "Left": 266, + "Top": 417, + "Width": 46, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 10, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel6", + "flags": [], + "child_pos": null, + "properties": { + "Left": 346, + "Top": 158, + "Width": 467, + "Height": 308, + "BevelOuter": "bvNone", + "Color": "clWhite", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 18 + }, + "children": [ + { + "class": "TShape", + "name": "Shape12", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 20, + "Width": 440, + "Height": 278 + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label129", + "flags": [], + "child_pos": null, + "properties": { + "Left": 207, + "Top": 75, + "Width": 231, + "Height": 13, + "Caption": "토 목 건 축 특 수 기 타" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape25", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 230, + "Width": 440, + "Height": 68 + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape26", + "flags": [], + "child_pos": null, + "properties": { + "Left": 10, + "Top": 95, + "Width": 440, + "Height": 68 + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label130", + "flags": [], + "child_pos": null, + "properties": { + "Left": 30, + "Top": 142, + "Width": 56, + "Height": 13, + "Caption": "50억미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label131", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 170, + "Width": 63, + "Height": 13, + "Caption": " 50억이상" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label132", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 210, + "Width": 63, + "Height": 13, + "Caption": "300억미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label133", + "flags": [], + "child_pos": null, + "properties": { + "Left": 23, + "Top": 238, + "Width": 63, + "Height": 13, + "Caption": "300억이상" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label136", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 102, + "Width": 77, + "Height": 13, + "Caption": " 6개월 미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label137", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 122, + "Width": 77, + "Height": 13, + "Caption": " 6 ~12 미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label138", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 142, + "Width": 77, + "Height": 13, + "Caption": "12개월 이상" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label140", + "flags": [], + "child_pos": null, + "properties": { + "Left": 282, + "Top": 27, + "Width": 70, + "Height": 13, + "Caption": "간접노무비" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label141", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 170, + "Width": 77, + "Height": 13, + "Caption": " 6개월 미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label142", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 190, + "Width": 77, + "Height": 13, + "Caption": " 6 ~12 미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label143", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 210, + "Width": 77, + "Height": 13, + "Caption": "12개월 이상" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label144", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 238, + "Width": 77, + "Height": 13, + "Caption": " 6개월 미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label145", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 258, + "Width": 77, + "Height": 13, + "Caption": " 6 ~12 미만" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label146", + "flags": [], + "child_pos": null, + "properties": { + "Left": 106, + "Top": 279, + "Width": 77, + "Height": 13, + "Caption": "12개월 이상" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label150", + "flags": [], + "child_pos": null, + "properties": { + "Left": 17, + "Top": 41, + "Width": 76, + "Height": 46, + "AutoSize": false, + "Caption": " 공사규모 (재+직노+ 산출경비)", + "WordWrap": true + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label151", + "flags": [], + "child_pos": null, + "properties": { + "Left": 113, + "Top": 48, + "Width": 56, + "Height": 13, + "Caption": "공사기간" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape46", + "flags": [], + "child_pos": null, + "properties": { + "Left": 192, + "Top": 42, + "Width": 258, + "Height": 23 + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label152", + "flags": [], + "child_pos": null, + "properties": { + "Left": 262, + "Top": 48, + "Width": 119, + "Height": 13, + "Caption": "<직접노무비> x 율" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label154", + "flags": [], + "child_pos": null, + "properties": { + "Left": 377, + "Top": 5, + "Width": 70, + "Height": 13, + "Caption": "(단위 : %)" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label155", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 122, + "Width": 21, + "Height": 13, + "Caption": " ~ " + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label156", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 190, + "Width": 21, + "Height": 13, + "Caption": " ~ " + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label157", + "flags": [], + "child_pos": null, + "properties": { + "Left": 41, + "Top": 258, + "Width": 21, + "Height": 13, + "Caption": " ~ " + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape38", + "flags": [], + "child_pos": null, + "properties": { + "Left": 98, + "Top": 20, + "Width": 1, + "Height": 278, + "Brush.Color": "clMenu" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape39", + "flags": [], + "child_pos": null, + "properties": { + "Left": 192, + "Top": 20, + "Width": 1, + "Height": 278, + "Brush.Color": "clMenu" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape40", + "flags": [], + "child_pos": null, + "properties": { + "Left": 257, + "Top": 64, + "Width": 1, + "Height": 234, + "Brush.Color": "clMenu" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape41", + "flags": [], + "child_pos": null, + "properties": { + "Left": 321, + "Top": 64, + "Width": 1, + "Height": 234, + "Brush.Color": "clMenu" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape42", + "flags": [], + "child_pos": null, + "properties": { + "Left": 385, + "Top": 64, + "Width": 1, + "Height": 234, + "Brush.Color": "clMenu" + }, + "children": [] + }, + { + "class": "TShape", + "name": "Shape47", + "flags": [], + "child_pos": null, + "properties": { + "Left": 449, + "Top": 20, + "Width": 1, + "Height": 278, + "Brush.Color": "clMenu" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1300", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401300, + "Left": 204, + "Top": 235, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 6, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1301", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401301, + "Left": 204, + "Top": 255, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 7, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1302", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401302, + "Left": 204, + "Top": 275, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 8, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1200", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401200, + "Left": 204, + "Top": 167, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1201", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401201, + "Left": 204, + "Top": 187, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 4, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1202", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401202, + "Left": 204, + "Top": 207, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 5, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1100", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401100, + "Left": 204, + "Top": 100, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 0, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1101", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401101, + "Left": 204, + "Top": 120, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1102", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401102, + "Left": 204, + "Top": 140, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1105", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401105, + "Left": 268, + "Top": 100, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 9, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1106", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401106, + "Left": 268, + "Top": 120, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 10, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1107", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401107, + "Left": 268, + "Top": 140, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 11, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1205", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401205, + "Left": 268, + "Top": 167, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 12, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1206", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401206, + "Left": 268, + "Top": 187, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 13, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1207", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401207, + "Left": 268, + "Top": 207, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 14, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1305", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401305, + "Left": 268, + "Top": 235, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 15, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1306", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401306, + "Left": 268, + "Top": 255, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 16, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1307", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401307, + "Left": 268, + "Top": 275, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 17, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1500", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401500, + "Left": 332, + "Top": 100, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 18, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1501", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401501, + "Left": 332, + "Top": 120, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 19, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1502", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401502, + "Left": 332, + "Top": 140, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 20, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1600", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401600, + "Left": 332, + "Top": 167, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 21, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1601", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401601, + "Left": 332, + "Top": 187, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 22, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1602", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401602, + "Left": 332, + "Top": 207, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 23, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1700", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401700, + "Left": 332, + "Top": 235, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 24, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1701", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401701, + "Left": 332, + "Top": 255, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 25, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1702", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401702, + "Left": 332, + "Top": 275, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 26, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1707", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401707, + "Left": 396, + "Top": 275, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 35, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1706", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401706, + "Left": 396, + "Top": 255, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 34, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1705", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401705, + "Left": 396, + "Top": 235, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 33, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1607", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401607, + "Left": 396, + "Top": 207, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 32, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1606", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401606, + "Left": 396, + "Top": 187, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 31, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1605", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401605, + "Left": 396, + "Top": 167, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 30, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1507", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401507, + "Left": 396, + "Top": 140, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 29, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1506", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401506, + "Left": 396, + "Top": 120, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 28, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "Me_1505", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 401505, + "Left": 396, + "Top": 100, + "Width": 41, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabStop": false, + "TabOrder": 27, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "e17a14ae47e1fac70540" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + } + ] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit121", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402301, + "Left": 303, + "Top": 493, + "Width": 34, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 11, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit122", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402400, + "Left": 481, + "Top": 536, + "Width": 50, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 17, + "Ctl3D": false, + "MaxLength": 5, + "MaxValue": { + "extended_hex": "b0726891ed7cffc70540" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit123", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402303, + "Left": 498, + "Top": 493, + "Width": 34, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 12, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit133", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402304, + "Left": 652, + "Top": 493, + "Width": 34, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 13, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit134", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402305, + "Left": 303, + "Top": 511, + "Width": 34, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 14, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit135", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402307, + "Left": 498, + "Top": 511, + "Width": 34, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 15, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit136", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 402308, + "Left": 652, + "Top": 511, + "Width": 34, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 16, + "Ctl3D": false, + "MaxLength": 3, + "MaxValue": { + "extended_hex": "0ad7a3703d0ad79f0240" + }, + "Precision": 2, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TMinButton", + "name": "sBtn_KanNo_Auto", + "flags": [], + "child_pos": null, + "properties": { + "Left": 524, + "Top": 130, + "Width": 193, + "Height": 25, + "RepeatInterval": 50, + "RepeatStartInterval": 50, + "Version": "Version 4.01, Copyright ?2000-2001 by Min", + "Enabled": false, + "Caption": "간접노무비율 일괄계산", + "OnClick": "sBtn_KanNo_AutoClick", + "ParentColor": false, + "Color": "clMoneyGreen", + "TabOrder": 19 + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Rnd", + "flags": [], + "child_pos": null, + "properties": { + "Left": 456, + "Top": 132, + "Width": 63, + "Height": 21, + "TabStop": false, + "Color": "clMoneyGreen", + "Ctl3D": false, + "TabOrder": 20, + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnKeyDown": "cBx_PntKeyDown", + "ListOption.Color": 16776176, + "Values.Strings": [ + "반올림", + "절사" + ], + "OnValueChange": "cBx_RndValueChange" + }, + "children": [] + }, + { + "class": "TwCombo", + "name": "cBx_Pnt", + "flags": [], + "child_pos": null, + "properties": { + "Left": 387, + "Top": 132, + "Width": 68, + "Height": 21, + "TabStop": false, + "Color": "clMoneyGreen", + "Ctl3D": false, + "TabOrder": 21, + "Enabled": false, + "ImeName": "Microsoft IME 2003", + "ParentCtl3D": false, + "OnKeyDown": "cBx_PntKeyDown", + "ListOption.Color": 16776176, + "Values.Strings": [ + "0위미만", + "1위미만", + "2위미만" + ], + "OnValueChange": "cBx_RndValueChange" + }, + "children": [] + } + ] + } + ] + }, + { + "class": "TTabSheet", + "name": "Tab_B", + "flags": [], + "child_pos": null, + "properties": { + "Caption": "Tab_B", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImageIndex": 2, + "ParentFont": false + }, + "children": [ + { + "class": "TScrollBox", + "name": "sc_Bx_B", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 906, + "Height": 626, + "VertScrollBar.Range": 650, + "Align": "alClient", + "AutoScroll": false, + "Color": "clWhite", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ParentColor": false, + "ParentFont": false, + "TabOrder": 0, + "OnMouseWheel": "sc_BxMouseWheel" + }, + "children": [ + { + "class": "TLabel", + "name": "Label104", + "flags": [], + "child_pos": null, + "properties": { + "Left": 99, + "Top": 37, + "Width": 425, + "Height": 13, + "Caption": "☞ 실적공사비 적용시 제경비율 조정계수(토목,건축 전용)", + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clBlue", + "Font.Height": -13, + "Font.Name": "굴림체", + "Font.Style": [ + "fsBold" + ], + "ParentFont": false + }, + "children": [] + }, + { + "class": "TRealGrid", + "name": "rGrd_RateB", + "flags": [], + "child_pos": null, + "properties": { + "Left": 99, + "Top": 70, + "Width": 695, + "Height": 486, + "Color": "clWhite", + "Enabled": false, + "Font.Charset": "HANGEUL_CHARSET", + "Font.Color": "clWindowText", + "Font.Height": -12, + "Font.Name": "굴림체", + "Font.Style": [], + "ImeName": "Microsoft IME 2003", + "ParentFont": false, + "TabOrder": 0, + "Columns": [ + { + "Alignment": "taRightJustify", + "Color": "clBtnFace", + "Ctl3D": false, + "Footer.Style": [], + "Group": 0, + "Title.Caption": "구 분", + "DataWidth": 16, + "ColWidth": 110, + "GrpWidth": 150 + }, + { + "Footer.Style": [], + "Group": 1, + "Title.Caption": "재", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 1, + "LevelIndex": 1, + "Title.Caption": "직노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 1, + "LevelIndex": 2, + "Title.Caption": "노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 1, + "LevelIndex": 3, + "Title.Caption": "재+직노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 1, + "LevelIndex": 4, + "Title.Caption": "재+노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 2, + "Title.Caption": "재", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 2, + "LevelIndex": 1, + "Title.Caption": "직노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 2, + "LevelIndex": 2, + "Title.Caption": "노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 2, + "LevelIndex": 3, + "Title.Caption": "재+직노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + }, + { + "Footer.Style": [], + "Group": 2, + "LevelIndex": 4, + "Title.Caption": "재+노", + "DataWidth": 16, + "ColWidth": 54, + "GrpWidth": 54 + } + ], + "Groups": [ + { + "Title.Caption": "구 분", + "Title.Visible": false, + "Width": 150, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.Caption": "토 목 공 사", + "Title.Height": 25, + "Width": 270, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + }, + { + "Title.Caption": "건 축 공 사", + "Title.Height": 25, + "Width": 270, + "Weights": { + "binary_size": 16, + "binary_hex": "01010101010101010101010101010101" + } + } + ], + "Footers": [], + "Headers.Lines.CellColor": "clBlack", + "Headers.Lines.LevelColor": "clBlack", + "Headers.ColHeight": 35, + "Headers.GrpHeight": 50, + "FixedStyle.Color": "clWhite", + "FixedStyle.Lines.CellColor": "clBlack", + "FixedStyle.Lines.LevelColor": "clBlack", + "GroupMode": true, + "Indicators.Font.Charset": "DEFAULT_CHARSET", + "Indicators.Font.Color": "clWindowText", + "Indicators.Font.Height": -11, + "Indicators.Font.Name": "Arial", + "Indicators.Font.Style": [], + "Indicators.Visible": false, + "Lines.HorzColor": "clGray", + "Lines.CellColor": "clBlack", + "RowCount": 12, + "ScrollBars": "ssNone", + "SelTrans": 0, + "ColRowHeight": 30, + "GrpRowHeight": 36, + "ColFixedCount": 0, + "GrpFixedCount": 0 + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit1", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300100, + "Left": 259, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit2", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300101, + "Left": 312, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 13, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit3", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300102, + "Left": 366, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 14, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit4", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300103, + "Left": 420, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 15, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit5", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300104, + "Left": 473, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 16, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit6", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300200, + "Left": 259, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit7", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300201, + "Left": 312, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 17, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit8", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300202, + "Left": 366, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 18, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit9", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300203, + "Left": 420, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 19, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit10", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300204, + "Left": 473, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 20, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit11", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300300, + "Left": 259, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit12", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300301, + "Left": 312, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 21, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit13", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300302, + "Left": 366, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 22, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit14", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300303, + "Left": 420, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 23, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit15", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300304, + "Left": 473, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 24, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit16", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300600, + "Left": 259, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 4, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit17", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300601, + "Left": 312, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 25, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit18", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300602, + "Left": 366, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 26, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit19", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300603, + "Left": 420, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 27, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit20", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300604, + "Left": 473, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 28, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit21", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300700, + "Left": 259, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 5, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit22", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300701, + "Left": 312, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 29, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit23", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300702, + "Left": 366, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 30, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit24", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300703, + "Left": 420, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 31, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit25", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300704, + "Left": 473, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 32, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit26", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300800, + "Left": 259, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 6, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit27", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300801, + "Left": 312, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 33, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit28", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300802, + "Left": 366, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 34, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit29", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300803, + "Left": 420, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 35, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit30", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300804, + "Left": 473, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 36, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit31", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301100, + "Left": 259, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 7, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit32", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301101, + "Left": 312, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 37, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit33", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301102, + "Left": 366, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 38, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit34", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301103, + "Left": 420, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 39, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit35", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301104, + "Left": 473, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 40, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit36", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301200, + "Left": 259, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 8, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit37", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301201, + "Left": 312, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 41, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit38", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301202, + "Left": 366, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 42, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit39", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301203, + "Left": 420, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 43, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit40", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301204, + "Left": 473, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 44, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit41", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301300, + "Left": 259, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 9, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit42", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301301, + "Left": 312, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 45, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit43", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301302, + "Left": 366, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 46, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit44", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301303, + "Left": 420, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 47, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit45", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301304, + "Left": 473, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 48, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit46", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301600, + "Left": 259, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 10, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit47", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301601, + "Left": 312, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 49, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit48", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301602, + "Left": 366, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 50, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit49", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301603, + "Left": 420, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 51, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit50", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301604, + "Left": 473, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 52, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit51", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301700, + "Left": 259, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 11, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit52", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301701, + "Left": 312, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 53, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit53", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301702, + "Left": 366, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 54, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit54", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301703, + "Left": 420, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 55, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit55", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301704, + "Left": 473, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 56, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit56", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301800, + "Left": 259, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 12, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit57", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301801, + "Left": 312, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 57, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit58", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301802, + "Left": 366, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 58, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit59", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301803, + "Left": 420, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 59, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit60", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301804, + "Left": 473, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 60, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit61", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300105, + "Left": 529, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 61, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit62", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300106, + "Left": 582, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 73, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit63", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300107, + "Left": 636, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 74, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit64", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300108, + "Left": 690, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 75, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit65", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300109, + "Left": 743, + "Top": 130, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 76, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit66", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300205, + "Left": 529, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 62, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit67", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300206, + "Left": 582, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 77, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit68", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300207, + "Left": 636, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 78, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit69", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300208, + "Left": 690, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 79, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit70", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300209, + "Left": 743, + "Top": 165, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 80, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit71", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300305, + "Left": 529, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 63, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit72", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300306, + "Left": 582, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 81, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit73", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300307, + "Left": 636, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 82, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit74", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300308, + "Left": 690, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 83, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit75", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300309, + "Left": 743, + "Top": 200, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 84, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit76", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300605, + "Left": 529, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 64, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit77", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300606, + "Left": 582, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 85, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit78", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300607, + "Left": 636, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 86, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit79", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300608, + "Left": 690, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 87, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit80", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300609, + "Left": 743, + "Top": 239, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 88, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit81", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300705, + "Left": 529, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 65, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit82", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300706, + "Left": 582, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 89, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit83", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300707, + "Left": 636, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 90, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit84", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300708, + "Left": 690, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 91, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit85", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300709, + "Left": 743, + "Top": 274, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 92, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit86", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300805, + "Left": 529, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 66, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit87", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300806, + "Left": 582, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 93, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit88", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300807, + "Left": 636, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 94, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit89", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300808, + "Left": 690, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 95, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit90", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 300809, + "Left": 743, + "Top": 309, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 96, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit91", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301105, + "Left": 529, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 67, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit92", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301106, + "Left": 582, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 97, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit93", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301107, + "Left": 636, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 98, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit94", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301108, + "Left": 690, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 99, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit95", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301109, + "Left": 743, + "Top": 348, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 100, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit96", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301205, + "Left": 529, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 68, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit97", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301206, + "Left": 582, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 101, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit98", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301207, + "Left": 636, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 102, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit99", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301208, + "Left": 690, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 103, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit100", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301209, + "Left": 743, + "Top": 383, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 104, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit101", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301305, + "Left": 529, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 69, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit102", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301306, + "Left": 582, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 105, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit103", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301307, + "Left": 636, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 106, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit104", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301308, + "Left": 690, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 107, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit105", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301309, + "Left": 743, + "Top": 418, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 108, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit106", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301605, + "Left": 529, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 70, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit107", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301606, + "Left": 582, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 109, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit108", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301607, + "Left": 636, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 110, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit109", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301608, + "Left": 690, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 111, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit110", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301609, + "Left": 743, + "Top": 455, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 112, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit111", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301705, + "Left": 529, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 71, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit112", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301706, + "Left": 582, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 113, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit113", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301707, + "Left": 636, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 114, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit114", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301708, + "Left": 690, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 115, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit115", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301709, + "Left": 743, + "Top": 490, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 116, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit116", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301805, + "Left": 529, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 72, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit117", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301806, + "Left": 582, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 117, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit118", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301807, + "Left": 636, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 118, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit119", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301808, + "Left": 690, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 119, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit120", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 301809, + "Left": 743, + "Top": 525, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 120, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel1", + "flags": [], + "child_pos": null, + "properties": { + "Left": 100, + "Top": 121, + "Width": 60, + "Height": 109, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": " ~ 5억", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 121 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 100, + "Top": 229, + "Width": 60, + "Height": 109, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": " 5 ~ 30억", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 122 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel4", + "flags": [], + "child_pos": null, + "properties": { + "Left": 100, + "Top": 337, + "Width": 60, + "Height": 109, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "30 ~ 50억", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 123 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel5", + "flags": [], + "child_pos": null, + "properties": { + "Left": 100, + "Top": 445, + "Width": 60, + "Height": 109, + "BevelOuter": "bvNone", + "BorderStyle": "bsSingle", + "Caption": "50억 ~ ", + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 124 + }, + "children": [] + }, + { + "class": "TPanel", + "name": "Panel7", + "flags": [], + "child_pos": null, + "properties": { + "Left": 99, + "Top": 555, + "Width": 692, + "Height": 73, + "BevelOuter": "bvNone", + "BevelWidth": 2, + "BorderStyle": "bsSingle", + "Color": 16776176, + "Ctl3D": false, + "ParentCtl3D": false, + "TabOrder": 125 + }, + "children": [ + { + "class": "TwLabel", + "name": "wLabel2", + "flags": [], + "child_pos": null, + "properties": { + "Left": 59, + "Top": 0, + "Width": 92, + "Height": 36, + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel3", + "flags": [], + "child_pos": null, + "properties": { + "Left": 59, + "Top": 35, + "Width": 92, + "Height": 36, + "Caption": "기 타 경 비", + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel4", + "flags": [], + "child_pos": null, + "properties": { + "Left": 150, + "Top": 0, + "Width": 271, + "Height": 36, + "Color": "clWhite", + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel5", + "flags": [], + "child_pos": null, + "properties": { + "Left": 150, + "Top": 35, + "Width": 271, + "Height": 36, + "Color": "clWhite", + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel6", + "flags": [], + "child_pos": null, + "properties": { + "Left": 420, + "Top": 0, + "Width": 270, + "Height": 36, + "Color": "clWhite", + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel7", + "flags": [], + "child_pos": null, + "properties": { + "Left": 420, + "Top": 35, + "Width": 270, + "Height": 36, + "Color": "clWhite", + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TwLabel", + "name": "wLabel8", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 60, + "Height": 71, + "BorderStyle": "mlbsLine" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label149", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 0, + "Width": 60, + "Height": 71, + "Align": "alLeft", + "Alignment": "taCenter", + "AutoSize": false, + "Caption": "기초금액\r\n\r\n상한비율", + "Color": "clBtnFace", + "ParentColor": false, + "Transparent": true, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TLabel", + "name": "Label153", + "flags": [], + "child_pos": null, + "properties": { + "Left": 60, + "Top": 0, + "Width": 92, + "Height": 36, + "Alignment": "taCenter", + "AutoSize": false, + "Caption": "산 업 안 전\r\n보건관리비", + "Color": "clBtnFace", + "ParentColor": false, + "Transparent": true, + "Layout": "tlCenter" + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit124", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 303600, + "Left": 267, + "Top": 8, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 0, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit125", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 303605, + "Left": 539, + "Top": 8, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 2, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit126", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 303700, + "Left": 267, + "Top": 44, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 1, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + }, + { + "class": "TwNumEdit", + "name": "wNumEdit127", + "flags": [], + "child_pos": null, + "properties": { + "Tag": 303705, + "Left": 539, + "Top": 44, + "Width": 38, + "Height": 19, + "ParentColor": false, + "ParentCtl3D": false, + "TabOrder": 3, + "Ctl3D": false, + "MaxLength": 4, + "MaxValue": { + "extended_hex": "105839b4c876befffe3f" + }, + "Precision": 3, + "ReadOnly": true + }, + "children": [] + } + ] + } + ] + } + ] + } + ] + }, + { + "class": "TStatusBar", + "name": "StBar", + "flags": [], + "child_pos": null, + "properties": { + "Left": 0, + "Top": 690, + "Width": 914, + "Height": 21, + "Panels": [], + "SimplePanel": false + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_O", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate.dbf", + "TableType": "ttSXNSX", + "Left": 48, + "Top": 48 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_RA", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_RA.dbf", + "TableType": "ttSXNSX", + "Left": 104, + "Top": 48 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_B_", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_B.dbf", + "TableType": "ttSXNSX", + "Left": 160, + "Top": 48 + }, + "children": [] + }, + { + "class": "TOpenDialog", + "name": "Dlg_Call_Def", + "flags": [], + "child_pos": null, + "properties": { + "DefaultExt": "JB_1", + "FileName": "C:\\경영정보(주)\\System\\2004_제비율.JB_1", + "Filter": "제비율적용기준(일반)|*_제비율.JB_1|실적공사조정계수(A)|*_조정계수.JB_A|실적공사조정계수(B)|*_조정계수.JB_B", + "Options": [ + "ofHideReadOnly", + "ofExtensionDifferent", + "ofEnableSizing" + ], + "Left": 336, + "Top": 48 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Call_DEF", + "flags": [], + "child_pos": null, + "properties": { + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "ReadOnly": true, + "TableName": "Rate.dbf", + "TableType": "ttSXNSX", + "Left": 272, + "Top": 48 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_M", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_M.dbf", + "TableType": "ttSXNSX", + "Left": 216, + "Top": 48 + }, + "children": [] + }, + { + "class": "TApolloTable", + "name": "tb_Rate_R", + "flags": [], + "child_pos": null, + "properties": { + "DatabaseName": "ST_Work", + "CachedUpdates": false, + "FieldDefs": [], + "IndexDefs": [], + "TableName": "Rate_R.dbf", + "TableType": "ttSXNSX", + "Left": 392, + "Top": 48 + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/_tmp.txt b/scratch/orca_artifacts/stmate_competitor_analysis/_tmp.txt new file mode 100644 index 00000000..40f805ad --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/_tmp.txt @@ -0,0 +1,43 @@ +clBackground +fsMDIForm +OnActivate +OnDeactivate +QTY1 +QTY2 +QTY3 +QTY4 +TAMT1 +LAMT1 +MAMT1 +SAMT1 +RATE +KWNGP +EQCODE +X_RATE +X_QTY1 +X_QTY2 +X_QTY3 +X_HAL1 +X_HAL2 +X_HAL3 +S_RATE +sAmTb +CreateHalftonePalette +SetForegroundWindow +GetForegroundWindow +AdjustWindowRectEx +ActivateKeyboardLayout +select +MROUNDUP +MROUNDUD +QTypInfo +lbBackGroundMsg +Background Processing +StopBackground +Stop Background +StartBackground +Start Background +OLE control activation failed*Could not obtain OLE control window handle%License information for %s is invalidPLicense information for %s not found. You cannot use this control in design mode +Insert record +Delete record +OnActivate컗C \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/analyze_system.py b/scratch/orca_artifacts/stmate_competitor_analysis/analyze_system.py new file mode 100644 index 00000000..81bf59db --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/analyze_system.py @@ -0,0 +1,221 @@ +"""STmate System 폴더 정적 인벤토리/PE 근거 추출. 원본은 읽기만 한다.""" +from __future__ import annotations + +import csv +import hashlib +import json +import re +import struct +import sys +import zipfile +from collections import Counter +from pathlib import Path + +SYSTEM = Path(r"C:\경영정보(주)\System") +OUT = Path(__file__).resolve().parent +CORE = { + "ST_KanJub.CPM", "ST_SanCal.CPM", "ST_Boq.CPM", "ST_EdiLWi.CPM", + "STmateQty8.CPM", "ST_P_Joong.CPM", "ST_U_ChgAmt.CPM", + "ST_U_ChgCode.CPM", "ST_U_ConBD.CPM", "ST_P_ConEst.CPM", + "ST_P_Collect.CPM", "ST_U_Convert.CPM", +} +TOKENS = re.compile( + r"DBF|SMT|COSTN|COSTA|BDQTY|BOQ(?:11|12|13|14)?|PRJLST|RATE(?:_M|_R|_RA)?|" + r"TAMT|LAMT|MAMT|SAMT|QTY|ROUND|HAL|ADJ|PG_[1-6]|KWNGP|EQCODE|IFORM|" + r"STBSC|CSTA|JB_R|VAT|TAX|EXCEL|XLS|\bSELECT\b|\bUPDATE\b|\bINSERT\b|\bDELETE\b", + re.I, +) + + +def u16(data: bytes, off: int) -> int: + return struct.unpack_from(" int: + return struct.unpack_from(" str: + end = data.find(b"\0", off, min(len(data), off + limit)) + if end < 0: + end = min(len(data), off + limit) + return data[off:end].decode("ascii", errors="replace") + + +def strings(data: bytes) -> list[str]: + found = [m.group().decode("ascii", errors="replace") for m in re.finditer(rb"[\x20-\x7e]{4,}", data)] + found += [m.group().decode("utf-16le", errors="replace") for m in re.finditer(rb"(?:[\x20-\x7e]\x00){4,}", data)] + # CP949 문자열은 정확한 경계 검출이 어려워 printable run을 보수적으로 추가한다. + for raw in re.findall(rb"(?:[\x20-\x7e\x81-\xfe]){6,}", data): + try: + text = raw.decode("cp949") + except UnicodeDecodeError: + continue + if any("가" <= ch <= "힣" for ch in text): + found.append(text) + return list(dict.fromkeys(found)) + + +def pe_info(data: bytes) -> dict | None: + if data[:2] != b"MZ" or len(data) < 0x40: + return None + pe = u32(data, 0x3C) + if pe + 24 > len(data) or data[pe:pe + 4] != b"PE\0\0": + return None + machine, nsec, timestamp, _, _, opt_size, characteristics = struct.unpack_from(" int | None: + for sec in sections: + if sec["va"] <= rva < sec["va"] + max(sec["vsize"], sec["raw_size"]): + return sec["raw_off"] + rva - sec["va"] + return rva if rva < len(data) else None + + imports = [] + if data_dir + 16 <= len(data): + imp_rva = u32(data, data_dir + 8) + imp_off = rva_off(imp_rva) if imp_rva else None + if imp_off is not None: + for i in range(512): + off = imp_off + i * 20 + if off + 20 > len(data): + break + original, _, _, name_rva, thunk = struct.unpack_from(" tuple[str, dict]: + pe = pe_info(data) + if pe: + return "PE", pe + if data[:2] == b"PK": + extra = {} + try: + with zipfile.ZipFile(path) as zf: + extra = {"entries": len(zf.infolist()), "encrypted": sum(bool(x.flag_bits & 1) for x in zf.infolist()), "names": [x.filename for x in zf.infolist()]} + except Exception as exc: + extra = {"zip_error": type(exc).__name__} + return "ZIP", extra + if data and data[0] in (0x02, 0x03, 0x04, 0x06, 0x30, 0x31, 0x32, 0x43, 0x63, 0x83, 0x8B, 0xCB, 0xF5, 0xE5, 0xE6, 0xFB): + if len(data) >= 32: + return "DBF-like", {"version": f"0x{data[0]:02X}", "records": u32(data, 4), "header_len": u16(data, 8), "record_len": u16(data, 10)} + if data[:2] == b"MZ": + return "DOS-MZ", {"magic": data[:16].hex()} + if data[8:16] == b"SIxMemo\0": + return "SIxMemo", {"block_size": u32(data, 4), "first_value": u32(data, 0)} + if data[:4] in (b"BTLF", b"BTCV"): + return data[:4].decode("ascii"), {"header": data[:32].rstrip(b"\0").decode("ascii", errors="replace")} + if data.lstrip().startswith((b" dict: + fields, off = [], 32 + while off + 32 <= len(data) and data[off] != 0x0D: + raw = data[off:off + 32] + fields.append({ + "name": raw[:11].split(b"\0")[0].decode("ascii", errors="replace"), + "type": chr(raw[11]), "length": raw[16], "decimals": raw[17], + }) + off += 32 + return { + "version": f"0x{data[0]:02X}", "records": u32(data, 4), + "header_len": u16(data, 8), "record_len": u16(data, 10), "fields": fields, + } + + +def main() -> None: + if not SYSTEM.is_dir(): + raise SystemExit(f"not found: {SYSTEM}") + rows, core_details, structures = [], {}, {} + for path in sorted(SYSTEM.rglob("*")): + if not path.is_file(): + continue + data = path.read_bytes() + kind, detail = classify(data, path) + rel = str(path.relative_to(SYSTEM)) + level = "format_checked" + if kind == "PE": + ss = strings(data) + hits = [s for s in ss if TOKENS.search(s)] + structures[rel] = {"format": kind, "pe": detail, "strings_total": len(ss), "domain_strings": hits[:1000]} + if path.name in CORE: + core_details[rel] = structures[rel] + level = "internal_structure_extracted" + elif kind == "DBF-like": + structures[rel] = {"format": kind, "dbf": dbf_structure(data)} + level = "internal_structure_extracted" + elif kind == "ZIP": + structures[rel] = {"format": kind, "zip": detail} + level = "internal_structure_extracted" + elif kind in ("DOS-MZ", "SIxMemo", "BTLF", "BTCV", "text", "tips-data", "obfuscated-log"): + structures[rel] = {"format": kind, "detail": detail, "strings": strings(data)[:1000]} + level = "internal_structure_extracted" + rows.append({ + "path": rel, "bytes": len(data), "sha256": hashlib.sha256(data).hexdigest(), + "extension": path.suffix, "format": kind, "analysis_level": level, + "core": path.name in CORE, "detail_summary": json.dumps(detail if kind != "PE" else {"sections": len(detail["sections"]), "imports": len(detail["imports"]), "exports": len(detail["exports"])}, ensure_ascii=False), + }) + with (OUT / "system_inventory.csv").open("w", encoding="utf-8-sig", newline="") as fh: + writer = csv.DictWriter(fh, fieldnames=rows[0].keys()) + writer.writeheader(); writer.writerows(rows) + (OUT / "core_cpm_static.json").write_text(json.dumps(core_details, ensure_ascii=False, indent=2), encoding="utf-8") + (OUT / "system_structures.json").write_text(json.dumps(structures, ensure_ascii=False, indent=2), encoding="utf-8") + formula_map: dict[str, list[str]] = {} + for module, detail in core_details.items(): + for text in detail["domain_strings"]: + upper = text.upper() + if any(mark in upper for mark in ("ROUNDDOWN(", "ROUNDUP(", "ROUND(", "TAMT1<>", "SUBSTR(BDCODE", 'CODE="W"')): + formula_map.setdefault(text, []).append(module) + (OUT / "core_formula_strings.json").write_text(json.dumps(formula_map, ensure_ascii=False, indent=2), encoding="utf-8") + counts = Counter(r["analysis_level"] for r in rows) + formats = Counter(r["format"] for r in rows) + assert len(rows) == 186 and len(core_details) == 12 + assert sum(formats.values()) == len(rows) and len({r["path"] for r in rows}) == len(rows) + print(json.dumps({"files": len(rows), "levels": counts, "formats": formats, "core": len(core_details)}, ensure_ascii=False, default=dict)) + + +if __name__ == "__main__": + sys.stdout.reconfigure(encoding="utf-8") + main() diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/core_cpm_static.json b/scratch/orca_artifacts/stmate_competitor_analysis/core_cpm_static.json new file mode 100644 index 00000000..ed4af647 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/core_cpm_static.json @@ -0,0 +1,4535 @@ +{ + "ST_CPM\\ST_Boq.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1224580, + "raw_off": 1024, + "raw_size": 1224704 + }, + { + "name": "DATA", + "va": 1228800, + "vsize": 10492, + "raw_off": 1225728, + "raw_size": 10752 + }, + { + "name": "BSS", + "va": 1241088, + "vsize": 78773, + "raw_off": 1236480, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1323008, + "vsize": 64186, + "raw_off": 1236480, + "raw_size": 64512 + }, + { + "name": ".edata", + "va": 1388544, + "vsize": 134, + "raw_off": 1300992, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1392640, + "vsize": 65648, + "raw_off": 1301504, + "raw_size": 66048 + }, + { + "name": ".rsrc", + "va": 1462272, + "vsize": 751616, + "raw_off": 1367552, + "raw_size": 751616 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridEX6.bpl", + "vcldb60.bpl", + "vclx60.bpl", + "VclSmp60.bpl", + "winmm.dll", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "RealGridDB6.bpl" + ], + "exports": [ + "Add_From_MRG", + "Calc_Kanjub", + "Edit_Boq", + "Edit_Bqm" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 17553, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "OnActivate", + "OnDeactivate", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "Find_BOQ", + " Find_BOQ ", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + ".DBF", + "STmateQty8.CPM", + "ST_QTY", + "KBOQ", + "PRJLST.DBF", + "Excel.Application", + "Microsoft Excel", + "Excel", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "tbBoq1", + "dsBoq1", + "tb_Boq_R", + "tb_Boq_Ref", + "dsBoq1DataChange", + "TwMBoq", + "TwMBoqH", + "MBoq", + "PRT.DBF", + "Dont_Cr_PRN_DBF", + "KONGJONG.DBF", + "Qty1", + "GrdBoq0", + "GrdBoq0DblClick", + "GrdBoq0DrawCell", + "GrdBoq0KeyDown", + "qty1", + "PnTHaL", + "PnMLShaL", + "LbLTAMT2@", + "LbLMAMT2H", + "LbLLAMT2P", + "LbLSAMT2X", + "LbLTAMTd", + "HalSh", + "HalLl", + "HalMp", + "HalTt", + "HalLKeyPress", + "TwBoqRate", + "BoqRate", + "CostNavit", + "Act_FindBoq", + "sBtnLstEqCode", + "Act_LstEqCode", + "tb_BdQty", + "tb_BdQty_X", + "ds_BdQty", + "ds_BdQty_X", + "tb_CostA,", + "ds_CostA0", + "Act_FindBoqExecute", + "(STmate8x)\\BOQ_INFO", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "PG_5", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+EDT_DATE", + "MRG_CN.DBF", + "\"$UPPER(CODE+\"`\"+NAME+\"`\"+SIZE+\"`\"+UNIT+\"`\"+BQCODE+\"`\"+EQCODE+\"`\"+JDCODE+\"`\"+EDT_DATE", + "+\"`\"+STR(TAMT", + ",16,2)+\"`\"+STR(LAMT", + ",16,2)+\"`\"+STR(MAMT", + ",16,2)+\"`\"+STR(SAMT", + "tbBoqBeforeEdit", + "tbBoqAfterDelete", + "tbBoqAfterInsert", + "tbBoqAfterPost", + "calcitemBoq", + "tbBoqBeforeInsert", + "GrdBoq0Edit", + "GrdBoqXDrawCell", + "PrjLst.dbf ", + "Tamt1", + "Mamt1", + "Lamt1", + "Samt1", + "RdoQty1", + "RdoQty0", + "EdQty,", + "RdoQty0Click", + "pn_Qty1", + "lb_Qty1", + "rd_Qty1", + "ed_Qty1", + "sBtnLcostNo`", + "pn_Qty_Pntp", + "rd_Qty_Pnt", + "ed_Qty1KeyDown", + "sBtnLcostNoClick", + "TwM_Rate", + "TwM_Rate0;M", + "Rate_M", + "rGrd_BOQ_C", + "tb_BOQ", + "Act_Qty_Up", + "Act_Qty_UpExecute", + "TwM_From_XLS", + "From_XLS", + "BOQ_C.DBF", + "POS_D_FROM_XLS", + "QTY_O", + "MAMT_O", + "LAMT_O", + "SAMT_O", + "TAMT_O", + "wNe_LAMT1$", + "wNe_MAMT1(", + "wNe_SAMT1,", + "wNe_LAMT3D", + "wNe_MAMT3H", + "wNe_SAMT3L", + "wNe_TAMT3\\", + "wNe_TAMT1`", + "wNe_DayQtyt", + "wNe_QTY1|", + "cBx_AddQty", + "wNe_QTY3", + "wNe_DayQtyExit", + "TwM_Boq_ExecX", + "Boq_ExecX", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT3", + "ed_Hal_L", + "ed_Hal_M$", + "Add1_Rate,", + "Add2_Rate0", + "lb_QTY", + "ed_Hal_LEnter", + "QTY1_O", + "tbBoq", + "dsBoq", + "GrdBoqBigoT", + "GrdBoq0X", + "menuQtyT", + "mQty37X", + "mQtyDevd\\", + "mChangeBoqd", + "mHalLQty|", + "mHalMQty", + "mHalXQty", + "mHalWQty", + "MenuMBoq", + "mSetPosAmt", + "GrdBoq1H", + "GrdBoq37L", + "sBtnMBoq", + "CBoxQty2", + "CBoxFltBoq", + "GrdBoq5 ", + "ActMBoqH", + "ActRateJodalh", + "mHal", + "GrdBoq6", + "ViewOthrBoq", + "dsOthBoq", + "tbOthBoq", + "PnBoqX", + "GrdBoqX", + "CBoxQty(", + "ActHalOneD", + "ActHalAllSelectedH", + "ActHalSelectedL", + "Act_Rate_Qty_L`", + "Act_Rate_Qty_Md", + "Act_Rate_Qty_Xh", + "Act_Rate_Qty_Wl", + "ActFltBoqp", + "mQtyChangeOrdt", + "GrdBoq6Row", + "tb_CostA ", + "RGrdCostA(", + "ds_CostA,", + "GrdBoq41H", + "Act_SafeQtyL", + "Pop_RateX", + "Act_Rate_Amt_L", + "Act_Rate_Amt_M", + "Act_Rate_Amt_X", + "Act_Rate_Amt_W", + "Act_Qty_Pnt", + "Act_View_Qty0Amt", + "mi_Qty1_0", + "ActRate_Susu", + "Act_ContBOQ_EXL", + "mi_BOQ_EXL", + "Act_EXL_ContBOQT", + "Act_Enabl_QTY\\", + "tbOthBoq1", + "dsOthBoq1", + "GrdBoq10\\", + "mQty37_r|", + "Act_Enabl_BOQ6", + "mi_Qty1_1", + "Act_From_Xls", + "ActRate_Jod", + "Act_BOQQty_EXL", + "Act_EXL_BOQQty", + "mImportQtyX", + "mQty6All|", + "GrdBoq0HeaderTitleClick", + "dsBoqDataChange", + "GrdBoq1DrawCell", + "GrdBoq1Enter", + "GrdBoq1Exit", + "wBoqCalcTrue", + "GrdBoq37DrawCell", + "GrdBoq0ColumnTitleClick", + "GrdBoq0KeyUp", + "GrdBoq5DrawCell", + "ActBoqHint", + "ActMBoqExecute", + "ActRateJodalExecute", + "GrdBoqBigoEdit", + "GrdBoqBigoDrawCell", + "GrdBoqBigoKeyDown", + "GrdBoq6DrawCell", + "tbBoqBeforeDelete", + "ViewOthrBoqExecute", + "GrdBoqXHeaderTitleClick", + "GrdBoq0DrawMarker", + "GrdBoq0DrawIndicator", + "ActHalOneExecute", + "ActHalAllSelectedExecute", + "ActFltBoqExecute", + "mQty37Click", + "mImportQtyClick", + "tbBoqBeforePost", + "GrdBoq6RowDrawCell", + "GrdBoq_DrawRow", + "GrdBoq41ColumnTitleClick", + "GrdBoq41DrawCell", + "GrdBoq41Edit", + "GrdBoq41DrawRow", + "Act_SafeQtyExecute", + "Act_Rate_Execute", + "Act_Qty_PntExecute", + "Act_View_Qty0AmtExecute", + "mi_Qty1_0Click", + "GrdBoq_Exit", + "Act_ContBOQ_EXLExecute", + "Act_EXL_ContBOQExecute", + "Act_Enabl_QTYExecute", + "GrdBoq10DrawCell", + "Act_Enabl_BOQ6Execute", + "Act_From_XlsExecute", + "Refresh_BOQ", + "Act_BOQQty_EXLExecute", + "Act_EXL_BOQQtyExecute", + "GrdBoqXDrawMarker", + "GrdBoqXDrawIndicator", + "ReIndx_OthBoq", + "TwBoq!", + "TwBoq(", + "qty2", + "qty3", + "qty4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "BOQ_E.*", + "BOQ_E.DBF", + "BOQ_E.NSX", + "VIEW_OTHER_BOQ", + "MRG_BOQ.DBF", + "MRG_BOQ.*", + "Lamt2", + "Mamt2", + "Samt2", + "Tamt2", + "Tamt3", + "Lamt3", + "Mamt3", + "Samt3", + "Tamt", + "Lamt", + "Mamt", + "Samt", + "Costn.dbf ", + "iform", + "tamt", + "eqcode", + "Qty2", + "Qty4", + "tamt1", + "lamt1", + "mamt1", + "samt1", + "SAMECODE.DBF", + "Qty3", + "Set AllQty", + "COSTN", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE)", + "COSTA", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+CODEA)", + "PRJLST", + "\"$UPPER(BDCODE1+ITNUM+NAME1+SIZE1+DES1+DES2+UNIT1+EQCODE)", + "\"$UPPER(BDCODE1+ITNUM+NAME1+SIZE1+UNIT1+EQCODE", + "(BDCODE1=\"QTY\") .and. (LEN(TRIM(UNIT1))<>0) .and. (QTY1<>0)", + "RATE_M", + "BOQC.DBF", + "BOQC.NSX", + "P_XLS.CPM", + "MAKE_XLS", + "Prn_CONTBOQ_EXL", + " MAKE_XLS ", + "ContBoq ToEXL", + "SHOW_XLS", + " SHOW_XLS ", + "FREE_XLS", + "Prn_EXL_CONTBOQ", + "ContBoq FromEXL", + "\"$UPPER(EQCODE))", + "Recall Boq", + "( SUBSTR(BDCODE1,1,1)$\"MLSW\" .and. \"%\"$UNIT1 ) .or. ( SUBSTR(BDCODE1,1,1)$\"MLSWBDXA\" .and. SUBSTR(STR(QTY1,20,4),LEN(STR(QTY1,20,4)),1)<>\"0\" )", + "ST_P_XLS.CPM", + "XLS_2_BDREC", + "Prn_BOQQTY_EXL", + "Prn_EXL_BOQQTY", + "BoqQty FromEXL", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "CreateHalftonePalette", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "ST_Boq.CPM", + "Edit_Boq", + "ST_Boq", + "=Boq", + "}MBoq", + "TwBoq", + "wBoq", + "clBackground", + "BackgroundColor", + "RGrdCostA", + "ds_CostA", + "GrdBoq1", + "GrdBoq37", + "GrdBoq5", + "GrdBoq41", + "GrdBoq10", + "QTY_", + "ActMBoq", + "ActFltBoq", + "Act_SafeQty", + "Pop_Rate", + "CBoxQty", + "BOQ11.NSX", + "Boq11.dbf", + "BOQ11.DBF", + "mImportQty", + "Act_EXL_ContBOQ", + "Act_Enabl_QTY", + "menuQty", + "mQty37", + "mQty37_r", + "mQtyDevd", + "mQtyChangeOrd", + "mQty6All", + "mChangeBoq", + "mHalLQty", + "ActRateJodal", + "ActHalOne", + "ActHalAllSelected", + "ActHalSelected", + "Act_Rate_Qty_L", + "Act_Rate_Qty_M", + "Act_Rate_Qty_X", + "Act_Rate_Qty_W", + "COSTN.NSX", + "PRJLST.NSX", + "tb_CostA", + "COSTA.DBF", + "wBoqRate", + "LbLTAMT", + "HalT", + "LbLTAMT2", + "LbLMAMT2", + "LbLLAMT2", + "LbLSAMT2", + "HalS", + "HalL", + "HalM", + "Bqm11.dbf", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "UPPER(EQCODE)", + "UPPER(PADL(TRIM(PG_11),12,\" \"))", + "UPPER(PADL(TRIM(PG_21),12,\" \"))", + "UPPER(PADL(TRIM(PG_31),12,\" \"))", + "UPPER(PADL(TRIM(PG_41),12,\" \"))", + "UPPER(PADL(TRIM(PG_51),12,\" \"))", + "UPPER(PADL(TRIM(PG_12),12,\" \"))", + "UPPER(PADL(TRIM(PG_22),12,\" \"))", + "UPPER(PADL(TRIM(PG_32),12,\" \"))", + "UPPER(PADL(TRIM(PG_42),12,\" \"))", + "UPPER(PADL(TRIM(PG_52),12,\" \"))", + "EdQty", + "wBoq.dsBoq", + "KongJong.Dbf", + "wMBoq", + "BOQ_W.DBF", + "wM_Boq_ExecX", + "wNe_LAMT1", + "wNe_MAMT1", + "wNe_SAMT1", + "wNe_LAMT3", + "wNe_MAMT3", + "wNe_SAMT3", + "wNe_TAMT3", + "wNe_TAMT1", + "wNe_DayQty", + "wNe_QTY1", + "ed_Hal_M", + "Add1_Rate", + "Add2_Rate", + "wM_From_XLS", + "BOQ_C", + "wM_Rate", + "sBtnLcostNo", + "pn_Qty_Pnt", + "CostNavi", + "BDQTY.NSX", + "wBoq.dsSameCode", + "TWBOQ", + "TWBOQRATE", + "TWMBOQ", + "TWM_BOQ_EXECX", + "TWM_FROM_XLS", + "TWM_RATE", + "Select a Date", + "Dr. Halo images", + "Background봁T", + "Foreground쏝T", + "OnActivate쏝T", + "TwBoqRate먓H", + "SOFTWARE\\경영정보(주)\\설계예산(STmate8x)\\BOQ_INFO", + "TwM_From_XLS륥M", + "TwM_Boq_ExecX뙐M", + "뾄oqRate" + ] + }, + "ST_CPM\\ST_EdiLWi.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 362920, + "raw_off": 1024, + "raw_size": 363008 + }, + { + "name": "DATA", + "va": 368640, + "vsize": 4404, + "raw_off": 364032, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 376832, + "vsize": 69081, + "raw_off": 368640, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 446464, + "vsize": 38568, + "raw_off": 368640, + "raw_size": 38912 + }, + { + "name": ".edata", + "va": 487424, + "vsize": 95, + "raw_off": 407552, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 491520, + "vsize": 19784, + "raw_off": 408064, + "raw_size": 19968 + }, + { + "name": ".rsrc", + "va": 512000, + "vsize": 80896, + "raw_off": 428032, + "raw_size": 80896 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "winmm.dll", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Edit_iLW" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5791, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "PRT.DBF", + "KBOQ", + "PRJLST.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "pn_XRate", + "X_QTY1P", + "X_QTY2T", + "X_QTY3X", + "X_QTYT\\", + "X_HAL1`", + "X_HAL2d", + "X_HAL3h", + "X_QTYHl", + "pn_CQtyt", + "ed_Qty1|", + "ed_LQty", + "ed_CQty", + "lb_LQty", + "lb_Qty1", + "lb_CQty", + "X_QTYKeyDown", + "X_QTYEnter", + "X_QTYExit", + "X_QTYChange", + "Cal_cQty", + "FormActivate", + "TwM_Edit_XRate", + "TwM_Edit_XRatex", + "Edit_XRate", + "Act_EdtAmt", + "Act_RateList ", + "sBtnRate", + "sBtnEdtAmt", + "PopRate", + "Act_Rate_PR,", + "Act_Edit_XRate", + "Act_Rate_PJ", + "Ed_Eqcode ", + "pn_ADJ(", + "Ck_S_ADJ4", + "Act_Devd2Qty<", + "Act_From_Xls`", + "Act_To_Ratex", + "Act_Edit_CQty", + "Act_EdtAmtExecute", + "Act_RateListExecute", + "Act_Rate", + "Act_Rate_PRExecute", + "Act_Edit_XRateExecute", + "Act_Devd2QtyExecute", + "Act_From_XlsExecute", + "Act_PRate", + "Act_To_RateExecute", + "Act_Edit_CQtyExecute", + "(STmate8x)\\BOQ_INFO", + "QTY1, BIMOK", + "ST_P_XLS.CPM", + "XLS_2_BDREC", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "[Edit_XRate", + "Act_RateList", + "Ed_Eqcode", + "Ck_S_ADJ", + "pn_ADJ", + "Act_Rate_PR", + "Act_Devd2Qty", + "Act_From_Xls", + "Act_To_Rate", + "BDQTM_00.DBF", + "wM_Edit_XRate", + "OnActivate", + "X_QTYT", + "X_QTYH", + "pn_CQty", + "ed_Qty1", + "TWM_EDIT_XRATE", + "SOFTWARE\\경영정보(주)\\설계예산(STmate8x)\\BOQ_INFO" + ] + }, + "ST_CPM\\ST_KanJub.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 845488, + "raw_off": 1024, + "raw_size": 845824 + }, + { + "name": "DATA", + "va": 851968, + "vsize": 10132, + "raw_off": 846848, + "raw_size": 10240 + }, + { + "name": "BSS", + "va": 864256, + "vsize": 1139501, + "raw_off": 857088, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2007040, + "vsize": 51530, + "raw_off": 857088, + "raw_size": 51712 + }, + { + "name": ".edata", + "va": 2060288, + "vsize": 169, + "raw_off": 908800, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 2064384, + "vsize": 43304, + "raw_off": 909312, + "raw_size": 43520 + }, + { + "name": ".rsrc", + "va": 2109440, + "vsize": 765440, + "raw_off": 952832, + "raw_size": 765440 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "shell32.dll", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "vcl60.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridEX6.bpl", + "winmm.dll", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "VclSmp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Edit_KanJub", + "Edit_KanJub_K", + "Edit_Kan_Rate", + "Prn_Kan_Rate" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 13689, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + "KBOQ", + "PRJLST.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "CON_QTY9", + "CON_QTY", + "CONBD_USD_QTY", + "PhdBF", + "/select,\"", + "tb_BoqXX", + "ds_BoqXX", + "RDbGrid_Boq", + "tb_Boq_Ref8", + "RDbGrid_BoqDrawCell", + "ds_BoqXXDataChange", + "RDbGrid_BoqDblClick", + "RDbGrid_BoqSelectionChange", + "RDbGrid_BoqDrawRow", + "TwM_GetAMT", + "TwM_GetAMTlCF", + "GetAMT", + "mBtn_DelAmt", + "Disp_SAMT_T_T", + "Disp_SAMT_L_T", + "Disp_SAMT_S_T", + "tb_Rate_R", + "Disp_SAMT_T_S", + "Disp_SAMT_S_S", + "tb_Rate_M,", + "Disp_BUGA_TAX", + "Ck_B_BUGA_UP_TAx", + "lb_R_RateDM_TA", + "lb_R_RateDL_TA", + "Disp_SAMT_S_TA", + "lb_R_RateL_TA", + "lb_R_RateDMDL_TA ", + "lb_R_RateDML_TA$", + "Ed_R_RateDM_TA,", + "Ed_R_RateDL_TA0", + "Ed_R_RateL_TA4", + "Ed_R_RateDMDL_TA8", + "Ed_R_RateDML_TA<", + "Ed_R_TBuGum_TAX", + "Ed_R_HADOSU_TAx", + "lb_R_RateDM_SA", + "lb_R_RateDL_SA", + "lb_R_RateL_SA", + "lb_R_RateDMDL_SA", + "lb_R_RateDML_SA", + "Disp_SAMT_S_SA", + "Ed_R_RateDM_SA$", + "Ed_R_RateDL_SA(", + "Ed_R_RateL_SA,", + "Ed_R_RateDMDL_SA0", + "Ed_R_RateDML_SA4", + "tb_Rate_A_", + "tb_Rate_B", + "Lbl_DSAMT_M_T", + "Lbl_DSAMT_M_TA", + "mBtn_Rate(", + "Ed_R_RateMxA_TA8", + "Ed_R_RateMxK_TA<", + "lb_R_RateMxA_TA@", + "lb_R_RateMxK_TAD", + "lb_R_RateMxA_SAH", + "Ed_R_RateMxA_SAL", + "lb_R_RateMxK_SAP", + "Ed_R_RateMxK_SAT", + "Lbl_MxA_TAX", + "Ed_C_RateMxA_SAh", + "Ed_C_RateMxK_SAl", + "Ed_C_RateMxA_TAp", + "Ed_C_RateMxK_TAt", + "Disp_ANJUN2_TAX", + "tb_Rate_RA", + "Disp_EQIPSU_TAX", + "lbl_Nag_Rate", + "Lbl_DSAMT_L_T", + "Disp_PSAMT_B_T", + "Disp_PSAMT_B_S", + "Disp_PSAMT_B_TA ", + "Disp_PSAMT_B_SA4", + "Disp_BUDM_SM_TAx", + "mBtn_DelAmtClick", + "mBtn_RateClick", + "RATE_20", + "RATE_18", + "RATE_17", + "RATE_01", + "RATE_", + "RATE_11", + "RATE_06", + "RATE_19", + "RATE_21", + "RATE_26", + "RATE_07", + "RATE_08", + "RATE_09", + "RATE_10", + "RATE_02", + "RATE_03", + "RATE_04", + "RATE_16", + "H_QTY", + "Edit_Kan_Rate", + "tb_Rate_O", + "rGrd_RateB$", + "tb_Rate_B_", + "tb_Rate_M<", + "rGrd_RateMl", + "rGrd_Rate_Kobo4", + "rGrd_Rate_Anjun8", + "rGrd_Rate_R2<", + "rGrd_Rate_Hwan@", + "rGrd_Rate_BojngD", + "rGrd_Rate_HadoH", + "tb_Rate_Rx", + "rGrd_Rate_RT", + "rGrd_Rate_R1X", + "rGrd_Rate_RA", + "rGrd_Rate_RA1", + "rGrd_Rate_An_A", + "rGrd_Rate_An_A1", + "rGrd_Rate_Eqip$", + "TwM_KAN_RATE", + "Kan_Rate", + "Prn_Kan_Rate", + "Save JabRate - ", + ".JB_R", + "JB_R", + ".JB_RA", + "JB_RA", + "Import JabRate - ", + "TPM_KAN_RATE", + "P_Kan_Rate", + "rGrd_BoqXX", + "sBtn_Set_Rate", + "rGrd_BoqXXDrawCell", + "sBtn_Set_RateClick", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "kKan_Rate", + "PM_KAN_RATE", + "BorderStyle.Background.Color", + "Rate_R.dbf", + "wM_GetAMT", + "PRJLST.NSX", + "BOQ11.NSX", + "Boq11.dbf", + "tb_Boq_Ref", + "mBtn_Rate", + "lb_R_RateDMDL_TA", + "lb_R_RateDML_TA", + "lb_R_RateMxA_TA", + "lb_R_RateMxK_TA", + "Ed_R_RateDM_TA", + "Ed_R_RateDL_TA", + "Ed_R_RateL_TA", + "Ed_R_RateDMDL_TA", + "Ed_R_RateDML_TA", + "Ed_R_RateMxA_TA", + "Ed_R_RateMxK_TA", + "Ed_C_RateMxA_TA", + "Ed_C_RateMxK_TA", + "Disp_PSAMT_B_TA", + "lb_R_RateMxA_SA", + "lb_R_RateMxK_SA", + "Ed_R_RateDM_SA", + "Ed_R_RateDL_SA", + "Ed_R_RateL_SA", + "Ed_R_RateDMDL_SA", + "Ed_R_RateDML_SA", + "Ed_R_RateMxA_SA", + "Ed_R_RateMxK_SA", + "Ed_C_RateMxA_SA", + "Ed_C_RateMxK_SA", + "Disp_PSAMT_B_SA", + "tb_Rate_M", + "Rate_M.dbf", + "Rate_A.dbf", + "Rate_B.dbf", + "Rate_RA.dbf", + "wM_KAN_RATE", + "rGrd_Rate_Kobo", + "rGrd_Rate_Anjun", + "rGrd_Rate_R2", + "rGrd_Rate_Hwan", + "rGrd_Rate_Bojng", + "rGrd_Rate_Hado", + "rGrd_Rate_Eqip", + "rGrd_Rate_R", + "rGrd_Rate_R1", + "rGrd_RateM", + "rGrd_RateB", + "Rate.dbf", + "TWM_GETAMT", + "TWM_KAN_RATE", + "Dr. Halo images", + "*_제비율.JB_R", + "제비율적용기준(일반)|*_제비율.JB_R", + "*_제비율.JB_RA", + "제비율적용기준(실적)|*_제비율.JB_RA", + "폩_Kan_Rate" + ] + }, + "ST_CPM\\ST_P_Collect.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 433956, + "raw_off": 1024, + "raw_size": 434176 + }, + { + "name": "DATA", + "va": 438272, + "vsize": 9616, + "raw_off": 435200, + "raw_size": 9728 + }, + { + "name": "BSS", + "va": 450560, + "vsize": 74861, + "raw_off": 444928, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 528384, + "vsize": 40554, + "raw_off": 444928, + "raw_size": 40960 + }, + { + "name": ".edata", + "va": 569344, + "vsize": 167, + "raw_off": 485888, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 573440, + "vsize": 25388, + "raw_off": 486400, + "raw_size": 25600 + }, + { + "name": ".rsrc", + "va": 602112, + "vsize": 58880, + "raw_off": 512000, + "raw_size": 58880 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Col_Dan", + "Prn_Col_Dan_L", + "Prn_Col_X", + "Prn_Col_X_L" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6009, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "RATE_L", + "LAMT", + "MAMT", + "SAMT", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "tb_Con_Qtyd", + "CON_QTY", + "B_QTY", + "tb_Con_Qtyl", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "PRT.DBF", + "tb_Con_Qty", + "CON_QTY11.DBF", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_ConEst.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 534100, + "raw_off": 1024, + "raw_size": 534528 + }, + { + "name": "DATA", + "va": 540672, + "vsize": 10756, + "raw_off": 535552, + "raw_size": 11264 + }, + { + "name": "BSS", + "va": 552960, + "vsize": 560097, + "raw_off": 546816, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1114112, + "vsize": 41544, + "raw_off": 546816, + "raw_size": 41984 + }, + { + "name": ".edata", + "va": 1159168, + "vsize": 246, + "raw_off": 588800, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1163264, + "vsize": 29836, + "raw_off": 589312, + "raw_size": 30208 + }, + { + "name": ".rsrc", + "va": 1196032, + "vsize": 116224, + "raw_off": 619520, + "raw_size": 116224 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Jab_K", + "Prn_Nae_C1", + "Prn_Nae_C2", + "Prn_Nae_C3", + "Prn_Nae_Est", + "Prn_Nae_K1", + "Prn_Nae_K2", + "Prn_Nae_K3" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6910, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "tb_BoqXX", + "ds_BoqXX", + "MAMT", + "LAMT", + "SAMT", + "TAMT", + "txQTY1p", + "txQTY3t", + "txQTY4x", + "txQTY2|", + "txRate", + "txQTY1_2", + "PRT.DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + " 0 0PM_NAE_C1.ds_BoqXX", + "BOQ11.NSX", + "BOQ11.DBF", + " 0 0PM_NAE_C2.ds_BoqXX", + " 0 0PM_NAE_C3.ds_BoqXX", + " 0 0pM_Nae_Est.ds_BoqXX", + "txQTY1", + "txQTY3", + "txQTY4", + "txQTY2", + " 0 0PM_NAE_K1.ds_BoqXX", + " 0 0PM_NAE_K2.ds_BoqXX", + " 0 0PM_NAE_K3.ds_BoqXX", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_Joong.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 540632, + "raw_off": 1024, + "raw_size": 540672 + }, + { + "name": "DATA", + "va": 544768, + "vsize": 9952, + "raw_off": 541696, + "raw_size": 10240 + }, + { + "name": "BSS", + "va": 557056, + "vsize": 356705, + "raw_off": 551936, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 917504, + "vsize": 41198, + "raw_off": 551936, + "raw_size": 41472 + }, + { + "name": ".edata", + "va": 962560, + "vsize": 209, + "raw_off": 593408, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 966656, + "vsize": 30436, + "raw_off": 593920, + "raw_size": 30720 + }, + { + "name": ".rsrc", + "va": 999424, + "vsize": 173056, + "raw_off": 624640, + "raw_size": 173056 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Joong", + "Prn_Joong2", + "Prn_Joong2_L", + "Prn_Joong_C", + "Prn_Joong_C_L", + "Prn_Joong_L" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6857, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "PRT.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "QtyTs", + "QtyS1|", + "txSAMT1", + "QtyL1", + "QtyL2", + "QtyL3", + "txLAMT1", + "QtyM1", + "QtyM2", + "txSAMT2", + "txLAMT2 ", + "QtyL4@", + "QtyS2X", + "QtyM3p", + "HalM", + "HalL", + "HalS", + "txMAMT1", + "txTAMT1", + "txMAMT2", + "txTAMT2", + "tb_BdQty", + "QtyS1t", + "txSAMT", + "txLAMT", + "QtyL4", + "QtyS2", + "QtyM3", + "HalM$", + "HalL(", + "HalS,", + "txMAMT4", + "txTAMT8", + "tb_BdQtyh", + "COSTN.DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "QtyS1", + "txMAMT", + "txTAMT", + "BDQTY.NSX", + "BDQTY.DBF", + "txLAMT2", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_SanCal.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 224416, + "raw_off": 1024, + "raw_size": 224768 + }, + { + "name": "DATA", + "va": 229376, + "vsize": 4460, + "raw_off": 225792, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 237568, + "vsize": 67865, + "raw_off": 230400, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 307200, + "vsize": 20718, + "raw_off": 230400, + "raw_size": 20992 + }, + { + "name": ".edata", + "va": 331776, + "vsize": 95, + "raw_off": 251392, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 335872, + "vsize": 13368, + "raw_off": 251904, + "raw_size": 13824 + }, + { + "name": ".rsrc", + "va": 352256, + "vsize": 4608, + "raw_off": 265728, + "raw_size": 4608 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Calq_San" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 3085, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + ";TOT;QTY;OP;INC;CODE;DES;SIZE;UNIT;TID;TNO;SPY;BIGO;SGS_SUB;SGS_SUB_LA;SGS_SUB_MA;SGS_SUB_EQ;SGS_KYE;SGS_KYE_LA;SGS_KYE_MA;SGS_KYE_EQ;SGS_SUM;SGS_SUM_LA;SGS_SUM_MA;SGS_SUM_EQ;", + "`TOTADJ(", + "ROUND", + "ROUNDDOWN", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Math@RoundTo$qqrxdxzc", + "GET_ROUND_CUT", + "MROUNDUP", + "MROUNDUD" + ] + }, + "ST_CPM\\ST_U_ChgAmt.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 92228, + "raw_off": 1024, + "raw_size": 92672 + }, + { + "name": "DATA", + "va": 98304, + "vsize": 4348, + "raw_off": 93696, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 106496, + "vsize": 67569, + "raw_off": 98304, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 176128, + "vsize": 19876, + "raw_off": 98304, + "raw_size": 19968 + }, + { + "name": ".edata", + "va": 196608, + "vsize": 99, + "raw_off": 118272, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 200704, + "vsize": 6812, + "raw_off": 118784, + "raw_size": 7168 + }, + { + "name": ".rsrc", + "va": 208896, + "vsize": 4608, + "raw_off": 125952, + "raw_size": 4608 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "CHANGE_AMT", + "Calc_Kanjub" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1880, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "PRJLST.DBF", + "KBOQ", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "MAMT", + "LAMT", + "SAMT", + "TAMT", + "COSTN.DBF", + "COSTA.DBF", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "MROUNDUP", + "MROUNDUD" + ] + }, + "ST_CPM\\ST_U_ChgCode.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 478724, + "raw_off": 1024, + "raw_size": 479232 + }, + { + "name": "DATA", + "va": 483328, + "vsize": 9072, + "raw_off": 480256, + "raw_size": 9216 + }, + { + "name": "BSS", + "va": 495616, + "vsize": 73601, + "raw_off": 489472, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 569344, + "vsize": 37638, + "raw_off": 489472, + "raw_size": 37888 + }, + { + "name": ".edata", + "va": 610304, + "vsize": 302, + "raw_off": 527360, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 614400, + "vsize": 24660, + "raw_off": 527872, + "raw_size": 25088 + }, + { + "name": ".rsrc", + "va": 643072, + "vsize": 103936, + "raw_off": 552960, + "raw_size": 103936 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "winmm.dll", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Chg_Code_All", + "Chg_Code_Plus", + "Chg_Code_Sel", + "Chk_Chg_Code_1", + "Chk_True_Rep_Code", + "Exec_Change_Code", + "Exec_Replace_Code", + "Rep_Code", + "Tran_SAN_Format" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6598, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "Find_BOQ", + " Find_BOQ ", + "COSTN.DBF", + ".DBF", + "Excel.Application", + "Microsoft Excel", + "Excel", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "Act_LstEqCode", + "Act_FindBoq ", + "sBtnLstEqCode4", + "CostNavi<", + "tb_BDQTY4", + "ds_BDQTY8", + "tb_BDQTY_X<", + "ds_BDQTY_X@", + "Act_ToXls", + "Act_FromXls", + "Act_FindBoqExecute", + "Act_ToXlsExecute", + "Act_FromXlsExecute", + "COSTA.DBF", + "CH_CODE.DBF", + "BDQTY.DBF", + "PRJLST.DBF", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE", + "CH_CODE_C.DBF", + "PRT.DBF", + "P_XLS.CPM", + "MAKE_XLS", + " MAKE_XLS ", + "SHOW_XLS", + " SHOW_XLS ", + "FREE_XLS", + " FREE_XLS ", + "Act_LstEqCodeExecute", + "RP_CODE.DBF", + "BOQ11.DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "sBtnLstEqCode", + "Act_FindBoq", + "CostNavi", + "ds_BDQTY", + "ds_BDQTY_X", + "COSTN.NSX", + "tb_BDQTY", + "BDQTY.NSX", + "tb_BDQTY_X", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_U_ConBD.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 132220, + "raw_off": 1024, + "raw_size": 132608 + }, + { + "name": "DATA", + "va": 139264, + "vsize": 4400, + "raw_off": 133632, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 147456, + "vsize": 68177, + "raw_off": 138240, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 217088, + "vsize": 24254, + "raw_off": 138240, + "raw_size": 24576 + }, + { + "name": ".edata", + "va": 241664, + "vsize": 138, + "raw_off": 162816, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 245760, + "vsize": 9964, + "raw_off": 163328, + "raw_size": 10240 + }, + { + "name": ".rsrc", + "va": 258048, + "vsize": 23040, + "raw_off": 173568, + "raw_size": 23040 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "CONBD_USD_QTY", + "CON_QTY", + "CON_QTY9", + "Calc_Kanjub" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 2594, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "tb_BoqXX", + "tb_BoqC", + "tb_BdQty", + "BOQC.DBF", + "BOQC.NSX", + "(SUBSTR(BDCODE1,1,1)$\"TEC\" or (QTY", + "=0 and QTY", + "TuM_ConQTY9", + "TuM_ConQTY9l~A", + "u_ConQTY9", + "DET_ITQTYX", + "CON_QTY", + "H_QTY", + "B_QTY", + "D_QTY", + "TuM_ConQTY", + "u_ConQTY", + "DET_ITQTY8", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "CONBD_USD_QTY", + "CON_QTY9", + ">u_ConQTY", + "BOQ11.NSX", + "BOQ11.DBF", + "BDQTY.NSX", + "BDQTY.DBF", + "uM_ConQTY", + "uM_ConQTY9", + "TUM_CONQTY", + "TUM_CONQTY9", + "u_ConQTY9떲L", + "TuM_ConQTY졛A" + ] + }, + "ST_CPM\\ST_U_Convert.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1596912, + "raw_off": 1024, + "raw_size": 1596928 + }, + { + "name": "DATA", + "va": 1601536, + "vsize": 23768, + "raw_off": 1597952, + "raw_size": 24064 + }, + { + "name": "BSS", + "va": 1626112, + "vsize": 480361, + "raw_off": 1622016, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2109440, + "vsize": 57782, + "raw_off": 1622016, + "raw_size": 57856 + }, + { + "name": ".edata", + "va": 2170880, + "vsize": 505, + "raw_off": 1679872, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 2174976, + "vsize": 81404, + "raw_off": 1680384, + "raw_size": 81408 + }, + { + "name": ".rsrc", + "va": 2256896, + "vsize": 64000, + "raw_off": 1761792, + "raw_size": 64000 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "bdertl60.bpl", + "bdertl60.bpl", + "bdertl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "bdertl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "rtl60.bpl", + "vcl60.bpl", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "winmm.dll" + ], + "exports": [ + "Appn_Tag_REP", + "CHK_K_FLD", + "Calc_Kanjub", + "Conv_BOQ", + "Conv_Equip", + "Conv_Jodal_ST8", + "Conv_ST8_Jodal", + "Conv_ST8_XML", + "Conv_XML_ST8", + "MK_ADD_K_REP", + "MK_BSC_M", + "MK_K_FLD", + "MK_SET_REP", + "ST_BlankWin8", + "ST_ConvToWin8", + "ST_Conv_Data", + "ST_Conv_Mode1", + "ST_Conv_Mode2", + "ST_Conv_Mode3", + "ST_Copy_Data" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 18308, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "Background,F`", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "SYSINFO.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "ROUND(", + ".JB_R", + ".JB_RA", + "BOQ.DBF", + "KONGJONG.DBF", + "BDQTY.DBF", + "COSTN.DBF", + "FORM.DBF", + "KANJUB2.DBF", + "PRJLST.DBF", + ".DBF ", + "iTMP.DBF", + "DANGA.DBF", + "MAMT2", + "LAMT2", + "SAMT2", + "TAMT2", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "PG_1", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "PG_2", + "GRASS.DBF", + "IMG.DBF", + "BdQty.Dbf", + "Danga.DBF", + "BOQ11.DBF", + "Boq11.Dbf", + "PrjLst.Dbf", + "MAMT4", + "LAMT4", + "SAMT4", + "TAMT4", + "CostAccount.Txt", + "CONLD.DBF", + "CONTD.DBF", + "COSTN.NSX", + "COSTA.DBF", + "RATE_M", + "RATE_S", + "BDQTY.NSX", + "PRJLST.NSX", + "BQM.DBF", + "RATE_R.DBF", + "RATE.DBF", + "RATE_RA.DBF", + "RATE_M.DBF", + "RATE_", + "QCODE.DBF", + "SET_REP.DBF", + "iTMP.SMT", + "COSTN.SMT", + "PRJLST.SMT", + "D_LAMT", + "D_MAMT", + "D_SAMT", + "PG_1D", + "PG_2D", + "PG_3D", + "PG_4D", + "PG_5D", + "PG_1B", + "PG_2B", + "PG_3B", + "PG_4B", + "PG_5B", + "IMGINFO.DBF", + "PRJ.DBF", + "KANJUB1.DBF", + "KANJUB.DBF", + "RATE1", + "RATE2", + "RATE3", + "RATE4", + "RATE5", + "RATE6", + "RATE7", + "RATE8", + "PMHAL", + "COSTN1.DBF", + "PRT.DBF", + "PG_3", + "PG_4", + "PG_5", + "IMG.SMT", + "!!..CostAccount.TXT ", + "/select,\"", + "BOQ12.DBF", + "BOQ12.NSX", + "BOQ11.NSX", + "COSTA.NSX", + "(BID.DBF)", + "BID.DBF", + "QCODE.SMT", + "BQM11.DBF", + ".XLS", + "CON_QTY", + "D_QTY1", + "MAMT1_R", + "LAMT1_R", + "SAMT1_R", + "Rate_M.DBF", + "RATE_35", + "COSTA.CSTA", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "Typ_ExRate", + "Typ_PrjBoqList", + "Typ_BoqList", + "Typ_BoqDetList", + "TXMLExRate", + "TXMLRatePerHr", + "TXMLPrjBoq", + "TXMLPrjBoqList", + "TXMLBoq", + "TXMLBoqList", + "TXMLBoqDet", + "TXMLBoqDetList", + "Act_Chk_XLstd", + "Act_Chk_XLstExecute", + "TXmlBoqRecp", + "K_QTY0", + "K_QTY", + "BOQ_W.*", + "BOQ_W.DBF", + "CN_TMP.DBF", + "1_C_PSAMT_B", + "(ROUNDUP)", + "TOTADJ(", + "ReWrite_MAMT_", + "Arc_STBSC", + ".STBSC", + "COSTN.*", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Apodset@TApolloTable@DbfDecrypt$qqrv", + "GET_ROUND_CUT", + "MROUNDUP", + "MROUNDUD", + "Conv_BOQ", + " (*.STBSC)|*.STBSC", + "Act_Chk_XLst", + "Dr. Halo images", + "_제비율.JB_R", + "_제비율.JB_RA", + ".DBF 파일은 없습니다.", + "!!..CostAccount.TXT 생성 오류..!!", + "계약내역생성(BID.DBF)", + "Typ_ExRate큗M", + "TXMLExRate먎꺚곈눓", + "TXMLPrjBoqList먎꺚ч色", + "TXMLBoqDet먎꺚먬o", + "TXMLBoqDetList먎꺚чc", + "번째줄에 올림함수(ROUNDUP)의 \"-자릿수\"는 사용할 수 없습니다(호환규정 미지원)." + ] + }, + "ST_CPM\\STmateQty8.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 139844, + "raw_off": 1024, + "raw_size": 140288 + }, + { + "name": "DATA", + "va": 147456, + "vsize": 4664, + "raw_off": 141312, + "raw_size": 5120 + }, + { + "name": "BSS", + "va": 155648, + "vsize": 67617, + "raw_off": 146432, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 225280, + "vsize": 33064, + "raw_off": 146432, + "raw_size": 33280 + }, + { + "name": ".edata", + "va": 262144, + "vsize": 134, + "raw_off": 179712, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 266240, + "vsize": 10344, + "raw_off": 180224, + "raw_size": 10752 + }, + { + "name": ".rsrc", + "va": 278528, + "vsize": 33792, + "raw_off": 190976, + "raw_size": 33792 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "FIND_QCODE", + "Free_Qty", + "ST_QTY" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 3471, + "domain_strings": [ + "HAlignx{C", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "Pop_Qty4", + "ActDefQtyD", + "ActSheetToBoqByNameP", + "mSheet2BoqNamet", + "tbCostN", + "dsCostN", + "LBoxQty", + "mSheet2BoqCode", + "ActSheetToBoqByCode", + "ActDefSamt,", + "ActDefLamt0", + "ActDefMamt4", + "mi_Snd_Qty4", + "LBoxQtyDblClick", + "ActSheetToBoqByNameExecute", + "SendToBoq", + "SendToBoqCode", + "Pop_QtyPopup", + "mi_Snd_QtyClick", + "TwQtyList", + "QtyList", + "iform", + "POS_D_QTYLST", + "IFORM", + ".XLS", + " \".XLS\"", + " \"Qty0\" ~ \"Qty9\" ", + "Qty1", + "Mamt1", + "Lamt1", + "Samt1", + "Tamt1", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TApplication@ActivateHint$qqrrx12Types@TPoint", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "STmateQty8.CPM", + "Free_Qty", + "ST_QTY", + "&STmateQty8", + "wQtyList", + "QTY0", + "QTY5", + "QTY6", + "QTY7", + "QTY8", + "QTY9", + "Pop_Qty", + "QCODE.DBF", + ")|*.XLS", + "ActSheetToBoqByName", + "DefineBoq", + "ActDefQty", + "ActDefMamt", + "ActDefLamt", + "ActDefSamt", + "mSheet2BoqName", + "mi_Snd_Qty", + "COSTN.NSX", + "COSTN.DBF", + " *.XLS)", + "TWQTYLIST", + "수량산출서 파일은 확장가가 \".VTS\" 또는 \".XLS\"인 파일만 가능 합니다.", + " \"Qty0\" ~ \"Qty9\" 필드를 선택 하세요 " + ] + } +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/core_formula_strings.json b/scratch/orca_artifacts/stmate_competitor_analysis/core_formula_strings.json new file mode 100644 index 00000000..9bb891f1 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/core_formula_strings.json @@ -0,0 +1,423 @@ +{ + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM" + ], + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM" + ], + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM" + ], + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM" + ], + "ROUNDDOWN( [LAMT] * [RAT_1], ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "+ROUNDDOWN( ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN(": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "*[TAMT],0),ROUNDDOWN(": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ( ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ((": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ([TAMT]": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ([T_AMT]+": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( [T_AMT] * [RAT_1], ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN([T_AMT] * [RAT_1], 0)": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN([M_AMT] * [RAT_1], 0)": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN(([TAMT]-[LAMT]": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUND( [C_AD_AMT] , -": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN( [C_AD_AMT] , -": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDUP( [C_AD_AMT] , -": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "ROUNDDOWN([T_AMT]": [ + "ST_CPM\\ST_Boq.CPM", + "ST_CPM\\ST_EdiLWi.CPM", + "ST_CPM\\ST_KanJub.CPM", + "ST_CPM\\ST_P_Collect.CPM", + "ST_CPM\\ST_P_ConEst.CPM", + "ST_CPM\\ST_P_Joong.CPM", + "ST_CPM\\ST_SanCal.CPM", + "ST_CPM\\ST_U_ChgAmt.CPM", + "ST_CPM\\ST_U_ChgCode.CPM", + "ST_CPM\\ST_U_ConBD.CPM", + "ST_CPM\\ST_U_Convert.CPM", + "ST_CPM\\STmateQty8.CPM" + ], + "( SUBSTR(BDCODE1,1,1)$\"MLSW\" .and. \"%\"$UNIT1 ) .or. ( SUBSTR(BDCODE1,1,1)$\"MLSWBDXA\" .and. SUBSTR(STR(QTY1,20,4),LEN(STR(QTY1,20,4)),1)<>\"0\" )": [ + "ST_CPM\\ST_Boq.CPM" + ], + "(SUBSTR(BDCODE1,1,1)$\"TEC\" or (QTY": [ + "ST_CPM\\ST_U_ConBD.CPM" + ], + "ROUND(": [ + "ST_CPM\\ST_U_Convert.CPM" + ] +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/disassemble_exports.py b/scratch/orca_artifacts/stmate_competitor_analysis/disassemble_exports.py new file mode 100644 index 00000000..ebe0ec96 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/disassemble_exports.py @@ -0,0 +1,81 @@ +"""선택한 32비트 PE export를 역어셈블하고 문자열 참조를 붙인다.""" +from __future__ import annotations + +import json +import struct +from pathlib import Path + +from capstone import CS_ARCH_X86, CS_MODE_32, Cs + +SYSTEM = Path(r"C:\경영정보(주)\System") +OUT = Path(__file__).resolve().parent / "export_disassembly.json" +TARGETS = { + "DP_Common.CPM": {"GET_ROUND_CUT", "MROUNDUD", "MROUNDUP", "MTRUNC", "MINT", "CALC_STR", "CALC_STR_PART"}, + "ST_Func_C.CPM": {"CON_TOT", "SUM_TOT", "ZERO_TOT", "PCN_TO_T", "OPTIMIZ"}, + r"ST_CPM\ST_KanJub.CPM": {"Calc_Kanjub"}, + r"ST_CPM\ST_SanCal.CPM": {"Calq_San"}, +} + + +def u16(b: bytes, o: int) -> int: return struct.unpack_from(" int: return struct.unpack_from(" str | None: + if not 0 <= off < len(b): return None + for encoding in ("ascii", "cp949"): + end = b.find(b"\0", off, min(len(b), off + 300)) + if end - off < 4: continue + try: text = b[off:end].decode(encoding) + except UnicodeDecodeError: continue + if all(ch.isprintable() or ch in "\r\n\t" for ch in text): return text + return None + + +def main(): + md = Cs(CS_ARCH_X86, CS_MODE_32); md.detail = True + result = {} + for rel, wanted in TARGETS.items(): + b, base, rva_off, exports = parse(SYSTEM / rel); module = {} + for name in sorted(wanted): + rva = exports.get(name) + if rva is None: continue + off = rva_off(rva); code = b[off:off + 8192]; lines = [] + for i, ins in enumerate(md.disasm(code, base + rva)): + note = None + # Delphi code frequently pushes absolute addresses of ANSI strings. + for op in ins.operands: + if op.type == 2 and base <= op.imm < base + len(b) + 0x100000: + note = string_at(b, rva_off(op.imm - base)) + if note: break + lines.append({"address": f"0x{ins.address:08X}", "mnemonic": ins.mnemonic, "op_str": ins.op_str, "string": note}) + if ins.mnemonic.startswith("ret") or i >= 1999: break + module[name] = {"rva": f"0x{rva:X}", "instructions": lines} + result[rel] = module + OUT.write_text(json.dumps(result, ensure_ascii=False, indent=2), encoding="utf-8") + assert result["DP_Common.CPM"]["GET_ROUND_CUT"]["instructions"] + print({m: {f: len(x["instructions"]) for f, x in fs.items()} for m, fs in result.items()}) + + +if __name__ == "__main__": main() diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.json b/scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.json new file mode 100644 index 00000000..3617abfd --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.json @@ -0,0 +1,28107 @@ +{ + "stc": [ + { + "path": "04.산불 봉화\\01. 내역서\\13-2024년 산불진화임도 실시설계(기번41_현동)_ L=3.46km.STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 10.8, + "RATE1": 11.3, + "RATE2": 11.8, + "RATE3": 15.3, + "RATE4": 10.8, + "RATE5": 11.3, + "RATE6": 11.8, + "RATE7": 14.3, + "RATE8": 15.5, + "RATE9": 15.5 + }, + { + "RATE0": 11.1, + "RATE1": 11.6, + "RATE2": 12.1, + "RATE3": 15.6, + "RATE4": 11.1, + "RATE5": 11.6, + "RATE6": 12.1, + "RATE7": 14.7, + "RATE8": 15.8, + "RATE9": 15.8 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 5.0, + "RATE1": 5.3, + "RATE2": 6.0, + "RATE3": 6.3, + "RATE4": 5.0, + "RATE5": 5.2, + "RATE6": 6.0, + "RATE7": 6.0, + "RATE8": 5.1, + "RATE9": 5.3 + }, + { + "RATE0": 5.4, + "RATE1": 5.6, + "RATE2": 6.3, + "RATE3": 6.7, + "RATE4": 5.3, + "RATE5": 5.6, + "RATE6": 6.3, + "RATE7": 6.3, + "RATE8": 5.3, + "RATE9": 5.5 + }, + { + "RATE0": 5.9, + "RATE1": 6.2, + "RATE2": 6.9, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.5, + "RATE9": 5.8 + }, + { + "RATE0": 5.9, + "RATE1": 6.2, + "RATE2": 6.9, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.9, + "RATE9": 6.1 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.3, + "RATE5": 2.48, + "RATE6": 1.81, + "RATE7": 3294.0, + "RATE8": 1.88, + "RATE9": 4.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 2.9, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 2.9, + "RATE5": 1.15, + "RATE6": 0.84, + "RATE7": 0.71, + "RATE8": 0.68, + "RATE9": 0.0 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 2.9, + "RATE5": 0.7, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.2, + "RATE9": 0.0 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 5.3, + "RATE5": 1.4, + "RATE6": 0.0, + "RATE7": 1.48, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 4.7, + "RATE1": 4.7, + "RATE2": null, + "RATE3": 4.15, + "RATE4": 3.6, + "RATE5": 4.7, + "RATE6": null, + "RATE7": 4.15, + "RATE8": 3.6, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 15.0, + "RATE2": null, + "RATE3": 13.5, + "RATE4": 12.0, + "RATE5": 5.5, + "RATE6": 6.2, + "RATE7": 6.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 10.7, + "RATE1": 11.2, + "RATE2": 11.7, + "RATE3": 15.1, + "RATE4": 4.8, + "RATE5": 5.0, + "RATE6": 5.7, + "RATE7": 6.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 10.9, + "RATE1": 11.4, + "RATE2": 12.0, + "RATE3": 15.5, + "RATE4": 5.1, + "RATE5": 5.3, + "RATE6": 6.1, + "RATE7": 6.4, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.2, + "RATE1": 11.7, + "RATE2": 12.2, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.2, + "RATE1": 11.7, + "RATE2": 12.2, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 10.8, + "RATE1": 11.3, + "RATE2": 11.8, + "RATE3": 15.8, + "RATE4": 4.7, + "RATE5": 4.9, + "RATE6": 5.7, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.1, + "RATE1": 11.6, + "RATE2": 12.1, + "RATE3": 15.8, + "RATE4": 5.0, + "RATE5": 5.3, + "RATE6": 6.0, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 0.0, + "RATE4": 5.6, + "RATE5": 5.8, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 0.0, + "RATE4": 5.6, + "RATE5": 5.8, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.52, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 2.105, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 0.99, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 4.5, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 0.0109, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 6300.0, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 0.0128, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 6300.0, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": null, + "RATE1": 0.019, + "RATE2": 0.028, + "RATE3": 0.027, + "RATE4": 0.025, + "RATE5": 0.024, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": null, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": null, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": null, + "RATE6": 0.0, + "RATE7": null, + "RATE8": null, + "RATE9": 0.0 + }, + { + "RATE0": null, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 2.93, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.09, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.43, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.3, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 5.8, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 1.86, + "RATE_18": 5349.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.5, + "RATE_02": 14.5, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.5, + "RATE_06": 6.0, + "RATE_07": 5.8, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 6.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.99, + "RATE_18": 5499.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.6, + "RATE_02": 14.6, + "RATE_03": 12.8, + "RATE_04": 12.8, + "RATE_05": 14.6, + "RATE_06": 6.3, + "RATE_07": 6.0, + "RATE_08": 5.6, + "RATE_09": 5.6, + "RATE_10": 6.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.2, + "RATE_18": 3250.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 15.0, + "RATE_02": 15.0, + "RATE_03": 12.9, + "RATE_04": 12.9, + "RATE_05": 15.0, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.35, + "RATE_18": 5400.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 1.97, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.1, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.27, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.44, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 12.3, + "RATE_04": 12.3, + "RATE_05": 14.0, + "RATE_06": 6.2, + "RATE_07": 6.0, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.2, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.2, + "RATE_02": 14.2, + "RATE_03": 12.4, + "RATE_04": 12.4, + "RATE_05": 14.2, + "RATE_06": 6.4, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.5, + "RATE_04": 12.5, + "RATE_05": 14.3, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.7, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.7, + "RATE_02": 14.7, + "RATE_03": 12.7, + "RATE_04": 12.7, + "RATE_05": 14.7, + "RATE_06": 7.2, + "RATE_07": 6.9, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.6, + "RATE_04": 11.6, + "RATE_05": 13.4, + "RATE_06": 6.5, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.5, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.15, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 13.5, + "RATE_06": 6.7, + "RATE_07": 6.5, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.29, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.6, + "RATE_02": 13.6, + "RATE_03": 11.8, + "RATE_04": 11.8, + "RATE_05": 13.6, + "RATE_06": 6.9, + "RATE_07": 6.7, + "RATE_08": 5.9, + "RATE_09": 5.9, + "RATE_10": 6.9, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.38, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.1, + "RATE_02": 14.1, + "RATE_03": 11.9, + "RATE_04": 11.9, + "RATE_05": 14.1, + "RATE_06": 7.5, + "RATE_07": 7.2, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.3, + "RATE_02": 13.3, + "RATE_03": 11.3, + "RATE_04": 11.3, + "RATE_05": 13.3, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.4, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.4, + "RATE_04": 11.4, + "RATE_05": 13.4, + "RATE_06": 6.6, + "RATE_07": 6.3, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.5, + "RATE_04": 11.5, + "RATE_05": 13.5, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 6.2, + "RATE_09": 6.2, + "RATE_10": 6.8, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 14.0, + "RATE_06": 7.3, + "RATE_07": 7.1, + "RATE_08": 6.4, + "RATE_09": 6.4, + "RATE_10": 7.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.56, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.57, + "RATE_12": 1.3, + "RATE_13": 1.13, + "RATE_14": 1.06, + "RATE_15": 1.03, + "RATE_16": 1.02, + "RATE_17": 1.01, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.545, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 12.95, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0077, + "RATE_02": 1500.0, + "RATE_03": 130.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0063, + "RATE_07": 2400.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.005, + "RATE_12": 4000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0141, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0102, + "RATE_27": 1000.0, + "RATE_28": 75.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.65, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.8, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.24, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.13, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.4 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.4, + "RATE_07": 7.6, + "RATE_08": 5.4, + "RATE_09": 5.5, + "RATE_10": 8.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.7, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.3 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.8, + "RATE_07": 7.9, + "RATE_08": 5.6, + "RATE_09": 5.7, + "RATE_10": 9.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.3 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.7, + "RATE_07": 8.7, + "RATE_08": 6.9, + "RATE_09": 7.0, + "RATE_10": 10.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.06, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.4, + "RATE_07": 9.4, + "RATE_08": 7.2, + "RATE_09": 7.3, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 92.4 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.17, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 92.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.87, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.99, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.16, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.33, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.9, + "RATE_07": 8.9, + "RATE_08": 6.7, + "RATE_09": 6.7, + "RATE_10": 10.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.2, + "RATE_07": 9.4, + "RATE_08": 6.9, + "RATE_09": 7.0, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 11.2, + "RATE_07": 10.3, + "RATE_08": 8.2, + "RATE_09": 8.2, + "RATE_10": 11.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 11.7, + "RATE_07": 10.9, + "RATE_08": 8.5, + "RATE_09": 8.6, + "RATE_10": 12.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.8, + "RATE_07": 7.9, + "RATE_08": 7.0, + "RATE_09": 7.1, + "RATE_10": 9.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.04, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.1, + "RATE_07": 8.3, + "RATE_08": 7.1, + "RATE_09": 7.2, + "RATE_10": 9.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.17, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.2, + "RATE_07": 9.2, + "RATE_08": 8.4, + "RATE_09": 8.4, + "RATE_10": 10.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.26, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.8, + "RATE_07": 9.8, + "RATE_08": 8.7, + "RATE_09": 8.8, + "RATE_10": 10.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.54, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.0, + "RATE_07": 7.0, + "RATE_08": 6.6, + "RATE_09": 6.7, + "RATE_10": 8.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.3, + "RATE_07": 7.3, + "RATE_08": 6.8, + "RATE_09": 6.8, + "RATE_10": 8.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.2, + "RATE_07": 8.3, + "RATE_08": 8.0, + "RATE_09": 8.2, + "RATE_10": 9.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.8, + "RATE_07": 8.8, + "RATE_08": 8.4, + "RATE_09": 8.4, + "RATE_10": 9.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "SIZE", + "UNIT", + "BQCODE", + "EQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "NAGCD", + "UC", + "K_S", + "GUN", + "JOJAK", + "BOKSA", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM", + "PP", + "PLUSA", + "GUN2", + "NAME2", + "SIZE2", + "CONTCODE", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "EDT_DATE", + "WQCODE", + "DOLLOR", + "NOTA", + "RXX", + "BCONT" + ], + "costn_source_stats": { + "L": { + "count": 20, + "selected_match": { + "6": 20, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1 + } + }, + "M": { + "count": 69, + "selected_match": { + "2": 23, + "4": 14, + "3": 23, + "1": 19, + "5": 12, + "6": 4 + } + }, + "S": { + "count": 24, + "selected_match": {} + }, + "B": { + "count": 45, + "selected_match": {} + }, + "D": { + "count": 65, + "selected_match": { + "1": 3, + "2": 3, + "3": 3, + "4": 3, + "5": 3, + "6": 3 + } + }, + "X": { + "count": 25, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 141, + "fields": [ + "ITNUM", + "NAME1", + "SIZE1", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "KWNGP", + "EQCODE", + "DES1", + "DES2", + "UNIT2", + "CODEA", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "BL_AMT", + "NAME2", + "SIZE2", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "RCU", + "ITM_TYP" + ] + } + } + }, + { + "path": "05. 동부청 영월\\내역서\\2024년 임도시설사업2차(산불진화_기번6)-영월.STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.2, + "RATE1": 5.5, + "RATE2": 6.3, + "RATE3": 0.0, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 6.6, + "RATE3": 0.0, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 0.0, + "RATE4": 6.1, + "RATE5": 6.4, + "RATE6": 7.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 0.0, + "RATE4": 6.1, + "RATE5": 6.4, + "RATE6": 7.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.6, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 0.0, + "RATE5": 1.23, + "RATE6": 0.89, + "RATE7": 0.74, + "RATE8": 0.72, + "RATE9": 0.69 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 0.0, + "RATE5": 0.9, + "RATE6": 0.4, + "RATE7": 0.5, + "RATE8": 1.5, + "RATE9": 0.5 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 0.0, + "RATE5": 2.3, + "RATE6": 0.0, + "RATE7": 2.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.0, + "RATE1": 5.0, + "RATE2": 5.5, + "RATE3": 4.2, + "RATE4": 3.5, + "RATE5": 5.0, + "RATE6": 6.0, + "RATE7": 4.2, + "RATE8": 3.5, + "RATE9": 5.5 + }, + { + "RATE0": 0.0, + "RATE1": 15.0, + "RATE2": 0.0, + "RATE3": 12.0, + "RATE4": 9.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.6, + "RATE5": 5.6, + "RATE6": 6.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 6.2, + "RATE5": 6.2, + "RATE6": 7.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 6.4, + "RATE5": 6.5, + "RATE6": 7.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 4.9, + "RATE5": 5.1, + "RATE6": 5.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.59, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 6.55 + }, + { + "RATE0": 2.48, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.016, + "RATE1": 0.018, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4300.0, + "RATE6": 4300.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.016, + "RATE1": 0.016, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4300.0, + "RATE6": 4300.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.07, + "RATE2": 0.069, + "RATE3": 0.064, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.058, + "RATE8": 0.058, + "RATE9": 0.073 + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.8, + "RATE1": 0.8, + "RATE2": 1.1, + "RATE3": 0.6, + "RATE4": 0.7, + "RATE5": 0.3, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 2.93, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.09, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.43, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.7, + "RATE_02": 13.8, + "RATE_03": 12.5, + "RATE_04": 12.5, + "RATE_05": 13.7, + "RATE_06": 8.4, + "RATE_07": 7.6, + "RATE_08": 7.8, + "RATE_09": 7.8, + "RATE_10": 8.4, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 1.86, + "RATE_18": 5349.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.8, + "RATE_02": 13.9, + "RATE_03": 12.4, + "RATE_04": 12.4, + "RATE_05": 13.8, + "RATE_06": 9.0, + "RATE_07": 8.3, + "RATE_08": 7.7, + "RATE_09": 7.7, + "RATE_10": 9.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.99, + "RATE_18": 5499.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.8, + "RATE_02": 13.9, + "RATE_03": 12.1, + "RATE_04": 12.1, + "RATE_05": 13.8, + "RATE_06": 9.0, + "RATE_07": 8.3, + "RATE_08": 8.1, + "RATE_09": 8.1, + "RATE_10": 9.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.2, + "RATE_18": 3250.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.6, + "RATE_02": 13.7, + "RATE_03": 11.4, + "RATE_04": 11.4, + "RATE_05": 13.6, + "RATE_06": 9.6, + "RATE_07": 8.9, + "RATE_08": 7.6, + "RATE_09": 7.6, + "RATE_10": 9.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.35, + "RATE_18": 5400.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 1.97, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.1, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.27, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.44, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.9, + "RATE_02": 13.0, + "RATE_03": 11.8, + "RATE_04": 11.8, + "RATE_05": 12.9, + "RATE_06": 8.8, + "RATE_07": 8.0, + "RATE_08": 7.7, + "RATE_09": 7.7, + "RATE_10": 8.8, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.0, + "RATE_02": 13.1, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 13.0, + "RATE_06": 9.4, + "RATE_07": 8.6, + "RATE_08": 7.5, + "RATE_09": 7.5, + "RATE_10": 9.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.0, + "RATE_02": 13.1, + "RATE_03": 11.3, + "RATE_04": 11.3, + "RATE_05": 13.0, + "RATE_06": 9.4, + "RATE_07": 8.6, + "RATE_08": 7.9, + "RATE_09": 7.9, + "RATE_10": 9.4, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.7, + "RATE_02": 12.8, + "RATE_03": 10.6, + "RATE_04": 10.6, + "RATE_05": 12.7, + "RATE_06": 10.0, + "RATE_07": 9.2, + "RATE_08": 7.4, + "RATE_09": 7.4, + "RATE_10": 10.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.1, + "RATE_02": 13.2, + "RATE_03": 11.6, + "RATE_04": 11.6, + "RATE_05": 13.1, + "RATE_06": 9.0, + "RATE_07": 8.2, + "RATE_08": 7.5, + "RATE_09": 7.5, + "RATE_10": 9.0, + "RATE_11": 5.0, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.15, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.2, + "RATE_02": 13.3, + "RATE_03": 11.5, + "RATE_04": 11.5, + "RATE_05": 13.2, + "RATE_06": 9.6, + "RATE_07": 8.9, + "RATE_08": 7.3, + "RATE_09": 7.3, + "RATE_10": 9.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.29, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.2, + "RATE_02": 13.3, + "RATE_03": 11.2, + "RATE_04": 11.2, + "RATE_05": 13.2, + "RATE_06": 9.6, + "RATE_07": 8.9, + "RATE_08": 7.7, + "RATE_09": 7.7, + "RATE_10": 9.6, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.38, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.9, + "RATE_02": 13.0, + "RATE_03": 10.4, + "RATE_04": 10.4, + "RATE_05": 12.9, + "RATE_06": 10.2, + "RATE_07": 9.5, + "RATE_08": 7.3, + "RATE_09": 7.3, + "RATE_10": 10.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.1, + "RATE_02": 13.2, + "RATE_03": 11.2, + "RATE_04": 11.2, + "RATE_05": 13.1, + "RATE_06": 8.1, + "RATE_07": 7.4, + "RATE_08": 7.6, + "RATE_09": 7.6, + "RATE_10": 8.1, + "RATE_11": 4.5, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.2, + "RATE_02": 13.3, + "RATE_03": 11.1, + "RATE_04": 11.1, + "RATE_05": 13.2, + "RATE_06": 8.7, + "RATE_07": 8.0, + "RATE_08": 7.4, + "RATE_09": 7.4, + "RATE_10": 8.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.2, + "RATE_02": 13.3, + "RATE_03": 10.8, + "RATE_04": 10.8, + "RATE_05": 13.2, + "RATE_06": 8.7, + "RATE_07": 8.0, + "RATE_08": 7.8, + "RATE_09": 7.8, + "RATE_10": 8.7, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.9, + "RATE_02": 13.0, + "RATE_03": 10.1, + "RATE_04": 10.1, + "RATE_05": 12.9, + "RATE_06": 9.3, + "RATE_07": 8.6, + "RATE_08": 7.4, + "RATE_09": 7.4, + "RATE_10": 9.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.7, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.39, + "RATE_12": 1.3, + "RATE_13": 1.13, + "RATE_14": 1.06, + "RATE_15": 1.03, + "RATE_16": 1.02, + "RATE_17": 1.01, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.545, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 12.81, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0077, + "RATE_02": 1500.0, + "RATE_03": 130.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0063, + "RATE_07": 2400.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.005, + "RATE_12": 4000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0141, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0102, + "RATE_27": 1000.0, + "RATE_28": 75.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.65, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.8, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.24, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.13, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.4 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.0, + "RATE_07": 7.4, + "RATE_08": 7.5, + "RATE_09": 7.7, + "RATE_10": 8.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.7, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.3 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.7, + "RATE_07": 8.1, + "RATE_08": 7.4, + "RATE_09": 7.6, + "RATE_10": 8.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.3 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.2, + "RATE_07": 8.5, + "RATE_08": 8.0, + "RATE_09": 8.1, + "RATE_10": 9.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.06, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.9, + "RATE_07": 9.1, + "RATE_08": 7.5, + "RATE_09": 7.6, + "RATE_10": 10.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 92.4 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.17, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 92.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.87, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.99, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.16, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.33, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.7, + "RATE_07": 7.8, + "RATE_08": 7.6, + "RATE_09": 7.6, + "RATE_10": 8.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.7, + "RATE_07": 8.0, + "RATE_08": 7.4, + "RATE_09": 7.5, + "RATE_10": 9.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.3, + "RATE_07": 9.6, + "RATE_08": 7.9, + "RATE_09": 7.9, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.7, + "RATE_07": 10.2, + "RATE_08": 7.4, + "RATE_09": 7.5, + "RATE_10": 11.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.3, + "RATE_07": 7.6, + "RATE_08": 7.4, + "RATE_09": 7.5, + "RATE_10": 8.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.04, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.4, + "RATE_07": 7.8, + "RATE_08": 7.2, + "RATE_09": 7.3, + "RATE_10": 8.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.17, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.1, + "RATE_07": 9.4, + "RATE_08": 7.7, + "RATE_09": 7.7, + "RATE_10": 10.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.26, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.7, + "RATE_07": 9.9, + "RATE_08": 7.3, + "RATE_09": 7.4, + "RATE_10": 10.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.54, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.5, + "RATE_07": 5.7, + "RATE_08": 7.5, + "RATE_09": 7.6, + "RATE_10": 6.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.7, + "RATE_07": 5.9, + "RATE_08": 7.4, + "RATE_09": 7.4, + "RATE_10": 6.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.9, + "RATE_07": 8.2, + "RATE_08": 7.8, + "RATE_09": 8.0, + "RATE_10": 9.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.6, + "RATE_07": 8.8, + "RATE_08": 7.5, + "RATE_09": 7.5, + "RATE_10": 9.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "NAME2", + "SIZE", + "SIZE2", + "UNIT", + "BQCODE", + "EQCODE", + "WQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "CONTCODE", + "NAGCD", + "BCONT", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "RXX", + "UC", + "K_S", + "DOLLOR", + "GUN", + "GUN2", + "JOJAK", + "BOKSA", + "PP", + "EDT_DATE", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM" + ], + "costn_source_stats": { + "L": { + "count": 16, + "selected_match": { + "6": 16 + } + }, + "M": { + "count": 55, + "selected_match": { + "3": 18, + "4": 23, + "5": 22, + "1": 11, + "2": 13, + "6": 4 + } + }, + "S": { + "count": 32, + "selected_match": { + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1 + } + }, + "B": { + "count": 23, + "selected_match": {} + }, + "D": { + "count": 69, + "selected_match": {} + }, + "X": { + "count": 29, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 225, + "fields": [ + "ITNUM", + "NAME1", + "NAME2", + "SIZE1", + "SIZE2", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "CODEA", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "RCU", + "KWNGP", + "ITM_TYP", + "EQCODE", + "BL_AMT", + "DES1", + "DES2", + "UNIT2", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH" + ] + } + } + }, + { + "path": "2024년 간선임도(기번3-울진.대흥)(공통)\\1. 설계원본\\01 내역자료\\2024년 간선임도사업(기번3).STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 10.8, + "RATE1": 11.3, + "RATE2": 11.8, + "RATE3": 15.3, + "RATE4": 10.8, + "RATE5": 11.3, + "RATE6": 11.8, + "RATE7": 14.3, + "RATE8": 15.5, + "RATE9": 15.5 + }, + { + "RATE0": 11.1, + "RATE1": 11.6, + "RATE2": 12.1, + "RATE3": 15.6, + "RATE4": 11.1, + "RATE5": 11.6, + "RATE6": 12.1, + "RATE7": 14.7, + "RATE8": 15.8, + "RATE9": 15.8 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 5.0, + "RATE1": 5.3, + "RATE2": 6.0, + "RATE3": 6.3, + "RATE4": 5.0, + "RATE5": 5.2, + "RATE6": 6.0, + "RATE7": 6.0, + "RATE8": 5.1, + "RATE9": 5.3 + }, + { + "RATE0": 5.4, + "RATE1": 5.6, + "RATE2": 6.3, + "RATE3": 6.7, + "RATE4": 5.3, + "RATE5": 5.6, + "RATE6": 6.3, + "RATE7": 6.3, + "RATE8": 5.3, + "RATE9": 5.5 + }, + { + "RATE0": 5.9, + "RATE1": 6.2, + "RATE2": 6.9, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.5, + "RATE9": 5.8 + }, + { + "RATE0": 5.9, + "RATE1": 6.2, + "RATE2": 6.9, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.9, + "RATE9": 6.1 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.3, + "RATE5": 2.48, + "RATE6": 1.81, + "RATE7": 3294.0, + "RATE8": 1.88, + "RATE9": 4.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 2.9, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 2.9, + "RATE5": 1.15, + "RATE6": 0.84, + "RATE7": 0.71, + "RATE8": 0.68, + "RATE9": 0.0 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 2.9, + "RATE5": 0.7, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.2, + "RATE9": 0.0 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 5.3, + "RATE5": 1.4, + "RATE6": 0.0, + "RATE7": 1.48, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 4.7, + "RATE1": 4.7, + "RATE2": null, + "RATE3": 4.15, + "RATE4": 3.6, + "RATE5": 4.7, + "RATE6": null, + "RATE7": 4.15, + "RATE8": 3.6, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 15.0, + "RATE2": null, + "RATE3": 13.5, + "RATE4": 12.0, + "RATE5": 5.5, + "RATE6": 6.2, + "RATE7": 6.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 10.7, + "RATE1": 11.2, + "RATE2": 11.7, + "RATE3": 15.1, + "RATE4": 4.8, + "RATE5": 5.0, + "RATE6": 5.7, + "RATE7": 6.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 10.9, + "RATE1": 11.4, + "RATE2": 12.0, + "RATE3": 15.5, + "RATE4": 5.1, + "RATE5": 5.3, + "RATE6": 6.1, + "RATE7": 6.4, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.2, + "RATE1": 11.7, + "RATE2": 12.2, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.2, + "RATE1": 11.7, + "RATE2": 12.2, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 10.8, + "RATE1": 11.3, + "RATE2": 11.8, + "RATE3": 15.8, + "RATE4": 4.7, + "RATE5": 4.9, + "RATE6": 5.7, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.1, + "RATE1": 11.6, + "RATE2": 12.1, + "RATE3": 15.8, + "RATE4": 5.0, + "RATE5": 5.3, + "RATE6": 6.0, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 0.0, + "RATE4": 5.6, + "RATE5": 5.8, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.8, + "RATE2": 12.4, + "RATE3": 0.0, + "RATE4": 5.6, + "RATE5": 5.8, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.52, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 2.105, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 0.99, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 4.5, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 0.0109, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 6300.0, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 0.0128, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": 6300.0, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": null, + "RATE1": 0.019, + "RATE2": 0.028, + "RATE3": 0.027, + "RATE4": 0.025, + "RATE5": 0.024, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": null, + "RATE8": null, + "RATE9": null + }, + { + "RATE0": null, + "RATE1": null, + "RATE2": null, + "RATE3": null, + "RATE4": null, + "RATE5": null, + "RATE6": null, + "RATE7": null, + "RATE8": null, + "RATE9": null + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": null, + "RATE6": 0.0, + "RATE7": null, + "RATE8": null, + "RATE9": 0.0 + }, + { + "RATE0": null, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 2.93, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.09, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.43, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": null, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.7, + "RATE_02": 11.5, + "RATE_03": 8.0, + "RATE_04": 8.0, + "RATE_05": 12.7, + "RATE_06": 8.8, + "RATE_07": 7.8, + "RATE_08": 5.6, + "RATE_09": 5.6, + "RATE_10": 8.8, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 1.86, + "RATE_18": 5349.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.0, + "RATE_02": 11.8, + "RATE_03": 7.9, + "RATE_04": 7.9, + "RATE_05": 13.0, + "RATE_06": 9.1, + "RATE_07": 8.1, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 9.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.99, + "RATE_18": 5499.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.0, + "RATE_02": 11.8, + "RATE_03": 7.7, + "RATE_04": 7.7, + "RATE_05": 13.0, + "RATE_06": 10.0, + "RATE_07": 9.0, + "RATE_08": 7.0, + "RATE_09": 7.0, + "RATE_10": 10.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.2, + "RATE_18": 3250.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.9, + "RATE_02": 11.7, + "RATE_03": 7.7, + "RATE_04": 7.7, + "RATE_05": 12.9, + "RATE_06": 10.5, + "RATE_07": 9.5, + "RATE_08": 7.3, + "RATE_09": 7.3, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.35, + "RATE_18": 5400.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 1.97, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.1, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.27, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.44, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.7, + "RATE_02": 11.5, + "RATE_03": 7.6, + "RATE_04": 7.6, + "RATE_05": 12.7, + "RATE_06": 10.2, + "RATE_07": 9.2, + "RATE_08": 6.8, + "RATE_09": 6.8, + "RATE_10": 10.2, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.9, + "RATE_02": 11.8, + "RATE_03": 7.6, + "RATE_04": 7.6, + "RATE_05": 12.9, + "RATE_06": 10.5, + "RATE_07": 9.5, + "RATE_08": 7.0, + "RATE_09": 7.0, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.0, + "RATE_02": 11.8, + "RATE_03": 7.4, + "RATE_04": 7.4, + "RATE_05": 13.0, + "RATE_06": 11.4, + "RATE_07": 10.4, + "RATE_08": 8.2, + "RATE_09": 8.2, + "RATE_10": 11.4, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.9, + "RATE_02": 11.7, + "RATE_03": 7.3, + "RATE_04": 7.3, + "RATE_05": 12.9, + "RATE_06": 11.9, + "RATE_07": 10.9, + "RATE_08": 8.5, + "RATE_09": 8.5, + "RATE_10": 11.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.5, + "RATE_02": 11.3, + "RATE_03": 7.5, + "RATE_04": 7.5, + "RATE_05": 12.5, + "RATE_06": 9.1, + "RATE_07": 8.1, + "RATE_08": 7.1, + "RATE_09": 7.1, + "RATE_10": 9.1, + "RATE_11": 5.0, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.15, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.7, + "RATE_02": 11.6, + "RATE_03": 7.5, + "RATE_04": 7.5, + "RATE_05": 12.7, + "RATE_06": 9.4, + "RATE_07": 8.4, + "RATE_08": 7.2, + "RATE_09": 7.2, + "RATE_10": 9.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.29, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.8, + "RATE_02": 11.6, + "RATE_03": 7.3, + "RATE_04": 7.3, + "RATE_05": 12.8, + "RATE_06": 10.3, + "RATE_07": 9.3, + "RATE_08": 8.4, + "RATE_09": 8.4, + "RATE_10": 10.3, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.38, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.7, + "RATE_02": 11.5, + "RATE_03": 7.2, + "RATE_04": 7.2, + "RATE_05": 12.7, + "RATE_06": 10.8, + "RATE_07": 9.8, + "RATE_08": 8.7, + "RATE_09": 8.7, + "RATE_10": 10.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 11.8, + "RATE_02": 10.7, + "RATE_03": 8.1, + "RATE_04": 8.1, + "RATE_05": 11.8, + "RATE_06": 8.1, + "RATE_07": 7.1, + "RATE_08": 6.7, + "RATE_09": 6.7, + "RATE_10": 8.1, + "RATE_11": 4.5, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.1, + "RATE_02": 10.9, + "RATE_03": 8.1, + "RATE_04": 8.1, + "RATE_05": 12.1, + "RATE_06": 8.4, + "RATE_07": 7.4, + "RATE_08": 6.8, + "RATE_09": 6.8, + "RATE_10": 8.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.1, + "RATE_02": 11.0, + "RATE_03": 7.9, + "RATE_04": 7.9, + "RATE_05": 12.1, + "RATE_06": 9.3, + "RATE_07": 8.3, + "RATE_08": 8.0, + "RATE_09": 8.0, + "RATE_10": 9.3, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 12.0, + "RATE_02": 10.9, + "RATE_03": 7.8, + "RATE_04": 7.8, + "RATE_05": 12.0, + "RATE_06": 9.8, + "RATE_07": 8.8, + "RATE_08": 8.3, + "RATE_09": 8.3, + "RATE_10": 9.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.73, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.39, + "RATE_12": 1.17, + "RATE_13": 0.97, + "RATE_14": 0.92, + "RATE_15": 0.89, + "RATE_16": 0.88, + "RATE_17": 0.87, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.335, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 10.25, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0193, + "RATE_02": 4000.0, + "RATE_03": 140.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0159, + "RATE_07": 6000.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0126, + "RATE_12": 10000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0355, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0235, + "RATE_27": 2000.0, + "RATE_28": 50.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.18, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.34, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.05, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 84.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.3, + "RATE_07": 5.0, + "RATE_08": 5.5, + "RATE_09": 4.8, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 3294.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.6, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 3498.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.78, + "RATE_18": 1647.0, + "RATE_19": 0.0, + "RATE_20": 85.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.5, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.34, + "RATE_18": 4211.0, + "RATE_19": 0.0, + "RATE_20": 90.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.93, + "RATE_18": 5148.0, + "RATE_19": 0.0, + "RATE_20": 89.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.77, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.9, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.5, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.14, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 6.1, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.1, + "RATE_07": 5.7, + "RATE_08": 6.2, + "RATE_09": 5.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.9, + "RATE_07": 5.6, + "RATE_08": 6.1, + "RATE_09": 5.4, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.2, + "RATE_07": 5.8, + "RATE_08": 6.3, + "RATE_09": 5.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.5, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.1, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.9, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.8, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "SIZE", + "UNIT", + "BQCODE", + "EQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "NAGCD", + "UC", + "K_S", + "GUN", + "JOJAK", + "BOKSA", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM", + "PP", + "PLUSA", + "GUN2", + "NAME2", + "SIZE2", + "CONTCODE", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "EDT_DATE", + "WQCODE", + "DOLLOR", + "NOTA", + "RXX", + "BCONT" + ], + "costn_source_stats": { + "M": { + "count": 46, + "selected_match": { + "1": 31, + "5": 23, + "3": 22, + "2": 18, + "4": 16, + "6": 16 + } + }, + "L": { + "count": 12, + "selected_match": { + "6": 2 + } + }, + "S": { + "count": 23, + "selected_match": {} + }, + "B": { + "count": 34, + "selected_match": {} + }, + "D": { + "count": 46, + "selected_match": { + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1 + } + }, + "X": { + "count": 25, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 261, + "fields": [ + "ITNUM", + "NAME1", + "SIZE1", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "KWNGP", + "EQCODE", + "DES1", + "DES2", + "UNIT2", + "CODEA", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "BL_AMT", + "NAME2", + "SIZE2", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "RCU", + "ITM_TYP" + ] + } + } + }, + { + "path": "20250527 2025년 계류보전사업(기번1-영덕.병곡.영리.산214-1)(변경)\\01.내역자료\\2025년 계류보전사업(기번1 영덕.병곡.영.산214)(변경).STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 11.0, + "RATE5": 11.5, + "RATE6": 12.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.2, + "RATE1": 5.5, + "RATE2": 6.3, + "RATE3": 0.0, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 6.6, + "RATE3": 0.0, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 0.0, + "RATE4": 6.1, + "RATE5": 6.4, + "RATE6": 7.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 0.0, + "RATE4": 6.1, + "RATE5": 6.4, + "RATE6": 7.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.6, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 0.0, + "RATE5": 1.23, + "RATE6": 0.89, + "RATE7": 0.74, + "RATE8": 0.72, + "RATE9": 0.69 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 0.0, + "RATE5": 0.9, + "RATE6": 0.4, + "RATE7": 0.5, + "RATE8": 1.5, + "RATE9": 0.5 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 0.0, + "RATE5": 2.3, + "RATE6": 0.0, + "RATE7": 2.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.0, + "RATE1": 5.0, + "RATE2": 5.5, + "RATE3": 4.2, + "RATE4": 3.5, + "RATE5": 5.0, + "RATE6": 6.0, + "RATE7": 4.2, + "RATE8": 3.5, + "RATE9": 5.5 + }, + { + "RATE0": 0.0, + "RATE1": 15.0, + "RATE2": 0.0, + "RATE3": 12.0, + "RATE4": 9.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.6, + "RATE5": 5.6, + "RATE6": 6.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 6.2, + "RATE5": 6.2, + "RATE6": 7.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 6.4, + "RATE5": 6.5, + "RATE6": 7.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 4.9, + "RATE5": 5.1, + "RATE6": 5.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.59, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 6.55 + }, + { + "RATE0": 2.48, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.016, + "RATE1": 0.018, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4300.0, + "RATE6": 4300.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.016, + "RATE1": 0.016, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4300.0, + "RATE6": 4300.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.07, + "RATE2": 0.069, + "RATE3": 0.064, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.058, + "RATE8": 0.058, + "RATE9": 0.073 + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.8, + "RATE1": 0.8, + "RATE2": 1.1, + "RATE3": 0.6, + "RATE4": 0.7, + "RATE5": 0.3, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.15, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.3, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 5.8, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 2.28, + "RATE_18": 4325.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.5, + "RATE_02": 14.5, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.5, + "RATE_06": 6.0, + "RATE_07": 5.8, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 6.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.53, + "RATE_18": 3300.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.6, + "RATE_02": 14.6, + "RATE_03": 12.8, + "RATE_04": 12.8, + "RATE_05": 14.6, + "RATE_06": 6.3, + "RATE_07": 6.0, + "RATE_08": 5.6, + "RATE_09": 5.6, + "RATE_10": 6.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 2450.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 15.0, + "RATE_02": 15.0, + "RATE_03": 12.9, + "RATE_04": 12.9, + "RATE_05": 15.0, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.05, + "RATE_18": 2975.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 2.37, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.6, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 12.3, + "RATE_04": 12.3, + "RATE_05": 14.0, + "RATE_06": 6.2, + "RATE_07": 6.0, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.2, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.2, + "RATE_02": 14.2, + "RATE_03": 12.4, + "RATE_04": 12.4, + "RATE_05": 14.2, + "RATE_06": 6.4, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.5, + "RATE_04": 12.5, + "RATE_05": 14.3, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.7, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.7, + "RATE_02": 14.7, + "RATE_03": 12.7, + "RATE_04": 12.7, + "RATE_05": 14.7, + "RATE_06": 7.2, + "RATE_07": 6.9, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.6, + "RATE_04": 11.6, + "RATE_05": 13.4, + "RATE_06": 6.5, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.5, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.64, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 13.5, + "RATE_06": 6.7, + "RATE_07": 6.5, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.73, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.6, + "RATE_02": 13.6, + "RATE_03": 11.8, + "RATE_04": 11.8, + "RATE_05": 13.6, + "RATE_06": 6.9, + "RATE_07": 6.7, + "RATE_08": 5.9, + "RATE_09": 5.9, + "RATE_10": 6.9, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.78, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.1, + "RATE_02": 14.1, + "RATE_03": 11.9, + "RATE_04": 11.9, + "RATE_05": 14.1, + "RATE_06": 7.5, + "RATE_07": 7.2, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.39, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.3, + "RATE_02": 13.3, + "RATE_03": 11.3, + "RATE_04": 11.3, + "RATE_05": 13.3, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.4, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.4, + "RATE_04": 11.4, + "RATE_05": 13.4, + "RATE_06": 6.6, + "RATE_07": 6.3, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.5, + "RATE_04": 11.5, + "RATE_05": 13.5, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 6.2, + "RATE_09": 6.2, + "RATE_10": 6.8, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 14.0, + "RATE_06": 7.3, + "RATE_07": 7.1, + "RATE_08": 6.4, + "RATE_09": 6.4, + "RATE_10": 7.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.56, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.57, + "RATE_12": 1.3, + "RATE_13": 1.13, + "RATE_14": 1.06, + "RATE_15": 1.03, + "RATE_16": 1.02, + "RATE_17": 1.01, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.545, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 12.95, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0077, + "RATE_02": 1500.0, + "RATE_03": 130.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0063, + "RATE_07": 2400.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.005, + "RATE_12": 4000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0141, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0102, + "RATE_27": 1000.0, + "RATE_28": 75.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.65, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.8, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.24, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.13, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.4 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.4, + "RATE_07": 7.6, + "RATE_08": 5.4, + "RATE_09": 5.5, + "RATE_10": 8.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.7, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.3 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.8, + "RATE_07": 7.9, + "RATE_08": 5.6, + "RATE_09": 5.7, + "RATE_10": 9.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.3 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.7, + "RATE_07": 8.7, + "RATE_08": 6.9, + "RATE_09": 7.0, + "RATE_10": 10.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.06, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.4, + "RATE_07": 9.4, + "RATE_08": 7.2, + "RATE_09": 7.3, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 92.4 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.17, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 92.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.87, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.99, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.16, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.33, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.9, + "RATE_07": 8.9, + "RATE_08": 6.7, + "RATE_09": 6.7, + "RATE_10": 10.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.2, + "RATE_07": 9.4, + "RATE_08": 6.9, + "RATE_09": 7.0, + "RATE_10": 10.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 11.2, + "RATE_07": 10.3, + "RATE_08": 8.2, + "RATE_09": 8.2, + "RATE_10": 11.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 11.7, + "RATE_07": 10.9, + "RATE_08": 8.5, + "RATE_09": 8.6, + "RATE_10": 12.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.8, + "RATE_07": 7.9, + "RATE_08": 7.0, + "RATE_09": 7.1, + "RATE_10": 9.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.04, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.1, + "RATE_07": 8.3, + "RATE_08": 7.1, + "RATE_09": 7.2, + "RATE_10": 9.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.17, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.2, + "RATE_07": 9.2, + "RATE_08": 8.4, + "RATE_09": 8.4, + "RATE_10": 10.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.26, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 91.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 10.8, + "RATE_07": 9.8, + "RATE_08": 8.7, + "RATE_09": 8.8, + "RATE_10": 10.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.54, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.0, + "RATE_07": 7.0, + "RATE_08": 6.6, + "RATE_09": 6.7, + "RATE_10": 8.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 8.3, + "RATE_07": 7.3, + "RATE_08": 6.8, + "RATE_09": 6.8, + "RATE_10": 8.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.2, + "RATE_07": 8.3, + "RATE_08": 8.0, + "RATE_09": 8.2, + "RATE_10": 9.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 9.8, + "RATE_07": 8.8, + "RATE_08": 8.4, + "RATE_09": 8.4, + "RATE_10": 9.9, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "SIZE", + "UNIT", + "BQCODE", + "EQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "NAGCD", + "UC", + "K_S", + "GUN", + "JOJAK", + "BOKSA", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM", + "PP", + "PLUSA", + "GUN2", + "NAME2", + "SIZE2", + "CONTCODE", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "EDT_DATE", + "WQCODE", + "DOLLOR", + "NOTA", + "RXX", + "BCONT" + ], + "costn_source_stats": { + "M": { + "count": 26, + "selected_match": { + "1": 8, + "2": 8, + "3": 11, + "4": 6, + "5": 7, + "6": 14 + } + }, + "S": { + "count": 15, + "selected_match": {} + }, + "L": { + "count": 7, + "selected_match": { + "6": 7 + } + }, + "W": { + "count": 1, + "selected_match": { + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1 + } + }, + "D": { + "count": 35, + "selected_match": {} + }, + "B": { + "count": 13, + "selected_match": {} + }, + "X": { + "count": 18, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 148, + "fields": [ + "ITNUM", + "NAME1", + "SIZE1", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "KWNGP", + "EQCODE", + "DES1", + "DES2", + "UNIT2", + "CODEA", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "BL_AMT", + "NAME2", + "SIZE2", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "RCU", + "ITM_TYP", + "QTY5", + "MAMT5", + "M_AMT5", + "LAMT5", + "L_AMT5", + "SAMT5", + "S_AMT5", + "TAMT5", + "T_AMT5", + "AAMT5", + "A_AMT5" + ] + } + } + }, + { + "path": "25년 산불진화임도(기번8)(울진소광)\\1. 설계원본\\03-내역\\22-2025년 산불진화임도사업(울진 금강송 소광).STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.3, + "RATE4": 10.8, + "RATE5": 11.3, + "RATE6": 11.8, + "RATE7": 14.3, + "RATE8": 15.5, + "RATE9": 15.5 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.6, + "RATE4": 11.1, + "RATE5": 11.6, + "RATE6": 12.1, + "RATE7": 14.7, + "RATE8": 15.8, + "RATE9": 15.8 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 5.2, + "RATE1": 5.5, + "RATE2": 6.3, + "RATE3": 6.3, + "RATE4": 5.0, + "RATE5": 5.2, + "RATE6": 6.0, + "RATE7": 6.0, + "RATE8": 5.1, + "RATE9": 5.3 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 6.6, + "RATE3": 6.7, + "RATE4": 5.3, + "RATE5": 5.6, + "RATE6": 6.3, + "RATE7": 6.3, + "RATE8": 5.3, + "RATE9": 5.5 + }, + { + "RATE0": 6.2, + "RATE1": 6.1, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.5, + "RATE9": 5.8 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.9, + "RATE9": 6.1 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.6, + "RATE5": 2.48, + "RATE6": 1.81, + "RATE7": 3294.0, + "RATE8": 1.88, + "RATE9": 4.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 2.9, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 2.9, + "RATE5": 1.23, + "RATE6": 0.89, + "RATE7": 0.74, + "RATE8": 0.72, + "RATE9": 0.69 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 2.9, + "RATE5": 0.9, + "RATE6": 0.4, + "RATE7": 0.5, + "RATE8": 1.5, + "RATE9": 0.5 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 5.3, + "RATE5": 2.3, + "RATE6": 0.0, + "RATE7": 1.48, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.0, + "RATE1": 5.0, + "RATE2": 5.5, + "RATE3": 4.2, + "RATE4": 3.5, + "RATE5": 5.0, + "RATE6": 6.0, + "RATE7": 4.2, + "RATE8": 3.5, + "RATE9": 5.5 + }, + { + "RATE0": 15.0, + "RATE1": 15.0, + "RATE2": 0.0, + "RATE3": 12.0, + "RATE4": 9.0, + "RATE5": 5.5, + "RATE6": 6.2, + "RATE7": 6.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.1, + "RATE4": 4.8, + "RATE5": 5.0, + "RATE6": 5.7, + "RATE7": 6.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.5, + "RATE4": 5.1, + "RATE5": 5.3, + "RATE6": 6.1, + "RATE7": 6.4, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 4.9, + "RATE5": 5.1, + "RATE6": 5.9, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.3, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.59, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 2.105, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 6.55 + }, + { + "RATE0": 2.48, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4.5, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0109, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 6300.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0128, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 6300.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.028, + "RATE3": 0.027, + "RATE4": 0.025, + "RATE5": 0.024, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.8, + "RATE1": 0.8, + "RATE2": 1.1, + "RATE3": 0.6, + "RATE4": 0.7, + "RATE5": 0.3, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": null, + "RATE6": 0.0, + "RATE7": null, + "RATE8": null, + "RATE9": 0.0 + }, + { + "RATE0": null, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 16.5, + "RATE_02": 16.2, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.2, + "RATE_07": 4.6, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.15, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 16.2, + "RATE_02": 14.3, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.3, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 5.8, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 2.28, + "RATE_18": 4325.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.5, + "RATE_02": 14.5, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.5, + "RATE_06": 6.0, + "RATE_07": 5.8, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 6.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.53, + "RATE_18": 3300.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.6, + "RATE_02": 14.6, + "RATE_03": 12.8, + "RATE_04": 12.8, + "RATE_05": 14.6, + "RATE_06": 6.3, + "RATE_07": 6.0, + "RATE_08": 5.6, + "RATE_09": 5.6, + "RATE_10": 6.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 2450.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 15.0, + "RATE_02": 15.0, + "RATE_03": 12.9, + "RATE_04": 12.9, + "RATE_05": 15.0, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.05, + "RATE_18": 2975.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 2.37, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.6, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 12.3, + "RATE_04": 12.3, + "RATE_05": 14.0, + "RATE_06": 6.2, + "RATE_07": 6.0, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.2, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.2, + "RATE_02": 14.2, + "RATE_03": 12.4, + "RATE_04": 12.4, + "RATE_05": 14.2, + "RATE_06": 6.4, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.5, + "RATE_04": 12.5, + "RATE_05": 14.3, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.7, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.7, + "RATE_02": 14.7, + "RATE_03": 12.7, + "RATE_04": 12.7, + "RATE_05": 14.7, + "RATE_06": 7.2, + "RATE_07": 6.9, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.6, + "RATE_04": 11.6, + "RATE_05": 13.4, + "RATE_06": 6.5, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.5, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.64, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 13.5, + "RATE_06": 6.7, + "RATE_07": 6.5, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.73, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.6, + "RATE_02": 13.6, + "RATE_03": 11.8, + "RATE_04": 11.8, + "RATE_05": 13.6, + "RATE_06": 6.9, + "RATE_07": 6.7, + "RATE_08": 5.9, + "RATE_09": 5.9, + "RATE_10": 6.9, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.78, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.1, + "RATE_02": 14.1, + "RATE_03": 11.9, + "RATE_04": 11.9, + "RATE_05": 14.1, + "RATE_06": 7.5, + "RATE_07": 7.2, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.39, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.3, + "RATE_02": 13.3, + "RATE_03": 11.3, + "RATE_04": 11.3, + "RATE_05": 13.3, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.4, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.4, + "RATE_04": 11.4, + "RATE_05": 13.4, + "RATE_06": 6.6, + "RATE_07": 6.3, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.5, + "RATE_04": 11.5, + "RATE_05": 13.5, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 6.2, + "RATE_09": 6.2, + "RATE_10": 6.8, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 14.0, + "RATE_06": 7.3, + "RATE_07": 7.1, + "RATE_08": 6.4, + "RATE_09": 6.4, + "RATE_10": 7.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.56, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.57, + "RATE_12": 1.3, + "RATE_13": 1.13, + "RATE_14": 1.06, + "RATE_15": 1.03, + "RATE_16": 1.02, + "RATE_17": 1.01, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.545, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 12.95, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0077, + "RATE_02": 1500.0, + "RATE_03": 130.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0063, + "RATE_07": 2400.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.005, + "RATE_12": 4000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0141, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0102, + "RATE_27": 1000.0, + "RATE_28": 75.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.18, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.34, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.05, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 84.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.3, + "RATE_07": 5.0, + "RATE_08": 5.5, + "RATE_09": 4.8, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 3294.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.6, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 3498.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.78, + "RATE_18": 1647.0, + "RATE_19": 0.0, + "RATE_20": 85.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.5, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.34, + "RATE_18": 4211.0, + "RATE_19": 0.0, + "RATE_20": 90.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.93, + "RATE_18": 5148.0, + "RATE_19": 0.0, + "RATE_20": 89.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.77, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.9, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.5, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.14, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 6.1, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.1, + "RATE_07": 5.7, + "RATE_08": 6.2, + "RATE_09": 5.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.9, + "RATE_07": 5.6, + "RATE_08": 6.1, + "RATE_09": 5.4, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.2, + "RATE_07": 5.8, + "RATE_08": 6.3, + "RATE_09": 5.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.5, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.1, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.9, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.8, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "SIZE", + "UNIT", + "BQCODE", + "EQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "NAGCD", + "UC", + "K_S", + "GUN", + "JOJAK", + "BOKSA", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM", + "PP", + "PLUSA", + "GUN2", + "NAME2", + "SIZE2", + "CONTCODE", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "EDT_DATE", + "WQCODE", + "DOLLOR", + "NOTA", + "RXX", + "BCONT" + ], + "costn_source_stats": { + "M": { + "count": 37, + "selected_match": { + "1": 14, + "2": 13, + "3": 22, + "4": 8, + "5": 13, + "6": 8 + } + }, + "L": { + "count": 14, + "selected_match": { + "6": 14 + } + }, + "S": { + "count": 23, + "selected_match": { + "1": 2, + "2": 2, + "3": 2, + "4": 2, + "5": 2, + "6": 2 + } + }, + "W": { + "count": 5, + "selected_match": { + "1": 3, + "2": 3, + "3": 3, + "4": 3, + "5": 3, + "6": 3 + } + }, + "B": { + "count": 25, + "selected_match": {} + }, + "D": { + "count": 40, + "selected_match": {} + }, + "X": { + "count": 24, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 90, + "fields": [ + "ITNUM", + "NAME1", + "NAME2", + "SIZE1", + "SIZE2", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "CODEA", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "RCU", + "KWNGP", + "EQCODE", + "BL_AMT", + "DES1", + "DES2", + "UNIT2", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "ITM_TYP" + ] + } + } + }, + { + "path": "25년 산불진화임도(기번8)(울진소광)\\2025년 산불진화임도 신설사업(기번8 울진.금강송.소광.산29외).STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.3, + "RATE4": 10.8, + "RATE5": 11.3, + "RATE6": 11.8, + "RATE7": 14.3, + "RATE8": 15.5, + "RATE9": 15.5 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.6, + "RATE4": 11.1, + "RATE5": 11.6, + "RATE6": 12.1, + "RATE7": 14.7, + "RATE8": 15.8, + "RATE9": 15.8 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 5.2, + "RATE1": 5.5, + "RATE2": 6.3, + "RATE3": 6.3, + "RATE4": 5.0, + "RATE5": 5.2, + "RATE6": 6.0, + "RATE7": 6.0, + "RATE8": 5.1, + "RATE9": 5.3 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 6.6, + "RATE3": 6.7, + "RATE4": 5.3, + "RATE5": 5.6, + "RATE6": 6.3, + "RATE7": 6.3, + "RATE8": 5.3, + "RATE9": 5.5 + }, + { + "RATE0": 6.2, + "RATE1": 6.1, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.5, + "RATE9": 5.8 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.9, + "RATE9": 6.1 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.6, + "RATE5": 2.48, + "RATE6": 1.81, + "RATE7": 3294.0, + "RATE8": 1.88, + "RATE9": 4.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 2.9, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 2.9, + "RATE5": 1.23, + "RATE6": 0.89, + "RATE7": 0.74, + "RATE8": 0.72, + "RATE9": 0.69 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 2.9, + "RATE5": 0.9, + "RATE6": 0.4, + "RATE7": 0.5, + "RATE8": 1.5, + "RATE9": 0.5 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 5.3, + "RATE5": 2.3, + "RATE6": 0.0, + "RATE7": 1.48, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.0, + "RATE1": 5.0, + "RATE2": 5.5, + "RATE3": 4.2, + "RATE4": 3.5, + "RATE5": 5.0, + "RATE6": 6.0, + "RATE7": 4.2, + "RATE8": 3.5, + "RATE9": 5.5 + }, + { + "RATE0": 15.0, + "RATE1": 15.0, + "RATE2": 0.0, + "RATE3": 12.0, + "RATE4": 9.0, + "RATE5": 5.5, + "RATE6": 6.2, + "RATE7": 6.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.1, + "RATE4": 4.8, + "RATE5": 5.0, + "RATE6": 5.7, + "RATE7": 6.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.5, + "RATE4": 5.1, + "RATE5": 5.3, + "RATE6": 6.1, + "RATE7": 6.4, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 4.9, + "RATE5": 5.1, + "RATE6": 5.9, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.3, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.59, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 2.105, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 6.55 + }, + { + "RATE0": 2.48, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4.5, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0109, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 6300.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0128, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 6300.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.028, + "RATE3": 0.027, + "RATE4": 0.025, + "RATE5": 0.024, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.8, + "RATE1": 0.8, + "RATE2": 1.1, + "RATE3": 0.6, + "RATE4": 0.7, + "RATE5": 0.3, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": null, + "RATE6": 0.0, + "RATE7": null, + "RATE8": null, + "RATE9": 0.0 + }, + { + "RATE0": null, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 16.5, + "RATE_02": 16.2, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.2, + "RATE_07": 4.6, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.15, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 16.2, + "RATE_02": 14.3, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.3, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 5.8, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 2.28, + "RATE_18": 4325.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.5, + "RATE_02": 14.5, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.5, + "RATE_06": 6.0, + "RATE_07": 5.8, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 6.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.53, + "RATE_18": 3300.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.6, + "RATE_02": 14.6, + "RATE_03": 12.8, + "RATE_04": 12.8, + "RATE_05": 14.6, + "RATE_06": 6.3, + "RATE_07": 6.0, + "RATE_08": 5.6, + "RATE_09": 5.6, + "RATE_10": 6.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 2450.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 15.0, + "RATE_02": 15.0, + "RATE_03": 12.9, + "RATE_04": 12.9, + "RATE_05": 15.0, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.05, + "RATE_18": 2975.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 2.37, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.6, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 12.3, + "RATE_04": 12.3, + "RATE_05": 14.0, + "RATE_06": 6.2, + "RATE_07": 6.0, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.2, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.2, + "RATE_02": 14.2, + "RATE_03": 12.4, + "RATE_04": 12.4, + "RATE_05": 14.2, + "RATE_06": 6.4, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.5, + "RATE_04": 12.5, + "RATE_05": 14.3, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.7, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.7, + "RATE_02": 14.7, + "RATE_03": 12.7, + "RATE_04": 12.7, + "RATE_05": 14.7, + "RATE_06": 7.2, + "RATE_07": 6.9, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.6, + "RATE_04": 11.6, + "RATE_05": 13.4, + "RATE_06": 6.5, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.5, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.64, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 13.5, + "RATE_06": 6.7, + "RATE_07": 6.5, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.73, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.6, + "RATE_02": 13.6, + "RATE_03": 11.8, + "RATE_04": 11.8, + "RATE_05": 13.6, + "RATE_06": 6.9, + "RATE_07": 6.7, + "RATE_08": 5.9, + "RATE_09": 5.9, + "RATE_10": 6.9, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.78, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.1, + "RATE_02": 14.1, + "RATE_03": 11.9, + "RATE_04": 11.9, + "RATE_05": 14.1, + "RATE_06": 7.5, + "RATE_07": 7.2, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.39, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.3, + "RATE_02": 13.3, + "RATE_03": 11.3, + "RATE_04": 11.3, + "RATE_05": 13.3, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.4, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.4, + "RATE_04": 11.4, + "RATE_05": 13.4, + "RATE_06": 6.6, + "RATE_07": 6.3, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.5, + "RATE_04": 11.5, + "RATE_05": 13.5, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 6.2, + "RATE_09": 6.2, + "RATE_10": 6.8, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 14.0, + "RATE_06": 7.3, + "RATE_07": 7.1, + "RATE_08": 6.4, + "RATE_09": 6.4, + "RATE_10": 7.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.56, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.57, + "RATE_12": 1.3, + "RATE_13": 1.13, + "RATE_14": 1.06, + "RATE_15": 1.03, + "RATE_16": 1.02, + "RATE_17": 1.01, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.545, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 12.95, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0077, + "RATE_02": 1500.0, + "RATE_03": 130.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0063, + "RATE_07": 2400.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.005, + "RATE_12": 4000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0141, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0102, + "RATE_27": 1000.0, + "RATE_28": 75.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.18, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.34, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.05, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 84.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.3, + "RATE_07": 5.0, + "RATE_08": 5.5, + "RATE_09": 4.8, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 3294.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.6, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 3498.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.78, + "RATE_18": 1647.0, + "RATE_19": 0.0, + "RATE_20": 85.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.5, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.34, + "RATE_18": 4211.0, + "RATE_19": 0.0, + "RATE_20": 90.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.93, + "RATE_18": 5148.0, + "RATE_19": 0.0, + "RATE_20": 89.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.77, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.9, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.5, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.14, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 6.1, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.1, + "RATE_07": 5.7, + "RATE_08": 6.2, + "RATE_09": 5.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.9, + "RATE_07": 5.6, + "RATE_08": 6.1, + "RATE_09": 5.4, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.2, + "RATE_07": 5.8, + "RATE_08": 6.3, + "RATE_09": 5.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.5, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.1, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.9, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.8, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "SIZE", + "UNIT", + "BQCODE", + "EQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "NAGCD", + "UC", + "K_S", + "GUN", + "JOJAK", + "BOKSA", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM", + "PP", + "PLUSA", + "GUN2", + "NAME2", + "SIZE2", + "CONTCODE", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "EDT_DATE", + "WQCODE", + "DOLLOR", + "NOTA", + "RXX", + "BCONT" + ], + "costn_source_stats": { + "M": { + "count": 43, + "selected_match": { + "1": 14, + "6": 37, + "2": 13, + "3": 22, + "4": 8, + "5": 13 + } + }, + "L": { + "count": 14, + "selected_match": { + "6": 14 + } + }, + "S": { + "count": 23, + "selected_match": { + "1": 2, + "2": 2, + "3": 2, + "4": 2, + "5": 2, + "6": 2 + } + }, + "W": { + "count": 6, + "selected_match": { + "1": 3, + "2": 3, + "3": 3, + "4": 3, + "5": 3, + "6": 3 + } + }, + "B": { + "count": 37, + "selected_match": {} + }, + "D": { + "count": 62, + "selected_match": {} + }, + "X": { + "count": 24, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 90, + "fields": [ + "ITNUM", + "NAME1", + "NAME2", + "SIZE1", + "SIZE2", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "CODEA", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "RCU", + "KWNGP", + "EQCODE", + "BL_AMT", + "DES1", + "DES2", + "UNIT2", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "ITM_TYP", + "QTY5", + "MAMT5", + "M_AMT5", + "LAMT5", + "L_AMT5", + "SAMT5", + "S_AMT5", + "TAMT5", + "T_AMT5", + "AAMT5", + "A_AMT5" + ] + }, + "BOQ12.DBF": { + "rows": 89, + "fields": [ + "ITNUM", + "NAME1", + "NAME2", + "SIZE1", + "SIZE2", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "CODEA", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "RCU", + "KWNGP", + "EQCODE", + "BL_AMT", + "DES1", + "DES2", + "UNIT2", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "ITM_TYP", + "QTY5", + "MAMT5", + "M_AMT5", + "LAMT5", + "L_AMT5", + "SAMT5", + "S_AMT5", + "TAMT5", + "T_AMT5", + "AAMT5", + "A_AMT5" + ] + } + } + }, + { + "path": "25년 산불진화임도(기번8)(울진소광)\\변경 1차분-2025년 산불진화임도 신설사업(기번8 울진.금강송.소광.산29외).STC", + "rate": { + "RATE.DBF": [ + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.3, + "RATE4": 10.8, + "RATE5": 11.3, + "RATE6": 11.8, + "RATE7": 14.3, + "RATE8": 15.5, + "RATE9": 15.5 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.6, + "RATE4": 11.1, + "RATE5": 11.6, + "RATE6": 12.1, + "RATE7": 14.7, + "RATE8": 15.8, + "RATE9": 15.8 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 16.0, + "RATE4": 11.3, + "RATE5": 11.8, + "RATE6": 12.4, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 16.0, + "RATE4": 13.7, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.0, + "RATE8": 16.1, + "RATE9": 16.1 + }, + { + "RATE0": 5.2, + "RATE1": 5.5, + "RATE2": 6.3, + "RATE3": 6.3, + "RATE4": 5.0, + "RATE5": 5.2, + "RATE6": 6.0, + "RATE7": 6.0, + "RATE8": 5.1, + "RATE9": 5.3 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 6.6, + "RATE3": 6.7, + "RATE4": 5.3, + "RATE5": 5.6, + "RATE6": 6.3, + "RATE7": 6.3, + "RATE8": 5.3, + "RATE9": 5.5 + }, + { + "RATE0": 6.2, + "RATE1": 6.1, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.5, + "RATE9": 5.8 + }, + { + "RATE0": 6.2, + "RATE1": 6.4, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 5.9, + "RATE9": 6.1 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 6.3, + "RATE1": 6.5, + "RATE2": 7.3, + "RATE3": 7.3, + "RATE4": 5.9, + "RATE5": 6.2, + "RATE6": 6.9, + "RATE7": 6.9, + "RATE8": 6.2, + "RATE9": 6.4 + }, + { + "RATE0": 2.48, + "RATE1": 1.81, + "RATE2": 3294.0, + "RATE3": 1.88, + "RATE4": 3.6, + "RATE5": 2.48, + "RATE6": 1.81, + "RATE7": 3294.0, + "RATE8": 1.88, + "RATE9": 4.0 + }, + { + "RATE0": 2.66, + "RATE1": 1.95, + "RATE2": 3498.0, + "RATE3": 2.02, + "RATE4": 2.9, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 2.33, + "RATE1": 1.49, + "RATE2": 4211.0, + "RATE3": 1.58, + "RATE4": 2.9, + "RATE5": 1.23, + "RATE6": 0.89, + "RATE7": 0.74, + "RATE8": 0.72, + "RATE9": 0.69 + }, + { + "RATE0": 3.18, + "RATE1": 2.15, + "RATE2": 5148.0, + "RATE3": 2.26, + "RATE4": 2.9, + "RATE5": 0.9, + "RATE6": 0.4, + "RATE7": 0.5, + "RATE8": 1.5, + "RATE9": 0.5 + }, + { + "RATE0": 1.24, + "RATE1": 0.91, + "RATE2": 1647.0, + "RATE3": 0.94, + "RATE4": 5.3, + "RATE5": 2.3, + "RATE6": 0.0, + "RATE7": 1.48, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.0, + "RATE1": 5.0, + "RATE2": 5.5, + "RATE3": 4.2, + "RATE4": 3.5, + "RATE5": 5.0, + "RATE6": 6.0, + "RATE7": 4.2, + "RATE8": 3.5, + "RATE9": 5.5 + }, + { + "RATE0": 15.0, + "RATE1": 15.0, + "RATE2": 0.0, + "RATE3": 12.0, + "RATE4": 9.0, + "RATE5": 5.5, + "RATE6": 6.2, + "RATE7": 6.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.1, + "RATE4": 4.8, + "RATE5": 5.0, + "RATE6": 5.7, + "RATE7": 6.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.5, + "RATE4": 5.1, + "RATE5": 5.3, + "RATE6": 6.1, + "RATE7": 6.4, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.7, + "RATE5": 5.9, + "RATE6": 6.6, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 4.9, + "RATE5": 5.1, + "RATE6": 5.9, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 15.8, + "RATE4": 5.2, + "RATE5": 5.4, + "RATE6": 6.3, + "RATE7": 7.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.0, + "RATE1": 11.5, + "RATE2": 12.0, + "RATE3": 0.0, + "RATE4": 5.8, + "RATE5": 6.1, + "RATE6": 6.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.59, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 2.105, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 6.55 + }, + { + "RATE0": 2.48, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 4.5, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0109, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 6300.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0128, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 6300.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.028, + "RATE3": 0.027, + "RATE4": 0.025, + "RATE5": 0.024, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.3, + "RATE1": 11.9, + "RATE2": 10.0, + "RATE3": 9.9, + "RATE4": 12.3, + "RATE5": 10.5, + "RATE6": 10.9, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.6, + "RATE1": 12.2, + "RATE2": 10.2, + "RATE3": 10.2, + "RATE4": 12.5, + "RATE5": 10.7, + "RATE6": 11.2, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 11.9, + "RATE1": 12.5, + "RATE2": 10.5, + "RATE3": 10.5, + "RATE4": 12.8, + "RATE5": 11.0, + "RATE6": 11.5, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.6, + "RATE1": 5.8, + "RATE2": 5.4, + "RATE3": 5.3, + "RATE4": 5.5, + "RATE5": 5.7, + "RATE6": 5.4, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 5.9, + "RATE1": 6.1, + "RATE2": 5.8, + "RATE3": 5.6, + "RATE4": 5.8, + "RATE5": 6.0, + "RATE6": 5.8, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 6.5, + "RATE1": 6.7, + "RATE2": 6.3, + "RATE3": 6.2, + "RATE4": 6.4, + "RATE5": 6.6, + "RATE6": 6.3, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 1.8, + "RATE1": 0.8, + "RATE2": 1.1, + "RATE3": 0.6, + "RATE4": 0.7, + "RATE5": 0.3, + "RATE6": 0.5, + "RATE7": 0.3, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_M.DBF": [ + { + "RATE0": 15.0, + "RATE1": 14.5, + "RATE2": 15.5, + "RATE3": 15.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 15.0, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 13.0, + "RATE1": 15.0, + "RATE2": 17.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.0, + "RATE1": 14.6, + "RATE2": 15.3, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 13.8, + "RATE6": 14.5, + "RATE7": 15.1, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.3, + "RATE1": 15.0, + "RATE2": 15.6, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.1, + "RATE6": 14.8, + "RATE7": 15.5, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.6, + "RATE1": 15.3, + "RATE2": 16.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.5, + "RATE6": 15.1, + "RATE7": 15.8, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.1, + "RATE1": 14.8, + "RATE2": 15.5, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.0, + "RATE6": 14.6, + "RATE7": 15.3, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.5, + "RATE1": 15.1, + "RATE2": 15.8, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.3, + "RATE6": 15.0, + "RATE7": 15.6, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 14.8, + "RATE1": 15.5, + "RATE2": 16.1, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 14.6, + "RATE6": 15.3, + "RATE7": 16.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + }, + { + "RATE0": 0.0, + "RATE1": 6.0, + "RATE2": 0.0, + "RATE3": 5.5, + "RATE4": 5.0, + "RATE5": 6.0, + "RATE6": 0.0, + "RATE7": 5.5, + "RATE8": 5.0, + "RATE9": 0.0 + }, + { + "RATE0": 15.0, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": null, + "RATE6": 0.0, + "RATE7": null, + "RATE8": null, + "RATE9": 0.0 + }, + { + "RATE0": null, + "RATE1": 0.0, + "RATE2": 0.0, + "RATE3": 0.0, + "RATE4": 0.0, + "RATE5": 0.0, + "RATE6": 0.0, + "RATE7": 0.0, + "RATE8": 0.0, + "RATE9": 0.0 + } + ], + "RATE_R.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 13.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 8.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 6.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 12.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.8, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 7.4, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 16.5, + "RATE_02": 16.2, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.2, + "RATE_07": 4.6, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 6.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.6, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.7, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.15, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.45, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.3, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.5, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 11.4, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 6.2, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 10.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.9, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 9.1, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 16.2, + "RATE_02": 14.3, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.3, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 5.8, + "RATE_11": 6.0, + "RATE_12": 6.0, + "RATE_13": 6.0, + "RATE_14": 6.0, + "RATE_15": 0.0, + "RATE_16": 15.0, + "RATE_17": 2.28, + "RATE_18": 4325.0, + "RATE_19": 0.081, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.5, + "RATE_02": 14.5, + "RATE_03": 12.6, + "RATE_04": 12.6, + "RATE_05": 14.5, + "RATE_06": 6.0, + "RATE_07": 5.8, + "RATE_08": 5.2, + "RATE_09": 5.2, + "RATE_10": 6.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.53, + "RATE_18": 3300.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.6, + "RATE_02": 14.6, + "RATE_03": 12.8, + "RATE_04": 12.8, + "RATE_05": 14.6, + "RATE_06": 6.3, + "RATE_07": 6.0, + "RATE_08": 5.6, + "RATE_09": 5.6, + "RATE_10": 6.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.59, + "RATE_18": 2450.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 15.0, + "RATE_02": 15.0, + "RATE_03": 12.9, + "RATE_04": 12.9, + "RATE_05": 15.0, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.8, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.57, + "RATE_18": 4411.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.05, + "RATE_18": 2975.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 5.0, + "RATE_16": 0.0, + "RATE_17": 2.37, + "RATE_18": 0.0, + "RATE_19": 0.08, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.6, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 4.5, + "RATE_16": 0.0, + "RATE_17": 1.64, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.66, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.11, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 12.3, + "RATE_04": 12.3, + "RATE_05": 14.0, + "RATE_06": 6.2, + "RATE_07": 6.0, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.2, + "RATE_11": 5.5, + "RATE_12": 5.5, + "RATE_13": 5.5, + "RATE_14": 5.5, + "RATE_15": 4.5, + "RATE_16": 12.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.075, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.2, + "RATE_02": 14.2, + "RATE_03": 12.4, + "RATE_04": 12.4, + "RATE_05": 14.2, + "RATE_06": 6.4, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.4, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.3, + "RATE_02": 14.3, + "RATE_03": 12.5, + "RATE_04": 12.5, + "RATE_05": 14.3, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.7, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 4.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.7, + "RATE_02": 14.7, + "RATE_03": 12.7, + "RATE_04": 12.7, + "RATE_05": 14.7, + "RATE_06": 7.2, + "RATE_07": 6.9, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.2, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.6, + "RATE_04": 11.6, + "RATE_05": 13.4, + "RATE_06": 6.5, + "RATE_07": 6.2, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.5, + "RATE_11": 5.0, + "RATE_12": 5.0, + "RATE_13": 5.0, + "RATE_14": 5.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 2.64, + "RATE_18": 0.0, + "RATE_19": 0.071, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 13.5, + "RATE_06": 6.7, + "RATE_07": 6.5, + "RATE_08": 5.5, + "RATE_09": 5.5, + "RATE_10": 6.7, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.73, + "RATE_18": 0.0, + "RATE_19": 0.068, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.6, + "RATE_02": 13.6, + "RATE_03": 11.8, + "RATE_04": 11.8, + "RATE_05": 13.6, + "RATE_06": 6.9, + "RATE_07": 6.7, + "RATE_08": 5.9, + "RATE_09": 5.9, + "RATE_10": 6.9, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.78, + "RATE_18": 0.0, + "RATE_19": 0.084, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.1, + "RATE_02": 14.1, + "RATE_03": 11.9, + "RATE_04": 11.9, + "RATE_05": 14.1, + "RATE_06": 7.5, + "RATE_07": 7.2, + "RATE_08": 6.0, + "RATE_09": 6.0, + "RATE_10": 7.5, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.81, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 3.39, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.3, + "RATE_02": 13.3, + "RATE_03": 11.3, + "RATE_04": 11.3, + "RATE_05": 13.3, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.4, + "RATE_11": 4.5, + "RATE_12": 4.5, + "RATE_13": 4.5, + "RATE_14": 4.5, + "RATE_15": 0.0, + "RATE_16": 9.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.4, + "RATE_02": 13.4, + "RATE_03": 11.4, + "RATE_04": 11.4, + "RATE_05": 13.4, + "RATE_06": 6.6, + "RATE_07": 6.3, + "RATE_08": 5.8, + "RATE_09": 5.8, + "RATE_10": 6.6, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 13.5, + "RATE_02": 13.5, + "RATE_03": 11.5, + "RATE_04": 11.5, + "RATE_05": 13.5, + "RATE_06": 6.8, + "RATE_07": 6.5, + "RATE_08": 6.2, + "RATE_09": 6.2, + "RATE_10": 6.8, + "RATE_11": 4.0, + "RATE_12": 4.0, + "RATE_13": 4.0, + "RATE_14": 4.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 14.0, + "RATE_02": 14.0, + "RATE_03": 11.7, + "RATE_04": 11.7, + "RATE_05": 14.0, + "RATE_06": 7.3, + "RATE_07": 7.1, + "RATE_08": 6.4, + "RATE_09": 6.4, + "RATE_10": 7.3, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.56, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 1.57, + "RATE_12": 1.3, + "RATE_13": 1.13, + "RATE_14": 1.06, + "RATE_15": 1.03, + "RATE_16": 1.02, + "RATE_17": 1.01, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 3.545, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 4.5, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 12.95, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 2.3, + "RATE_17": 0.0, + "RATE_18": 2.3, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.9, + "RATE_02": 0.4, + "RATE_03": 0.5, + "RATE_04": 1.5, + "RATE_05": 0.5, + "RATE_06": 1.8, + "RATE_07": 0.8, + "RATE_08": 1.1, + "RATE_09": 0.6, + "RATE_10": 0.7, + "RATE_11": 0.3, + "RATE_12": 0.5, + "RATE_13": 0.3, + "RATE_14": 0.8, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.0077, + "RATE_02": 1500.0, + "RATE_03": 130.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0063, + "RATE_07": 2400.0, + "RATE_08": 250.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.005, + "RATE_12": 4000.0, + "RATE_13": 500.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0141, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0102, + "RATE_27": 1000.0, + "RATE_28": 75.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + }, + { + "RATE_01": 0.4, + "RATE_02": 0.18, + "RATE_03": 0.07, + "RATE_04": 0.16, + "RATE_05": 0.0, + "RATE_06": 0.68, + "RATE_07": 0.51, + "RATE_08": 0.32, + "RATE_09": 0.16, + "RATE_10": 0.1, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0, + "RATE_21": 0.0, + "RATE_22": 0.0, + "RATE_23": 0.0, + "RATE_24": 0.0, + "RATE_25": 0.0, + "RATE_26": 0.0, + "RATE_27": 0.0, + "RATE_28": 0.0, + "RATE_29": 0.0, + "RATE_30": 0.0, + "RATE_31": 0.0, + "RATE_32": 0.0, + "RATE_33": 0.0, + "RATE_34": 0.0, + "RATE_35": 0.0 + } + ], + "RATE_RA.DBF": [ + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.18, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.34, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 87.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.05, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 84.5 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.07, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.82, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 88.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.3, + "RATE_07": 5.0, + "RATE_08": 5.5, + "RATE_09": 4.8, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.61, + "RATE_18": 3294.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.6, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.74, + "RATE_18": 3498.0, + "RATE_19": 0.0, + "RATE_20": 89.1 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.4, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.78, + "RATE_18": 1647.0, + "RATE_19": 0.0, + "RATE_20": 85.8 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.5, + "RATE_07": 6.1, + "RATE_08": 6.5, + "RATE_09": 6.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.34, + "RATE_18": 4211.0, + "RATE_19": 0.0, + "RATE_20": 90.2 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.93, + "RATE_18": 5148.0, + "RATE_19": 0.0, + "RATE_20": 89.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.77, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.9, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 93.9 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.85, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 90.6 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 1.5, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 95.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 2.14, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 94.7 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 6.1, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.1, + "RATE_07": 5.7, + "RATE_08": 6.2, + "RATE_09": 5.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.0, + "RATE_07": 6.6, + "RATE_08": 7.0, + "RATE_09": 6.5, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.9, + "RATE_07": 5.6, + "RATE_08": 6.1, + "RATE_09": 5.4, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.2, + "RATE_07": 5.8, + "RATE_08": 6.3, + "RATE_09": 5.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 7.1, + "RATE_07": 6.7, + "RATE_08": 7.1, + "RATE_09": 6.6, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.5, + "RATE_07": 5.2, + "RATE_08": 5.7, + "RATE_09": 5.1, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 10.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 5.8, + "RATE_07": 5.5, + "RATE_08": 5.9, + "RATE_09": 5.3, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.7, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 6.8, + "RATE_07": 6.4, + "RATE_08": 6.7, + "RATE_09": 6.2, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + }, + { + "RATE_01": 0.0, + "RATE_02": 0.0, + "RATE_03": 0.0, + "RATE_04": 0.0, + "RATE_05": 0.0, + "RATE_06": 0.0, + "RATE_07": 0.0, + "RATE_08": 0.0, + "RATE_09": 0.0, + "RATE_10": 0.0, + "RATE_11": 0.0, + "RATE_12": 0.0, + "RATE_13": 0.0, + "RATE_14": 0.0, + "RATE_15": 0.0, + "RATE_16": 0.0, + "RATE_17": 0.0, + "RATE_18": 0.0, + "RATE_19": 0.0, + "RATE_20": 0.0 + } + ] + }, + "costn_fields": [ + "CODE", + "NAME", + "SIZE", + "UNIT", + "BQCODE", + "EQCODE", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "NAGCD", + "UC", + "K_S", + "GUN", + "JOJAK", + "BOKSA", + "AMT_11", + "AMT_21", + "AMT_31", + "AMT_41", + "AMT_51", + "AMT_61", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "AMT_12", + "AMT_22", + "AMT_32", + "AMT_42", + "AMT_52", + "AMT_62", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "AMT_13", + "AMT_23", + "AMT_33", + "AMT_43", + "AMT_53", + "AMT_63", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "AMT_14", + "AMT_24", + "AMT_34", + "AMT_44", + "AMT_54", + "AMT_64", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "PG_J", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "AMT_1", + "AMT_2", + "AMT_3", + "AMT_4", + "IFORM", + "PP", + "PLUSA", + "GUN2", + "NAME2", + "SIZE2", + "CONTCODE", + "ACTTYP", + "JDCODE", + "SBMOK", + "S_ADJ", + "ADJ_M", + "ADJ_L", + "ADJ_S", + "EDT_DATE", + "WQCODE", + "DOLLOR", + "NOTA", + "RXX", + "BCONT" + ], + "costn_source_stats": { + "M": { + "count": 42, + "selected_match": { + "1": 13, + "2": 14, + "3": 24, + "4": 8, + "5": 9, + "6": 33 + } + }, + "L": { + "count": 14, + "selected_match": { + "6": 14 + } + }, + "S": { + "count": 26, + "selected_match": { + "1": 2, + "2": 2, + "3": 2, + "4": 2, + "5": 2, + "6": 2 + } + }, + "W": { + "count": 5, + "selected_match": { + "1": 3, + "2": 3, + "3": 3, + "4": 3, + "5": 3, + "6": 3 + } + }, + "B": { + "count": 39, + "selected_match": {} + }, + "D": { + "count": 54, + "selected_match": {} + }, + "X": { + "count": 31, + "selected_match": {} + } + }, + "boq_tables": { + "BOQ11.DBF": { + "rows": 115, + "fields": [ + "ITNUM", + "NAME1", + "NAME2", + "SIZE1", + "SIZE2", + "UNIT1", + "QTY1", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "T_AMT1", + "L_AMT1", + "M_AMT1", + "S_AMT1", + "EXIST1", + "BDCODE1", + "QTY2", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "T_AMT2", + "L_AMT2", + "M_AMT2", + "S_AMT2", + "EXIST2", + "BDCODE2", + "QTY3", + "TAMT3", + "LAMT3", + "MAMT3", + "SAMT3", + "T_AMT3", + "L_AMT3", + "M_AMT3", + "S_AMT3", + "EXIST3", + "BDCODE3", + "QTY4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "T_AMT4", + "L_AMT4", + "M_AMT4", + "S_AMT4", + "EXIST4", + "BDCODE4", + "SORTCODE", + "ENDCODE", + "BQCODE", + "CODEA", + "RL", + "RM", + "RS", + "UC", + "RATE", + "PRPT", + "PRIN", + "PROUT", + "RCU", + "KWNGP", + "EQCODE", + "BL_AMT", + "DES1", + "DES2", + "UNIT2", + "AAMT1", + "A_AMT1", + "AAMT2", + "A_AMT2", + "AAMT3", + "A_AMT3", + "AAMT4", + "A_AMT4", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "FRM_NH", + "ITM_TYP", + "QTY5", + "MAMT5", + "M_AMT5", + "LAMT5", + "L_AMT5", + "SAMT5", + "S_AMT5", + "TAMT5", + "T_AMT5", + "AAMT5", + "A_AMT5" + ] + } + } + } + ], + "xlsx": [] +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.py b/scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.py new file mode 100644 index 00000000..17021f23 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/evidence_extract.py @@ -0,0 +1,136 @@ +"""보유 STmate STC/XLSX에서 재구현 근거를 기계적으로 추출한다.""" +from __future__ import annotations + +import glob +import sys +import json +import re +import struct +import zipfile +from collections import Counter, defaultdict +from pathlib import Path + +from openpyxl import load_workbook + +ROOT = Path(__file__).resolve().parents[3] +SOURCE = ROOT / "resources" / "knowledge" / "original" / "실무문서" +OUT = Path(__file__).with_name("evidence_extract.json") + + +def dbf_rows(blob: bytes) -> list[dict[str, str | float | None]]: + count = struct.unpack(" str: + value = re.sub(r"\$?[A-Z]{1,3}\$?\d+", "CELL", value.upper()) + value = re.sub(r"\d+(?:\.\d+)?", "N", value) + return value + + +def nearby_label(ws, row: int, col: int) -> str: + values = [] + for r in range(max(1, row - 1), row + 2): + for c in range(max(1, col - 5), col): + value = ws.cell(r, c).value + if isinstance(value, str) and not value.startswith("="): + value = " ".join(value.split()) + if value and value not in values: + values.append(value) + return " | ".join(values[-3:]) + + +def workbook_evidence(path: Path) -> dict: + wb = load_workbook(path, data_only=False, read_only=True) + result = {"path": str(path.relative_to(SOURCE)), "sheets": {}, "key_formulas": []} + key_words = re.compile("간접|산재|고용|건강|연금|노인|퇴직|안전|환경|기타경비|일반관리|이윤|부가가치|관급|중기|일위|시장|견적") + for ws in wb.worksheets: + formulas, kinds = [], Counter() + for row in ws.iter_rows(): + for cell in row: + value = cell.value + if isinstance(value, str) and value.startswith("="): + formulas.append((cell.coordinate, value)) + kinds[normalize_formula(value)] += 1 + label = nearby_label(ws, cell.row, cell.column) + if key_words.search(label) or key_words.search(ws.title): + result["key_formulas"].append({"sheet": ws.title, "cell": cell.coordinate, "label": label, "formula": value}) + if formulas: + result["sheets"][ws.title] = { + "formula_count": len(formulas), + "top_patterns": kinds.most_common(12), + "cross_sheet_count": sum("!" in formula for _, formula in formulas), + } + return result + + +def stc_evidence(path: Path) -> dict: + with zipfile.ZipFile(path) as zf: + rate = {name: dbf_rows(zf.read(name)) for name in ("RATE.DBF", "RATE_M.DBF", "RATE_R.DBF", "RATE_RA.DBF")} + costn = dbf_rows(zf.read("COSTN.DBF")) + boq_names = sorted(name for name in zf.namelist() if re.fullmatch(r"BOQ\d\d\.DBF", name.upper())) + boq = {name: dbf_rows(zf.read(name)) for name in boq_names} + source_stats = defaultdict(lambda: {"count": 0, "selected_match": Counter()}) + for row in costn: + code = str(row.get("CODE") or "")[:1] + adopted = row.get("TAMT1") + if adopted is None: + adopted = row.get("AMT1") + source_stats[code]["count"] += 1 + for slot in range(1, 7): + candidates = [row.get(f"AMT_{slot}1"), row.get(f"AMT{slot}1"), row.get(f"AMT_{slot}")] + if adopted is not None and adopted in candidates: + source_stats[code]["selected_match"][str(slot)] += 1 + return { + "path": str(path.relative_to(SOURCE)), + "rate": rate, + "costn_fields": list(costn[0]) if costn else [], + "costn_source_stats": {k: {"count": v["count"], "selected_match": dict(v["selected_match"])} for k, v in source_stats.items()}, + "boq_tables": {name: {"rows": len(rows), "fields": list(rows[0]) if rows else []} for name, rows in boq.items()}, + } + + +def main() -> None: + stcs = [Path(p) for p in glob.glob(str(SOURCE / "**" / "*.STC"), recursive=True)] + likely = [] + for p in glob.glob(str(SOURCE / "**" / "*.xlsx"), recursive=True): + path = Path(p) + name = path.name + if any(token in name for token in ("간선임도사업(기번3)", "산불진화임도 실시설계", "임도시설사업2차", "계류보전사업(기번1 영덕", "산불진화임도 신설사업(기번8 울진")): + likely.append(path) + mode = sys.argv[1] if len(sys.argv) > 1 else "all" + data = { + "stc": [stc_evidence(p) for p in sorted(stcs)] if mode in ("all", "stc") else [], + "xlsx": [workbook_evidence(p) for p in sorted(likely)] if mode in ("all", "xlsx") else [], + } + OUT.write_text(json.dumps(data, ensure_ascii=False, indent=2), encoding="utf-8") + print(f"STC={len(stcs)} XLSX={len(likely)} -> {OUT}") + + +if __name__ == "__main__": + main() diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/export_disassembly.json b/scratch/orca_artifacts/stmate_competitor_analysis/export_disassembly.json new file mode 100644 index 00000000..fd8f4c61 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/export_disassembly.json @@ -0,0 +1,41672 @@ +{ + "DP_Common.CPM": { + "CALC_STR": { + "rva": "0x58ACC", + "instructions": [ + { + "address": "0x00458ACC", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00458ACD", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x00458ACF", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00458AD1", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00458AD2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00458AD5", + "mnemonic": "call", + "op_str": "0x4049c4", + "string": null + }, + { + "address": "0x00458ADA", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00458ADC", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00458ADD", + "mnemonic": "push", + "op_str": "0x458b64", + "string": null + }, + { + "address": "0x00458AE2", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00458AE5", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00458AE8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00458AEB", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00458AED", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00458AF2", + "mnemonic": "call", + "op_str": "0x402ef8", + "string": null + }, + { + "address": "0x00458AF7", + "mnemonic": "push", + "op_str": "2", + "string": null + }, + { + "address": "0x00458AF9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00458AFC", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00458B01", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x458aa8]", + "string": null + }, + { + "address": "0x00458B07", + "mnemonic": "call", + "op_str": "0x405b84", + "string": null + }, + { + "address": "0x00458B0C", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00458B0F", + "mnemonic": "mov", + "op_str": "ebx, 1", + "string": null + }, + { + "address": "0x00458B14", + "mnemonic": "mov", + "op_str": "al, byte ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x00458B17", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00458B18", + "mnemonic": "mov", + "op_str": "al, byte ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x00458B1B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00458B1C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00458B1F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00458B20", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00458B23", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00458B24", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00458B27", + "mnemonic": "call", + "op_str": "0x4059d0", + "string": null + }, + { + "address": "0x00458B2C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00458B2D", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00458B2E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00458B31", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00458B32", + "mnemonic": "mov", + "op_str": "cl, byte ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00458B35", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00458B38", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00458B3B", + "mnemonic": "call", + "op_str": "0x458be0", + "string": null + }, + { + "address": "0x00458B40", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00458B42", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x00458B43", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00458B44", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00458B45", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00458B48", + "mnemonic": "push", + "op_str": "0x458b6b", + "string": null + }, + { + "address": "0x00458B4D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00458B50", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x458aa8]", + "string": null + }, + { + "address": "0x00458B56", + "mnemonic": "call", + "op_str": "0x405ca4", + "string": null + }, + { + "address": "0x00458B5B", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00458B5E", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00458B63", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "CALC_STR_PART": { + "rva": "0x5777C", + "instructions": [ + { + "address": "0x0045777C", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0045777D", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0045777F", + "mnemonic": "mov", + "op_str": "ecx, 0x14", + "string": null + }, + { + "address": "0x00457784", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00457786", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00457788", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457789", + "mnemonic": "jne", + "op_str": "0x457784", + "string": null + }, + { + "address": "0x0045778B", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0045778C", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0045778D", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x0045778E", + "mnemonic": "mov", + "op_str": "edi, dword ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x00457791", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00457794", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457797", + "mnemonic": "call", + "op_str": "0x4049c4", + "string": null + }, + { + "address": "0x0045779C", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0045779E", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0045779F", + "mnemonic": "push", + "op_str": "0x457c46", + "string": null + }, + { + "address": "0x004577A4", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x004577A7", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x004577AA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004577AD", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x004577B2", + "mnemonic": "mov", + "op_str": "esi, eax", + "string": null + }, + { + "address": "0x004577B4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc]", + "string": null + }, + { + "address": "0x004577B7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004577BA", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x004577BF", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004577C1", + "mnemonic": "push", + "op_str": "0x457c60", + "string": null + }, + { + "address": "0x004577C6", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x004577C9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004577CA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004577CD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004577CE", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x004577D3", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004577D5", + "mnemonic": "push", + "op_str": "0x457c6c", + "string": null + }, + { + "address": "0x004577DA", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x004577DD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004577DE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x004577E1", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004577E2", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x004577E7", + "mnemonic": "push", + "op_str": "0x457c78", + "string": null + }, + { + "address": "0x004577EC", + "mnemonic": "push", + "op_str": "0x457c84", + "string": null + }, + { + "address": "0x004577F1", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x004577F4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004577F5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x004577F8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004577F9", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x004577FE", + "mnemonic": "push", + "op_str": "0x457c78", + "string": null + }, + { + "address": "0x00457803", + "mnemonic": "push", + "op_str": "0x457c90", + "string": null + }, + { + "address": "0x00457808", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x0045780B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045780C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x0045780F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457810", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x00457815", + "mnemonic": "push", + "op_str": "0x457c9c", + "string": null + }, + { + "address": "0x0045781A", + "mnemonic": "push", + "op_str": "0x457ca8", + "string": null + }, + { + "address": "0x0045781F", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457822", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457823", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x24]", + "string": null + }, + { + "address": "0x00457826", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457827", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x0045782C", + "mnemonic": "push", + "op_str": "0x457cb4", + "string": null + }, + { + "address": "0x00457831", + "mnemonic": "push", + "op_str": "0x457cc0", + "string": null + }, + { + "address": "0x00457836", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457839", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045783A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x0045783D", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045783E", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x00457843", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457846", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457847", + "mnemonic": "push", + "op_str": "0x457ccc", + "string": null + }, + { + "address": "0x0045784C", + "mnemonic": "call", + "op_str": "0x453640", + "string": null + }, + { + "address": "0x00457851", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00457853", + "mnemonic": "je", + "op_str": "0x457962", + "string": null + }, + { + "address": "0x00457859", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x0045785B", + "mnemonic": "mov", + "op_str": "al, byte ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x0045785E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045785F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00457862", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457863", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00457866", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457867", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00457868", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0045786A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045786B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x0045786E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045786F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457872", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457873", + "mnemonic": "push", + "op_str": "0x457ccc", + "string": null + }, + { + "address": "0x00457878", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c]", + "string": null + }, + { + "address": "0x0045787B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045787C", + "mnemonic": "call", + "op_str": "0x453a20", + "string": "U뗭j" + }, + { + "address": "0x00457881", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x3c]", + "string": null + }, + { + "address": "0x00457884", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00457886", + "mnemonic": "mov", + "op_str": "edx, 0xf", + "string": null + }, + { + "address": "0x0045788B", + "mnemonic": "call", + "op_str": "0x458be0", + "string": null + }, + { + "address": "0x00457890", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x00457893", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457894", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00457897", + "mnemonic": "mov", + "op_str": "edx, 0x457ccc", + "string": null + }, + { + "address": "0x0045789C", + "mnemonic": "call", + "op_str": "0x405540", + "string": null + }, + { + "address": "0x004578A1", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x4c]", + "string": null + }, + { + "address": "0x004578A4", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578A5", + "mnemonic": "call", + "op_str": "0x405560", + "string": null + }, + { + "address": "0x004578AA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x004578AD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578AE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004578B1", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578B2", + "mnemonic": "push", + "op_str": "0x457cd8", + "string": null + }, + { + "address": "0x004578B7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x64]", + "string": null + }, + { + "address": "0x004578BA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578BB", + "mnemonic": "call", + "op_str": "0x453a20", + "string": "U뗭j" + }, + { + "address": "0x004578C0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x64]", + "string": null + }, + { + "address": "0x004578C3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578C4", + "mnemonic": "push", + "op_str": "0x457ccc", + "string": null + }, + { + "address": "0x004578C9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x004578CC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578CD", + "mnemonic": "call", + "op_str": "0x453ab4", + "string": null + }, + { + "address": "0x004578D2", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x60]", + "string": null + }, + { + "address": "0x004578D5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x004578D8", + "mnemonic": "call", + "op_str": "0x405540", + "string": null + }, + { + "address": "0x004578DD", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x004578E0", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578E1", + "mnemonic": "call", + "op_str": "0x405560", + "string": null + }, + { + "address": "0x004578E6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x004578E9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004578EA", + "mnemonic": "mov", + "op_str": "al, 0x5d", + "string": null + }, + { + "address": "0x004578EC", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0x77], al", + "string": null + }, + { + "address": "0x004578EF", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0x78], 1", + "string": null + }, + { + "address": "0x004578F3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x74]", + "string": null + }, + { + "address": "0x004578F6", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x78]", + "string": null + }, + { + "address": "0x004578F9", + "mnemonic": "call", + "op_str": "0x405538", + "string": null + }, + { + "address": "0x004578FE", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x74]", + "string": null + }, + { + "address": "0x00457901", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457902", + "mnemonic": "call", + "op_str": "0x405560", + "string": null + }, + { + "address": "0x00457907", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x0045790A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045790B", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x0045790D", + "mnemonic": "mov", + "op_str": "al, byte ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x00457910", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457911", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00457914", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457915", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00457918", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457919", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0045791A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0045791C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045791D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x88]", + "string": null + }, + { + "address": "0x00457923", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457924", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457927", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457928", + "mnemonic": "push", + "op_str": "0x457cd8", + "string": null + }, + { + "address": "0x0045792D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x8c]", + "string": null + }, + { + "address": "0x00457933", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457934", + "mnemonic": "call", + "op_str": "0x453ab4", + "string": null + }, + { + "address": "0x00457939", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x8c]", + "string": null + }, + { + "address": "0x0045793F", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00457941", + "mnemonic": "mov", + "op_str": "edx, 0xf", + "string": null + }, + { + "address": "0x00457946", + "mnemonic": "call", + "op_str": "0x458be0", + "string": null + }, + { + "address": "0x0045794B", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x88]", + "string": null + }, + { + "address": "0x00457951", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00457952", + "mnemonic": "call", + "op_str": "0x405560", + "string": null + }, + { + "address": "0x00457957", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x38]", + "string": null + }, + { + "address": "0x0045795A", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x0045795D", + "mnemonic": "call", + "op_str": "0x4054dc", + "string": null + }, + { + "address": "0x00457962", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x10]", + "string": null + }, + { + "address": "0x00457965", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457968", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x0045796D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00457970", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00457972", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00457977", + "mnemonic": "call", + "op_str": "0x402ef8", + "string": null + }, + { + "address": "0x0045797C", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0xc], 0", + "string": null + }, + { + "address": "0x00457980", + "mnemonic": "je", + "op_str": "0x457b83", + "string": null + }, + { + "address": "0x00457986", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457989", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045798A", + "mnemonic": "push", + "op_str": "0x457cb4", + "string": null + }, + { + "address": "0x0045798F", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x00457994", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x00457996", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457999", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045799A", + "mnemonic": "push", + "op_str": "0x457ce4", + "string": null + }, + { + "address": "0x0045799F", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x004579A4", + "mnemonic": "add", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x004579A6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004579A9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004579AA", + "mnemonic": "push", + "op_str": "0x457cf0", + "string": null + }, + { + "address": "0x004579AF", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x004579B4", + "mnemonic": "add", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x004579B6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004579B9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004579BA", + "mnemonic": "push", + "op_str": "0x457c9c", + "string": null + }, + { + "address": "0x004579BF", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x004579C4", + "mnemonic": "add", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x004579C6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004579C9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004579CA", + "mnemonic": "push", + "op_str": "0x457c78", + "string": null + }, + { + "address": "0x004579CF", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x004579D4", + "mnemonic": "add", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x004579D6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004579D9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004579DA", + "mnemonic": "push", + "op_str": "0x457ccc", + "string": null + }, + { + "address": "0x004579DF", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x004579E4", + "mnemonic": "add", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x004579E6", + "mnemonic": "inc", + "op_str": "ebx", + "string": null + }, + { + "address": "0x004579E7", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 8], ebx", + "string": null + }, + { + "address": "0x004579EA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x004579ED", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004579EE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x004579F1", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x004579F6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x456cdc]", + "string": null + }, + { + "address": "0x004579FC", + "mnemonic": "call", + "op_str": "0x405b84", + "string": null + }, + { + "address": "0x00457A01", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00457A04", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp - 8], 1", + "string": null + }, + { + "address": "0x00457A08", + "mnemonic": "jne", + "op_str": "0x457a1c", + "string": null + }, + { + "address": "0x00457A0A", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457A0B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00457A0E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A11", + "mnemonic": "call", + "op_str": "0x456d00", + "string": null + }, + { + "address": "0x00457A16", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457A17", + "mnemonic": "jmp", + "op_str": "0x457b83", + "string": null + }, + { + "address": "0x00457A1C", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 8], 1", + "string": null + }, + { + "address": "0x00457A23", + "mnemonic": "jmp", + "op_str": "0x457a34", + "string": null + }, + { + "address": "0x00457A25", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457A26", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A29", + "mnemonic": "mov", + "op_str": "edx, 0x457cb4", + "string": null + }, + { + "address": "0x00457A2E", + "mnemonic": "call", + "op_str": "0x456f3c", + "string": null + }, + { + "address": "0x00457A33", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457A34", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A37", + "mnemonic": "mov", + "op_str": "eax, 0x457cb4", + "string": null + }, + { + "address": "0x00457A3C", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00457A41", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457A43", + "mnemonic": "jg", + "op_str": "0x457a25", + "string": null + }, + { + "address": "0x00457A45", + "mnemonic": "jmp", + "op_str": "0x457a56", + "string": null + }, + { + "address": "0x00457A47", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457A48", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A4B", + "mnemonic": "mov", + "op_str": "edx, 0x457cf0", + "string": null + }, + { + "address": "0x00457A50", + "mnemonic": "call", + "op_str": "0x456f3c", + "string": null + }, + { + "address": "0x00457A55", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457A56", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A59", + "mnemonic": "mov", + "op_str": "eax, 0x457cf0", + "string": null + }, + { + "address": "0x00457A5E", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00457A63", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457A65", + "mnemonic": "jg", + "op_str": "0x457a47", + "string": null + }, + { + "address": "0x00457A67", + "mnemonic": "jmp", + "op_str": "0x457a78", + "string": null + }, + { + "address": "0x00457A69", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457A6A", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A6D", + "mnemonic": "mov", + "op_str": "edx, 0x457ce4", + "string": null + }, + { + "address": "0x00457A72", + "mnemonic": "call", + "op_str": "0x456f3c", + "string": null + }, + { + "address": "0x00457A77", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457A78", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A7B", + "mnemonic": "mov", + "op_str": "eax, 0x457ce4", + "string": null + }, + { + "address": "0x00457A80", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00457A85", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457A87", + "mnemonic": "jg", + "op_str": "0x457a69", + "string": null + }, + { + "address": "0x00457A89", + "mnemonic": "jmp", + "op_str": "0x457a9a", + "string": null + }, + { + "address": "0x00457A8B", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457A8C", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A8F", + "mnemonic": "mov", + "op_str": "edx, 0x457c78", + "string": null + }, + { + "address": "0x00457A94", + "mnemonic": "call", + "op_str": "0x456f3c", + "string": null + }, + { + "address": "0x00457A99", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457A9A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457A9D", + "mnemonic": "mov", + "op_str": "eax, 0x457c78", + "string": null + }, + { + "address": "0x00457AA2", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00457AA7", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457AA9", + "mnemonic": "jg", + "op_str": "0x457a8b", + "string": null + }, + { + "address": "0x00457AAB", + "mnemonic": "jmp", + "op_str": "0x457abc", + "string": null + }, + { + "address": "0x00457AAD", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457AAE", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457AB1", + "mnemonic": "mov", + "op_str": "edx, 0x457c9c", + "string": null + }, + { + "address": "0x00457AB6", + "mnemonic": "call", + "op_str": "0x456f3c", + "string": null + }, + { + "address": "0x00457ABB", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457ABC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457ABF", + "mnemonic": "mov", + "op_str": "eax, 0x457c9c", + "string": null + }, + { + "address": "0x00457AC4", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00457AC9", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457ACB", + "mnemonic": "jg", + "op_str": "0x457aad", + "string": null + }, + { + "address": "0x00457ACD", + "mnemonic": "mov", + "op_str": "ebx, 1", + "string": null + }, + { + "address": "0x00457AD2", + "mnemonic": "jmp", + "op_str": "0x457b11", + "string": null + }, + { + "address": "0x00457AD4", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00457AD5", + "mnemonic": "push", + "op_str": "0x457ccc", + "string": null + }, + { + "address": "0x00457ADA", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x94]", + "string": null + }, + { + "address": "0x00457AE0", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00457AE2", + "mnemonic": "call", + "op_str": "0x408970", + "string": null + }, + { + "address": "0x00457AE7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x94]", + "string": null + }, + { + "address": "0x00457AED", + "mnemonic": "push", + "op_str": "0x457cd8", + "string": null + }, + { + "address": "0x00457AF2", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x90]", + "string": null + }, + { + "address": "0x00457AF8", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00457AFD", + "mnemonic": "call", + "op_str": "0x40489c", + "string": null + }, + { + "address": "0x00457B02", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x90]", + "string": null + }, + { + "address": "0x00457B08", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457B0B", + "mnemonic": "call", + "op_str": "0x456f3c", + "string": null + }, + { + "address": "0x00457B10", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457B11", + "mnemonic": "push", + "op_str": "0x457ccc", + "string": null + }, + { + "address": "0x00457B16", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x9c]", + "string": null + }, + { + "address": "0x00457B1C", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00457B1E", + "mnemonic": "call", + "op_str": "0x408970", + "string": null + }, + { + "address": "0x00457B23", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x9c]", + "string": null + }, + { + "address": "0x00457B29", + "mnemonic": "push", + "op_str": "0x457cd8", + "string": null + }, + { + "address": "0x00457B2E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x98]", + "string": null + }, + { + "address": "0x00457B34", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00457B39", + "mnemonic": "call", + "op_str": "0x40489c", + "string": null + }, + { + "address": "0x00457B3E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x98]", + "string": null + }, + { + "address": "0x00457B44", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457B47", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00457B4C", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457B4E", + "mnemonic": "jg", + "op_str": "0x457ad4", + "string": null + }, + { + "address": "0x00457B50", + "mnemonic": "inc", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00457B51", + "mnemonic": "cmp", + "op_str": "ebx, 0xa", + "string": null + }, + { + "address": "0x00457B54", + "mnemonic": "jne", + "op_str": "0x457b11", + "string": null + }, + { + "address": "0x00457B56", + "mnemonic": "push", + "op_str": "0x457cfc", + "string": null + }, + { + "address": "0x00457B5B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00457B61", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edi]", + "string": null + }, + { + "address": "0x00457B63", + "mnemonic": "add", + "op_str": "edx, 0x40", + "string": null + }, + { + "address": "0x00457B66", + "mnemonic": "call", + "op_str": "0x404704", + "string": null + }, + { + "address": "0x00457B6B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00457B71", + "mnemonic": "push", + "op_str": "0x457cd8", + "string": null + }, + { + "address": "0x00457B76", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc]", + "string": null + }, + { + "address": "0x00457B79", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00457B7E", + "mnemonic": "call", + "op_str": "0x40489c", + "string": null + }, + { + "address": "0x00457B83", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00457B85", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00457B88", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00457B8B", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ecx]", + "string": null + }, + { + "address": "0x00457B8D", + "mnemonic": "mov", + "op_str": "dword ptr [edx + eax*8], ebx", + "string": null + }, + { + "address": "0x00457B90", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ecx + 4]", + "string": null + }, + { + "address": "0x00457B93", + "mnemonic": "mov", + "op_str": "dword ptr [edx + eax*8 + 4], ebx", + "string": null + }, + { + "address": "0x00457B97", + "mnemonic": "jmp", + "op_str": "0x457ba6", + "string": null + }, + { + "address": "0x00457B99", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc]", + "string": null + }, + { + "address": "0x00457B9C", + "mnemonic": "mov", + "op_str": "edx, 0x457c60", + "string": null + }, + { + "address": "0x00457BA1", + "mnemonic": "call", + "op_str": "0x4047e4", + "string": null + }, + { + "address": "0x00457BA6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00457BA9", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x00457BAE", + "mnemonic": "lea", + "op_str": "edx, [esi + 2]", + "string": null + }, + { + "address": "0x00457BB1", + "mnemonic": "cmp", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00457BB3", + "mnemonic": "jl", + "op_str": "0x457b99", + "string": "뛇擅`|E" + }, + { + "address": "0x00457BB5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00457BB8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00457BBB", + "mnemonic": "call", + "op_str": "0x404578", + "string": null + }, + { + "address": "0x00457BC0", + "mnemonic": "inc", + "op_str": "dword ptr [edi]", + "string": null + }, + { + "address": "0x00457BC2", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00457BC4", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x00457BC5", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457BC6", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00457BC7", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00457BCA", + "mnemonic": "push", + "op_str": "0x457c4d", + "string": null + }, + { + "address": "0x00457BCF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00457BD5", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x00457BDA", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x00457BDF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x88]", + "string": null + }, + { + "address": "0x00457BE5", + "mnemonic": "call", + "op_str": "0x405594", + "string": null + }, + { + "address": "0x00457BEA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x74]", + "string": null + }, + { + "address": "0x00457BED", + "mnemonic": "call", + "op_str": "0x405594", + "string": null + }, + { + "address": "0x00457BF2", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x64]", + "string": null + }, + { + "address": "0x00457BF5", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x00457BFA", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x00457BFF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00457C02", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x40109c]", + "string": null + }, + { + "address": "0x00457C08", + "mnemonic": "mov", + "op_str": "ecx, 2", + "string": null + }, + { + "address": "0x00457C0D", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x00457C12", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c]", + "string": null + }, + { + "address": "0x00457C15", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00457C1A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x00457C1D", + "mnemonic": "call", + "op_str": "0x405594", + "string": null + }, + { + "address": "0x00457C22", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x00457C25", + "mnemonic": "mov", + "op_str": "edx, 8", + "string": null + }, + { + "address": "0x00457C2A", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x00457C2F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00457C32", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x456cdc]", + "string": null + }, + { + "address": "0x00457C38", + "mnemonic": "call", + "op_str": "0x405ca4", + "string": null + }, + { + "address": "0x00457C3D", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0xc]", + "string": null + }, + { + "address": "0x00457C40", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00457C45", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "GET_ROUND_CUT": { + "rva": "0x59CC0", + "instructions": [ + { + "address": "0x00459CC0", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00459CC1", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x00459CC3", + "mnemonic": "mov", + "op_str": "ecx, 0xb", + "string": null + }, + { + "address": "0x00459CC8", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00459CCA", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00459CCC", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00459CCD", + "mnemonic": "jne", + "op_str": "0x459cc8", + "string": null + }, + { + "address": "0x00459CCF", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00459CD0", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459CD1", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00459CD2", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x00459CD3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00459CD6", + "mnemonic": "call", + "op_str": "0x4049c4", + "string": null + }, + { + "address": "0x00459CDB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00459CDE", + "mnemonic": "call", + "op_str": "0x4049c4", + "string": null + }, + { + "address": "0x00459CE3", + "mnemonic": "mov", + "op_str": "ecx, 2", + "string": null + }, + { + "address": "0x00459CE8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459CEB", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c78]", + "string": null + }, + { + "address": "0x00459CF1", + "mnemonic": "call", + "op_str": "0x404f50", + "string": null + }, + { + "address": "0x00459CF6", + "mnemonic": "mov", + "op_str": "ecx, 2", + "string": null + }, + { + "address": "0x00459CFB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x00459CFE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c9c]", + "string": null + }, + { + "address": "0x00459D04", + "mnemonic": "call", + "op_str": "0x404f50", + "string": null + }, + { + "address": "0x00459D09", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00459D0B", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00459D0C", + "mnemonic": "push", + "op_str": "0x45a12e", + "string": null + }, + { + "address": "0x00459D11", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00459D14", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00459D17", + "mnemonic": "lea", + "op_str": "eax, [ebp - 8]", + "string": null + }, + { + "address": "0x00459D1A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00459D1D", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00459D22", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00459D24", + "mnemonic": "push", + "op_str": "0x45a14c", + "string": null + }, + { + "address": "0x00459D29", + "mnemonic": "lea", + "op_str": "eax, [ebp - 8]", + "string": null + }, + { + "address": "0x00459D2C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D2D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x00459D30", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D31", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x00459D36", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00459D38", + "mnemonic": "push", + "op_str": "0x45a158", + "string": null + }, + { + "address": "0x00459D3D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 8]", + "string": null + }, + { + "address": "0x00459D40", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D41", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c]", + "string": null + }, + { + "address": "0x00459D44", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D45", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x00459D4A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00459D4C", + "mnemonic": "push", + "op_str": "0x45a164", + "string": null + }, + { + "address": "0x00459D51", + "mnemonic": "lea", + "op_str": "eax, [ebp - 8]", + "string": null + }, + { + "address": "0x00459D54", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D55", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x40]", + "string": null + }, + { + "address": "0x00459D58", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D59", + "mnemonic": "call", + "op_str": "0x456090", + "string": null + }, + { + "address": "0x00459D5E", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x44]", + "string": null + }, + { + "address": "0x00459D61", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00459D64", + "mnemonic": "call", + "op_str": "0x4086a0", + "string": null + }, + { + "address": "0x00459D69", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x44]", + "string": null + }, + { + "address": "0x00459D6C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 8]", + "string": null + }, + { + "address": "0x00459D6F", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00459D74", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc]", + "string": null + }, + { + "address": "0x00459D77", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00459D7A", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00459D7F", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 1], 0", + "string": null + }, + { + "address": "0x00459D83", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00459D86", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D87", + "mnemonic": "push", + "op_str": "0x45a170", + "string": null + }, + { + "address": "0x00459D8C", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x00459D91", + "mnemonic": "mov", + "op_str": "edi, eax", + "string": null + }, + { + "address": "0x00459D93", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00459D96", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459D97", + "mnemonic": "push", + "op_str": "0x45a17c", + "string": null + }, + { + "address": "0x00459D9C", + "mnemonic": "call", + "op_str": "0x455ffc", + "string": null + }, + { + "address": "0x00459DA1", + "mnemonic": "mov", + "op_str": "esi, eax", + "string": null + }, + { + "address": "0x00459DA3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459DA6", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00459DA8", + "mnemonic": "mov", + "op_str": "edx, 8", + "string": null + }, + { + "address": "0x00459DAD", + "mnemonic": "call", + "op_str": "0x402ef8", + "string": null + }, + { + "address": "0x00459DB2", + "mnemonic": "lea", + "op_str": "ebx, [esi + 1]", + "string": null + }, + { + "address": "0x00459DB5", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459DB6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459DB9", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00459DBE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c78]", + "string": null + }, + { + "address": "0x00459DC4", + "mnemonic": "call", + "op_str": "0x405b84", + "string": null + }, + { + "address": "0x00459DC9", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00459DCC", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459DCD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00459DD0", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00459DD5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c78]", + "string": null + }, + { + "address": "0x00459DDB", + "mnemonic": "call", + "op_str": "0x405b84", + "string": null + }, + { + "address": "0x00459DE0", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00459DE3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x00459DE6", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00459DE8", + "mnemonic": "mov", + "op_str": "edx, 8", + "string": null + }, + { + "address": "0x00459DED", + "mnemonic": "call", + "op_str": "0x402ef8", + "string": null + }, + { + "address": "0x00459DF2", + "mnemonic": "lea", + "op_str": "ebx, [edi + 1]", + "string": null + }, + { + "address": "0x00459DF5", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459DF6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x00459DF9", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00459DFE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c9c]", + "string": null + }, + { + "address": "0x00459E04", + "mnemonic": "call", + "op_str": "0x405b84", + "string": null + }, + { + "address": "0x00459E09", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00459E0C", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459E0D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x24]", + "string": null + }, + { + "address": "0x00459E10", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00459E15", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c9c]", + "string": null + }, + { + "address": "0x00459E1B", + "mnemonic": "call", + "op_str": "0x405b84", + "string": null + }, + { + "address": "0x00459E20", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00459E23", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459E26", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00459E27", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x00459E29", + "mnemonic": "call", + "op_str": "0x4059d0", + "string": null + }, + { + "address": "0x00459E2E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459E2F", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00459E32", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459E33", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00459E35", + "mnemonic": "call", + "op_str": "0x4059d0", + "string": null + }, + { + "address": "0x00459E3A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459E3B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00459E3E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x2c], eax", + "string": null + }, + { + "address": "0x00459E41", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459E42", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x2c]", + "string": null + }, + { + "address": "0x00459E45", + "mnemonic": "call", + "op_str": "0x4059d0", + "string": null + }, + { + "address": "0x00459E4A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459E4B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x24]", + "string": null + }, + { + "address": "0x00459E4E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x30], eax", + "string": null + }, + { + "address": "0x00459E51", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459E52", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x30]", + "string": null + }, + { + "address": "0x00459E55", + "mnemonic": "call", + "op_str": "0x4059d0", + "string": null + }, + { + "address": "0x00459E5A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459E5B", + "mnemonic": "lea", + "op_str": "ecx, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00459E5E", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x00459E60", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00459E63", + "mnemonic": "call", + "op_str": "0x458774", + "string": null + }, + { + "address": "0x00459E68", + "mnemonic": "test", + "op_str": "edi, edi", + "string": null + }, + { + "address": "0x00459E6A", + "mnemonic": "jle", + "op_str": "0x45a0d3", + "string": null + }, + { + "address": "0x00459E70", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x24]", + "string": null + }, + { + "address": "0x00459E73", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459E76", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x00459E79", + "mnemonic": "mov", + "op_str": "ecx, 0x45a170", + "string": null + }, + { + "address": "0x00459E7E", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00459E83", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x48]", + "string": null + }, + { + "address": "0x00459E86", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x45dd68]", + "string": null + }, + { + "address": "0x00459E8C", + "mnemonic": "call", + "op_str": "0x404920", + "string": null + }, + { + "address": "0x00459E91", + "mnemonic": "je", + "op_str": "0x459f00", + "string": null + }, + { + "address": "0x00459E93", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x24]", + "string": null + }, + { + "address": "0x00459E96", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459E99", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00459E9C", + "mnemonic": "mov", + "op_str": "ecx, 0x45a170", + "string": null + }, + { + "address": "0x00459EA1", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00459EA6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00459EA9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x45dd6c]", + "string": null + }, + { + "address": "0x00459EAF", + "mnemonic": "call", + "op_str": "0x404920", + "string": null + }, + { + "address": "0x00459EB4", + "mnemonic": "je", + "op_str": "0x459f00", + "string": null + }, + { + "address": "0x00459EB6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x24]", + "string": null + }, + { + "address": "0x00459EB9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459EBC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x50]", + "string": null + }, + { + "address": "0x00459EBF", + "mnemonic": "mov", + "op_str": "ecx, 0x45a170", + "string": null + }, + { + "address": "0x00459EC4", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00459EC9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00459ECC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x45dd70]", + "string": null + }, + { + "address": "0x00459ED2", + "mnemonic": "call", + "op_str": "0x404920", + "string": null + }, + { + "address": "0x00459ED7", + "mnemonic": "je", + "op_str": "0x459f00", + "string": null + }, + { + "address": "0x00459ED9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x24]", + "string": null + }, + { + "address": "0x00459EDC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459EDF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x54]", + "string": null + }, + { + "address": "0x00459EE2", + "mnemonic": "mov", + "op_str": "ecx, 0x45a170", + "string": null + }, + { + "address": "0x00459EE7", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00459EEC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x00459EEF", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x45dd94]", + "string": null + }, + { + "address": "0x00459EF5", + "mnemonic": "call", + "op_str": "0x404920", + "string": null + }, + { + "address": "0x00459EFA", + "mnemonic": "jne", + "op_str": "0x45a0d3", + "string": null + }, + { + "address": "0x00459F00", + "mnemonic": "mov", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x00459F02", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459F03", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00459F05", + "mnemonic": "jle", + "op_str": "0x459f41", + "string": null + }, + { + "address": "0x00459F07", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x34], eax", + "string": null + }, + { + "address": "0x00459F0A", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], 1", + "string": null + }, + { + "address": "0x00459F11", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459F14", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459F17", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [eax + edx*4]", + "string": null + }, + { + "address": "0x00459F1A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00459F1D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459F20", + "mnemonic": "mov", + "op_str": "esi, dword ptr [eax + edx*4]", + "string": null + }, + { + "address": "0x00459F23", + "mnemonic": "sub", + "op_str": "esi, ebx", + "string": null + }, + { + "address": "0x00459F25", + "mnemonic": "jl", + "op_str": "0x459f39", + "string": null + }, + { + "address": "0x00459F27", + "mnemonic": "inc", + "op_str": "esi", + "string": null + }, + { + "address": "0x00459F28", + "mnemonic": "lea", + "op_str": "eax, [ebp - 8]", + "string": null + }, + { + "address": "0x00459F2B", + "mnemonic": "call", + "op_str": "0x404a2c", + "string": null + }, + { + "address": "0x00459F30", + "mnemonic": "mov", + "op_str": "byte ptr [eax + ebx - 1], 0x40", + "string": null + }, + { + "address": "0x00459F35", + "mnemonic": "inc", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459F36", + "mnemonic": "dec", + "op_str": "esi", + "string": null + }, + { + "address": "0x00459F37", + "mnemonic": "jne", + "op_str": "0x459f28", + "string": null + }, + { + "address": "0x00459F39", + "mnemonic": "inc", + "op_str": "dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459F3C", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x00459F3F", + "mnemonic": "jne", + "op_str": "0x459f11", + "string": null + }, + { + "address": "0x00459F41", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459F44", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459F47", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x14], eax", + "string": null + }, + { + "address": "0x00459F4A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00459F4D", + "mnemonic": "mov", + "op_str": "eax, 0x45a188", + "string": null + }, + { + "address": "0x00459F52", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00459F57", + "mnemonic": "mov", + "op_str": "esi, eax", + "string": null + }, + { + "address": "0x00459F59", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00459F5C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459F5F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459F60", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00459F61", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00459F64", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459F65", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x00459F68", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459F69", + "mnemonic": "call", + "op_str": "0x453df8", + "string": null + }, + { + "address": "0x00459F6E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x00459F71", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00459F74", + "mnemonic": "call", + "op_str": "0x404578", + "string": null + }, + { + "address": "0x00459F79", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x00459F7B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00459F7E", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x00459F83", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00459F85", + "mnemonic": "jle", + "op_str": "0x459fc9", + "string": null + }, + { + "address": "0x00459F87", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x34], eax", + "string": null + }, + { + "address": "0x00459F8A", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], 1", + "string": null + }, + { + "address": "0x00459F91", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00459F94", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459F97", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + edx - 1]", + "string": null + }, + { + "address": "0x00459F9B", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x00459F9D", + "mnemonic": "je", + "op_str": "0x459fc1", + "string": null + }, + { + "address": "0x00459F9F", + "mnemonic": "sub", + "op_str": "al, 0x1e", + "string": null + }, + { + "address": "0x00459FA1", + "mnemonic": "je", + "op_str": "0x459fc1", + "string": null + }, + { + "address": "0x00459FA3", + "mnemonic": "sub", + "op_str": "al, 0x20", + "string": null + }, + { + "address": "0x00459FA5", + "mnemonic": "je", + "op_str": "0x459fc1", + "string": null + }, + { + "address": "0x00459FA7", + "mnemonic": "inc", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00459FA8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x00459FAB", + "mnemonic": "cmp", + "op_str": "ebx, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x00459FAE", + "mnemonic": "jne", + "op_str": "0x459fb8", + "string": null + }, + { + "address": "0x00459FB0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459FB3", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x14], eax", + "string": null + }, + { + "address": "0x00459FB6", + "mnemonic": "jmp", + "op_str": "0x459fc1", + "string": null + }, + { + "address": "0x00459FB8", + "mnemonic": "cmp", + "op_str": "esi, ebx", + "string": null + }, + { + "address": "0x00459FBA", + "mnemonic": "jne", + "op_str": "0x459fc1", + "string": null + }, + { + "address": "0x00459FBC", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459FBF", + "mnemonic": "jmp", + "op_str": "0x459fc9", + "string": null + }, + { + "address": "0x00459FC1", + "mnemonic": "inc", + "op_str": "dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00459FC4", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x00459FC7", + "mnemonic": "jne", + "op_str": "0x459f91", + "string": null + }, + { + "address": "0x00459FC9", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00459FCA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00459FCD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459FCE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00459FD1", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459FD2", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00459FD5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00459FD6", + "mnemonic": "call", + "op_str": "0x453df8", + "string": null + }, + { + "address": "0x00459FDB", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00459FDE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00459FE1", + "mnemonic": "call", + "op_str": "0x404578", + "string": null + }, + { + "address": "0x00459FE6", + "mnemonic": "jmp", + "op_str": "0x459ffa", + "string": null + }, + { + "address": "0x00459FE8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00459FEB", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00459FF0", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00459FF5", + "mnemonic": "call", + "op_str": "0x404a74", + "string": null + }, + { + "address": "0x00459FFA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00459FFD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00459FFF", + "mnemonic": "cmp", + "op_str": "byte ptr [eax], 0x20", + "string": null + }, + { + "address": "0x0045A002", + "mnemonic": "je", + "op_str": "0x459fe8", + "string": null + }, + { + "address": "0x0045A004", + "mnemonic": "jmp", + "op_str": "0x45a01f", + "string": null + }, + { + "address": "0x0045A006", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x0045A009", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0045A00B", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045A010", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x0045A012", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x0045A015", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x0045A01A", + "mnemonic": "call", + "op_str": "0x404a74", + "string": null + }, + { + "address": "0x0045A01F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x0045A022", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0045A024", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045A029", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x0045A02C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x0045A02E", + "mnemonic": "cmp", + "op_str": "byte ptr [edx + eax - 1], 0x20", + "string": null + }, + { + "address": "0x0045A033", + "mnemonic": "je", + "op_str": "0x45a006", + "string": null + }, + { + "address": "0x0045A035", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x0045A038", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x0045A03B", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x14], eax", + "string": null + }, + { + "address": "0x0045A03E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x0045A041", + "mnemonic": "mov", + "op_str": "esi, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x0045A044", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x0045A046", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0045A049", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045A04E", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0045A050", + "mnemonic": "jle", + "op_str": "0x45a094", + "string": null + }, + { + "address": "0x0045A052", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x34], eax", + "string": null + }, + { + "address": "0x0045A055", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], 1", + "string": null + }, + { + "address": "0x0045A05C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0045A05F", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0045A062", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + edx - 1]", + "string": null + }, + { + "address": "0x0045A066", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x0045A068", + "mnemonic": "je", + "op_str": "0x45a08c", + "string": null + }, + { + "address": "0x0045A06A", + "mnemonic": "sub", + "op_str": "al, 0x1e", + "string": null + }, + { + "address": "0x0045A06C", + "mnemonic": "je", + "op_str": "0x45a08c", + "string": null + }, + { + "address": "0x0045A06E", + "mnemonic": "sub", + "op_str": "al, 0x20", + "string": null + }, + { + "address": "0x0045A070", + "mnemonic": "je", + "op_str": "0x45a08c", + "string": null + }, + { + "address": "0x0045A072", + "mnemonic": "inc", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0045A073", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x0045A076", + "mnemonic": "cmp", + "op_str": "ebx, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x0045A079", + "mnemonic": "jne", + "op_str": "0x45a083", + "string": null + }, + { + "address": "0x0045A07B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0045A07E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x14], eax", + "string": null + }, + { + "address": "0x0045A081", + "mnemonic": "jmp", + "op_str": "0x45a08c", + "string": null + }, + { + "address": "0x0045A083", + "mnemonic": "cmp", + "op_str": "esi, ebx", + "string": null + }, + { + "address": "0x0045A085", + "mnemonic": "jne", + "op_str": "0x45a08c", + "string": null + }, + { + "address": "0x0045A087", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0045A08A", + "mnemonic": "jmp", + "op_str": "0x45a094", + "string": null + }, + { + "address": "0x0045A08C", + "mnemonic": "inc", + "op_str": "dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0045A08F", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x0045A092", + "mnemonic": "jne", + "op_str": "0x45a05c", + "string": null + }, + { + "address": "0x0045A094", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x0045A097", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045A098", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x24]", + "string": null + }, + { + "address": "0x0045A09B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + edi*4]", + "string": null + }, + { + "address": "0x0045A09E", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045A0A3", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045A0A6", + "mnemonic": "sub", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x0045A0A8", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0045A0A9", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0045A0AE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0045A0B1", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x0045A0B6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x0045A0B9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045A0BA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0045A0BD", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045A0C2", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x0045A0C4", + "mnemonic": "lea", + "op_str": "edx, [esi + 1]", + "string": null + }, + { + "address": "0x0045A0C7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0045A0CA", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x0045A0CF", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 1], 1", + "string": null + }, + { + "address": "0x0045A0D3", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0045A0D5", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x0045A0D6", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0045A0D7", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0045A0D8", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x0045A0DB", + "mnemonic": "push", + "op_str": "0x45a135", + "string": null + }, + { + "address": "0x0045A0E0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x0045A0E3", + "mnemonic": "mov", + "op_str": "edx, 0xa", + "string": null + }, + { + "address": "0x0045A0E8", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x0045A0ED", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x0045A0F0", + "mnemonic": "mov", + "op_str": "ecx, 2", + "string": null + }, + { + "address": "0x0045A0F5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c9c]", + "string": null + }, + { + "address": "0x0045A0FB", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x0045A100", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x0045A103", + "mnemonic": "mov", + "op_str": "ecx, 2", + "string": null + }, + { + "address": "0x0045A108", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x459c78]", + "string": null + }, + { + "address": "0x0045A10E", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x0045A113", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc]", + "string": null + }, + { + "address": "0x0045A116", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x0045A11B", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x0045A120", + "mnemonic": "lea", + "op_str": "eax, [ebp + 8]", + "string": null + }, + { + "address": "0x0045A123", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x0045A128", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x0045A12D", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "MINT": { + "rva": "0x55218", + "instructions": [ + { + "address": "0x00455218", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00455219", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0045521B", + "mnemonic": "add", + "op_str": "esp, -0x1c", + "string": null + }, + { + "address": "0x0045521E", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00455220", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x1c], eax", + "string": null + }, + { + "address": "0x00455223", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x18], eax", + "string": null + }, + { + "address": "0x00455226", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x14], eax", + "string": null + }, + { + "address": "0x00455229", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0045522B", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0045522C", + "mnemonic": "push", + "op_str": "0x4552f4", + "string": null + }, + { + "address": "0x00455231", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00455234", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00455237", + "mnemonic": "mov", + "op_str": "ax, word ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x0045523B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045523C", + "mnemonic": "push", + "op_str": "dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0045523F", + "mnemonic": "push", + "op_str": "dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00455242", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00455245", + "mnemonic": "mov", + "op_str": "eax, 0x45530c", + "string": "0.##############" + }, + { + "address": "0x0045524A", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x0045524F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00455252", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00455253", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00455256", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00455257", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x0045525C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x0045525F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00455262", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00455267", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0045526A", + "mnemonic": "fld", + "op_str": "xword ptr [0x455320]", + "string": null + }, + { + "address": "0x00455270", + "mnemonic": "fcompp", + "op_str": "", + "string": null + }, + { + "address": "0x00455272", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00455274", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00455275", + "mnemonic": "jae", + "op_str": "0x45529b", + "string": "딼痢hSE" + }, + { + "address": "0x00455277", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x0045527A", + "mnemonic": "mov", + "op_str": "ecx, 0x455334", + "string": " 값은 계산의 한계범위를 벗어난 값입니다." + }, + { + "address": "0x0045527F", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00455282", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00455287", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x0045528A", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x0045528C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x407ab4]", + "string": null + }, + { + "address": "0x00455291", + "mnemonic": "call", + "op_str": "0x40b1d0", + "string": null + }, + { + "address": "0x00455296", + "mnemonic": "call", + "op_str": "0x403efc", + "string": "\t픲\n멈" + }, + { + "address": "0x0045529B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045529E", + "mnemonic": "mov", + "op_str": "eax, 0x455368", + "string": null + }, + { + "address": "0x004552A3", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x004552A8", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004552AA", + "mnemonic": "jle", + "op_str": "0x4552cd", + "string": null + }, + { + "address": "0x004552AC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004552AF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004552B0", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004552B3", + "mnemonic": "mov", + "op_str": "eax, 0x455368", + "string": null + }, + { + "address": "0x004552B8", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x004552BD", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x004552BF", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004552C0", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x004552C5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004552C8", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004552CD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004552D0", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x004552D5", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x004552D8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004552D9", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004552DB", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x004552DC", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004552DD", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004552DE", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x004552E1", + "mnemonic": "push", + "op_str": "0x4552fb", + "string": null + }, + { + "address": "0x004552E6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x004552E9", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x004552EE", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x004552F3", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "MROUNDUD": { + "rva": "0x54044", + "instructions": [ + { + "address": "0x00454044", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00454045", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x00454047", + "mnemonic": "mov", + "op_str": "ecx, 0x22", + "string": null + }, + { + "address": "0x0045404C", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0045404E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454050", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454051", + "mnemonic": "jne", + "op_str": "0x45404c", + "string": null + }, + { + "address": "0x00454053", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00454054", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00454055", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x00454056", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00454058", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00454059", + "mnemonic": "push", + "op_str": "0x4546ce", + "string": null + }, + { + "address": "0x0045405E", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00454061", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00454064", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00454067", + "mnemonic": "mov", + "op_str": "edx, 0xd", + "string": null + }, + { + "address": "0x0045406C", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0045406E", + "mnemonic": "call", + "op_str": "0x4054fc", + "string": null + }, + { + "address": "0x00454073", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x40]", + "string": null + }, + { + "address": "0x00454076", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x44]", + "string": null + }, + { + "address": "0x00454079", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x48]", + "string": null + }, + { + "address": "0x0045407C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4c]", + "string": null + }, + { + "address": "0x0045407F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00454082", + "mnemonic": "mov", + "op_str": "edx, 0xf", + "string": null + }, + { + "address": "0x00454087", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00454089", + "mnemonic": "call", + "op_str": "0x4054fc", + "string": null + }, + { + "address": "0x0045408E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00454091", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x00454094", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x00454097", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x0045409A", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0xb", + "string": null + }, + { + "address": "0x0045409E", + "mnemonic": "jle", + "op_str": "0x4540b0", + "string": null + }, + { + "address": "0x004540A0", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004540A3", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x004540A5", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x4546e4]", + "string": null + }, + { + "address": "0x004540AB", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x004540AD", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x004540AE", + "mnemonic": "jbe", + "op_str": "0x4540b4", + "string": null + }, + { + "address": "0x004540B0", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004540B2", + "mnemonic": "jmp", + "op_str": "0x4540b6", + "string": null + }, + { + "address": "0x004540B4", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x004540B6", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004540B7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c]", + "string": null + }, + { + "address": "0x004540BA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004540BB", + "mnemonic": "call", + "op_str": "0x4535a0", + "string": null + }, + { + "address": "0x004540C0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c]", + "string": null + }, + { + "address": "0x004540C3", + "mnemonic": "call", + "op_str": "0x4054ac", + "string": null + }, + { + "address": "0x004540C8", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x2c], eax", + "string": null + }, + { + "address": "0x004540CB", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004540CE", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x004540D0", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x004540D3", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x004540D6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004540D7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x64]", + "string": null + }, + { + "address": "0x004540DA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004540DB", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x2c]", + "string": null + }, + { + "address": "0x004540DE", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x004540E3", + "mnemonic": "mov", + "op_str": "eax, 0x4546f0", + "string": "#######################" + }, + { + "address": "0x004540E8", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004540ED", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x64]", + "string": null + }, + { + "address": "0x004540F0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x004540F3", + "mnemonic": "mov", + "op_str": "edx, 0x454710", + "string": null + }, + { + "address": "0x004540F8", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x004540FD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x60]", + "string": null + }, + { + "address": "0x00454100", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454103", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x00454108", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045410B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045410C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x68]", + "string": null + }, + { + "address": "0x0045410F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454110", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x00454115", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x00454118", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045411B", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00454120", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454123", + "mnemonic": "fld", + "op_str": "xword ptr [0x454714]", + "string": null + }, + { + "address": "0x00454129", + "mnemonic": "fcompp", + "op_str": "", + "string": null + }, + { + "address": "0x0045412B", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0045412D", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0045412E", + "mnemonic": "jae", + "op_str": "0x454154", + "string": "딼痢\\GE" + }, + { + "address": "0x00454130", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x6c]", + "string": null + }, + { + "address": "0x00454133", + "mnemonic": "mov", + "op_str": "ecx, 0x454728", + "string": " 값은 계산의 한계범위를 벗어난 값입니다." + }, + { + "address": "0x00454138", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045413B", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454140", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x6c]", + "string": null + }, + { + "address": "0x00454143", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x00454145", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x407ab4]", + "string": null + }, + { + "address": "0x0045414A", + "mnemonic": "call", + "op_str": "0x40b1d0", + "string": null + }, + { + "address": "0x0045414F", + "mnemonic": "call", + "op_str": "0x403efc", + "string": "\t픲\n멈" + }, + { + "address": "0x00454154", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454157", + "mnemonic": "mov", + "op_str": "eax, 0x45475c", + "string": null + }, + { + "address": "0x0045415C", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00454161", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x00454163", + "mnemonic": "test", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x00454165", + "mnemonic": "jle", + "op_str": "0x4541ad", + "string": null + }, + { + "address": "0x00454167", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045416A", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045416F", + "mnemonic": "sub", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00454171", + "mnemonic": "cmp", + "op_str": "eax, 0xb", + "string": null + }, + { + "address": "0x00454174", + "mnemonic": "jge", + "op_str": "0x4541ad", + "string": null + }, + { + "address": "0x00454176", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454179", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045417E", + "mnemonic": "mov", + "op_str": "esi, eax", + "string": null + }, + { + "address": "0x00454180", + "mnemonic": "test", + "op_str": "esi, esi", + "string": null + }, + { + "address": "0x00454182", + "mnemonic": "jle", + "op_str": "0x4541ad", + "string": null + }, + { + "address": "0x00454184", + "mnemonic": "mov", + "op_str": "edi, 1", + "string": null + }, + { + "address": "0x00454189", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045418C", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + edi - 1]", + "string": null + }, + { + "address": "0x00454190", + "mnemonic": "add", + "op_str": "al, 0xcf", + "string": null + }, + { + "address": "0x00454192", + "mnemonic": "sub", + "op_str": "al, 9", + "string": null + }, + { + "address": "0x00454194", + "mnemonic": "jae", + "op_str": "0x4541a9", + "string": null + }, + { + "address": "0x00454196", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454199", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045419E", + "mnemonic": "sub", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x004541A0", + "mnemonic": "cmp", + "op_str": "eax, 0xb", + "string": null + }, + { + "address": "0x004541A3", + "mnemonic": "jge", + "op_str": "0x4541ad", + "string": null + }, + { + "address": "0x004541A5", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x004541A7", + "mnemonic": "jmp", + "op_str": "0x4541ad", + "string": null + }, + { + "address": "0x004541A9", + "mnemonic": "inc", + "op_str": "edi", + "string": null + }, + { + "address": "0x004541AA", + "mnemonic": "dec", + "op_str": "esi", + "string": null + }, + { + "address": "0x004541AB", + "mnemonic": "jne", + "op_str": "0x454189", + "string": null + }, + { + "address": "0x004541AD", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x004541AF", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x004541B2", + "mnemonic": "jb", + "op_str": "0x4541c4", + "string": null + }, + { + "address": "0x004541B4", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x004541B5", + "mnemonic": "sub", + "op_str": "eax, 8", + "string": null + }, + { + "address": "0x004541B8", + "mnemonic": "jb", + "op_str": "0x454209", + "string": null + }, + { + "address": "0x004541BA", + "mnemonic": "sub", + "op_str": "eax, 4", + "string": null + }, + { + "address": "0x004541BD", + "mnemonic": "jb", + "op_str": "0x454230", + "string": null + }, + { + "address": "0x004541BF", + "mnemonic": "jmp", + "op_str": "0x454253", + "string": null + }, + { + "address": "0x004541C4", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004541C6", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x28], eax", + "string": null + }, + { + "address": "0x004541C9", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x24], eax", + "string": null + }, + { + "address": "0x004541CC", + "mnemonic": "mov", + "op_str": "word ptr [ebp - 0x20], ax", + "string": null + }, + { + "address": "0x004541D0", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0", + "string": null + }, + { + "address": "0x004541D4", + "mnemonic": "jl", + "op_str": "0x454274", + "string": null + }, + { + "address": "0x004541DA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004541DD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004541DE", + "mnemonic": "push", + "op_str": "0x45475c", + "string": null + }, + { + "address": "0x004541E3", + "mnemonic": "call", + "op_str": "0x453640", + "string": null + }, + { + "address": "0x004541E8", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x004541EA", + "mnemonic": "jne", + "op_str": "0x454274", + "string": null + }, + { + "address": "0x004541F0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004541F3", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], eax", + "string": null + }, + { + "address": "0x004541F6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004541F9", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xc], eax", + "string": null + }, + { + "address": "0x004541FC", + "mnemonic": "mov", + "op_str": "ax, word ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00454200", + "mnemonic": "mov", + "op_str": "word ptr [ebp - 8], ax", + "string": null + }, + { + "address": "0x00454204", + "mnemonic": "jmp", + "op_str": "0x45464c", + "string": null + }, + { + "address": "0x00454209", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x0045420E", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454213", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454215", + "mnemonic": "sub", + "op_str": "ebx, dword ptr [ebp - 0x2c]", + "string": null + }, + { + "address": "0x00454218", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x70], ebx", + "string": null + }, + { + "address": "0x0045421B", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x70]", + "string": null + }, + { + "address": "0x0045421E", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00454221", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454224", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454225", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x0045422A", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x0045422D", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0045422E", + "mnemonic": "jmp", + "op_str": "0x454274", + "string": null + }, + { + "address": "0x00454230", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454235", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x0045423A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0045423C", + "mnemonic": "push", + "op_str": "0xc001", + "string": null + }, + { + "address": "0x00454241", + "mnemonic": "push", + "op_str": "0x80000000", + "string": null + }, + { + "address": "0x00454246", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454248", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x0045424D", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454250", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454251", + "mnemonic": "jmp", + "op_str": "0x454274", + "string": null + }, + { + "address": "0x00454253", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454258", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x0045425D", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0045425F", + "mnemonic": "push", + "op_str": "0xc002", + "string": null + }, + { + "address": "0x00454264", + "mnemonic": "push", + "op_str": "0x90000000", + "string": null + }, + { + "address": "0x00454269", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0045426B", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454270", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454273", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454274", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454277", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x454760]", + "string": null + }, + { + "address": "0x0045427D", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0045427F", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00454280", + "mnemonic": "je", + "op_str": "0x4542fd", + "string": null + }, + { + "address": "0x00454282", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454285", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x00454287", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x0045428A", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0045428C", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0045428F", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454292", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454293", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x78]", + "string": null + }, + { + "address": "0x00454296", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454297", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x2c]", + "string": null + }, + { + "address": "0x0045429A", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0045429F", + "mnemonic": "mov", + "op_str": "eax, 0x4546f0", + "string": "#######################" + }, + { + "address": "0x004542A4", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004542A9", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x78]", + "string": null + }, + { + "address": "0x004542AC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x74]", + "string": null + }, + { + "address": "0x004542AF", + "mnemonic": "mov", + "op_str": "edx, 0x45476c", + "string": null + }, + { + "address": "0x004542B4", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x004542B9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x74]", + "string": null + }, + { + "address": "0x004542BC", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004542BF", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x004542C4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004542C7", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004542C8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x7c]", + "string": null + }, + { + "address": "0x004542CB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004542CC", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x004542D1", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x7c]", + "string": null + }, + { + "address": "0x004542D4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004542D7", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x004542DC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004542DF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004542E0", + "mnemonic": "push", + "op_str": "0x45475c", + "string": null + }, + { + "address": "0x004542E5", + "mnemonic": "call", + "op_str": "0x453640", + "string": null + }, + { + "address": "0x004542EA", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x004542EC", + "mnemonic": "jne", + "op_str": "0x45432a", + "string": "딼痢껯E" + }, + { + "address": "0x004542EE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004542F1", + "mnemonic": "mov", + "op_str": "edx, 0x454778", + "string": null + }, + { + "address": "0x004542F6", + "mnemonic": "call", + "op_str": "0x4047e4", + "string": null + }, + { + "address": "0x004542FB", + "mnemonic": "jmp", + "op_str": "0x45432a", + "string": "딼痢껯E" + }, + { + "address": "0x004542FD", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004542FF", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], eax", + "string": null + }, + { + "address": "0x00454302", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xc], eax", + "string": null + }, + { + "address": "0x00454305", + "mnemonic": "mov", + "op_str": "word ptr [ebp - 8], ax", + "string": null + }, + { + "address": "0x00454309", + "mnemonic": "jmp", + "op_str": "0x45464c", + "string": null + }, + { + "address": "0x0045430E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454311", + "mnemonic": "mov", + "op_str": "eax, 0x454784", + "string": null + }, + { + "address": "0x00454316", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x0045431B", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x0045431D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454320", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00454325", + "mnemonic": "call", + "op_str": "0x404a74", + "string": null + }, + { + "address": "0x0045432A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045432D", + "mnemonic": "mov", + "op_str": "eax, 0x454784", + "string": null + }, + { + "address": "0x00454332", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00454337", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00454339", + "mnemonic": "jg", + "op_str": "0x45430e", + "string": "딼痢껯E" + }, + { + "address": "0x0045433B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045433E", + "mnemonic": "mov", + "op_str": "eax, 0x45475c", + "string": null + }, + { + "address": "0x00454343", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00454348", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x0045434A", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0", + "string": null + }, + { + "address": "0x0045434E", + "mnemonic": "jne", + "op_str": "0x45438f", + "string": null + }, + { + "address": "0x00454350", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x80]", + "string": null + }, + { + "address": "0x00454353", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454354", + "mnemonic": "lea", + "op_str": "edx, [ebx + 1]", + "string": null + }, + { + "address": "0x00454357", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x0045435C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045435F", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454364", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x80]", + "string": null + }, + { + "address": "0x00454367", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x0045436A", + "mnemonic": "mov", + "op_str": "edx, 0x454790", + "string": null + }, + { + "address": "0x0045436F", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454374", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454377", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454378", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x0045437A", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0045437B", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00454380", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454383", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454388", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x0045438A", + "mnemonic": "jmp", + "op_str": "0x4544f0", + "string": null + }, + { + "address": "0x0045438F", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0", + "string": null + }, + { + "address": "0x00454393", + "mnemonic": "jle", + "op_str": "0x45441a", + "string": null + }, + { + "address": "0x00454399", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x84]", + "string": null + }, + { + "address": "0x0045439F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004543A0", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x004543A3", + "mnemonic": "add", + "op_str": "edx, ebx", + "string": null + }, + { + "address": "0x004543A5", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x004543A6", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x004543AB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004543AE", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004543B3", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x84]", + "string": null + }, + { + "address": "0x004543B9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x004543BC", + "mnemonic": "mov", + "op_str": "edx, 0x454790", + "string": null + }, + { + "address": "0x004543C1", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x004543C6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x88]", + "string": null + }, + { + "address": "0x004543CC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004543CD", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x004543CF", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004543D0", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x004543D5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004543D8", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004543DD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x88]", + "string": null + }, + { + "address": "0x004543E3", + "mnemonic": "push", + "op_str": "0x45475c", + "string": null + }, + { + "address": "0x004543E8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x8c]", + "string": null + }, + { + "address": "0x004543EE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004543EF", + "mnemonic": "lea", + "op_str": "edx, [ebx + 1]", + "string": null + }, + { + "address": "0x004543F2", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x004543F5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004543F8", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004543FD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x8c]", + "string": null + }, + { + "address": "0x00454403", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454406", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x0045440B", + "mnemonic": "call", + "op_str": "0x40489c", + "string": null + }, + { + "address": "0x00454410", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454413", + "mnemonic": "neg", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00454415", + "mnemonic": "jmp", + "op_str": "0x4544f0", + "string": null + }, + { + "address": "0x0045441A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x0045441D", + "mnemonic": "cdq", + "op_str": "", + "string": null + }, + { + "address": "0x0045441E", + "mnemonic": "xor", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00454420", + "mnemonic": "sub", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00454422", + "mnemonic": "mov", + "op_str": "dword ptr [ebp + 0x14], eax", + "string": null + }, + { + "address": "0x00454425", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00454427", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454428", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x0045442B", + "mnemonic": "jle", + "op_str": "0x4544a9", + "string": null + }, + { + "address": "0x0045442D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00454430", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00454435", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454438", + "mnemonic": "test", + "op_str": "esi, esi", + "string": null + }, + { + "address": "0x0045443A", + "mnemonic": "jle", + "op_str": "0x454451", + "string": null + }, + { + "address": "0x0045443C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x18]", + "string": null + }, + { + "address": "0x0045443F", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00454444", + "mnemonic": "mov", + "op_str": "eax, 0x45479c", + "string": null + }, + { + "address": "0x00454449", + "mnemonic": "call", + "op_str": "0x404abc", + "string": null + }, + { + "address": "0x0045444E", + "mnemonic": "dec", + "op_str": "esi", + "string": null + }, + { + "address": "0x0045444F", + "mnemonic": "jne", + "op_str": "0x45443c", + "string": null + }, + { + "address": "0x00454451", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x90]", + "string": null + }, + { + "address": "0x00454457", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454458", + "mnemonic": "mov", + "op_str": "esi, ebx", + "string": null + }, + { + "address": "0x0045445A", + "mnemonic": "sub", + "op_str": "esi, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x0045445D", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x0045445F", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00454464", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454467", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x0045446C", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x90]", + "string": null + }, + { + "address": "0x00454472", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454475", + "mnemonic": "mov", + "op_str": "edx, 0x454790", + "string": null + }, + { + "address": "0x0045447A", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x0045447F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x94]", + "string": null + }, + { + "address": "0x00454485", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454486", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00454488", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454489", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0045448E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454491", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454496", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x94]", + "string": null + }, + { + "address": "0x0045449C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045449F", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x004544A2", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x004544A7", + "mnemonic": "jmp", + "op_str": "0x4544ed", + "string": null + }, + { + "address": "0x004544A9", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x004544AC", + "mnemonic": "jne", + "op_str": "0x4544d3", + "string": "뛇雅lGE" + }, + { + "address": "0x004544AE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x98]", + "string": null + }, + { + "address": "0x004544B4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004544B7", + "mnemonic": "mov", + "op_str": "dl, byte ptr [edx]", + "string": null + }, + { + "address": "0x004544B9", + "mnemonic": "call", + "op_str": "0x404704", + "string": null + }, + { + "address": "0x004544BE", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x98]", + "string": null + }, + { + "address": "0x004544C4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x004544C7", + "mnemonic": "mov", + "op_str": "edx, 0x454790", + "string": null + }, + { + "address": "0x004544CC", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x004544D1", + "mnemonic": "jmp", + "op_str": "0x4544e0", + "string": "뛇罹쏥E" + }, + { + "address": "0x004544D3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x004544D6", + "mnemonic": "mov", + "op_str": "edx, 0x45476c", + "string": null + }, + { + "address": "0x004544DB", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x004544E0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004544E3", + "mnemonic": "mov", + "op_str": "edx, 0x45479c", + "string": null + }, + { + "address": "0x004544E8", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x004544ED", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x004544F0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb8]", + "string": null + }, + { + "address": "0x004544F6", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004544F8", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x004544FA", + "mnemonic": "call", + "op_str": "0x4054fc", + "string": null + }, + { + "address": "0x004544FF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xac]", + "string": null + }, + { + "address": "0x00454505", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb0]", + "string": null + }, + { + "address": "0x0045450B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x00454511", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb8]", + "string": null + }, + { + "address": "0x00454517", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x0045451C", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454521", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454523", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x70], ebx", + "string": null + }, + { + "address": "0x00454526", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x70]", + "string": null + }, + { + "address": "0x00454529", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0045452C", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0045452F", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454530", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454535", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xd4]", + "string": null + }, + { + "address": "0x0045453B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0045453C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00454542", + "mnemonic": "mov", + "op_str": "ecx, 0x4547a8", + "string": null + }, + { + "address": "0x00454547", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x0045454A", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x0045454F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00454555", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x0045455A", + "mnemonic": "call", + "op_str": "0x402a28", + "string": null + }, + { + "address": "0x0045455F", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xe0], eax", + "string": null + }, + { + "address": "0x00454565", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xdc], edx", + "string": null + }, + { + "address": "0x0045456B", + "mnemonic": "fild", + "op_str": "qword ptr [ebp - 0xe0]", + "string": null + }, + { + "address": "0x00454571", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xd4]", + "string": null + }, + { + "address": "0x00454577", + "mnemonic": "fmulp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00454579", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x0045457F", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x00454584", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xbc]", + "string": null + }, + { + "address": "0x0045458A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc0]", + "string": null + }, + { + "address": "0x00454590", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc4]", + "string": null + }, + { + "address": "0x00454596", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x0045459C", + "mnemonic": "mov", + "op_str": "al, byte ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x0045459F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004545A0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa8]", + "string": null + }, + { + "address": "0x004545A6", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004545A7", + "mnemonic": "call", + "op_str": "0x4535a0", + "string": null + }, + { + "address": "0x004545AC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa8]", + "string": null + }, + { + "address": "0x004545B2", + "mnemonic": "call", + "op_str": "0x4054c4", + "string": null + }, + { + "address": "0x004545B7", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x004545BA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004545BB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004545BE", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x004545C3", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x004545C6", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x004545C8", + "mnemonic": "fsubr", + "op_str": "dword ptr [0x454760]", + "string": null + }, + { + "address": "0x004545CE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x100]", + "string": null + }, + { + "address": "0x004545D4", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x004545D9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf4]", + "string": null + }, + { + "address": "0x004545DF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf8]", + "string": null + }, + { + "address": "0x004545E5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xfc]", + "string": null + }, + { + "address": "0x004545EB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x100]", + "string": null + }, + { + "address": "0x004545F1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004545F4", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x004545F9", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x004545FC", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x004545FE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x110]", + "string": null + }, + { + "address": "0x00454604", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x00454609", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x104]", + "string": null + }, + { + "address": "0x0045460F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x108]", + "string": null + }, + { + "address": "0x00454615", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x10c]", + "string": null + }, + { + "address": "0x0045461B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x110]", + "string": null + }, + { + "address": "0x00454621", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454624", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x454760]", + "string": null + }, + { + "address": "0x0045462A", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0045462C", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0045462D", + "mnemonic": "seta", + "op_str": "al", + "string": null + }, + { + "address": "0x00454630", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454631", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xf0]", + "string": null + }, + { + "address": "0x00454637", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454638", + "mnemonic": "call", + "op_str": "0x4535a0", + "string": null + }, + { + "address": "0x0045463D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xf0]", + "string": null + }, + { + "address": "0x00454643", + "mnemonic": "call", + "op_str": "0x4054c4", + "string": null + }, + { + "address": "0x00454648", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0045464B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0045464C", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0045464E", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x0045464F", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454650", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454651", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00454654", + "mnemonic": "push", + "op_str": "0x4546d5", + "string": null + }, + { + "address": "0x00454659", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x110]", + "string": null + }, + { + "address": "0x0045465F", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x40109c]", + "string": null + }, + { + "address": "0x00454665", + "mnemonic": "mov", + "op_str": "ecx, 3", + "string": null + }, + { + "address": "0x0045466A", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x0045466F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00454675", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x0045467A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00454680", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x40109c]", + "string": null + }, + { + "address": "0x00454686", + "mnemonic": "mov", + "op_str": "ecx, 3", + "string": null + }, + { + "address": "0x0045468B", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x00454690", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x98]", + "string": null + }, + { + "address": "0x00454696", + "mnemonic": "mov", + "op_str": "edx, 0xa", + "string": null + }, + { + "address": "0x0045469B", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x004546A0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x6c]", + "string": null + }, + { + "address": "0x004546A3", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x004546A8", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x004546AD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x004546B0", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x40109c]", + "string": null + }, + { + "address": "0x004546B6", + "mnemonic": "mov", + "op_str": "ecx, 3", + "string": null + }, + { + "address": "0x004546BB", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x004546C0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x004546C3", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x004546C8", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x004546CD", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "MROUNDUP": { + "rva": "0x547AC", + "instructions": [ + { + "address": "0x004547AC", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004547AD", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x004547AF", + "mnemonic": "mov", + "op_str": "ecx, 0x14", + "string": null + }, + { + "address": "0x004547B4", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004547B6", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004547B8", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004547B9", + "mnemonic": "jne", + "op_str": "0x4547b4", + "string": null + }, + { + "address": "0x004547BB", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004547BC", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x004547BD", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x004547BE", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x004547BF", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004547C1", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004547C2", + "mnemonic": "push", + "op_str": "0x454cff", + "string": null + }, + { + "address": "0x004547C7", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x004547CA", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x004547CD", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004547D0", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x004547D2", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x004547D5", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x004547D8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004547D9", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004547DC", + "mnemonic": "mov", + "op_str": "eax, 0x454d1c", + "string": "0.##########" + }, + { + "address": "0x004547E1", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x004547E6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004547E9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004547EA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x2c]", + "string": null + }, + { + "address": "0x004547ED", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004547EE", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x004547F3", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x2c]", + "string": null + }, + { + "address": "0x004547F6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004547F9", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x004547FE", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454801", + "mnemonic": "fld", + "op_str": "xword ptr [0x454d2c]", + "string": null + }, + { + "address": "0x00454807", + "mnemonic": "fcompp", + "op_str": "", + "string": null + }, + { + "address": "0x00454809", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0045480B", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0045480C", + "mnemonic": "jae", + "op_str": "0x454832", + "string": "딼痢tME" + }, + { + "address": "0x0045480E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x30]", + "string": null + }, + { + "address": "0x00454811", + "mnemonic": "mov", + "op_str": "ecx, 0x454d40", + "string": " 값은 계산의 한계범위를 벗어난 값입니다." + }, + { + "address": "0x00454816", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454819", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x0045481E", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x30]", + "string": null + }, + { + "address": "0x00454821", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x00454823", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x407ab4]", + "string": null + }, + { + "address": "0x00454828", + "mnemonic": "call", + "op_str": "0x40b1d0", + "string": null + }, + { + "address": "0x0045482D", + "mnemonic": "call", + "op_str": "0x403efc", + "string": "\t픲\n멈" + }, + { + "address": "0x00454832", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454835", + "mnemonic": "mov", + "op_str": "eax, 0x454d74", + "string": null + }, + { + "address": "0x0045483A", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x0045483F", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x00454841", + "mnemonic": "test", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x00454843", + "mnemonic": "jle", + "op_str": "0x45488b", + "string": null + }, + { + "address": "0x00454845", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454848", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045484D", + "mnemonic": "sub", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x0045484F", + "mnemonic": "cmp", + "op_str": "eax, 0xb", + "string": null + }, + { + "address": "0x00454852", + "mnemonic": "jge", + "op_str": "0x45488b", + "string": null + }, + { + "address": "0x00454854", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454857", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045485C", + "mnemonic": "mov", + "op_str": "esi, eax", + "string": null + }, + { + "address": "0x0045485E", + "mnemonic": "test", + "op_str": "esi, esi", + "string": null + }, + { + "address": "0x00454860", + "mnemonic": "jle", + "op_str": "0x45488b", + "string": null + }, + { + "address": "0x00454862", + "mnemonic": "mov", + "op_str": "edi, 1", + "string": null + }, + { + "address": "0x00454867", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0045486A", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + edi - 1]", + "string": null + }, + { + "address": "0x0045486E", + "mnemonic": "add", + "op_str": "al, 0xcf", + "string": null + }, + { + "address": "0x00454870", + "mnemonic": "sub", + "op_str": "al, 9", + "string": null + }, + { + "address": "0x00454872", + "mnemonic": "jae", + "op_str": "0x454887", + "string": null + }, + { + "address": "0x00454874", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454877", + "mnemonic": "call", + "op_str": "0x4047dc", + "string": null + }, + { + "address": "0x0045487C", + "mnemonic": "sub", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x0045487E", + "mnemonic": "cmp", + "op_str": "eax, 0xb", + "string": null + }, + { + "address": "0x00454881", + "mnemonic": "jge", + "op_str": "0x45488b", + "string": null + }, + { + "address": "0x00454883", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x00454885", + "mnemonic": "jmp", + "op_str": "0x45488b", + "string": null + }, + { + "address": "0x00454887", + "mnemonic": "inc", + "op_str": "edi", + "string": null + }, + { + "address": "0x00454888", + "mnemonic": "dec", + "op_str": "esi", + "string": null + }, + { + "address": "0x00454889", + "mnemonic": "jne", + "op_str": "0x454867", + "string": null + }, + { + "address": "0x0045488B", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x0045488D", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x00454890", + "mnemonic": "jb", + "op_str": "0x4548a2", + "string": null + }, + { + "address": "0x00454892", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454893", + "mnemonic": "sub", + "op_str": "eax, 8", + "string": null + }, + { + "address": "0x00454896", + "mnemonic": "jb", + "op_str": "0x4548e7", + "string": null + }, + { + "address": "0x00454898", + "mnemonic": "sub", + "op_str": "eax, 4", + "string": null + }, + { + "address": "0x0045489B", + "mnemonic": "jb", + "op_str": "0x45490e", + "string": null + }, + { + "address": "0x0045489D", + "mnemonic": "jmp", + "op_str": "0x454931", + "string": null + }, + { + "address": "0x004548A2", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004548A4", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x28], eax", + "string": null + }, + { + "address": "0x004548A7", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x24], eax", + "string": null + }, + { + "address": "0x004548AA", + "mnemonic": "mov", + "op_str": "word ptr [ebp - 0x20], ax", + "string": null + }, + { + "address": "0x004548AE", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0", + "string": null + }, + { + "address": "0x004548B2", + "mnemonic": "jl", + "op_str": "0x454952", + "string": null + }, + { + "address": "0x004548B8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004548BB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004548BC", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x004548C1", + "mnemonic": "call", + "op_str": "0x453640", + "string": null + }, + { + "address": "0x004548C6", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x004548C8", + "mnemonic": "jne", + "op_str": "0x454952", + "string": null + }, + { + "address": "0x004548CE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004548D1", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], eax", + "string": null + }, + { + "address": "0x004548D4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004548D7", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xc], eax", + "string": null + }, + { + "address": "0x004548DA", + "mnemonic": "mov", + "op_str": "ax, word ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x004548DE", + "mnemonic": "mov", + "op_str": "word ptr [ebp - 8], ax", + "string": null + }, + { + "address": "0x004548E2", + "mnemonic": "jmp", + "op_str": "0x454cb4", + "string": null + }, + { + "address": "0x004548E7", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x004548EC", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x004548F1", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004548F3", + "mnemonic": "sub", + "op_str": "ebx, 0xd", + "string": null + }, + { + "address": "0x004548F6", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x34], ebx", + "string": null + }, + { + "address": "0x004548F9", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x004548FC", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x004548FF", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454902", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454903", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454908", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x0045490B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0045490C", + "mnemonic": "jmp", + "op_str": "0x454952", + "string": null + }, + { + "address": "0x0045490E", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454913", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454918", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0045491A", + "mnemonic": "push", + "op_str": "0xc001", + "string": null + }, + { + "address": "0x0045491F", + "mnemonic": "push", + "op_str": "0x80000000", + "string": null + }, + { + "address": "0x00454924", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454926", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x0045492B", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x0045492E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0045492F", + "mnemonic": "jmp", + "op_str": "0x454952", + "string": null + }, + { + "address": "0x00454931", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454936", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x0045493B", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0045493D", + "mnemonic": "push", + "op_str": "0xc002", + "string": null + }, + { + "address": "0x00454942", + "mnemonic": "push", + "op_str": "0x90000000", + "string": null + }, + { + "address": "0x00454947", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454949", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x0045494E", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454951", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454952", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454955", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x454d78]", + "string": null + }, + { + "address": "0x0045495B", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0045495D", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0045495E", + "mnemonic": "je", + "op_str": "0x4549b7", + "string": null + }, + { + "address": "0x00454960", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454963", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x00454965", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454968", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0045496A", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0045496D", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454970", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454971", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454974", + "mnemonic": "mov", + "op_str": "eax, 0x454d84", + "string": "0.0#########" + }, + { + "address": "0x00454979", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x0045497E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454981", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454982", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x00454985", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454986", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x0045498B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x38]", + "string": null + }, + { + "address": "0x0045498E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454991", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00454996", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454999", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045499A", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x0045499F", + "mnemonic": "call", + "op_str": "0x453640", + "string": null + }, + { + "address": "0x004549A4", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x004549A6", + "mnemonic": "jne", + "op_str": "0x4549e4", + "string": "딼痢쭻E" + }, + { + "address": "0x004549A8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004549AB", + "mnemonic": "mov", + "op_str": "edx, 0x454d9c", + "string": null + }, + { + "address": "0x004549B0", + "mnemonic": "call", + "op_str": "0x4047e4", + "string": null + }, + { + "address": "0x004549B5", + "mnemonic": "jmp", + "op_str": "0x4549e4", + "string": "딼痢쭻E" + }, + { + "address": "0x004549B7", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004549B9", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x10], eax", + "string": null + }, + { + "address": "0x004549BC", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xc], eax", + "string": null + }, + { + "address": "0x004549BF", + "mnemonic": "mov", + "op_str": "word ptr [ebp - 8], ax", + "string": null + }, + { + "address": "0x004549C3", + "mnemonic": "jmp", + "op_str": "0x454cb4", + "string": null + }, + { + "address": "0x004549C8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004549CB", + "mnemonic": "mov", + "op_str": "eax, 0x454da8", + "string": null + }, + { + "address": "0x004549D0", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x004549D5", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x004549D7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x004549DA", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x004549DF", + "mnemonic": "call", + "op_str": "0x404a74", + "string": null + }, + { + "address": "0x004549E4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004549E7", + "mnemonic": "mov", + "op_str": "eax, 0x454da8", + "string": null + }, + { + "address": "0x004549EC", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x004549F1", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004549F3", + "mnemonic": "jg", + "op_str": "0x4549c8", + "string": "딼痢쭻E" + }, + { + "address": "0x004549F5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x004549F8", + "mnemonic": "mov", + "op_str": "eax, 0x454d74", + "string": null + }, + { + "address": "0x004549FD", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00454A02", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x00454A04", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0", + "string": null + }, + { + "address": "0x00454A08", + "mnemonic": "jne", + "op_str": "0x454a49", + "string": null + }, + { + "address": "0x00454A0A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c]", + "string": null + }, + { + "address": "0x00454A0D", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454A0E", + "mnemonic": "lea", + "op_str": "edx, [ebx + 1]", + "string": null + }, + { + "address": "0x00454A11", + "mnemonic": "mov", + "op_str": "ecx, 0xa", + "string": null + }, + { + "address": "0x00454A16", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454A19", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454A1E", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x3c]", + "string": null + }, + { + "address": "0x00454A21", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454A24", + "mnemonic": "mov", + "op_str": "edx, 0x454db4", + "string": null + }, + { + "address": "0x00454A29", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454A2E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454A31", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454A32", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00454A34", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454A35", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00454A3A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454A3D", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454A42", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x00454A44", + "mnemonic": "jmp", + "op_str": "0x454bde", + "string": null + }, + { + "address": "0x00454A49", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 0x14], 0", + "string": null + }, + { + "address": "0x00454A4D", + "mnemonic": "jle", + "op_str": "0x454abe", + "string": null + }, + { + "address": "0x00454A4F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x40]", + "string": null + }, + { + "address": "0x00454A52", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454A53", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454A56", + "mnemonic": "add", + "op_str": "edx, ebx", + "string": null + }, + { + "address": "0x00454A58", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x00454A59", + "mnemonic": "mov", + "op_str": "ecx, 0xa", + "string": null + }, + { + "address": "0x00454A5E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454A61", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454A66", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x40]", + "string": null + }, + { + "address": "0x00454A69", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454A6C", + "mnemonic": "mov", + "op_str": "edx, 0x454db4", + "string": null + }, + { + "address": "0x00454A71", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454A76", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x44]", + "string": null + }, + { + "address": "0x00454A79", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454A7A", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00454A7C", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454A7D", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00454A82", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454A85", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454A8A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x44]", + "string": null + }, + { + "address": "0x00454A8D", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x00454A92", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x00454A95", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454A96", + "mnemonic": "lea", + "op_str": "edx, [ebx + 1]", + "string": null + }, + { + "address": "0x00454A99", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454A9C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454A9F", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454AA4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x48]", + "string": null + }, + { + "address": "0x00454AA7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454AAA", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00454AAF", + "mnemonic": "call", + "op_str": "0x40489c", + "string": null + }, + { + "address": "0x00454AB4", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454AB7", + "mnemonic": "neg", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00454AB9", + "mnemonic": "jmp", + "op_str": "0x454bde", + "string": null + }, + { + "address": "0x00454ABE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454AC1", + "mnemonic": "cdq", + "op_str": "", + "string": null + }, + { + "address": "0x00454AC2", + "mnemonic": "xor", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00454AC4", + "mnemonic": "sub", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00454AC6", + "mnemonic": "mov", + "op_str": "dword ptr [ebp + 0x14], eax", + "string": null + }, + { + "address": "0x00454AC9", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00454ACB", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454ACC", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454ACF", + "mnemonic": "jle", + "op_str": "0x454b76", + "string": "h퀾E" + }, + { + "address": "0x00454AD5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00454AD8", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00454ADD", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454AE0", + "mnemonic": "test", + "op_str": "esi, esi", + "string": null + }, + { + "address": "0x00454AE2", + "mnemonic": "jle", + "op_str": "0x454af9", + "string": null + }, + { + "address": "0x00454AE4", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00454AE7", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00454AEC", + "mnemonic": "mov", + "op_str": "eax, 0x454dc0", + "string": null + }, + { + "address": "0x00454AF1", + "mnemonic": "call", + "op_str": "0x404abc", + "string": null + }, + { + "address": "0x00454AF6", + "mnemonic": "dec", + "op_str": "esi", + "string": null + }, + { + "address": "0x00454AF7", + "mnemonic": "jne", + "op_str": "0x454ae4", + "string": null + }, + { + "address": "0x00454AF9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00454AFC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454AFD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454B00", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B01", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x00454B06", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x50]", + "string": null + }, + { + "address": "0x00454B09", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B0A", + "mnemonic": "call", + "op_str": "0x453a20", + "string": "U뗭j" + }, + { + "address": "0x00454B0F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x50]", + "string": null + }, + { + "address": "0x00454B12", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B13", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454B16", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B17", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x00454B1C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x54]", + "string": null + }, + { + "address": "0x00454B1F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B20", + "mnemonic": "call", + "op_str": "0x453ab4", + "string": null + }, + { + "address": "0x00454B25", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x00454B28", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B29", + "mnemonic": "call", + "op_str": "0x4047e4", + "string": null + }, + { + "address": "0x00454B2E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00454B31", + "mnemonic": "mov", + "op_str": "esi, ebx", + "string": null + }, + { + "address": "0x00454B33", + "mnemonic": "sub", + "op_str": "esi, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454B36", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x00454B38", + "mnemonic": "mov", + "op_str": "ecx, 0xa", + "string": null + }, + { + "address": "0x00454B3D", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454B42", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00454B45", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454B48", + "mnemonic": "mov", + "op_str": "edx, 0x454db4", + "string": null + }, + { + "address": "0x00454B4D", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454B52", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x00454B55", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B56", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00454B58", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454B59", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00454B5E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454B61", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454B66", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x00454B69", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454B6C", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00454B6F", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454B74", + "mnemonic": "jmp", + "op_str": "0x454bdb", + "string": null + }, + { + "address": "0x00454B76", + "mnemonic": "push", + "op_str": "0x454db4", + "string": null + }, + { + "address": "0x00454B7B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00454B7E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B7F", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454B82", + "mnemonic": "sub", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00454B84", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454B85", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00454B8A", + "mnemonic": "mov", + "op_str": "eax, 0x454dcc", + "string": "0000000000" + }, + { + "address": "0x00454B8F", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00454B94", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00454B97", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454B9A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454B9B", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x00454BA0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x00454BA3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454BA4", + "mnemonic": "call", + "op_str": "0x453a20", + "string": "U뗭j" + }, + { + "address": "0x00454BA9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x60]", + "string": null + }, + { + "address": "0x00454BAC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454BAF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454BB0", + "mnemonic": "push", + "op_str": "0x454d74", + "string": null + }, + { + "address": "0x00454BB5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x64]", + "string": null + }, + { + "address": "0x00454BB8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454BB9", + "mnemonic": "call", + "op_str": "0x453ab4", + "string": null + }, + { + "address": "0x00454BBE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x64]", + "string": null + }, + { + "address": "0x00454BC1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454BC4", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00454BC9", + "mnemonic": "call", + "op_str": "0x40489c", + "string": null + }, + { + "address": "0x00454BCE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454BD1", + "mnemonic": "mov", + "op_str": "edx, 0x454dc0", + "string": null + }, + { + "address": "0x00454BD6", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00454BDB", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00454BDE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454BE1", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x00454BE6", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00454BE9", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454BEC", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454BED", + "mnemonic": "call", + "op_str": "0x4297f4", + "string": null + }, + { + "address": "0x00454BF2", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x34], eax", + "string": null + }, + { + "address": "0x00454BF5", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x00454BF8", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x70]", + "string": null + }, + { + "address": "0x00454BFB", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454BFC", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454C01", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454C06", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454C08", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x74], ebx", + "string": null + }, + { + "address": "0x00454C0B", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x74]", + "string": null + }, + { + "address": "0x00454C0E", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00454C11", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454C14", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454C15", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454C1A", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x70]", + "string": null + }, + { + "address": "0x00454C1D", + "mnemonic": "fmulp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00454C1F", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454C22", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454C23", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454C26", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x00454C2B", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454C2E", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00454C30", + "mnemonic": "fsubr", + "op_str": "dword ptr [0x454d78]", + "string": null + }, + { + "address": "0x00454C36", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x94]", + "string": null + }, + { + "address": "0x00454C3C", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x00454C41", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x88]", + "string": null + }, + { + "address": "0x00454C47", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x8c]", + "string": null + }, + { + "address": "0x00454C4D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x90]", + "string": null + }, + { + "address": "0x00454C53", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x94]", + "string": null + }, + { + "address": "0x00454C59", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454C5C", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x00454C61", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00454C64", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00454C66", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa4]", + "string": null + }, + { + "address": "0x00454C6C", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x00454C71", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x98]", + "string": null + }, + { + "address": "0x00454C77", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x9c]", + "string": null + }, + { + "address": "0x00454C7D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00454C83", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xa4]", + "string": null + }, + { + "address": "0x00454C89", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454C8C", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x454d78]", + "string": null + }, + { + "address": "0x00454C92", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00454C94", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00454C95", + "mnemonic": "seta", + "op_str": "al", + "string": null + }, + { + "address": "0x00454C98", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454C99", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x84]", + "string": null + }, + { + "address": "0x00454C9F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454CA0", + "mnemonic": "call", + "op_str": "0x4535a0", + "string": null + }, + { + "address": "0x00454CA5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x84]", + "string": null + }, + { + "address": "0x00454CAB", + "mnemonic": "call", + "op_str": "0x4054c4", + "string": null + }, + { + "address": "0x00454CB0", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00454CB3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454CB4", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00454CB6", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x00454CB7", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454CB8", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454CB9", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00454CBC", + "mnemonic": "push", + "op_str": "0x454d06", + "string": null + }, + { + "address": "0x00454CC1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa4]", + "string": null + }, + { + "address": "0x00454CC7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x40109c]", + "string": null + }, + { + "address": "0x00454CCD", + "mnemonic": "mov", + "op_str": "ecx, 3", + "string": null + }, + { + "address": "0x00454CD2", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x00454CD7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x64]", + "string": null + }, + { + "address": "0x00454CDA", + "mnemonic": "mov", + "op_str": "edx, 0xc", + "string": null + }, + { + "address": "0x00454CDF", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x00454CE4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x30]", + "string": null + }, + { + "address": "0x00454CE7", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x00454CEC", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x00454CF1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454CF4", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00454CF9", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x00454CFE", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "MTRUNC": { + "rva": "0x54EB0", + "instructions": [ + { + "address": "0x00454EB0", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00454EB1", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x00454EB3", + "mnemonic": "mov", + "op_str": "ecx, 0xb", + "string": null + }, + { + "address": "0x00454EB8", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454EBA", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454EBC", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00454EBD", + "mnemonic": "jne", + "op_str": "0x454eb8", + "string": null + }, + { + "address": "0x00454EBF", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00454EC0", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00454EC2", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00454EC3", + "mnemonic": "push", + "op_str": "0x455165", + "string": null + }, + { + "address": "0x00454EC8", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00454ECB", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00454ECE", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454ED1", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x00454ED3", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00454ED6", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454ED9", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454EDA", + "mnemonic": "lea", + "op_str": "edx, [ebp - 4]", + "string": null + }, + { + "address": "0x00454EDD", + "mnemonic": "mov", + "op_str": "eax, 0x455180", + "string": "0.##############" + }, + { + "address": "0x00454EE2", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x00454EE7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00454EEA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454EEB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454EEE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454EEF", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x00454EF4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00454EF7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00454EFA", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00454EFF", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454F02", + "mnemonic": "fld", + "op_str": "xword ptr [0x455194]", + "string": null + }, + { + "address": "0x00454F08", + "mnemonic": "fcompp", + "op_str": "", + "string": null + }, + { + "address": "0x00454F0A", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00454F0C", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00454F0D", + "mnemonic": "jae", + "op_str": "0x454f33", + "string": null + }, + { + "address": "0x00454F0F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00454F12", + "mnemonic": "mov", + "op_str": "ecx, 0x4551a8", + "string": " 값은 계산의 한계범위를 벗어난 값입니다." + }, + { + "address": "0x00454F17", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00454F1A", + "mnemonic": "call", + "op_str": "0x404828", + "string": null + }, + { + "address": "0x00454F1F", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00454F22", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x00454F24", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x407ab4]", + "string": null + }, + { + "address": "0x00454F29", + "mnemonic": "call", + "op_str": "0x40b1d0", + "string": null + }, + { + "address": "0x00454F2E", + "mnemonic": "call", + "op_str": "0x403efc", + "string": "\t픲\n멈" + }, + { + "address": "0x00454F33", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00454F36", + "mnemonic": "mov", + "op_str": "eax, 0x4551dc", + "string": null + }, + { + "address": "0x00454F3B", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00454F40", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x00454F42", + "mnemonic": "sub", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00454F45", + "mnemonic": "jb", + "op_str": "0x454f54", + "string": null + }, + { + "address": "0x00454F47", + "mnemonic": "dec", + "op_str": "edx", + "string": null + }, + { + "address": "0x00454F48", + "mnemonic": "sub", + "op_str": "edx, 8", + "string": null + }, + { + "address": "0x00454F4B", + "mnemonic": "jb", + "op_str": "0x454f63", + "string": null + }, + { + "address": "0x00454F4D", + "mnemonic": "sub", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00454F50", + "mnemonic": "jb", + "op_str": "0x454f8a", + "string": null + }, + { + "address": "0x00454F52", + "mnemonic": "jmp", + "op_str": "0x454fad", + "string": null + }, + { + "address": "0x00454F54", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454F57", + "mnemonic": "call", + "op_str": "0x402a28", + "string": null + }, + { + "address": "0x00454F5C", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x00454F5E", + "mnemonic": "jmp", + "op_str": "0x45510f", + "string": null + }, + { + "address": "0x00454F63", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454F68", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454F6D", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454F6F", + "mnemonic": "sub", + "op_str": "eax, 0xd", + "string": null + }, + { + "address": "0x00454F72", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x1c], eax", + "string": null + }, + { + "address": "0x00454F75", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x00454F78", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00454F7B", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454F7E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454F7F", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454F84", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00454F87", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454F88", + "mnemonic": "jmp", + "op_str": "0x454fce", + "string": null + }, + { + "address": "0x00454F8A", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454F8F", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454F94", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454F96", + "mnemonic": "push", + "op_str": "0xc001", + "string": null + }, + { + "address": "0x00454F9B", + "mnemonic": "push", + "op_str": "0x80000000", + "string": null + }, + { + "address": "0x00454FA0", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454FA2", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454FA7", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00454FAA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454FAB", + "mnemonic": "jmp", + "op_str": "0x454fce", + "string": null + }, + { + "address": "0x00454FAD", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00454FB2", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00454FB7", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454FB9", + "mnemonic": "push", + "op_str": "0xc002", + "string": null + }, + { + "address": "0x00454FBE", + "mnemonic": "push", + "op_str": "0x90000000", + "string": null + }, + { + "address": "0x00454FC3", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00454FC5", + "mnemonic": "call", + "op_str": "0x42983c", + "string": null + }, + { + "address": "0x00454FCA", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00454FCD", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454FCE", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454FD1", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x4551e0]", + "string": null + }, + { + "address": "0x00454FD7", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00454FD9", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00454FDA", + "mnemonic": "je", + "op_str": "0x455033", + "string": null + }, + { + "address": "0x00454FDC", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00454FDF", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x00454FE1", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x00454FE4", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00454FE6", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00454FE9", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00454FEC", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00454FED", + "mnemonic": "lea", + "op_str": "edx, [ebp - 4]", + "string": null + }, + { + "address": "0x00454FF0", + "mnemonic": "mov", + "op_str": "eax, 0x4551ec", + "string": "0.0#############" + }, + { + "address": "0x00454FF5", + "mnemonic": "call", + "op_str": "0x40a19c", + "string": "U뗭겺" + }, + { + "address": "0x00454FFA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00454FFD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00454FFE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x00455001", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00455002", + "mnemonic": "call", + "op_str": "0x453e4c", + "string": null + }, + { + "address": "0x00455007", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x0045500A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x0045500D", + "mnemonic": "call", + "op_str": "0x4045bc", + "string": null + }, + { + "address": "0x00455012", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00455015", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00455016", + "mnemonic": "push", + "op_str": "0x4551dc", + "string": null + }, + { + "address": "0x0045501B", + "mnemonic": "call", + "op_str": "0x453640", + "string": null + }, + { + "address": "0x00455020", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00455022", + "mnemonic": "jne", + "op_str": "0x455056", + "string": null + }, + { + "address": "0x00455024", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x00455027", + "mnemonic": "mov", + "op_str": "edx, 0x455208", + "string": null + }, + { + "address": "0x0045502C", + "mnemonic": "call", + "op_str": "0x4047e4", + "string": null + }, + { + "address": "0x00455031", + "mnemonic": "jmp", + "op_str": "0x455056", + "string": null + }, + { + "address": "0x00455033", + "mnemonic": "xor", + "op_str": "ebx, ebx", + "string": null + }, + { + "address": "0x00455035", + "mnemonic": "jmp", + "op_str": "0x45510f", + "string": null + }, + { + "address": "0x0045503A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0045503D", + "mnemonic": "mov", + "op_str": "eax, 0x455214", + "string": null + }, + { + "address": "0x00455042", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00455047", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x00455049", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x0045504C", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00455051", + "mnemonic": "call", + "op_str": "0x404a74", + "string": null + }, + { + "address": "0x00455056", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00455059", + "mnemonic": "mov", + "op_str": "eax, 0x455214", + "string": null + }, + { + "address": "0x0045505E", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00455063", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00455065", + "mnemonic": "jg", + "op_str": "0x45503a", + "string": null + }, + { + "address": "0x00455067", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x44]", + "string": null + }, + { + "address": "0x0045506A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0045506B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0045506E", + "mnemonic": "mov", + "op_str": "eax, 0x4551dc", + "string": null + }, + { + "address": "0x00455073", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x00455078", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x0045507A", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0045507B", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00455080", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x00455083", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x00455088", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x44]", + "string": null + }, + { + "address": "0x0045508B", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x00455090", + "mnemonic": "fsubr", + "op_str": "dword ptr [0x4551e0]", + "string": null + }, + { + "address": "0x00455096", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x40]", + "string": null + }, + { + "address": "0x00455099", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x0045509E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x004550A1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x38]", + "string": null + }, + { + "address": "0x004550A4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3c]", + "string": null + }, + { + "address": "0x004550A7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x40]", + "string": null + }, + { + "address": "0x004550AA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x004550AD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004550AE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x004550B1", + "mnemonic": "mov", + "op_str": "eax, 0x4551dc", + "string": null + }, + { + "address": "0x004550B6", + "mnemonic": "call", + "op_str": "0x404b18", + "string": null + }, + { + "address": "0x004550BB", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x004550BD", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004550BE", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x004550C3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x004550C6", + "mnemonic": "call", + "op_str": "0x404a34", + "string": null + }, + { + "address": "0x004550CB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x004550CE", + "mnemonic": "call", + "op_str": "0x40a1f4", + "string": null + }, + { + "address": "0x004550D3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x54]", + "string": null + }, + { + "address": "0x004550D6", + "mnemonic": "call", + "op_str": "0x405520", + "string": null + }, + { + "address": "0x004550DB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x48]", + "string": null + }, + { + "address": "0x004550DE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4c]", + "string": null + }, + { + "address": "0x004550E1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x004550E4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x004550E7", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004550EA", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x4551e0]", + "string": null + }, + { + "address": "0x004550F0", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x004550F2", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x004550F3", + "mnemonic": "seta", + "op_str": "al", + "string": null + }, + { + "address": "0x004550F6", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004550F7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x30]", + "string": null + }, + { + "address": "0x004550FA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004550FB", + "mnemonic": "call", + "op_str": "0x4535a0", + "string": null + }, + { + "address": "0x00455100", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x30]", + "string": null + }, + { + "address": "0x00455103", + "mnemonic": "call", + "op_str": "0x4054c4", + "string": null + }, + { + "address": "0x00455108", + "mnemonic": "call", + "op_str": "0x402a28", + "string": null + }, + { + "address": "0x0045510D", + "mnemonic": "mov", + "op_str": "ebx, eax", + "string": null + }, + { + "address": "0x0045510F", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00455111", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x00455112", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00455113", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00455114", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00455117", + "mnemonic": "push", + "op_str": "0x45516c", + "string": null + }, + { + "address": "0x0045511C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x0045511F", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00455124", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x54]", + "string": null + }, + { + "address": "0x00455127", + "mnemonic": "call", + "op_str": "0x405594", + "string": null + }, + { + "address": "0x0045512C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x44]", + "string": null + }, + { + "address": "0x0045512F", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00455134", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x40]", + "string": null + }, + { + "address": "0x00455137", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x40109c]", + "string": null + }, + { + "address": "0x0045513D", + "mnemonic": "mov", + "op_str": "ecx, 2", + "string": null + }, + { + "address": "0x00455142", + "mnemonic": "call", + "op_str": "0x405018", + "string": null + }, + { + "address": "0x00455147", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20]", + "string": null + }, + { + "address": "0x0045514A", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x0045514F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x00455152", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x00455157", + "mnemonic": "call", + "op_str": "0x404548", + "string": null + }, + { + "address": "0x0045515C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 4]", + "string": null + }, + { + "address": "0x0045515F", + "mnemonic": "call", + "op_str": "0x404524", + "string": null + }, + { + "address": "0x00455164", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + } + }, + "ST_Func_C.CPM": { + "CON_TOT": { + "rva": "0x80688", + "instructions": [ + { + "address": "0x00480688", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480689", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0048068B", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0048068C", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048068D", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x0048068E", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480691", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00480694", + "mnemonic": "mov", + "op_str": "edi, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x0048069A", + "mnemonic": "mov", + "op_str": "edi, dword ptr [edi]", + "string": null + }, + { + "address": "0x0048069C", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x0048069E", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048069F", + "mnemonic": "je", + "op_str": "0x4806ac", + "string": null + }, + { + "address": "0x004806A1", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x004806A2", + "mnemonic": "sub", + "op_str": "eax, 8", + "string": null + }, + { + "address": "0x004806A5", + "mnemonic": "jb", + "op_str": "0x48070b", + "string": null + }, + { + "address": "0x004806A7", + "mnemonic": "jmp", + "op_str": "0x48085d", + "string": null + }, + { + "address": "0x004806AC", + "mnemonic": "imul", + "op_str": "eax, ebx, 0x1e", + "string": null + }, + { + "address": "0x004806AF", + "mnemonic": "lea", + "op_str": "eax, [edi + eax*8]", + "string": null + }, + { + "address": "0x004806B2", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x004806B4", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004806B6", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x004806B9", + "mnemonic": "lea", + "op_str": "eax, [eax + edx*8 + 0x1b0]", + "string": null + }, + { + "address": "0x004806C0", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004806C1", + "mnemonic": "imul", + "op_str": "eax, ebx, 0x1e", + "string": null + }, + { + "address": "0x004806C4", + "mnemonic": "lea", + "op_str": "eax, [edi + eax*8]", + "string": null + }, + { + "address": "0x004806C7", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x004806C9", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004806CB", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x004806CE", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004806CF", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x004806D0", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x004806D1", + "mnemonic": "mov", + "op_str": "esi, ecx", + "string": null + }, + { + "address": "0x004806D3", + "mnemonic": "lea", + "op_str": "edi, [eax + edx*8 + 0xc00]", + "string": null + }, + { + "address": "0x004806DA", + "mnemonic": "mov", + "op_str": "ecx, 0xc", + "string": null + }, + { + "address": "0x004806DF", + "mnemonic": "rep movsd", + "op_str": "dword ptr es:[edi], dword ptr [esi]", + "string": null + }, + { + "address": "0x004806E1", + "mnemonic": "pop", + "op_str": "edi", + "string": null + }, + { + "address": "0x004806E2", + "mnemonic": "pop", + "op_str": "esi", + "string": null + }, + { + "address": "0x004806E3", + "mnemonic": "lea", + "op_str": "eax, [ebx + ebx*4]", + "string": null + }, + { + "address": "0x004806E6", + "mnemonic": "lea", + "op_str": "eax, [edi + eax]", + "string": null + }, + { + "address": "0x004806E9", + "mnemonic": "mov", + "op_str": "byte ptr [eax + esi + 0x167a], 1", + "string": null + }, + { + "address": "0x004806F1", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x004806F2", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x004806F3", + "mnemonic": "call", + "op_str": "0x480028", + "string": null + }, + { + "address": "0x004806F8", + "mnemonic": "lea", + "op_str": "eax, [ebx + ebx*4]", + "string": null + }, + { + "address": "0x004806FB", + "mnemonic": "lea", + "op_str": "eax, [edi + eax]", + "string": null + }, + { + "address": "0x004806FE", + "mnemonic": "mov", + "op_str": "byte ptr [eax + esi + 0x16ac], 1", + "string": null + }, + { + "address": "0x00480706", + "mnemonic": "jmp", + "op_str": "0x48085d", + "string": null + }, + { + "address": "0x0048070B", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048070C", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x0048070E", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048070F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480710", + "mnemonic": "call", + "op_str": "0x480688", + "string": null + }, + { + "address": "0x00480715", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480718", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048071B", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x0048071D", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048071F", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00480722", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xb18]", + "string": null + }, + { + "address": "0x00480729", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x0048072C", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048072F", + "mnemonic": "fadd", + "op_str": "qword ptr [edx + eax*8 + 0x1b8]", + "string": null + }, + { + "address": "0x00480736", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480739", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048073C", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0xc08]", + "string": null + }, + { + "address": "0x00480743", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480744", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480747", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048074A", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xb20]", + "string": null + }, + { + "address": "0x00480751", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480754", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x00480757", + "mnemonic": "fadd", + "op_str": "qword ptr [edx + eax*8 + 0x1c0]", + "string": null + }, + { + "address": "0x0048075E", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480761", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x00480764", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0xc10]", + "string": null + }, + { + "address": "0x0048076B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0048076C", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x0048076F", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x00480772", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xb28]", + "string": null + }, + { + "address": "0x00480779", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x0048077C", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048077F", + "mnemonic": "fadd", + "op_str": "qword ptr [edx + eax*8 + 0x1c8]", + "string": null + }, + { + "address": "0x00480786", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480789", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048078C", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0xc18]", + "string": null + }, + { + "address": "0x00480793", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480794", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480797", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048079A", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xb30]", + "string": null + }, + { + "address": "0x004807A1", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x004807A4", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x004807A7", + "mnemonic": "fadd", + "op_str": "qword ptr [edx + eax*8 + 0x1d0]", + "string": null + }, + { + "address": "0x004807AE", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x004807B1", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x004807B4", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0xc20]", + "string": null + }, + { + "address": "0x004807BB", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004807BC", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x004807BF", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x004807C2", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xb10]", + "string": null + }, + { + "address": "0x004807C9", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x004807CC", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x004807CF", + "mnemonic": "fadd", + "op_str": "qword ptr [edx + eax*8 + 0x1b0]", + "string": null + }, + { + "address": "0x004807D6", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x004807D9", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x004807DC", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0xc00]", + "string": null + }, + { + "address": "0x004807E3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004807E4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4841e4]", + "string": null + }, + { + "address": "0x004807E9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004807EB", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x004807F2", + "mnemonic": "jne", + "op_str": "0x480830", + "string": null + }, + { + "address": "0x004807F4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4842fc]", + "string": null + }, + { + "address": "0x004807F9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004807FB", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x004807FF", + "mnemonic": "jne", + "op_str": "0x480830", + "string": null + }, + { + "address": "0x00480801", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480804", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x00480807", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x00480809", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048080B", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x0048080E", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xb38]", + "string": null + }, + { + "address": "0x00480815", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480818", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x0048081B", + "mnemonic": "fadd", + "op_str": "qword ptr [edx + eax*8 + 0x1d8]", + "string": null + }, + { + "address": "0x00480822", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480825", + "mnemonic": "lea", + "op_str": "edx, [edi + edx*8]", + "string": null + }, + { + "address": "0x00480828", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0xc28]", + "string": null + }, + { + "address": "0x0048082F", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480830", + "mnemonic": "lea", + "op_str": "eax, [ebx + ebx*4]", + "string": null + }, + { + "address": "0x00480833", + "mnemonic": "lea", + "op_str": "eax, [edi + eax]", + "string": null + }, + { + "address": "0x00480836", + "mnemonic": "mov", + "op_str": "byte ptr [eax + esi + 0x167a], 1", + "string": null + }, + { + "address": "0x0048083E", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048083F", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00480840", + "mnemonic": "call", + "op_str": "0x480028", + "string": null + }, + { + "address": "0x00480845", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00480846", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x00480848", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480849", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048084A", + "mnemonic": "call", + "op_str": "0x4800b0", + "string": null + }, + { + "address": "0x0048084F", + "mnemonic": "lea", + "op_str": "eax, [ebx + ebx*4]", + "string": null + }, + { + "address": "0x00480852", + "mnemonic": "lea", + "op_str": "eax, [edi + eax]", + "string": null + }, + { + "address": "0x00480855", + "mnemonic": "mov", + "op_str": "byte ptr [eax + esi + 0x16ac], 1", + "string": null + }, + { + "address": "0x0048085D", + "mnemonic": "pop", + "op_str": "edi", + "string": null + }, + { + "address": "0x0048085E", + "mnemonic": "pop", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048085F", + "mnemonic": "pop", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00480860", + "mnemonic": "pop", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480861", + "mnemonic": "ret", + "op_str": "8", + "string": null + } + ] + }, + "OPTIMIZ": { + "rva": "0x8094C", + "instructions": [ + { + "address": "0x0048094C", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0048094D", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0048094F", + "mnemonic": "mov", + "op_str": "ecx, 0x2d", + "string": null + }, + { + "address": "0x00480954", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480956", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480958", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00480959", + "mnemonic": "jne", + "op_str": "0x480954", + "string": null + }, + { + "address": "0x0048095B", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0048095C", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0048095D", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048095E", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x0048095F", + "mnemonic": "lea", + "op_str": "esi, [ebp - 0x44]", + "string": null + }, + { + "address": "0x00480962", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480964", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480965", + "mnemonic": "push", + "op_str": "0x480ef8", + "string": null + }, + { + "address": "0x0048096A", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x0048096D", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00480970", + "mnemonic": "mov", + "op_str": "dword ptr [esi], 1", + "string": null + }, + { + "address": "0x00480976", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x90]", + "string": null + }, + { + "address": "0x0048097C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4844d0]", + "string": null + }, + { + "address": "0x00480982", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00480984", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480986", + "mnemonic": "mov", + "op_str": "dl, byte ptr [edx + ecx + 0x7dc]", + "string": null + }, + { + "address": "0x0048098D", + "mnemonic": "sub", + "op_str": "dl, 0x4c", + "string": null + }, + { + "address": "0x00480990", + "mnemonic": "je", + "op_str": "0x4809ab", + "string": null + }, + { + "address": "0x00480992", + "mnemonic": "dec", + "op_str": "dl", + "string": null + }, + { + "address": "0x00480994", + "mnemonic": "je", + "op_str": "0x4809a3", + "string": null + }, + { + "address": "0x00480996", + "mnemonic": "sub", + "op_str": "dl, 6", + "string": null + }, + { + "address": "0x00480999", + "mnemonic": "jne", + "op_str": "0x4809b1", + "string": null + }, + { + "address": "0x0048099B", + "mnemonic": "fld", + "op_str": "qword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x0048099E", + "mnemonic": "fstp", + "op_str": "xword ptr [eax]", + "string": null + }, + { + "address": "0x004809A0", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809A1", + "mnemonic": "jmp", + "op_str": "0x4809b1", + "string": null + }, + { + "address": "0x004809A3", + "mnemonic": "fld", + "op_str": "qword ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x004809A6", + "mnemonic": "fstp", + "op_str": "xword ptr [eax]", + "string": null + }, + { + "address": "0x004809A8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809A9", + "mnemonic": "jmp", + "op_str": "0x4809b1", + "string": null + }, + { + "address": "0x004809AB", + "mnemonic": "fld", + "op_str": "qword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x004809AE", + "mnemonic": "fstp", + "op_str": "xword ptr [eax]", + "string": null + }, + { + "address": "0x004809B0", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809B1", + "mnemonic": "inc", + "op_str": "dword ptr [esi]", + "string": null + }, + { + "address": "0x004809B3", + "mnemonic": "add", + "op_str": "eax, 0xa", + "string": null + }, + { + "address": "0x004809B6", + "mnemonic": "cmp", + "op_str": "dword ptr [esi], 4", + "string": null + }, + { + "address": "0x004809B9", + "mnemonic": "jne", + "op_str": "0x48097c", + "string": null + }, + { + "address": "0x004809BB", + "mnemonic": "fld", + "op_str": "qword ptr [ebp + 0x28]", + "string": null + }, + { + "address": "0x004809BE", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x72]", + "string": null + }, + { + "address": "0x004809C1", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809C2", + "mnemonic": "fld", + "op_str": "qword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004809C5", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x004809C8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809C9", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004809CA", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x90]", + "string": null + }, + { + "address": "0x004809D0", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x004809D3", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x004809D6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809D7", + "mnemonic": "call", + "op_str": "0x4808d4", + "string": null + }, + { + "address": "0x004809DC", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004809DD", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x004809E3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809E4", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004809E5", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x86]", + "string": null + }, + { + "address": "0x004809EB", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x004809EE", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x004809F1", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809F2", + "mnemonic": "call", + "op_str": "0x4808d4", + "string": null + }, + { + "address": "0x004809F7", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004809F8", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xbe]", + "string": null + }, + { + "address": "0x004809FE", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004809FF", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480A00", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x7c]", + "string": null + }, + { + "address": "0x00480A03", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x00480A06", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x00480A09", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480A0A", + "mnemonic": "call", + "op_str": "0x4808d4", + "string": null + }, + { + "address": "0x00480A0F", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00480A10", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x00480A16", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480A17", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480A18", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x72]", + "string": null + }, + { + "address": "0x00480A1B", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x00480A1E", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x00480A21", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480A22", + "mnemonic": "call", + "op_str": "0x4808d4", + "string": null + }, + { + "address": "0x00480A27", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00480A28", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xaa]", + "string": null + }, + { + "address": "0x00480A2E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480A2F", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 8], 4", + "string": null + }, + { + "address": "0x00480A36", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp + 0x38], 0", + "string": null + }, + { + "address": "0x00480A3A", + "mnemonic": "jne", + "op_str": "0x480a71", + "string": null + }, + { + "address": "0x00480A3C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x44]", + "string": null + }, + { + "address": "0x00480A3F", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x00480A42", + "mnemonic": "je", + "op_str": "0x480a71", + "string": null + }, + { + "address": "0x00480A44", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00480A47", + "mnemonic": "je", + "op_str": "0x480a71", + "string": null + }, + { + "address": "0x00480A49", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00480A4F", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xbe]", + "string": null + }, + { + "address": "0x00480A55", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480A57", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x00480A5D", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480A5F", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xaa]", + "string": null + }, + { + "address": "0x00480A65", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480A67", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x00480A6A", + "mnemonic": "fcompp", + "op_str": "", + "string": null + }, + { + "address": "0x00480A6C", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00480A6E", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00480A6F", + "mnemonic": "jne", + "op_str": "0x480a9b", + "string": null + }, + { + "address": "0x00480A71", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00480A77", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xbe]", + "string": null + }, + { + "address": "0x00480A7D", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480A7F", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x00480A85", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480A87", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xaa]", + "string": null + }, + { + "address": "0x00480A8D", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480A8F", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00480A95", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480A96", + "mnemonic": "jmp", + "op_str": "0x480de3", + "string": null + }, + { + "address": "0x00480A9B", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480A9D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x3c]", + "string": null + }, + { + "address": "0x00480AA0", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480AA1", + "mnemonic": "mov", + "op_str": "ax, word ptr [ebp - 0x60]", + "string": null + }, + { + "address": "0x00480AA5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480AA6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x64]", + "string": null + }, + { + "address": "0x00480AA9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x00480AAC", + "mnemonic": "call", + "op_str": "0x47f92c", + "string": null + }, + { + "address": "0x00480AB1", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00480AB7", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480AB8", + "mnemonic": "push", + "op_str": "0x4002", + "string": null + }, + { + "address": "0x00480ABD", + "mnemonic": "push", + "op_str": "0xa0000000", + "string": null + }, + { + "address": "0x00480AC2", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480AC4", + "mnemonic": "fild", + "op_str": "dword ptr [ebp + 0x3c]", + "string": null + }, + { + "address": "0x00480AC7", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480ACA", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480ACD", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480ACE", + "mnemonic": "call", + "op_str": "0x42e61c", + "string": null + }, + { + "address": "0x00480AD3", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00480AD6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480AD7", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x00480AD9", + "mnemonic": "push", + "op_str": "6", + "string": null + }, + { + "address": "0x00480ADB", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x00480ADE", + "mnemonic": "fmul", + "op_str": "qword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00480AE1", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480AE4", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480AE7", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480AE8", + "mnemonic": "call", + "op_str": "0x47f93c", + "string": null + }, + { + "address": "0x00480AED", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480AF0", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480AF3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480AF4", + "mnemonic": "call", + "op_str": "0x47f92c", + "string": null + }, + { + "address": "0x00480AF9", + "mnemonic": "fchs", + "op_str": "", + "string": null + }, + { + "address": "0x00480AFB", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00480AFE", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480AFF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00480B02", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480B04", + "mnemonic": "jle", + "op_str": "0x480bfd", + "string": null + }, + { + "address": "0x00480B0A", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x54], eax", + "string": null + }, + { + "address": "0x00480B0D", + "mnemonic": "mov", + "op_str": "dword ptr [esi], 1", + "string": null + }, + { + "address": "0x00480B13", + "mnemonic": "lea", + "op_str": "edi, [ebp - 0x90]", + "string": null + }, + { + "address": "0x00480B19", + "mnemonic": "lea", + "op_str": "ebx, [ebp - 0x40]", + "string": null + }, + { + "address": "0x00480B1C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x00480B1F", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x58], eax", + "string": null + }, + { + "address": "0x00480B22", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480B24", + "mnemonic": "push", + "op_str": "2", + "string": null + }, + { + "address": "0x00480B26", + "mnemonic": "fld", + "op_str": "xword ptr [edi]", + "string": null + }, + { + "address": "0x00480B28", + "mnemonic": "fmul", + "op_str": "qword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00480B2B", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480B2E", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480B31", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480B32", + "mnemonic": "call", + "op_str": "0x47f93c", + "string": null + }, + { + "address": "0x00480B37", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480B3A", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480B3D", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480B3E", + "mnemonic": "call", + "op_str": "0x47f92c", + "string": null + }, + { + "address": "0x00480B43", + "mnemonic": "fabs", + "op_str": "", + "string": null + }, + { + "address": "0x00480B45", + "mnemonic": "fstp", + "op_str": "xword ptr [ebx]", + "string": null + }, + { + "address": "0x00480B47", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480B48", + "mnemonic": "fld", + "op_str": "xword ptr [edi]", + "string": null + }, + { + "address": "0x00480B4A", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x480f08]", + "string": null + }, + { + "address": "0x00480B50", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00480B52", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00480B53", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x00480B56", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x00480B59", + "mnemonic": "mov", + "op_str": "byte ptr [edx], al", + "string": null + }, + { + "address": "0x00480B5B", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00480B5E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00480B64", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00480B69", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00480B6F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480B70", + "mnemonic": "fld", + "op_str": "xword ptr [ebx]", + "string": null + }, + { + "address": "0x00480B72", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xf8]", + "string": null + }, + { + "address": "0x00480B78", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00480B7D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xec]", + "string": null + }, + { + "address": "0x00480B83", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf0]", + "string": null + }, + { + "address": "0x00480B89", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf4]", + "string": null + }, + { + "address": "0x00480B8F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf8]", + "string": null + }, + { + "address": "0x00480B95", + "mnemonic": "fld", + "op_str": "xword ptr [ebx]", + "string": null + }, + { + "address": "0x00480B97", + "mnemonic": "fchs", + "op_str": "", + "string": null + }, + { + "address": "0x00480B99", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x108]", + "string": null + }, + { + "address": "0x00480B9F", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00480BA4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xfc]", + "string": null + }, + { + "address": "0x00480BAA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x100]", + "string": null + }, + { + "address": "0x00480BB0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x104]", + "string": null + }, + { + "address": "0x00480BB6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x108]", + "string": null + }, + { + "address": "0x00480BBC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x00480BBF", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00480BC1", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480BC2", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xe8]", + "string": null + }, + { + "address": "0x00480BC8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480BC9", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x00480BCE", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xe8]", + "string": null + }, + { + "address": "0x00480BD4", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480BD5", + "mnemonic": "call", + "op_str": "0x405448", + "string": null + }, + { + "address": "0x00480BDA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00480BE0", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00480BE5", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00480BE8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480BE9", + "mnemonic": "inc", + "op_str": "dword ptr [esi]", + "string": null + }, + { + "address": "0x00480BEB", + "mnemonic": "inc", + "op_str": "dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x00480BEE", + "mnemonic": "add", + "op_str": "ebx, 0xa", + "string": null + }, + { + "address": "0x00480BF1", + "mnemonic": "add", + "op_str": "edi, 0xa", + "string": null + }, + { + "address": "0x00480BF4", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x00480BF7", + "mnemonic": "jne", + "op_str": "0x480b22", + "string": null + }, + { + "address": "0x00480BFD", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00480C03", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xbe]", + "string": null + }, + { + "address": "0x00480C09", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480C0B", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x00480C11", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480C13", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xaa]", + "string": null + }, + { + "address": "0x00480C19", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480C1B", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00480C21", + "mnemonic": "fsubrp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480C23", + "mnemonic": "fmul", + "op_str": "qword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00480C26", + "mnemonic": "call", + "op_str": "0x402a94", + "string": null + }, + { + "address": "0x00480C2B", + "mnemonic": "mov", + "op_str": "edi, eax", + "string": null + }, + { + "address": "0x00480C2D", + "mnemonic": "test", + "op_str": "edi, edi", + "string": null + }, + { + "address": "0x00480C2F", + "mnemonic": "setl", + "op_str": "bl", + "string": null + }, + { + "address": "0x00480C32", + "mnemonic": "mov", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x00480C34", + "mnemonic": "cdq", + "op_str": "", + "string": null + }, + { + "address": "0x00480C35", + "mnemonic": "xor", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00480C37", + "mnemonic": "sub", + "op_str": "eax, edx", + "string": null + }, + { + "address": "0x00480C39", + "mnemonic": "mov", + "op_str": "edi, eax", + "string": null + }, + { + "address": "0x00480C3B", + "mnemonic": "jmp", + "op_str": "0x480d14", + "string": null + }, + { + "address": "0x00480C40", + "mnemonic": "mov", + "op_str": "dword ptr [esi], 1", + "string": null + }, + { + "address": "0x00480C46", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480C48", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00480C4B", + "mnemonic": "jg", + "op_str": "0x480d14", + "string": null + }, + { + "address": "0x00480C51", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480C53", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*4]", + "string": null + }, + { + "address": "0x00480C56", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + eax*2 - 0x4a]", + "string": null + }, + { + "address": "0x00480C5A", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x480f0c]", + "string": null + }, + { + "address": "0x00480C60", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00480C62", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00480C63", + "mnemonic": "jbe", + "op_str": "0x480c6c", + "string": null + }, + { + "address": "0x00480C65", + "mnemonic": "inc", + "op_str": "dword ptr [esi]", + "string": null + }, + { + "address": "0x00480C67", + "mnemonic": "jmp", + "op_str": "0x480d09", + "string": null + }, + { + "address": "0x00480C6C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480C6E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 4], eax", + "string": null + }, + { + "address": "0x00480C71", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480C72", + "mnemonic": "call", + "op_str": "0x480864", + "string": null + }, + { + "address": "0x00480C77", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00480C78", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00480C7A", + "mnemonic": "jne", + "op_str": "0x480d09", + "string": null + }, + { + "address": "0x00480C80", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480C82", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*4]", + "string": null + }, + { + "address": "0x00480C85", + "mnemonic": "fld", + "op_str": "xword ptr [ebp + eax*2 - 0x4a]", + "string": null + }, + { + "address": "0x00480C89", + "mnemonic": "fadd", + "op_str": "dword ptr [0x480f0c]", + "string": null + }, + { + "address": "0x00480C8F", + "mnemonic": "fstp", + "op_str": "xword ptr [ebp + eax*2 - 0x4a]", + "string": null + }, + { + "address": "0x00480C93", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480C94", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x128]", + "string": null + }, + { + "address": "0x00480C9A", + "mnemonic": "lea", + "op_str": "edx, [edi + 1]", + "string": null + }, + { + "address": "0x00480C9D", + "mnemonic": "mov", + "op_str": "cl, 0xfc", + "string": null + }, + { + "address": "0x00480C9F", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00480CA4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x11c]", + "string": null + }, + { + "address": "0x00480CAA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x120]", + "string": null + }, + { + "address": "0x00480CB0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x124]", + "string": null + }, + { + "address": "0x00480CB6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x128]", + "string": null + }, + { + "address": "0x00480CBC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x138]", + "string": null + }, + { + "address": "0x00480CC2", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x00480CC4", + "mnemonic": "dec", + "op_str": "edx", + "string": null + }, + { + "address": "0x00480CC5", + "mnemonic": "mov", + "op_str": "cl, 0xfc", + "string": null + }, + { + "address": "0x00480CC7", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00480CCC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x12c]", + "string": null + }, + { + "address": "0x00480CD2", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x130]", + "string": null + }, + { + "address": "0x00480CD8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x134]", + "string": null + }, + { + "address": "0x00480CDE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x138]", + "string": null + }, + { + "address": "0x00480CE4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480CE6", + "mnemonic": "cmp", + "op_str": "bl, byte ptr [ebp + eax - 0x49]", + "string": null + }, + { + "address": "0x00480CEA", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x00480CED", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480CEE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x118]", + "string": null + }, + { + "address": "0x00480CF4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480CF5", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x00480CFA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x118]", + "string": null + }, + { + "address": "0x00480D00", + "mnemonic": "call", + "op_str": "0x405394", + "string": null + }, + { + "address": "0x00480D05", + "mnemonic": "mov", + "op_str": "edi, eax", + "string": null + }, + { + "address": "0x00480D07", + "mnemonic": "jmp", + "op_str": "0x480d14", + "string": null + }, + { + "address": "0x00480D09", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480D0B", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00480D0E", + "mnemonic": "jle", + "op_str": "0x480c51", + "string": null + }, + { + "address": "0x00480D14", + "mnemonic": "test", + "op_str": "edi, edi", + "string": null + }, + { + "address": "0x00480D16", + "mnemonic": "jle", + "op_str": "0x480d21", + "string": null + }, + { + "address": "0x00480D18", + "mnemonic": "cmp", + "op_str": "edi, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00480D1B", + "mnemonic": "jle", + "op_str": "0x480c40", + "string": null + }, + { + "address": "0x00480D21", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00480D24", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480D26", + "mnemonic": "jle", + "op_str": "0x480de3", + "string": null + }, + { + "address": "0x00480D2C", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x54], eax", + "string": null + }, + { + "address": "0x00480D2F", + "mnemonic": "mov", + "op_str": "dword ptr [esi], 1", + "string": null + }, + { + "address": "0x00480D35", + "mnemonic": "lea", + "op_str": "ebx, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00480D3B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x00480D3E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x5c], eax", + "string": null + }, + { + "address": "0x00480D41", + "mnemonic": "lea", + "op_str": "edi, [ebp - 0x40]", + "string": null + }, + { + "address": "0x00480D44", + "mnemonic": "fld", + "op_str": "xword ptr [edi]", + "string": null + }, + { + "address": "0x00480D46", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x158]", + "string": null + }, + { + "address": "0x00480D4C", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00480D51", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x14c]", + "string": null + }, + { + "address": "0x00480D57", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x150]", + "string": null + }, + { + "address": "0x00480D5D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x154]", + "string": null + }, + { + "address": "0x00480D63", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x158]", + "string": null + }, + { + "address": "0x00480D69", + "mnemonic": "fld", + "op_str": "xword ptr [edi]", + "string": null + }, + { + "address": "0x00480D6B", + "mnemonic": "fchs", + "op_str": "", + "string": null + }, + { + "address": "0x00480D6D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x168]", + "string": null + }, + { + "address": "0x00480D73", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00480D78", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x15c]", + "string": null + }, + { + "address": "0x00480D7E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x160]", + "string": null + }, + { + "address": "0x00480D84", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x164]", + "string": null + }, + { + "address": "0x00480D8A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x168]", + "string": null + }, + { + "address": "0x00480D90", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00480D93", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00480D95", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480D96", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x148]", + "string": null + }, + { + "address": "0x00480D9C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480D9D", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x00480DA2", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x148]", + "string": null + }, + { + "address": "0x00480DA8", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00480DAD", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480DB0", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480DB3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480DB4", + "mnemonic": "call", + "op_str": "0x47f944", + "string": null + }, + { + "address": "0x00480DB9", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x16c], eax", + "string": null + }, + { + "address": "0x00480DBF", + "mnemonic": "fild", + "op_str": "dword ptr [ebp - 0x16c]", + "string": null + }, + { + "address": "0x00480DC5", + "mnemonic": "fdiv", + "op_str": "qword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00480DC8", + "mnemonic": "fld", + "op_str": "xword ptr [ebx]", + "string": null + }, + { + "address": "0x00480DCA", + "mnemonic": "faddp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x00480DCC", + "mnemonic": "fstp", + "op_str": "xword ptr [ebx]", + "string": null + }, + { + "address": "0x00480DCE", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480DCF", + "mnemonic": "inc", + "op_str": "dword ptr [esi]", + "string": null + }, + { + "address": "0x00480DD1", + "mnemonic": "add", + "op_str": "edi, 0xa", + "string": null + }, + { + "address": "0x00480DD4", + "mnemonic": "inc", + "op_str": "dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00480DD7", + "mnemonic": "add", + "op_str": "ebx, 0xa", + "string": null + }, + { + "address": "0x00480DDA", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x00480DDD", + "mnemonic": "jne", + "op_str": "0x480d44", + "string": null + }, + { + "address": "0x00480DE3", + "mnemonic": "mov", + "op_str": "dword ptr [esi], 1", + "string": null + }, + { + "address": "0x00480DE9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00480DEF", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4844d0]", + "string": null + }, + { + "address": "0x00480DF5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00480DF7", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [esi]", + "string": null + }, + { + "address": "0x00480DF9", + "mnemonic": "mov", + "op_str": "dl, byte ptr [edx + ecx + 0x7dc]", + "string": null + }, + { + "address": "0x00480E00", + "mnemonic": "sub", + "op_str": "dl, 0x4c", + "string": null + }, + { + "address": "0x00480E03", + "mnemonic": "je", + "op_str": "0x480e40", + "string": null + }, + { + "address": "0x00480E05", + "mnemonic": "dec", + "op_str": "dl", + "string": null + }, + { + "address": "0x00480E07", + "mnemonic": "je", + "op_str": "0x480e27", + "string": null + }, + { + "address": "0x00480E09", + "mnemonic": "sub", + "op_str": "dl, 6", + "string": null + }, + { + "address": "0x00480E0C", + "mnemonic": "jne", + "op_str": "0x480e57", + "string": null + }, + { + "address": "0x00480E0E", + "mnemonic": "fld", + "op_str": "xword ptr [eax]", + "string": null + }, + { + "address": "0x00480E10", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x40]", + "string": null + }, + { + "address": "0x00480E13", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00480E15", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00480E18", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480E1E", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx]", + "string": null + }, + { + "address": "0x00480E20", + "mnemonic": "fstp", + "op_str": "qword ptr [ecx + edx*8 - 0x18]", + "string": null + }, + { + "address": "0x00480E24", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480E25", + "mnemonic": "jmp", + "op_str": "0x480e57", + "string": null + }, + { + "address": "0x00480E27", + "mnemonic": "fld", + "op_str": "xword ptr [eax]", + "string": null + }, + { + "address": "0x00480E29", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x40]", + "string": null + }, + { + "address": "0x00480E2C", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00480E2E", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00480E31", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480E37", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx]", + "string": null + }, + { + "address": "0x00480E39", + "mnemonic": "fstp", + "op_str": "qword ptr [ecx + edx*8 - 0x20]", + "string": null + }, + { + "address": "0x00480E3D", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480E3E", + "mnemonic": "jmp", + "op_str": "0x480e57", + "string": null + }, + { + "address": "0x00480E40", + "mnemonic": "fld", + "op_str": "xword ptr [eax]", + "string": null + }, + { + "address": "0x00480E42", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x40]", + "string": null + }, + { + "address": "0x00480E45", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00480E47", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00480E4A", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480E50", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx]", + "string": null + }, + { + "address": "0x00480E52", + "mnemonic": "fstp", + "op_str": "qword ptr [ecx + edx*8 - 0x28]", + "string": null + }, + { + "address": "0x00480E56", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480E57", + "mnemonic": "inc", + "op_str": "dword ptr [esi]", + "string": null + }, + { + "address": "0x00480E59", + "mnemonic": "add", + "op_str": "eax, 0xa", + "string": null + }, + { + "address": "0x00480E5C", + "mnemonic": "cmp", + "op_str": "dword ptr [esi], 4", + "string": null + }, + { + "address": "0x00480E5F", + "mnemonic": "jne", + "op_str": "0x480def", + "string": null + }, + { + "address": "0x00480E61", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xaa]", + "string": null + }, + { + "address": "0x00480E67", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x40]", + "string": null + }, + { + "address": "0x00480E6A", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480E6C", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00480E6F", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480E75", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00480E77", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 - 0x10]", + "string": null + }, + { + "address": "0x00480E7B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480E7C", + "mnemonic": "fld", + "op_str": "xword ptr [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00480E82", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480E88", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00480E8A", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 - 0x30]", + "string": null + }, + { + "address": "0x00480E8E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480E8F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4841e4]", + "string": null + }, + { + "address": "0x00480E94", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00480E96", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x00480E9D", + "mnemonic": "jne", + "op_str": "0x480ed4", + "string": null + }, + { + "address": "0x00480E9F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4842fc]", + "string": null + }, + { + "address": "0x00480EA4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00480EA6", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x00480EAA", + "mnemonic": "jne", + "op_str": "0x480ed4", + "string": null + }, + { + "address": "0x00480EAC", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480EAE", + "mnemonic": "push", + "op_str": "4", + "string": null + }, + { + "address": "0x00480EB0", + "mnemonic": "fld", + "op_str": "qword ptr [ebp + 0x30]", + "string": null + }, + { + "address": "0x00480EB3", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00480EB6", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00480EB9", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480EBA", + "mnemonic": "call", + "op_str": "0x47f92c", + "string": null + }, + { + "address": "0x00480EBF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x40]", + "string": null + }, + { + "address": "0x00480EC2", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480EC4", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00480EC7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480ECD", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00480ECF", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 - 8]", + "string": null + }, + { + "address": "0x00480ED3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480ED4", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480ED6", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x00480ED7", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00480ED8", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00480ED9", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00480EDC", + "mnemonic": "push", + "op_str": "0x480eff", + "string": null + }, + { + "address": "0x00480EE1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x168]", + "string": null + }, + { + "address": "0x00480EE7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4010e8]", + "string": null + }, + { + "address": "0x00480EED", + "mnemonic": "mov", + "op_str": "ecx, 0xa", + "string": null + }, + { + "address": "0x00480EF2", + "mnemonic": "call", + "op_str": "0x404f94", + "string": null + }, + { + "address": "0x00480EF7", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "PCN_TO_T": { + "rva": "0x81380", + "instructions": [ + { + "address": "0x00481380", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00481381", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x00481383", + "mnemonic": "mov", + "op_str": "ecx, 0x43", + "string": null + }, + { + "address": "0x00481388", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0048138A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0048138C", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0048138D", + "mnemonic": "jne", + "op_str": "0x481388", + "string": null + }, + { + "address": "0x0048138F", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00481390", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00481391", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x00481392", + "mnemonic": "mov", + "op_str": "edi, dword ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x00481395", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00481398", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0048139B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x0048139E", + "mnemonic": "call", + "op_str": "0x404928", + "string": null + }, + { + "address": "0x004813A3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004813A6", + "mnemonic": "call", + "op_str": "0x404928", + "string": null + }, + { + "address": "0x004813AB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x24]", + "string": null + }, + { + "address": "0x004813AE", + "mnemonic": "call", + "op_str": "0x404928", + "string": null + }, + { + "address": "0x004813B3", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004813B5", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004813B6", + "mnemonic": "push", + "op_str": "0x481a9a", + "string": null + }, + { + "address": "0x004813BB", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x004813BE", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x004813C1", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x34]", + "string": null + }, + { + "address": "0x004813C4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x004813C7", + "mnemonic": "call", + "op_str": "0x40860c", + "string": null + }, + { + "address": "0x004813CC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x004813CF", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0x1c]", + "string": null + }, + { + "address": "0x004813D2", + "mnemonic": "call", + "op_str": "0x404520", + "string": null + }, + { + "address": "0x004813D7", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x38]", + "string": null + }, + { + "address": "0x004813DA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004813DD", + "mnemonic": "call", + "op_str": "0x40860c", + "string": null + }, + { + "address": "0x004813E2", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x38]", + "string": null + }, + { + "address": "0x004813E5", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0x20]", + "string": null + }, + { + "address": "0x004813E8", + "mnemonic": "call", + "op_str": "0x404520", + "string": null + }, + { + "address": "0x004813ED", + "mnemonic": "test", + "op_str": "bl, bl", + "string": null + }, + { + "address": "0x004813EF", + "mnemonic": "je", + "op_str": "0x4816ca", + "string": null + }, + { + "address": "0x004813F5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x004813F8", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004813FA", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x004813FC", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00481401", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4c]", + "string": null + }, + { + "address": "0x00481404", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x50]", + "string": null + }, + { + "address": "0x00481407", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x54]", + "string": null + }, + { + "address": "0x0048140A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x58]", + "string": null + }, + { + "address": "0x0048140D", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x00481410", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00481416", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00481418", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x0048141B", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x0048141D", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0048141F", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00481422", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0x1b8]", + "string": null + }, + { + "address": "0x00481429", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x68]", + "string": null + }, + { + "address": "0x0048142C", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00481431", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00481434", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x60]", + "string": null + }, + { + "address": "0x00481437", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x64]", + "string": null + }, + { + "address": "0x0048143A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x0048143D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00481440", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00481442", + "mnemonic": "sub", + "op_str": "al, 0x4c", + "string": null + }, + { + "address": "0x00481444", + "mnemonic": "je", + "op_str": "0x48144e", + "string": null + }, + { + "address": "0x00481446", + "mnemonic": "sub", + "op_str": "al, 8", + "string": null + }, + { + "address": "0x00481448", + "mnemonic": "je", + "op_str": "0x48144e", + "string": null + }, + { + "address": "0x0048144A", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048144C", + "mnemonic": "jmp", + "op_str": "0x481450", + "string": null + }, + { + "address": "0x0048144E", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x00481450", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481451", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x00481454", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481455", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x0048145A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x0048145D", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00481462", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x00481465", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00481466", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4841e4]", + "string": null + }, + { + "address": "0x0048146B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0048146D", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x00481474", + "mnemonic": "jne", + "op_str": "0x481514", + "string": null + }, + { + "address": "0x0048147A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4842fc]", + "string": null + }, + { + "address": "0x0048147F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00481481", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x00481485", + "mnemonic": "jne", + "op_str": "0x481514", + "string": null + }, + { + "address": "0x0048148B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x88]", + "string": null + }, + { + "address": "0x00481491", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481493", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00481495", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x0048149A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x7c]", + "string": null + }, + { + "address": "0x0048149D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x80]", + "string": null + }, + { + "address": "0x004814A0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x84]", + "string": null + }, + { + "address": "0x004814A6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x88]", + "string": null + }, + { + "address": "0x004814AC", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x004814AF", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x004814B5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004814B7", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x004814BA", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x004814BC", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004814BE", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x004814C1", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0x1d8]", + "string": null + }, + { + "address": "0x004814C8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x98]", + "string": null + }, + { + "address": "0x004814CE", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x004814D3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x8c]", + "string": null + }, + { + "address": "0x004814D9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x90]", + "string": null + }, + { + "address": "0x004814DF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x94]", + "string": null + }, + { + "address": "0x004814E5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x98]", + "string": null + }, + { + "address": "0x004814EB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004814EE", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x004814F0", + "mnemonic": "sub", + "op_str": "al, 0x4c", + "string": null + }, + { + "address": "0x004814F2", + "mnemonic": "je", + "op_str": "0x4814fc", + "string": null + }, + { + "address": "0x004814F4", + "mnemonic": "sub", + "op_str": "al, 8", + "string": null + }, + { + "address": "0x004814F6", + "mnemonic": "je", + "op_str": "0x4814fc", + "string": null + }, + { + "address": "0x004814F8", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004814FA", + "mnemonic": "jmp", + "op_str": "0x4814fe", + "string": null + }, + { + "address": "0x004814FC", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x004814FE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004814FF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x78]", + "string": null + }, + { + "address": "0x00481502", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481503", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x00481508", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x78]", + "string": null + }, + { + "address": "0x0048150B", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00481510", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00481513", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00481514", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb8]", + "string": null + }, + { + "address": "0x0048151A", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0048151C", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0048151E", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00481523", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xac]", + "string": null + }, + { + "address": "0x00481529", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb0]", + "string": null + }, + { + "address": "0x0048152F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x00481535", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb8]", + "string": null + }, + { + "address": "0x0048153B", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x0048153E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00481544", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00481546", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x00481549", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x0048154B", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0048154D", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00481550", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0x1c0]", + "string": null + }, + { + "address": "0x00481557", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x0048155D", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00481562", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xbc]", + "string": null + }, + { + "address": "0x00481568", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc0]", + "string": null + }, + { + "address": "0x0048156E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc4]", + "string": null + }, + { + "address": "0x00481574", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x0048157A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x0048157D", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x0048157F", + "mnemonic": "sub", + "op_str": "al, 0x4d", + "string": null + }, + { + "address": "0x00481581", + "mnemonic": "je", + "op_str": "0x48158b", + "string": null + }, + { + "address": "0x00481583", + "mnemonic": "sub", + "op_str": "al, 7", + "string": null + }, + { + "address": "0x00481585", + "mnemonic": "je", + "op_str": "0x48158b", + "string": null + }, + { + "address": "0x00481587", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00481589", + "mnemonic": "jmp", + "op_str": "0x48158d", + "string": null + }, + { + "address": "0x0048158B", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x0048158D", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048158E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa8]", + "string": null + }, + { + "address": "0x00481594", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481595", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x0048159A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa8]", + "string": null + }, + { + "address": "0x004815A0", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x004815A5", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x004815A8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004815A9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xe8]", + "string": null + }, + { + "address": "0x004815AF", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004815B1", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x004815B3", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x004815B8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xdc]", + "string": null + }, + { + "address": "0x004815BE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xe0]", + "string": null + }, + { + "address": "0x004815C4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xe4]", + "string": null + }, + { + "address": "0x004815CA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xe8]", + "string": null + }, + { + "address": "0x004815D0", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x004815D3", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x004815D9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004815DB", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x004815DE", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x004815E0", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004815E2", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x004815E5", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0x1c8]", + "string": null + }, + { + "address": "0x004815EC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xf8]", + "string": null + }, + { + "address": "0x004815F2", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x004815F7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xec]", + "string": null + }, + { + "address": "0x004815FD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf0]", + "string": null + }, + { + "address": "0x00481603", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf4]", + "string": null + }, + { + "address": "0x00481609", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf8]", + "string": null + }, + { + "address": "0x0048160F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00481612", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00481614", + "mnemonic": "add", + "op_str": "al, 0xad", + "string": null + }, + { + "address": "0x00481616", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x00481618", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0048161B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048161C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00481622", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481623", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x00481628", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x0048162E", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00481633", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00481636", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00481637", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x118]", + "string": null + }, + { + "address": "0x0048163D", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0048163F", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00481641", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00481646", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x10c]", + "string": null + }, + { + "address": "0x0048164C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x110]", + "string": null + }, + { + "address": "0x00481652", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x114]", + "string": null + }, + { + "address": "0x00481658", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x118]", + "string": null + }, + { + "address": "0x0048165E", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x00481661", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00481667", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00481669", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x0048166C", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x0048166E", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481670", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00481673", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0x1d0]", + "string": null + }, + { + "address": "0x0048167A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x128]", + "string": null + }, + { + "address": "0x00481680", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00481685", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x11c]", + "string": null + }, + { + "address": "0x0048168B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x120]", + "string": null + }, + { + "address": "0x00481691", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x124]", + "string": null + }, + { + "address": "0x00481697", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x128]", + "string": null + }, + { + "address": "0x0048169D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004816A0", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x004816A2", + "mnemonic": "add", + "op_str": "al, 0xac", + "string": null + }, + { + "address": "0x004816A4", + "mnemonic": "sub", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x004816A6", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x004816A9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004816AA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x108]", + "string": null + }, + { + "address": "0x004816B0", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004816B1", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x004816B6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x108]", + "string": null + }, + { + "address": "0x004816BC", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x004816C1", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x004816C4", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004816C5", + "mnemonic": "jmp", + "op_str": "0x4819ca", + "string": null + }, + { + "address": "0x004816CA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x148]", + "string": null + }, + { + "address": "0x004816D0", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004816D2", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x004816D4", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x004816D9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x13c]", + "string": null + }, + { + "address": "0x004816DF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x140]", + "string": null + }, + { + "address": "0x004816E5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x144]", + "string": null + }, + { + "address": "0x004816EB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x148]", + "string": null + }, + { + "address": "0x004816F1", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x004816F4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x004816FA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004816FC", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x004816FF", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x00481701", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481703", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00481706", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0xc08]", + "string": null + }, + { + "address": "0x0048170D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x158]", + "string": null + }, + { + "address": "0x00481713", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00481718", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x14c]", + "string": null + }, + { + "address": "0x0048171E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x150]", + "string": null + }, + { + "address": "0x00481724", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x154]", + "string": null + }, + { + "address": "0x0048172A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x158]", + "string": null + }, + { + "address": "0x00481730", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00481733", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00481735", + "mnemonic": "sub", + "op_str": "al, 0x4c", + "string": null + }, + { + "address": "0x00481737", + "mnemonic": "je", + "op_str": "0x481741", + "string": null + }, + { + "address": "0x00481739", + "mnemonic": "sub", + "op_str": "al, 8", + "string": null + }, + { + "address": "0x0048173B", + "mnemonic": "je", + "op_str": "0x481741", + "string": null + }, + { + "address": "0x0048173D", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048173F", + "mnemonic": "jmp", + "op_str": "0x481743", + "string": null + }, + { + "address": "0x00481741", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x00481743", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481744", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x138]", + "string": null + }, + { + "address": "0x0048174A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048174B", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x00481750", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x138]", + "string": null + }, + { + "address": "0x00481756", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x0048175B", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x0048175E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0048175F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4841e4]", + "string": null + }, + { + "address": "0x00481764", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00481766", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x0048176D", + "mnemonic": "jne", + "op_str": "0x481819", + "string": null + }, + { + "address": "0x00481773", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4842fc]", + "string": null + }, + { + "address": "0x00481778", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0048177A", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x0048177E", + "mnemonic": "jne", + "op_str": "0x481819", + "string": null + }, + { + "address": "0x00481784", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x178]", + "string": null + }, + { + "address": "0x0048178A", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0048178C", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0048178E", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00481793", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x16c]", + "string": null + }, + { + "address": "0x00481799", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x170]", + "string": null + }, + { + "address": "0x0048179F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x174]", + "string": null + }, + { + "address": "0x004817A5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x178]", + "string": null + }, + { + "address": "0x004817AB", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x004817AE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x004817B4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004817B6", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x004817B9", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x004817BB", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004817BD", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x004817C0", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0xc28]", + "string": null + }, + { + "address": "0x004817C7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x188]", + "string": null + }, + { + "address": "0x004817CD", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x004817D2", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x17c]", + "string": null + }, + { + "address": "0x004817D8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x180]", + "string": null + }, + { + "address": "0x004817DE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x184]", + "string": null + }, + { + "address": "0x004817E4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x188]", + "string": null + }, + { + "address": "0x004817EA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004817ED", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x004817EF", + "mnemonic": "sub", + "op_str": "al, 0x4c", + "string": null + }, + { + "address": "0x004817F1", + "mnemonic": "je", + "op_str": "0x4817fb", + "string": null + }, + { + "address": "0x004817F3", + "mnemonic": "sub", + "op_str": "al, 8", + "string": null + }, + { + "address": "0x004817F5", + "mnemonic": "je", + "op_str": "0x4817fb", + "string": null + }, + { + "address": "0x004817F7", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004817F9", + "mnemonic": "jmp", + "op_str": "0x4817fd", + "string": null + }, + { + "address": "0x004817FB", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x004817FD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004817FE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x168]", + "string": null + }, + { + "address": "0x00481804", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481805", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x0048180A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x168]", + "string": null + }, + { + "address": "0x00481810", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00481815", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00481818", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00481819", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1a8]", + "string": null + }, + { + "address": "0x0048181F", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481821", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00481823", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x00481828", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x19c]", + "string": null + }, + { + "address": "0x0048182E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a0]", + "string": null + }, + { + "address": "0x00481834", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a4]", + "string": null + }, + { + "address": "0x0048183A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a8]", + "string": null + }, + { + "address": "0x00481840", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x00481843", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00481849", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x0048184B", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x0048184E", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x00481850", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481852", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00481855", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0xc10]", + "string": null + }, + { + "address": "0x0048185C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1b8]", + "string": null + }, + { + "address": "0x00481862", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x00481867", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1ac]", + "string": null + }, + { + "address": "0x0048186D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b0]", + "string": null + }, + { + "address": "0x00481873", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b4]", + "string": null + }, + { + "address": "0x00481879", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b8]", + "string": null + }, + { + "address": "0x0048187F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00481882", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00481884", + "mnemonic": "sub", + "op_str": "al, 0x4d", + "string": null + }, + { + "address": "0x00481886", + "mnemonic": "je", + "op_str": "0x481890", + "string": null + }, + { + "address": "0x00481888", + "mnemonic": "sub", + "op_str": "al, 7", + "string": null + }, + { + "address": "0x0048188A", + "mnemonic": "je", + "op_str": "0x481890", + "string": null + }, + { + "address": "0x0048188C", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048188E", + "mnemonic": "jmp", + "op_str": "0x481892", + "string": null + }, + { + "address": "0x00481890", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x00481892", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481893", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x198]", + "string": null + }, + { + "address": "0x00481899", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048189A", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x0048189F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x198]", + "string": null + }, + { + "address": "0x004818A5", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x004818AA", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x004818AD", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004818AE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1d8]", + "string": null + }, + { + "address": "0x004818B4", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004818B6", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x004818B8", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x004818BD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1cc]", + "string": null + }, + { + "address": "0x004818C3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1d0]", + "string": null + }, + { + "address": "0x004818C9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1d4]", + "string": null + }, + { + "address": "0x004818CF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1d8]", + "string": null + }, + { + "address": "0x004818D5", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x004818D8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x004818DE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004818E0", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x004818E3", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x004818E5", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004818E7", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x004818EA", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0xc18]", + "string": null + }, + { + "address": "0x004818F1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1e8]", + "string": null + }, + { + "address": "0x004818F7", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x004818FC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1dc]", + "string": null + }, + { + "address": "0x00481902", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e0]", + "string": null + }, + { + "address": "0x00481908", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e4]", + "string": null + }, + { + "address": "0x0048190E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e8]", + "string": null + }, + { + "address": "0x00481914", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00481917", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00481919", + "mnemonic": "add", + "op_str": "al, 0xad", + "string": null + }, + { + "address": "0x0048191B", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x0048191D", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x00481920", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481921", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c8]", + "string": null + }, + { + "address": "0x00481927", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481928", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x0048192D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c8]", + "string": null + }, + { + "address": "0x00481933", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x00481938", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x0048193B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0048193C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x208]", + "string": null + }, + { + "address": "0x00481942", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481944", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00481946", + "mnemonic": "call", + "op_str": "0x4053dc", + "string": null + }, + { + "address": "0x0048194B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1fc]", + "string": null + }, + { + "address": "0x00481951", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x200]", + "string": null + }, + { + "address": "0x00481957", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x204]", + "string": null + }, + { + "address": "0x0048195D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x208]", + "string": null + }, + { + "address": "0x00481963", + "mnemonic": "imul", + "op_str": "eax, esi, 0x1e", + "string": null + }, + { + "address": "0x00481966", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x0048196C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x0048196E", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8]", + "string": null + }, + { + "address": "0x00481971", + "mnemonic": "mov", + "op_str": "edx, edi", + "string": null + }, + { + "address": "0x00481973", + "mnemonic": "add", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00481975", + "mnemonic": "lea", + "op_str": "edx, [edx + edx*2]", + "string": null + }, + { + "address": "0x00481978", + "mnemonic": "fld", + "op_str": "qword ptr [eax + edx*8 + 0xc20]", + "string": null + }, + { + "address": "0x0048197F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x218]", + "string": null + }, + { + "address": "0x00481985", + "mnemonic": "call", + "op_str": "0x405400", + "string": null + }, + { + "address": "0x0048198A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x20c]", + "string": null + }, + { + "address": "0x00481990", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x210]", + "string": null + }, + { + "address": "0x00481996", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x214]", + "string": null + }, + { + "address": "0x0048199C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x218]", + "string": null + }, + { + "address": "0x004819A2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004819A5", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x004819A7", + "mnemonic": "add", + "op_str": "al, 0xac", + "string": null + }, + { + "address": "0x004819A9", + "mnemonic": "sub", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x004819AB", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x004819AE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819AF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1f8]", + "string": null + }, + { + "address": "0x004819B5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819B6", + "mnemonic": "call", + "op_str": "0x47f924", + "string": null + }, + { + "address": "0x004819BB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1f8]", + "string": null + }, + { + "address": "0x004819C1", + "mnemonic": "call", + "op_str": "0x4053ac", + "string": null + }, + { + "address": "0x004819C6", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x004819C9", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004819CA", + "mnemonic": "fld", + "op_str": "qword ptr [ebp - 0x20]", + "string": null + }, + { + "address": "0x004819CD", + "mnemonic": "fadd", + "op_str": "qword ptr [ebp - 0x28]", + "string": null + }, + { + "address": "0x004819D0", + "mnemonic": "fadd", + "op_str": "qword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x004819D3", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x30]", + "string": null + }, + { + "address": "0x004819D6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004819D7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x28]", + "string": null + }, + { + "address": "0x004819DA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819DB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004819DE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819DF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x24]", + "string": null + }, + { + "address": "0x004819E2", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819E3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x004819E6", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819E7", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x004819E8", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x30]", + "string": null + }, + { + "address": "0x004819EB", + "mnemonic": "mov", + "op_str": "eax, 0xb", + "string": null + }, + { + "address": "0x004819F0", + "mnemonic": "push", + "op_str": "dword ptr [edx + eax*4]", + "string": null + }, + { + "address": "0x004819F3", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x004819F4", + "mnemonic": "jns", + "op_str": "0x4819f0", + "string": null + }, + { + "address": "0x004819F6", + "mnemonic": "call", + "op_str": "0x480f10", + "string": null + }, + { + "address": "0x004819FB", + "mnemonic": "mov", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x004819FD", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004819FF", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00481A02", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00481A08", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00481A0A", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0xc0]", + "string": null + }, + { + "address": "0x00481A11", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x481aac]", + "string": null + }, + { + "address": "0x00481A17", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00481A19", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00481A1A", + "mnemonic": "jne", + "op_str": "0x481a5c", + "string": null + }, + { + "address": "0x00481A1C", + "mnemonic": "inc", + "op_str": "esi", + "string": null + }, + { + "address": "0x00481A1D", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp + 0xc], 0", + "string": null + }, + { + "address": "0x00481A21", + "mnemonic": "je", + "op_str": "0x481a34", + "string": null + }, + { + "address": "0x00481A23", + "mnemonic": "cmp", + "op_str": "esi, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00481A26", + "mnemonic": "jle", + "op_str": "0x481a34", + "string": null + }, + { + "address": "0x00481A28", + "mnemonic": "mov", + "op_str": "byte ptr [ebp + 0xc], 0", + "string": null + }, + { + "address": "0x00481A2C", + "mnemonic": "mov", + "op_str": "esi, 1", + "string": null + }, + { + "address": "0x00481A31", + "mnemonic": "xor", + "op_str": "bl, 1", + "string": null + }, + { + "address": "0x00481A34", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00481A37", + "mnemonic": "inc", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A38", + "mnemonic": "cmp", + "op_str": "esi, eax", + "string": null + }, + { + "address": "0x00481A3A", + "mnemonic": "jge", + "op_str": "0x481a5c", + "string": null + }, + { + "address": "0x00481A3C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x28]", + "string": null + }, + { + "address": "0x00481A3F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A40", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x24]", + "string": null + }, + { + "address": "0x00481A43", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A44", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x00481A47", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A48", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x00481A4B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A4C", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x00481A4D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00481A50", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A51", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00481A52", + "mnemonic": "mov", + "op_str": "al, byte ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00481A55", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00481A56", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00481A57", + "mnemonic": "call", + "op_str": "0x481380", + "string": "U뗭툮" + }, + { + "address": "0x00481A5C", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00481A5E", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x00481A5F", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00481A60", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00481A61", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00481A64", + "mnemonic": "push", + "op_str": "0x481aa1", + "string": null + }, + { + "address": "0x00481A69", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x218]", + "string": null + }, + { + "address": "0x00481A6F", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4010e8]", + "string": null + }, + { + "address": "0x00481A75", + "mnemonic": "mov", + "op_str": "ecx, 0x1e", + "string": null + }, + { + "address": "0x00481A7A", + "mnemonic": "call", + "op_str": "0x404f94", + "string": null + }, + { + "address": "0x00481A7F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x00481A82", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x00481A87", + "mnemonic": "call", + "op_str": "0x4044ac", + "string": null + }, + { + "address": "0x00481A8C", + "mnemonic": "lea", + "op_str": "eax, [ebp + 0x1c]", + "string": null + }, + { + "address": "0x00481A8F", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00481A94", + "mnemonic": "call", + "op_str": "0x4044ac", + "string": null + }, + { + "address": "0x00481A99", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + }, + "SUM_TOT": { + "rva": "0x8045C", + "instructions": [ + { + "address": "0x0048045C", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0048045D", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0048045F", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00480460", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x00480461", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x00480462", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x00480468", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebx]", + "string": null + }, + { + "address": "0x0048046A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0048046D", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048046E", + "mnemonic": "sub", + "op_str": "eax, 9", + "string": null + }, + { + "address": "0x00480471", + "mnemonic": "jb", + "op_str": "0x48047e", + "string": null + }, + { + "address": "0x00480473", + "mnemonic": "je", + "op_str": "0x480601", + "string": null + }, + { + "address": "0x00480479", + "mnemonic": "jmp", + "op_str": "0x48062a", + "string": null + }, + { + "address": "0x0048047E", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp + 8], 1", + "string": null + }, + { + "address": "0x00480482", + "mnemonic": "jle", + "op_str": "0x4804ad", + "string": null + }, + { + "address": "0x00480484", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480486", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x00480488", + "mnemonic": "push", + "op_str": "0x3ff00000", + "string": null + }, + { + "address": "0x0048048D", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0048048F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480491", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480494", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480495", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00480498", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480499", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048049A", + "mnemonic": "call", + "op_str": "0x48045c", + "string": null + }, + { + "address": "0x0048049F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004804A2", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004804A3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004804A6", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x004804A7", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004804A8", + "mnemonic": "call", + "op_str": "0x480028", + "string": null + }, + { + "address": "0x004804AD", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004804AE", + "mnemonic": "call", + "op_str": "0x480150", + "string": null + }, + { + "address": "0x004804B3", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004804B4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004804B7", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004804B9", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x004804BC", + "mnemonic": "imul", + "op_str": "edx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x004804C0", + "mnemonic": "lea", + "op_str": "ecx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x004804C3", + "mnemonic": "fld", + "op_str": "qword ptr [ecx + eax*8 + 0x2a8]", + "string": null + }, + { + "address": "0x004804CA", + "mnemonic": "imul", + "op_str": "ecx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x004804CE", + "mnemonic": "lea", + "op_str": "ecx, [ebx + ecx*8]", + "string": null + }, + { + "address": "0x004804D1", + "mnemonic": "fadd", + "op_str": "qword ptr [ecx + eax*8 + 0x1b8]", + "string": null + }, + { + "address": "0x004804D8", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x004804DB", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x2a8]", + "string": null + }, + { + "address": "0x004804E2", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004804E3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004804E6", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004804E8", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x004804EB", + "mnemonic": "imul", + "op_str": "edx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x004804EF", + "mnemonic": "lea", + "op_str": "ecx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x004804F2", + "mnemonic": "fld", + "op_str": "qword ptr [ecx + eax*8 + 0x2b0]", + "string": null + }, + { + "address": "0x004804F9", + "mnemonic": "imul", + "op_str": "ecx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x004804FD", + "mnemonic": "lea", + "op_str": "ecx, [ebx + ecx*8]", + "string": null + }, + { + "address": "0x00480500", + "mnemonic": "fadd", + "op_str": "qword ptr [ecx + eax*8 + 0x1c0]", + "string": null + }, + { + "address": "0x00480507", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x0048050A", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x2b0]", + "string": null + }, + { + "address": "0x00480511", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480512", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480515", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480517", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x0048051A", + "mnemonic": "imul", + "op_str": "edx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x0048051E", + "mnemonic": "lea", + "op_str": "ecx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x00480521", + "mnemonic": "fld", + "op_str": "qword ptr [ecx + eax*8 + 0x2b8]", + "string": null + }, + { + "address": "0x00480528", + "mnemonic": "imul", + "op_str": "ecx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x0048052C", + "mnemonic": "lea", + "op_str": "ecx, [ebx + ecx*8]", + "string": null + }, + { + "address": "0x0048052F", + "mnemonic": "fadd", + "op_str": "qword ptr [ecx + eax*8 + 0x1c8]", + "string": null + }, + { + "address": "0x00480536", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x00480539", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x2b8]", + "string": null + }, + { + "address": "0x00480540", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480541", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480544", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480546", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00480549", + "mnemonic": "imul", + "op_str": "edx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x0048054D", + "mnemonic": "lea", + "op_str": "ecx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x00480550", + "mnemonic": "fld", + "op_str": "qword ptr [ecx + eax*8 + 0x2c0]", + "string": null + }, + { + "address": "0x00480557", + "mnemonic": "imul", + "op_str": "ecx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x0048055B", + "mnemonic": "lea", + "op_str": "ecx, [ebx + ecx*8]", + "string": null + }, + { + "address": "0x0048055E", + "mnemonic": "fadd", + "op_str": "qword ptr [ecx + eax*8 + 0x1d0]", + "string": null + }, + { + "address": "0x00480565", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x00480568", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x2c0]", + "string": null + }, + { + "address": "0x0048056F", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00480570", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480573", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00480575", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00480578", + "mnemonic": "imul", + "op_str": "edx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x0048057C", + "mnemonic": "lea", + "op_str": "ecx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x0048057F", + "mnemonic": "fld", + "op_str": "qword ptr [ecx + eax*8 + 0x2a0]", + "string": null + }, + { + "address": "0x00480586", + "mnemonic": "imul", + "op_str": "ecx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x0048058A", + "mnemonic": "lea", + "op_str": "ecx, [ebx + ecx*8]", + "string": null + }, + { + "address": "0x0048058D", + "mnemonic": "fadd", + "op_str": "qword ptr [ecx + eax*8 + 0x1b0]", + "string": null + }, + { + "address": "0x00480594", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x00480597", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x2a0]", + "string": null + }, + { + "address": "0x0048059E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0048059F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4841e4]", + "string": null + }, + { + "address": "0x004805A4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004805A6", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x004805AD", + "mnemonic": "jne", + "op_str": "0x4805eb", + "string": null + }, + { + "address": "0x004805AF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4842fc]", + "string": null + }, + { + "address": "0x004805B4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004805B6", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x004805BA", + "mnemonic": "jne", + "op_str": "0x4805eb", + "string": null + }, + { + "address": "0x004805BC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004805BF", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004805C1", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x004805C4", + "mnemonic": "imul", + "op_str": "edx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x004805C8", + "mnemonic": "lea", + "op_str": "ecx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x004805CB", + "mnemonic": "fld", + "op_str": "qword ptr [ecx + eax*8 + 0x2c8]", + "string": null + }, + { + "address": "0x004805D2", + "mnemonic": "imul", + "op_str": "ecx, dword ptr [ebp + 8], 0x1e", + "string": null + }, + { + "address": "0x004805D6", + "mnemonic": "lea", + "op_str": "ecx, [ebx + ecx*8]", + "string": null + }, + { + "address": "0x004805D9", + "mnemonic": "fadd", + "op_str": "qword ptr [ecx + eax*8 + 0x1d8]", + "string": null + }, + { + "address": "0x004805E0", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x004805E3", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x2c8]", + "string": null + }, + { + "address": "0x004805EA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004805EB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x004805EE", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*4]", + "string": null + }, + { + "address": "0x004805F1", + "mnemonic": "lea", + "op_str": "eax, [ebx + eax]", + "string": null + }, + { + "address": "0x004805F4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x004805F7", + "mnemonic": "mov", + "op_str": "byte ptr [eax + edx + 0x167a], 1", + "string": null + }, + { + "address": "0x004805FF", + "mnemonic": "jmp", + "op_str": "0x48062a", + "string": null + }, + { + "address": "0x00480601", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00480603", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x00480605", + "mnemonic": "push", + "op_str": "0x3ff00000", + "string": null + }, + { + "address": "0x0048060A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0048060C", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0048060E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480611", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480612", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00480615", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480616", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480617", + "mnemonic": "call", + "op_str": "0x48045c", + "string": null + }, + { + "address": "0x0048061C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0048061F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480620", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00480623", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480624", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00480625", + "mnemonic": "call", + "op_str": "0x480028", + "string": null + }, + { + "address": "0x0048062A", + "mnemonic": "mov", + "op_str": "edi, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0048062D", + "mnemonic": "test", + "op_str": "edi, edi", + "string": null + }, + { + "address": "0x0048062F", + "mnemonic": "jle", + "op_str": "0x48067f", + "string": null + }, + { + "address": "0x00480631", + "mnemonic": "mov", + "op_str": "esi, 1", + "string": null + }, + { + "address": "0x00480636", + "mnemonic": "lea", + "op_str": "eax, [esi + esi*4]", + "string": null + }, + { + "address": "0x00480639", + "mnemonic": "lea", + "op_str": "eax, [ebx + eax]", + "string": null + }, + { + "address": "0x0048063C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0048063F", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + edx + 0x16ac], 0", + "string": null + }, + { + "address": "0x00480647", + "mnemonic": "je", + "op_str": "0x48067b", + "string": null + }, + { + "address": "0x00480649", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0048064C", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048064E", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00480651", + "mnemonic": "imul", + "op_str": "edx, esi, 0x1e", + "string": null + }, + { + "address": "0x00480654", + "mnemonic": "lea", + "op_str": "edx, [ebx + edx*8]", + "string": null + }, + { + "address": "0x00480657", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8 + 0xc00]", + "string": null + }, + { + "address": "0x0048065E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00480660", + "mnemonic": "mov", + "op_str": "edx, 0x30", + "string": null + }, + { + "address": "0x00480665", + "mnemonic": "call", + "op_str": "0x402fa0", + "string": null + }, + { + "address": "0x0048066A", + "mnemonic": "lea", + "op_str": "eax, [esi + esi*4]", + "string": null + }, + { + "address": "0x0048066D", + "mnemonic": "lea", + "op_str": "eax, [ebx + eax]", + "string": null + }, + { + "address": "0x00480670", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480673", + "mnemonic": "mov", + "op_str": "byte ptr [eax + edx + 0x16ac], 0", + "string": null + }, + { + "address": "0x0048067B", + "mnemonic": "inc", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048067C", + "mnemonic": "dec", + "op_str": "edi", + "string": null + }, + { + "address": "0x0048067D", + "mnemonic": "jne", + "op_str": "0x480636", + "string": null + }, + { + "address": "0x0048067F", + "mnemonic": "pop", + "op_str": "edi", + "string": null + }, + { + "address": "0x00480680", + "mnemonic": "pop", + "op_str": "esi", + "string": null + }, + { + "address": "0x00480681", + "mnemonic": "pop", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00480682", + "mnemonic": "pop", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480683", + "mnemonic": "ret", + "op_str": "0x1c", + "string": null + } + ] + }, + "ZERO_TOT": { + "rva": "0x80028", + "instructions": [ + { + "address": "0x00480028", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00480029", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0048002B", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0048002C", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0048002D", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x0048002E", + "mnemonic": "mov", + "op_str": "edi, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00480031", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00480034", + "mnemonic": "mov", + "op_str": "esi, dword ptr [0x48411c]", + "string": null + }, + { + "address": "0x0048003A", + "mnemonic": "mov", + "op_str": "esi, dword ptr [esi]", + "string": null + }, + { + "address": "0x0048003C", + "mnemonic": "mov", + "op_str": "eax, ebx", + "string": null + }, + { + "address": "0x0048003E", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x0048003F", + "mnemonic": "sub", + "op_str": "eax, 9", + "string": null + }, + { + "address": "0x00480042", + "mnemonic": "jb", + "op_str": "0x480048", + "string": null + }, + { + "address": "0x00480044", + "mnemonic": "je", + "op_str": "0x480088", + "string": null + }, + { + "address": "0x00480046", + "mnemonic": "jmp", + "op_str": "0x4800a8", + "string": null + }, + { + "address": "0x00480048", + "mnemonic": "lea", + "op_str": "eax, [ebx + ebx*4]", + "string": null + }, + { + "address": "0x0048004B", + "mnemonic": "lea", + "op_str": "eax, [esi + eax]", + "string": null + }, + { + "address": "0x0048004E", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + edi + 0x167a], 0", + "string": null + }, + { + "address": "0x00480056", + "mnemonic": "je", + "op_str": "0x4800a8", + "string": null + }, + { + "address": "0x00480058", + "mnemonic": "mov", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x0048005A", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048005C", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x0048005F", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480062", + "mnemonic": "lea", + "op_str": "edx, [esi + edx*8]", + "string": null + }, + { + "address": "0x00480065", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8 + 0x1b0]", + "string": null + }, + { + "address": "0x0048006C", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0048006E", + "mnemonic": "mov", + "op_str": "edx, 0x30", + "string": null + }, + { + "address": "0x00480073", + "mnemonic": "call", + "op_str": "0x402fa0", + "string": null + }, + { + "address": "0x00480078", + "mnemonic": "lea", + "op_str": "eax, [ebx + ebx*4]", + "string": null + }, + { + "address": "0x0048007B", + "mnemonic": "lea", + "op_str": "eax, [esi + eax]", + "string": null + }, + { + "address": "0x0048007E", + "mnemonic": "mov", + "op_str": "byte ptr [eax + edi + 0x167a], 0", + "string": null + }, + { + "address": "0x00480086", + "mnemonic": "jmp", + "op_str": "0x4800a8", + "string": null + }, + { + "address": "0x00480088", + "mnemonic": "mov", + "op_str": "eax, edi", + "string": null + }, + { + "address": "0x0048008A", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0048008C", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x0048008F", + "mnemonic": "imul", + "op_str": "edx, ebx, 0x1e", + "string": null + }, + { + "address": "0x00480092", + "mnemonic": "lea", + "op_str": "edx, [esi + edx*8]", + "string": null + }, + { + "address": "0x00480095", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8 + 0x1b0]", + "string": null + }, + { + "address": "0x0048009C", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0048009E", + "mnemonic": "mov", + "op_str": "edx, 0x30", + "string": null + }, + { + "address": "0x004800A3", + "mnemonic": "call", + "op_str": "0x402fa0", + "string": null + }, + { + "address": "0x004800A8", + "mnemonic": "pop", + "op_str": "edi", + "string": null + }, + { + "address": "0x004800A9", + "mnemonic": "pop", + "op_str": "esi", + "string": null + }, + { + "address": "0x004800AA", + "mnemonic": "pop", + "op_str": "ebx", + "string": null + }, + { + "address": "0x004800AB", + "mnemonic": "pop", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004800AC", + "mnemonic": "ret", + "op_str": "8", + "string": null + } + ] + } + }, + "ST_CPM\\ST_KanJub.CPM": { + "Calc_Kanjub": { + "rva": "0x4CC58", + "instructions": [ + { + "address": "0x0044CC58", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0044CC59", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x0044CC5B", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0044CC5C", + "mnemonic": "mov", + "op_str": "ecx, 0x10b", + "string": null + }, + { + "address": "0x0044CC61", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044CC63", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044CC65", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0044CC66", + "mnemonic": "jne", + "op_str": "0x44cc61", + "string": null + }, + { + "address": "0x0044CC68", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0044CC69", + "mnemonic": "xchg", + "op_str": "dword ptr [ebp - 4], ecx", + "string": null + }, + { + "address": "0x0044CC6C", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x0044CC6D", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0044CC6E", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x0044CC6F", + "mnemonic": "mov", + "op_str": "esi, edx", + "string": null + }, + { + "address": "0x0044CC71", + "mnemonic": "lea", + "op_str": "edi, [ebp - 0x50]", + "string": null + }, + { + "address": "0x0044CC74", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0044CC75", + "mnemonic": "mov", + "op_str": "ecx, 0xc", + "string": null + }, + { + "address": "0x0044CC7A", + "mnemonic": "rep movsd", + "op_str": "dword ptr es:[edi], dword ptr [esi]", + "string": null + }, + { + "address": "0x0044CC7C", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0044CC7D", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 5], cl", + "string": null + }, + { + "address": "0x0044CC80", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 4], eax", + "string": null + }, + { + "address": "0x0044CC83", + "mnemonic": "mov", + "op_str": "esi, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x0044CC86", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044CC88", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x0044CC89", + "mnemonic": "push", + "op_str": "0x44f75c", + "string": null + }, + { + "address": "0x0044CC8E", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x0044CC91", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x0044CC94", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CC97", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CC98", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CC9B", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x0044CC9D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CCA0", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044CCA2", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x0044CCA5", + "mnemonic": "lea", + "op_str": "eax, [eax*8 + 0x4d3204]", + "string": null + }, + { + "address": "0x0044CCAC", + "mnemonic": "call", + "op_str": "0x450d78", + "string": null + }, + { + "address": "0x0044CCB1", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp + 8], 0", + "string": null + }, + { + "address": "0x0044CCB5", + "mnemonic": "je", + "op_str": "0x44ccc4", + "string": null + }, + { + "address": "0x0044CCB7", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CCBA", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x0044CCBC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CCBF", + "mnemonic": "call", + "op_str": "0x455be0", + "string": "U뗭j" + }, + { + "address": "0x0044CCC4", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp - 5], 0", + "string": null + }, + { + "address": "0x0044CCC8", + "mnemonic": "jne", + "op_str": "0x44cda4", + "string": null + }, + { + "address": "0x0044CCCE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2694]", + "string": null + }, + { + "address": "0x0044CCD3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044CCD5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x20]", + "string": null + }, + { + "address": "0x0044CCD8", + "mnemonic": "mov", + "op_str": "edx, 0x44f77c", + "string": "PCLASS" + }, + { + "address": "0x0044CCDD", + "mnemonic": "call", + "op_str": "0x402dac", + "string": null + }, + { + "address": "0x0044CCE2", + "mnemonic": "mov", + "op_str": "dword ptr [0x4d341c], eax", + "string": null + }, + { + "address": "0x0044CCE7", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x0044CCE8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CCEB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CCEC", + "mnemonic": "mov", + "op_str": "cl, byte ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x0044CCEF", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x50]", + "string": null + }, + { + "address": "0x0044CCF2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CCF5", + "mnemonic": "call", + "op_str": "0x446b18", + "string": null + }, + { + "address": "0x0044CCFA", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044CCFC", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x338], eax", + "string": null + }, + { + "address": "0x0044CD02", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x33c], eax", + "string": null + }, + { + "address": "0x0044CD08", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x14], 2", + "string": null + }, + { + "address": "0x0044CD0F", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x7f80]", + "string": null + }, + { + "address": "0x0044CD15", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3c4]", + "string": null + }, + { + "address": "0x0044CD1B", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x1c], eax", + "string": null + }, + { + "address": "0x0044CD1E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CD21", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044CD23", + "mnemonic": "mov", + "op_str": "dword ptr [edx + eax*8 - 0x38f8], ecx", + "string": null + }, + { + "address": "0x0044CD2A", + "mnemonic": "mov", + "op_str": "dword ptr [edx + eax*8 - 0x38f4], ecx", + "string": null + }, + { + "address": "0x0044CD31", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c]", + "string": null + }, + { + "address": "0x0044CD34", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044CD36", + "mnemonic": "test", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044CD38", + "mnemonic": "jle", + "op_str": "0x44cd8d", + "string": null + }, + { + "address": "0x0044CD3A", + "mnemonic": "lea", + "op_str": "eax, [edx + 0x330]", + "string": null + }, + { + "address": "0x0044CD40", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CD43", + "mnemonic": "fld", + "op_str": "qword ptr [edx + ebx*8 - 0x38f8]", + "string": null + }, + { + "address": "0x0044CD4A", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CD4D", + "mnemonic": "fadd", + "op_str": "qword ptr [eax + ebx*8 - 0x38f8]", + "string": null + }, + { + "address": "0x0044CD54", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CD57", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + ebx*8 - 0x38f8]", + "string": null + }, + { + "address": "0x0044CD5E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CD5F", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp - 0x14], 2", + "string": null + }, + { + "address": "0x0044CD63", + "mnemonic": "jne", + "op_str": "0x44cd85", + "string": null + }, + { + "address": "0x0044CD65", + "mnemonic": "cmp", + "op_str": "byte ptr [eax - 0x38c8], 0", + "string": null + }, + { + "address": "0x0044CD6C", + "mnemonic": "je", + "op_str": "0x44cd85", + "string": null + }, + { + "address": "0x0044CD6E", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x338]", + "string": null + }, + { + "address": "0x0044CD74", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044CD77", + "mnemonic": "fadd", + "op_str": "qword ptr [eax + ebx*8 - 0x38f8]", + "string": null + }, + { + "address": "0x0044CD7E", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x338]", + "string": null + }, + { + "address": "0x0044CD84", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CD85", + "mnemonic": "add", + "op_str": "eax, 0x330", + "string": null + }, + { + "address": "0x0044CD8A", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0044CD8B", + "mnemonic": "jne", + "op_str": "0x44cd40", + "string": null + }, + { + "address": "0x0044CD8D", + "mnemonic": "inc", + "op_str": "dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x0044CD90", + "mnemonic": "add", + "op_str": "dword ptr [ebp - 0x1c], 4", + "string": null + }, + { + "address": "0x0044CD94", + "mnemonic": "add", + "op_str": "edx, 0x3fc0", + "string": null + }, + { + "address": "0x0044CD9A", + "mnemonic": "cmp", + "op_str": "dword ptr [ebp - 0x14], 5", + "string": null + }, + { + "address": "0x0044CD9E", + "mnemonic": "jne", + "op_str": "0x44cd1e", + "string": null + }, + { + "address": "0x0044CDA4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x30]", + "string": null + }, + { + "address": "0x0044CDA7", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x3b8], eax", + "string": null + }, + { + "address": "0x0044CDAD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x34]", + "string": null + }, + { + "address": "0x0044CDB0", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x3bc], eax", + "string": null + }, + { + "address": "0x0044CDB6", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044CDBB", + "mnemonic": "sub", + "op_str": "al, 3", + "string": null + }, + { + "address": "0x0044CDBD", + "mnemonic": "jb", + "op_str": "0x44cdc7", + "string": null + }, + { + "address": "0x0044CDBF", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x0044CDC1", + "mnemonic": "jne", + "op_str": "0x44cf92", + "string": null + }, + { + "address": "0x0044CDC7", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044CDC9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CDCC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044CDD2", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CDD4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CDD5", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044CDDB", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x350]", + "string": null + }, + { + "address": "0x0044CDE1", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x298]", + "string": null + }, + { + "address": "0x0044CDE7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CDEA", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x110]", + "string": null + }, + { + "address": "0x0044CDF0", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044CDF6", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044CDF9", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044CDFC", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CDFD", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044CE02", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044CE05", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044CE08", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CE09", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044CE0B", + "mnemonic": "mov", + "op_str": "cl, byte ptr [esi + 0x103c7]", + "string": null + }, + { + "address": "0x0044CE11", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2a0]", + "string": null + }, + { + "address": "0x0044CE17", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044CE1D", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044CE22", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CE25", + "mnemonic": "mov", + "op_str": "edx, 0x44f790", + "string": "ROUNDDOWN( ([T_AMT]+" + }, + { + "address": "0x0044CE2A", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044CE2F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CE32", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CE33", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x80]", + "string": null + }, + { + "address": "0x0044CE36", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044CE38", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044CE3D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x74]", + "string": null + }, + { + "address": "0x0044CE40", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x78]", + "string": null + }, + { + "address": "0x0044CE43", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x7c]", + "string": null + }, + { + "address": "0x0044CE46", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x80]", + "string": null + }, + { + "address": "0x0044CE49", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x350]", + "string": null + }, + { + "address": "0x0044CE4F", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044CE52", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044CE55", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CE56", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x94]", + "string": null + }, + { + "address": "0x0044CE5C", + "mnemonic": "call", + "op_str": "0x401a7c", + "string": null + }, + { + "address": "0x0044CE61", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x94]", + "string": null + }, + { + "address": "0x0044CE67", + "mnemonic": "mov", + "op_str": "edx, 0x44f7b0", + "string": null + }, + { + "address": "0x0044CE6C", + "mnemonic": "call", + "op_str": "0x401238", + "string": null + }, + { + "address": "0x0044CE71", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x94]", + "string": null + }, + { + "address": "0x0044CE77", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x90]", + "string": null + }, + { + "address": "0x0044CE7D", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044CE82", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x84]", + "string": null + }, + { + "address": "0x0044CE88", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x88]", + "string": null + }, + { + "address": "0x0044CE8E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x8c]", + "string": null + }, + { + "address": "0x0044CE94", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x90]", + "string": null + }, + { + "address": "0x0044CE9A", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x350]", + "string": null + }, + { + "address": "0x0044CEA0", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x44f7b4]", + "string": null + }, + { + "address": "0x0044CEA6", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044CEA8", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044CEA9", + "mnemonic": "setne", + "op_str": "al", + "string": null + }, + { + "address": "0x0044CEAC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CEAD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x70]", + "string": null + }, + { + "address": "0x0044CEB0", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CEB1", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044CEB6", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x70]", + "string": null + }, + { + "address": "0x0044CEB9", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CEBA", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044CEBF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CEC2", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CEC3", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x298]", + "string": null + }, + { + "address": "0x0044CEC9", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044CECC", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044CECF", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CED0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa8]", + "string": null + }, + { + "address": "0x0044CED6", + "mnemonic": "call", + "op_str": "0x401a7c", + "string": null + }, + { + "address": "0x0044CEDB", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xa8]", + "string": null + }, + { + "address": "0x0044CEE1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa4]", + "string": null + }, + { + "address": "0x0044CEE7", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044CEEC", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xa4]", + "string": null + }, + { + "address": "0x0044CEF2", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CEF3", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044CEF8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CEFB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CEFC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb8]", + "string": null + }, + { + "address": "0x0044CF02", + "mnemonic": "mov", + "op_str": "edx, 0x44f7c0", + "string": ") * [RAT_1], " + }, + { + "address": "0x0044CF07", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044CF0C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xb8]", + "string": null + }, + { + "address": "0x0044CF12", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF13", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044CF18", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CF1B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF1C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xcc]", + "string": null + }, + { + "address": "0x0044CF22", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CF25", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044CF2B", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF2D", + "mnemonic": "call", + "op_str": "0x4019dc", + "string": null + }, + { + "address": "0x0044CF32", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xcc]", + "string": null + }, + { + "address": "0x0044CF38", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x0044CF3E", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044CF43", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x0044CF49", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF4A", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044CF4F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CF52", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF53", + "mnemonic": "mov", + "op_str": "al, 0x29", + "string": null + }, + { + "address": "0x0044CF55", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xdf], al", + "string": null + }, + { + "address": "0x0044CF5B", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xe0], 1", + "string": null + }, + { + "address": "0x0044CF62", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xdc]", + "string": null + }, + { + "address": "0x0044CF68", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xe0]", + "string": null + }, + { + "address": "0x0044CF6E", + "mnemonic": "call", + "op_str": "0x401348", + "string": null + }, + { + "address": "0x0044CF73", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xdc]", + "string": null + }, + { + "address": "0x0044CF79", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF7A", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044CF7F", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x60]", + "string": null + }, + { + "address": "0x0044CF82", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x1037c]", + "string": null + }, + { + "address": "0x0044CF88", + "mnemonic": "call", + "op_str": "0x401318", + "string": null + }, + { + "address": "0x0044CF8D", + "mnemonic": "jmp", + "op_str": "0x44d017", + "string": null + }, + { + "address": "0x0044CF92", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044CF94", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CF97", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044CF9D", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CF9F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CFA0", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044CFA6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CFA9", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x110]", + "string": null + }, + { + "address": "0x0044CFAF", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044CFB5", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044CFB8", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044CFBB", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CFBC", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044CFC1", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044CFC4", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044CFC7", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044CFC8", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044CFCA", + "mnemonic": "mov", + "op_str": "cl, byte ptr [esi + 0x103c7]", + "string": null + }, + { + "address": "0x0044CFD0", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2a0]", + "string": null + }, + { + "address": "0x0044CFD6", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044CFDC", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044CFE1", + "mnemonic": "push", + "op_str": "0x44f7d8", + "string": "ROUNDDOWN( [T_AMT] * [RAT_1], " + }, + { + "address": "0x0044CFE6", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xe4]", + "string": null + }, + { + "address": "0x0044CFEC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044CFEF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044CFF5", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044CFF7", + "mnemonic": "call", + "op_str": "0x4019dc", + "string": null + }, + { + "address": "0x0044CFFC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xe4]", + "string": null + }, + { + "address": "0x0044D002", + "mnemonic": "push", + "op_str": "0x44f800", + "string": null + }, + { + "address": "0x0044D007", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x1037c]", + "string": null + }, + { + "address": "0x0044D00D", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x0044D012", + "mnemonic": "call", + "op_str": "0x401248", + "string": null + }, + { + "address": "0x0044D017", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D01D", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x2a8], eax", + "string": null + }, + { + "address": "0x0044D023", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x3bc]", + "string": null + }, + { + "address": "0x0044D029", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x2ac], eax", + "string": null + }, + { + "address": "0x0044D02F", + "mnemonic": "cmp", + "op_str": "byte ptr [0x4d3225], 0", + "string": null + }, + { + "address": "0x0044D036", + "mnemonic": "je", + "op_str": "0x44d07a", + "string": null + }, + { + "address": "0x0044D038", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D03A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D03C", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D042", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D045", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x118]", + "string": null + }, + { + "address": "0x0044D04B", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D051", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D054", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D057", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D058", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D05D", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D063", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D064", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044D069", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044D06B", + "mnemonic": "add", + "op_str": "eax, 4", + "string": null + }, + { + "address": "0x0044D06E", + "mnemonic": "mov", + "op_str": "edx, 0x44f80c", + "string": "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )" + }, + { + "address": "0x0044D073", + "mnemonic": "call", + "op_str": "0x4011f0", + "string": null + }, + { + "address": "0x0044D078", + "mnemonic": "jmp", + "op_str": "0x44d0bd", + "string": null + }, + { + "address": "0x0044D07A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D07C", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D07E", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D084", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x10]", + "string": null + }, + { + "address": "0x0044D087", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D08A", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x118]", + "string": null + }, + { + "address": "0x0044D090", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D096", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D099", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D09C", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D09D", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D0A2", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D0A8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D0A9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044D0AE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044D0B0", + "mnemonic": "add", + "op_str": "eax, 4", + "string": null + }, + { + "address": "0x0044D0B3", + "mnemonic": "mov", + "op_str": "edx, 0x44f838", + "string": "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )" + }, + { + "address": "0x0044D0B8", + "mnemonic": "call", + "op_str": "0x4011f0", + "string": null + }, + { + "address": "0x0044D0BD", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103c8], 0", + "string": null + }, + { + "address": "0x0044D0C4", + "mnemonic": "jne", + "op_str": "0x44d0ff", + "string": null + }, + { + "address": "0x0044D0C6", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D0C8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D0CB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044D0D1", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D0D3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D0D4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x30]", + "string": null + }, + { + "address": "0x0044D0D7", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x3a0]", + "string": null + }, + { + "address": "0x0044D0DD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D0E0", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x120]", + "string": null + }, + { + "address": "0x0044D0E6", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D0EC", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D0EF", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D0F2", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D0F3", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D0F8", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D0FE", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D0FF", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D104", + "mnemonic": "sub", + "op_str": "al, 5", + "string": null + }, + { + "address": "0x0044D106", + "mnemonic": "jne", + "op_str": "0x44d272", + "string": null + }, + { + "address": "0x0044D10C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d25c8]", + "string": null + }, + { + "address": "0x0044D111", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044D113", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 3", + "string": null + }, + { + "address": "0x0044D117", + "mnemonic": "jne", + "op_str": "0x44d126", + "string": null + }, + { + "address": "0x0044D119", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d341c]", + "string": null + }, + { + "address": "0x0044D11E", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044D120", + "mnemonic": "jne", + "op_str": "0x44d272", + "string": null + }, + { + "address": "0x0044D126", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D128", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D12A", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 8]", + "string": null + }, + { + "address": "0x0044D12D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D130", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x138]", + "string": null + }, + { + "address": "0x0044D136", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D13C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D13F", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x140]", + "string": null + }, + { + "address": "0x0044D145", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D14B", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f864]", + "string": null + }, + { + "address": "0x0044D151", + "mnemonic": "fmulp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044D153", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D156", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D159", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D15A", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D15F", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2f0]", + "string": null + }, + { + "address": "0x0044D165", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D166", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103bf], 0", + "string": null + }, + { + "address": "0x0044D16D", + "mnemonic": "jne", + "op_str": "0x44d1a7", + "string": null + }, + { + "address": "0x0044D16F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D171", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D173", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 8]", + "string": null + }, + { + "address": "0x0044D176", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D179", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x148]", + "string": null + }, + { + "address": "0x0044D17F", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D185", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D188", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x150]", + "string": null + }, + { + "address": "0x0044D18E", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D194", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D197", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D19A", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D19B", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D1A0", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044D1A6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D1A7", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103c0], 0", + "string": null + }, + { + "address": "0x0044D1AE", + "mnemonic": "jne", + "op_str": "0x44d1f7", + "string": null + }, + { + "address": "0x0044D1B0", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D1B2", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D1B4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 8]", + "string": null + }, + { + "address": "0x0044D1B7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D1BA", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x138]", + "string": null + }, + { + "address": "0x0044D1C0", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D1C6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D1C9", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x140]", + "string": null + }, + { + "address": "0x0044D1CF", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D1D5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D1D8", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x158]", + "string": null + }, + { + "address": "0x0044D1DE", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D1E4", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D1E7", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D1EA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D1EB", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D1F0", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x300]", + "string": null + }, + { + "address": "0x0044D1F6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D1F7", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103be], 0", + "string": null + }, + { + "address": "0x0044D1FE", + "mnemonic": "jne", + "op_str": "0x44d233", + "string": null + }, + { + "address": "0x0044D200", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D202", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D205", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044D20B", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D20D", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D20E", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2f0]", + "string": null + }, + { + "address": "0x0044D214", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044D21A", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x300]", + "string": null + }, + { + "address": "0x0044D220", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D223", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D226", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D227", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D22C", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044D232", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D233", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103be], 0", + "string": null + }, + { + "address": "0x0044D23A", + "mnemonic": "jne", + "op_str": "0x44d272", + "string": null + }, + { + "address": "0x0044D23C", + "mnemonic": "push", + "op_str": "0x44f878", + "string": "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), " + }, + { + "address": "0x0044D241", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xe8]", + "string": null + }, + { + "address": "0x0044D247", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D24A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044D250", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D252", + "mnemonic": "call", + "op_str": "0x4019dc", + "string": null + }, + { + "address": "0x0044D257", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xe8]", + "string": null + }, + { + "address": "0x0044D25D", + "mnemonic": "push", + "op_str": "0x44f800", + "string": null + }, + { + "address": "0x0044D262", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10354]", + "string": null + }, + { + "address": "0x0044D268", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x0044D26D", + "mnemonic": "call", + "op_str": "0x401248", + "string": null + }, + { + "address": "0x0044D272", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x0044D275", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x0044D27A", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3a0]", + "string": null + }, + { + "address": "0x0044D280", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x44f7b4]", + "string": null + }, + { + "address": "0x0044D286", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044D288", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044D289", + "mnemonic": "je", + "op_str": "0x44d2a7", + "string": null + }, + { + "address": "0x0044D28B", + "mnemonic": "push", + "op_str": "0x44f7b0", + "string": null + }, + { + "address": "0x0044D290", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18]", + "string": null + }, + { + "address": "0x0044D293", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D294", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D297", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx + 0x1b4]", + "string": null + }, + { + "address": "0x0044D29D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D2A0", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x0044D2A2", + "mnemonic": "call", + "op_str": "0x451268", + "string": null + }, + { + "address": "0x0044D2A7", + "mnemonic": "lea", + "op_str": "ecx, [ebp - 0xec]", + "string": null + }, + { + "address": "0x0044D2AD", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x18]", + "string": null + }, + { + "address": "0x0044D2B0", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x0044D2B2", + "mnemonic": "call", + "op_str": "0x45530c", + "string": null + }, + { + "address": "0x0044D2B7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D2BA", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1a8], 0", + "string": null + }, + { + "address": "0x0044D2C1", + "mnemonic": "jne", + "op_str": "0x44d522", + "string": null + }, + { + "address": "0x0044D2C7", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D2CD", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x2b8]", + "string": null + }, + { + "address": "0x0044D2D3", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044D2D6", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044D2D9", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D2DA", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D2DC", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2c0]", + "string": null + }, + { + "address": "0x0044D2E2", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D2E8", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D2EA", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D2EF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044D2F4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044D2F6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax + 4]", + "string": null + }, + { + "address": "0x0044D2F9", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10384]", + "string": null + }, + { + "address": "0x0044D2FF", + "mnemonic": "mov", + "op_str": "ecx, 0x44f91c", + "string": " - [IYUN_M]" + }, + { + "address": "0x0044D304", + "mnemonic": "call", + "op_str": "0x401240", + "string": null + }, + { + "address": "0x0044D309", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2cc]", + "string": null + }, + { + "address": "0x0044D30F", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D315", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D317", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D31D", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D323", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D325", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D32A", + "mnemonic": "push", + "op_str": "0x44f930", + "string": "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]" + }, + { + "address": "0x0044D32F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x0044D332", + "mnemonic": "push", + "op_str": "0x44f7c0", + "string": ") * [RAT_1], " + }, + { + "address": "0x0044D337", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xf0]", + "string": null + }, + { + "address": "0x0044D33D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D340", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044D346", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D348", + "mnemonic": "call", + "op_str": "0x4019dc", + "string": null + }, + { + "address": "0x0044D34D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf0]", + "string": null + }, + { + "address": "0x0044D353", + "mnemonic": "push", + "op_str": "0x44f800", + "string": null + }, + { + "address": "0x0044D358", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10388]", + "string": null + }, + { + "address": "0x0044D35E", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x0044D363", + "mnemonic": "call", + "op_str": "0x401248", + "string": null + }, + { + "address": "0x0044D368", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x27c]", + "string": null + }, + { + "address": "0x0044D36E", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x278]", + "string": null + }, + { + "address": "0x0044D374", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D376", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x278]", + "string": null + }, + { + "address": "0x0044D37C", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D382", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D384", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D389", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10360]", + "string": null + }, + { + "address": "0x0044D38F", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x0044D394", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x284]", + "string": null + }, + { + "address": "0x0044D39A", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x280]", + "string": null + }, + { + "address": "0x0044D3A0", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D3A2", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x280]", + "string": null + }, + { + "address": "0x0044D3A8", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D3AE", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D3B0", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D3B5", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10364]", + "string": null + }, + { + "address": "0x0044D3BB", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x0044D3C0", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D3C5", + "mnemonic": "sub", + "op_str": "al, 3", + "string": null + }, + { + "address": "0x0044D3C7", + "mnemonic": "jb", + "op_str": "0x44d3cd", + "string": null + }, + { + "address": "0x0044D3C9", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x0044D3CB", + "mnemonic": "jne", + "op_str": "0x44d3fa", + "string": null + }, + { + "address": "0x0044D3CD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D3D0", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1bc], 1", + "string": null + }, + { + "address": "0x0044D3D7", + "mnemonic": "jne", + "op_str": "0x44d3fa", + "string": null + }, + { + "address": "0x0044D3D9", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x39c]", + "string": null + }, + { + "address": "0x0044D3DF", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D3E5", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D3E7", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D3ED", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D3F3", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D3F5", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D3FA", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D3FF", + "mnemonic": "sub", + "op_str": "al, 5", + "string": null + }, + { + "address": "0x0044D401", + "mnemonic": "jne", + "op_str": "0x44d478", + "string": null + }, + { + "address": "0x0044D403", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2ec]", + "string": null + }, + { + "address": "0x0044D409", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044D40F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D411", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044D417", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D41D", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D41F", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D424", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103bf], 0", + "string": null + }, + { + "address": "0x0044D42B", + "mnemonic": "je", + "op_str": "0x44d44e", + "string": null + }, + { + "address": "0x0044D42D", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2fc]", + "string": null + }, + { + "address": "0x0044D433", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044D439", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D43B", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044D441", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D447", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D449", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D44E", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103c0], 0", + "string": null + }, + { + "address": "0x0044D455", + "mnemonic": "je", + "op_str": "0x44d478", + "string": null + }, + { + "address": "0x0044D457", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x304]", + "string": null + }, + { + "address": "0x0044D45D", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x300]", + "string": null + }, + { + "address": "0x0044D463", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D465", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x300]", + "string": null + }, + { + "address": "0x0044D46B", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D471", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D473", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D478", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044D47B", + "mnemonic": "push", + "op_str": "dword ptr [esi + eax*8 + 0x468c]", + "string": null + }, + { + "address": "0x0044D482", + "mnemonic": "push", + "op_str": "dword ptr [esi + eax*8 + 0x4688]", + "string": null + }, + { + "address": "0x0044D489", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D48B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044D48E", + "mnemonic": "lea", + "op_str": "edx, [esi + eax*8 + 0x4688]", + "string": null + }, + { + "address": "0x0044D495", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D49B", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D49D", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D4A2", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D4A7", + "mnemonic": "sub", + "op_str": "al, 4", + "string": null + }, + { + "address": "0x0044D4A9", + "mnemonic": "jne", + "op_str": "0x44d505", + "string": null + }, + { + "address": "0x0044D4AB", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D4AD", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D4AF", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2a8]", + "string": null + }, + { + "address": "0x0044D4B5", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2c0]", + "string": null + }, + { + "address": "0x0044D4BB", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D4C1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D4C4", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D4CA", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D4D0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D4D3", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D4D9", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D4DC", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D4DF", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D4E0", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D4E5", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044D4E8", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044D4EB", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D4EC", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D4EE", + "mnemonic": "mov", + "op_str": "cl, byte ptr [esi + 0x103c9]", + "string": null + }, + { + "address": "0x0044D4F4", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2d8]", + "string": null + }, + { + "address": "0x0044D4FA", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D500", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D505", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D50B", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x308], eax", + "string": null + }, + { + "address": "0x0044D511", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x3bc]", + "string": null + }, + { + "address": "0x0044D517", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x30c], eax", + "string": null + }, + { + "address": "0x0044D51D", + "mnemonic": "jmp", + "op_str": "0x44dae9", + "string": null + }, + { + "address": "0x0044D522", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2b4]", + "string": null + }, + { + "address": "0x0044D528", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D52E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D530", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D536", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D53C", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D53E", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D543", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2cc]", + "string": null + }, + { + "address": "0x0044D549", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D54F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D551", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D557", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D55D", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D55F", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D564", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x27c]", + "string": null + }, + { + "address": "0x0044D56A", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x278]", + "string": null + }, + { + "address": "0x0044D570", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D572", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x278]", + "string": null + }, + { + "address": "0x0044D578", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D57E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D580", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D585", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x284]", + "string": null + }, + { + "address": "0x0044D58B", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x280]", + "string": null + }, + { + "address": "0x0044D591", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D593", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x280]", + "string": null + }, + { + "address": "0x0044D599", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D59F", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D5A1", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D5A6", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D5AB", + "mnemonic": "sub", + "op_str": "al, 3", + "string": null + }, + { + "address": "0x0044D5AD", + "mnemonic": "jb", + "op_str": "0x44d5b3", + "string": null + }, + { + "address": "0x0044D5AF", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x0044D5B1", + "mnemonic": "jne", + "op_str": "0x44d5e0", + "string": null + }, + { + "address": "0x0044D5B3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D5B6", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1bc], 1", + "string": null + }, + { + "address": "0x0044D5BD", + "mnemonic": "jne", + "op_str": "0x44d5e0", + "string": null + }, + { + "address": "0x0044D5BF", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x39c]", + "string": null + }, + { + "address": "0x0044D5C5", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D5CB", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D5CD", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D5D3", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D5D9", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D5DB", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D5E0", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D5E5", + "mnemonic": "sub", + "op_str": "al, 5", + "string": null + }, + { + "address": "0x0044D5E7", + "mnemonic": "jne", + "op_str": "0x44d65e", + "string": null + }, + { + "address": "0x0044D5E9", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2ec]", + "string": null + }, + { + "address": "0x0044D5EF", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044D5F5", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D5F7", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044D5FD", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D603", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D605", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D60A", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103bf], 0", + "string": null + }, + { + "address": "0x0044D611", + "mnemonic": "je", + "op_str": "0x44d634", + "string": null + }, + { + "address": "0x0044D613", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2fc]", + "string": null + }, + { + "address": "0x0044D619", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044D61F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D621", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044D627", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D62D", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D62F", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D634", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103c0], 0", + "string": null + }, + { + "address": "0x0044D63B", + "mnemonic": "je", + "op_str": "0x44d65e", + "string": null + }, + { + "address": "0x0044D63D", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x304]", + "string": null + }, + { + "address": "0x0044D643", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x300]", + "string": null + }, + { + "address": "0x0044D649", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D64B", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x300]", + "string": null + }, + { + "address": "0x0044D651", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D657", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D659", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D65E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044D661", + "mnemonic": "push", + "op_str": "dword ptr [esi + eax*8 + 0x468c]", + "string": null + }, + { + "address": "0x0044D668", + "mnemonic": "push", + "op_str": "dword ptr [esi + eax*8 + 0x4688]", + "string": null + }, + { + "address": "0x0044D66F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D671", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044D674", + "mnemonic": "lea", + "op_str": "edx, [esi + eax*8 + 0x4688]", + "string": null + }, + { + "address": "0x0044D67B", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D681", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D683", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D688", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D68D", + "mnemonic": "sub", + "op_str": "al, 4", + "string": null + }, + { + "address": "0x0044D68F", + "mnemonic": "jne", + "op_str": "0x44d6eb", + "string": null + }, + { + "address": "0x0044D691", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D693", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D695", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2a8]", + "string": null + }, + { + "address": "0x0044D69B", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D6A1", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D6A7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D6AA", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D6B0", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D6B6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D6B9", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D6BF", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D6C2", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D6C5", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D6C6", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D6CB", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044D6CE", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044D6D1", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D6D2", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D6D4", + "mnemonic": "mov", + "op_str": "cl, byte ptr [esi + 0x103c9]", + "string": null + }, + { + "address": "0x0044D6DA", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2d0]", + "string": null + }, + { + "address": "0x0044D6E0", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D6E6", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D6EB", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D6ED", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D6F0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1a8]", + "string": null + }, + { + "address": "0x0044D6F6", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D6F8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D6F9", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D6FF", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D702", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D705", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D706", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D70B", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044D711", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D712", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D718", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044D71E", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2b8]", + "string": null + }, + { + "address": "0x0044D724", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D725", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D72A", + "mnemonic": "sub", + "op_str": "al, 4", + "string": null + }, + { + "address": "0x0044D72C", + "mnemonic": "jne", + "op_str": "0x44d8cc", + "string": null + }, + { + "address": "0x0044D732", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x0044D734", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D736", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D73C", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044D742", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D745", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D74B", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D751", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D754", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D75A", + "mnemonic": "fadd", + "op_str": "dword ptr [0x44f954]", + "string": null + }, + { + "address": "0x0044D760", + "mnemonic": "fdivp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044D762", + "mnemonic": "fadd", + "op_str": "dword ptr [0x44f958]", + "string": null + }, + { + "address": "0x0044D768", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D76B", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D76E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D76F", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D774", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D777", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D778", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D77A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D77C", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2a8]", + "string": null + }, + { + "address": "0x0044D782", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D788", + "mnemonic": "fsub", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D78B", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D791", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D794", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D79A", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D7A0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D7A3", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D7A9", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D7AC", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D7AF", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D7B0", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D7B5", + "mnemonic": "fld", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D7B8", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2d0]", + "string": null + }, + { + "address": "0x0044D7BE", + "mnemonic": "fsubrp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044D7C0", + "mnemonic": "fcomp", + "op_str": "qword ptr [esi + 0x2b8]", + "string": null + }, + { + "address": "0x0044D7C6", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044D7C8", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044D7C9", + "mnemonic": "je", + "op_str": "0x44d80b", + "string": null + }, + { + "address": "0x0044D7CB", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D7CD", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D7CF", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D7D5", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044D7DB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D7DE", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D7E4", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D7EA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D7ED", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D7F3", + "mnemonic": "fadd", + "op_str": "dword ptr [0x44f954]", + "string": null + }, + { + "address": "0x0044D7F9", + "mnemonic": "fdivp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044D7FB", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D7FE", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D801", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D802", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D807", + "mnemonic": "fstp", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D80A", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D80B", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D80D", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D80F", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2a8]", + "string": null + }, + { + "address": "0x0044D815", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D81B", + "mnemonic": "fsub", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D81E", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D824", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D827", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D82D", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D833", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D836", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D83C", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D83F", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D842", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D843", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D848", + "mnemonic": "fld", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D84B", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2d0]", + "string": null + }, + { + "address": "0x0044D851", + "mnemonic": "fsubrp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044D853", + "mnemonic": "fcomp", + "op_str": "qword ptr [esi + 0x2b8]", + "string": null + }, + { + "address": "0x0044D859", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044D85B", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044D85C", + "mnemonic": "jne", + "op_str": "0x44d8a4", + "string": null + }, + { + "address": "0x0044D85E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D860", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D862", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2a8]", + "string": null + }, + { + "address": "0x0044D868", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D86E", + "mnemonic": "fsub", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D871", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044D877", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D87A", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x128]", + "string": null + }, + { + "address": "0x0044D880", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044D886", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D889", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x130]", + "string": null + }, + { + "address": "0x0044D88F", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044D892", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044D895", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D896", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044D89B", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2d8]", + "string": null + }, + { + "address": "0x0044D8A1", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D8A2", + "mnemonic": "jmp", + "op_str": "0x44d8ba", + "string": null + }, + { + "address": "0x0044D8A4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2b8]", + "string": null + }, + { + "address": "0x0044D8AA", + "mnemonic": "fsub", + "op_str": "qword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D8AD", + "mnemonic": "fsubr", + "op_str": "qword ptr [esi + 0x2d0]", + "string": null + }, + { + "address": "0x0044D8B3", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x2d8]", + "string": null + }, + { + "address": "0x0044D8B9", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D8BA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x10]", + "string": null + }, + { + "address": "0x0044D8BD", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x2b8], eax", + "string": null + }, + { + "address": "0x0044D8C3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x0044D8C6", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x2bc], eax", + "string": null + }, + { + "address": "0x0044D8CC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x2a8]", + "string": null + }, + { + "address": "0x0044D8D2", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x3b8], eax", + "string": null + }, + { + "address": "0x0044D8D8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x2ac]", + "string": null + }, + { + "address": "0x0044D8DE", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x3bc], eax", + "string": null + }, + { + "address": "0x0044D8E4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x2b0]", + "string": null + }, + { + "address": "0x0044D8EA", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x2b8]", + "string": null + }, + { + "address": "0x0044D8F0", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044D8F3", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044D8F6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044D8F7", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D8F9", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2c0]", + "string": null + }, + { + "address": "0x0044D8FF", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D905", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D907", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D90C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044D911", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044D913", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax + 4]", + "string": null + }, + { + "address": "0x0044D916", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10384]", + "string": null + }, + { + "address": "0x0044D91C", + "mnemonic": "mov", + "op_str": "ecx, 0x44f91c", + "string": " - [IYUN_M]" + }, + { + "address": "0x0044D921", + "mnemonic": "call", + "op_str": "0x401240", + "string": null + }, + { + "address": "0x0044D926", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2cc]", + "string": null + }, + { + "address": "0x0044D92C", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D932", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D934", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2c8]", + "string": null + }, + { + "address": "0x0044D93A", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D940", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D942", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D947", + "mnemonic": "push", + "op_str": "0x44f930", + "string": "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]" + }, + { + "address": "0x0044D94C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x0044D94F", + "mnemonic": "push", + "op_str": "0x44f7c0", + "string": ") * [RAT_1], " + }, + { + "address": "0x0044D954", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xf4]", + "string": null + }, + { + "address": "0x0044D95A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D95D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1e4]", + "string": null + }, + { + "address": "0x0044D963", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044D965", + "mnemonic": "call", + "op_str": "0x4019dc", + "string": null + }, + { + "address": "0x0044D96A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf4]", + "string": null + }, + { + "address": "0x0044D970", + "mnemonic": "push", + "op_str": "0x44f800", + "string": null + }, + { + "address": "0x0044D975", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10388]", + "string": null + }, + { + "address": "0x0044D97B", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x0044D980", + "mnemonic": "call", + "op_str": "0x401248", + "string": null + }, + { + "address": "0x0044D985", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x27c]", + "string": null + }, + { + "address": "0x0044D98B", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x278]", + "string": null + }, + { + "address": "0x0044D991", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D993", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x278]", + "string": null + }, + { + "address": "0x0044D999", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D99F", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D9A1", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D9A6", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10360]", + "string": null + }, + { + "address": "0x0044D9AC", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x0044D9B1", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x284]", + "string": null + }, + { + "address": "0x0044D9B7", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x280]", + "string": null + }, + { + "address": "0x0044D9BD", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044D9BF", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x280]", + "string": null + }, + { + "address": "0x0044D9C5", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044D9CB", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044D9CD", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044D9D2", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10364]", + "string": null + }, + { + "address": "0x0044D9D8", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x0044D9DD", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044D9E2", + "mnemonic": "sub", + "op_str": "al, 3", + "string": null + }, + { + "address": "0x0044D9E4", + "mnemonic": "jb", + "op_str": "0x44d9ea", + "string": null + }, + { + "address": "0x0044D9E6", + "mnemonic": "sub", + "op_str": "al, 2", + "string": null + }, + { + "address": "0x0044D9E8", + "mnemonic": "jne", + "op_str": "0x44da17", + "string": null + }, + { + "address": "0x0044D9EA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044D9ED", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1bc], 1", + "string": null + }, + { + "address": "0x0044D9F4", + "mnemonic": "jne", + "op_str": "0x44da17", + "string": null + }, + { + "address": "0x0044D9F6", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x39c]", + "string": null + }, + { + "address": "0x0044D9FC", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DA02", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DA04", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DA0A", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DA10", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044DA12", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044DA17", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044DA1C", + "mnemonic": "sub", + "op_str": "al, 5", + "string": null + }, + { + "address": "0x0044DA1E", + "mnemonic": "jne", + "op_str": "0x44da95", + "string": null + }, + { + "address": "0x0044DA20", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2ec]", + "string": null + }, + { + "address": "0x0044DA26", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044DA2C", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DA2E", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2e8]", + "string": null + }, + { + "address": "0x0044DA34", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DA3A", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044DA3C", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044DA41", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103bf], 0", + "string": null + }, + { + "address": "0x0044DA48", + "mnemonic": "je", + "op_str": "0x44da6b", + "string": null + }, + { + "address": "0x0044DA4A", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2fc]", + "string": null + }, + { + "address": "0x0044DA50", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044DA56", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DA58", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2f8]", + "string": null + }, + { + "address": "0x0044DA5E", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DA64", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044DA66", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044DA6B", + "mnemonic": "cmp", + "op_str": "byte ptr [esi + 0x103c0], 0", + "string": null + }, + { + "address": "0x0044DA72", + "mnemonic": "je", + "op_str": "0x44da95", + "string": null + }, + { + "address": "0x0044DA74", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x304]", + "string": null + }, + { + "address": "0x0044DA7A", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x300]", + "string": null + }, + { + "address": "0x0044DA80", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DA82", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x300]", + "string": null + }, + { + "address": "0x0044DA88", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DA8E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044DA90", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044DA95", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044DA98", + "mnemonic": "push", + "op_str": "dword ptr [esi + eax*8 + 0x468c]", + "string": null + }, + { + "address": "0x0044DA9F", + "mnemonic": "push", + "op_str": "dword ptr [esi + eax*8 + 0x4688]", + "string": null + }, + { + "address": "0x0044DAA6", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DAA8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 4]", + "string": null + }, + { + "address": "0x0044DAAB", + "mnemonic": "lea", + "op_str": "edx, [esi + eax*8 + 0x4688]", + "string": null + }, + { + "address": "0x0044DAB2", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DAB8", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044DABA", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044DABF", + "mnemonic": "mov", + "op_str": "al, byte ptr [0x4d3224]", + "string": null + }, + { + "address": "0x0044DAC4", + "mnemonic": "sub", + "op_str": "al, 4", + "string": null + }, + { + "address": "0x0044DAC6", + "mnemonic": "jne", + "op_str": "0x44dae9", + "string": null + }, + { + "address": "0x0044DAC8", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2dc]", + "string": null + }, + { + "address": "0x0044DACE", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x2d8]", + "string": null + }, + { + "address": "0x0044DAD4", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DAD6", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x2d8]", + "string": null + }, + { + "address": "0x0044DADC", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DAE2", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044DAE4", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044DAE9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044DAEF", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x308], eax", + "string": null + }, + { + "address": "0x0044DAF5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x3bc]", + "string": null + }, + { + "address": "0x0044DAFB", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x30c], eax", + "string": null + }, + { + "address": "0x0044DB01", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DB04", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x20c], 0", + "string": null + }, + { + "address": "0x0044DB0B", + "mnemonic": "jne", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DB11", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xf8]", + "string": null + }, + { + "address": "0x0044DB17", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DB18", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DB1B", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx + 0x1b4]", + "string": null + }, + { + "address": "0x0044DB21", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DB24", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x0044DB26", + "mnemonic": "call", + "op_str": "0x4532d0", + "string": null + }, + { + "address": "0x0044DB2B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xf8]", + "string": null + }, + { + "address": "0x0044DB31", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044DB36", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044DB38", + "mnemonic": "add", + "op_str": "eax, 4", + "string": null + }, + { + "address": "0x0044DB3B", + "mnemonic": "call", + "op_str": "0x4011f0", + "string": null + }, + { + "address": "0x0044DB40", + "mnemonic": "lea", + "op_str": "ecx, [ebp - 0xfc]", + "string": null + }, + { + "address": "0x0044DB46", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044DB4B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0044DB4D", + "mnemonic": "lea", + "op_str": "edx, [eax + 4]", + "string": null + }, + { + "address": "0x0044DB50", + "mnemonic": "mov", + "op_str": "eax, esi", + "string": null + }, + { + "address": "0x0044DB52", + "mnemonic": "call", + "op_str": "0x45530c", + "string": null + }, + { + "address": "0x0044DB57", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DB5A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1b4]", + "string": null + }, + { + "address": "0x0044DB60", + "mnemonic": "cmp", + "op_str": "eax, 7", + "string": null + }, + { + "address": "0x0044DB63", + "mnemonic": "ja", + "op_str": "0x44e0c3", + "string": null + }, + { + "address": "0x0044DB69", + "mnemonic": "jmp", + "op_str": "dword ptr [eax*4 + 0x44db70]", + "string": null + }, + { + "address": "0x0044DB70", + "mnemonic": "nop", + "op_str": "", + "string": null + }, + { + "address": "0x0044DB71", + "mnemonic": "fild", + "op_str": "dword ptr [eax + eax - 0x34]", + "string": null + }, + { + "address": "0x0044DB75", + "mnemonic": "fild", + "op_str": "dword ptr [eax + eax]", + "string": null + }, + { + "address": "0x0044DB79", + "mnemonic": "fadd", + "op_str": "qword ptr [eax + eax - 0x40]", + "string": null + }, + { + "address": "0x0044DB7D", + "mnemonic": "fadd", + "op_str": "qword ptr [eax + eax + 0x7a]", + "string": null + }, + { + "address": "0x0044DB81", + "mnemonic": "fld", + "op_str": "qword ptr [eax + eax + 0x4e]", + "string": null + }, + { + "address": "0x0044DB85", + "mnemonic": "fiadd", + "op_str": "word ptr [eax + eax + 0x20]", + "string": null + }, + { + "address": "0x0044DB89", + "mnemonic": "fild", + "op_str": "word ptr [eax + eax - 6]", + "string": null + }, + { + "address": "0x0044DB8D", + "mnemonic": "fild", + "op_str": "word ptr [eax + eax + 0x6a]", + "string": null + }, + { + "address": "0x0044DB91", + "mnemonic": "add", + "op_str": "byte ptr [edx], ch", + "string": null + }, + { + "address": "0x0044DB94", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x360]", + "string": null + }, + { + "address": "0x0044DB9A", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x370]", + "string": null + }, + { + "address": "0x0044DBA0", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x388]", + "string": null + }, + { + "address": "0x0044DBA6", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f95c]", + "string": null + }, + { + "address": "0x0044DBAC", + "mnemonic": "fdivp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044DBAE", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DBB4", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DBB7", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DBBA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DBBB", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DBC0", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DBC6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DBC7", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DBCC", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DBCE", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DBD0", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x360]", + "string": null + }, + { + "address": "0x0044DBD6", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x370]", + "string": null + }, + { + "address": "0x0044DBDC", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x388]", + "string": null + }, + { + "address": "0x0044DBE2", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DBE8", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DBEB", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DBEE", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DBEF", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DBF4", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DBFA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DBFB", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DC00", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DC02", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DC04", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DC0A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x10c]", + "string": null + }, + { + "address": "0x0044DC10", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DC15", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x10c]", + "string": null + }, + { + "address": "0x0044DC1B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DC1C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x12c]", + "string": null + }, + { + "address": "0x0044DC22", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044DC24", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044DC26", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044DC2B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x120]", + "string": null + }, + { + "address": "0x0044DC31", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x124]", + "string": null + }, + { + "address": "0x0044DC37", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x128]", + "string": null + }, + { + "address": "0x0044DC3D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x12c]", + "string": null + }, + { + "address": "0x0044DC43", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f95c]", + "string": null + }, + { + "address": "0x0044DC49", + "mnemonic": "fdivr", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DC4F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x13c]", + "string": null + }, + { + "address": "0x0044DC55", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DC5A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x130]", + "string": null + }, + { + "address": "0x0044DC60", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x134]", + "string": null + }, + { + "address": "0x0044DC66", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x138]", + "string": null + }, + { + "address": "0x0044DC6C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x13c]", + "string": null + }, + { + "address": "0x0044DC72", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DC75", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1bc]", + "string": null + }, + { + "address": "0x0044DC7B", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0044DC7E", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044DC81", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0044DC84", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DC85", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x11c]", + "string": null + }, + { + "address": "0x0044DC8B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DC8C", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044DC91", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x11c]", + "string": null + }, + { + "address": "0x0044DC97", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DC98", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044DC9D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x10c]", + "string": null + }, + { + "address": "0x0044DCA3", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044DCA8", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DCAB", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DCAE", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DCAF", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DCB4", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DCBA", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DCBB", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DCC0", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DCC2", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DCC4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DCCA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14c]", + "string": null + }, + { + "address": "0x0044DCD0", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DCD5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14c]", + "string": null + }, + { + "address": "0x0044DCDB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DCDC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x16c]", + "string": null + }, + { + "address": "0x0044DCE2", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044DCE4", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044DCE6", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044DCEB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x160]", + "string": null + }, + { + "address": "0x0044DCF1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x164]", + "string": null + }, + { + "address": "0x0044DCF7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x168]", + "string": null + }, + { + "address": "0x0044DCFD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x16c]", + "string": null + }, + { + "address": "0x0044DD03", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DD09", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x17c]", + "string": null + }, + { + "address": "0x0044DD0F", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DD14", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x170]", + "string": null + }, + { + "address": "0x0044DD1A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x174]", + "string": null + }, + { + "address": "0x0044DD20", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x178]", + "string": null + }, + { + "address": "0x0044DD26", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x17c]", + "string": null + }, + { + "address": "0x0044DD2C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DD2F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1bc]", + "string": null + }, + { + "address": "0x0044DD35", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0044DD38", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044DD3B", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0044DD3E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DD3F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x15c]", + "string": null + }, + { + "address": "0x0044DD45", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DD46", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044DD4B", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x15c]", + "string": null + }, + { + "address": "0x0044DD51", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DD52", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044DD57", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14c]", + "string": null + }, + { + "address": "0x0044DD5D", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044DD62", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DD65", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DD68", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DD69", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DD6E", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DD74", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DD75", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DD7A", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DD7C", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DD7E", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x360]", + "string": null + }, + { + "address": "0x0044DD84", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x370]", + "string": null + }, + { + "address": "0x0044DD8A", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x388]", + "string": null + }, + { + "address": "0x0044DD90", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f95c]", + "string": null + }, + { + "address": "0x0044DD96", + "mnemonic": "fdivp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044DD98", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DD9E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18c]", + "string": null + }, + { + "address": "0x0044DDA4", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DDA9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18c]", + "string": null + }, + { + "address": "0x0044DDAF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DDB0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1ac]", + "string": null + }, + { + "address": "0x0044DDB6", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044DDB8", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044DDBA", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044DDBF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a0]", + "string": null + }, + { + "address": "0x0044DDC5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a4]", + "string": null + }, + { + "address": "0x0044DDCB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a8]", + "string": null + }, + { + "address": "0x0044DDD1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1ac]", + "string": null + }, + { + "address": "0x0044DDD7", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DDDD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1bc]", + "string": null + }, + { + "address": "0x0044DDE3", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DDE8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b0]", + "string": null + }, + { + "address": "0x0044DDEE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b4]", + "string": null + }, + { + "address": "0x0044DDF4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b8]", + "string": null + }, + { + "address": "0x0044DDFA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1bc]", + "string": null + }, + { + "address": "0x0044DE00", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DE03", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1bc]", + "string": null + }, + { + "address": "0x0044DE09", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0044DE0C", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044DE0F", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0044DE12", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DE13", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x19c]", + "string": null + }, + { + "address": "0x0044DE19", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DE1A", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044DE1F", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x19c]", + "string": null + }, + { + "address": "0x0044DE25", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DE26", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044DE2B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18c]", + "string": null + }, + { + "address": "0x0044DE31", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044DE36", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DE39", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DE3C", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DE3D", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DE42", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DE48", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DE49", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DE4E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DE50", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DE52", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x360]", + "string": null + }, + { + "address": "0x0044DE58", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x370]", + "string": null + }, + { + "address": "0x0044DE5E", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x388]", + "string": null + }, + { + "address": "0x0044DE64", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DE6A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1cc]", + "string": null + }, + { + "address": "0x0044DE70", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DE75", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1cc]", + "string": null + }, + { + "address": "0x0044DE7B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DE7C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1ec]", + "string": null + }, + { + "address": "0x0044DE82", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044DE84", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044DE86", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044DE8B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e0]", + "string": null + }, + { + "address": "0x0044DE91", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e4]", + "string": null + }, + { + "address": "0x0044DE97", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e8]", + "string": null + }, + { + "address": "0x0044DE9D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1ec]", + "string": null + }, + { + "address": "0x0044DEA3", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f95c]", + "string": null + }, + { + "address": "0x0044DEA9", + "mnemonic": "fdivr", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DEAF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1fc]", + "string": null + }, + { + "address": "0x0044DEB5", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DEBA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1f0]", + "string": null + }, + { + "address": "0x0044DEC0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1f4]", + "string": null + }, + { + "address": "0x0044DEC6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1f8]", + "string": null + }, + { + "address": "0x0044DECC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1fc]", + "string": null + }, + { + "address": "0x0044DED2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DED5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1bc]", + "string": null + }, + { + "address": "0x0044DEDB", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0044DEDE", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044DEE1", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0044DEE4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DEE5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1dc]", + "string": null + }, + { + "address": "0x0044DEEB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DEEC", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044DEF1", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x1dc]", + "string": null + }, + { + "address": "0x0044DEF7", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DEF8", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044DEFD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1cc]", + "string": null + }, + { + "address": "0x0044DF03", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044DF08", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DF0B", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DF0E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DF0F", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DF14", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DF1A", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DF1B", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DF20", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DF22", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DF24", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x360]", + "string": null + }, + { + "address": "0x0044DF2A", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x370]", + "string": null + }, + { + "address": "0x0044DF30", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x388]", + "string": null + }, + { + "address": "0x0044DF36", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f95c]", + "string": null + }, + { + "address": "0x0044DF3C", + "mnemonic": "fdivp", + "op_str": "st(1)", + "string": null + }, + { + "address": "0x0044DF3E", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044DF44", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20c]", + "string": null + }, + { + "address": "0x0044DF4A", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DF4F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20c]", + "string": null + }, + { + "address": "0x0044DF55", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DF56", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x22c]", + "string": null + }, + { + "address": "0x0044DF5C", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044DF5E", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044DF60", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044DF65", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x220]", + "string": null + }, + { + "address": "0x0044DF6B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x224]", + "string": null + }, + { + "address": "0x0044DF71", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x228]", + "string": null + }, + { + "address": "0x0044DF77", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x22c]", + "string": null + }, + { + "address": "0x0044DF7D", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f95c]", + "string": null + }, + { + "address": "0x0044DF83", + "mnemonic": "fdivr", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044DF89", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x23c]", + "string": null + }, + { + "address": "0x0044DF8F", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044DF94", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x230]", + "string": null + }, + { + "address": "0x0044DF9A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x234]", + "string": null + }, + { + "address": "0x0044DFA0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x238]", + "string": null + }, + { + "address": "0x0044DFA6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x23c]", + "string": null + }, + { + "address": "0x0044DFAC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044DFAF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1bc]", + "string": null + }, + { + "address": "0x0044DFB5", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0044DFB8", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044DFBB", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0044DFBE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DFBF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x21c]", + "string": null + }, + { + "address": "0x0044DFC5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DFC6", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044DFCB", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x21c]", + "string": null + }, + { + "address": "0x0044DFD1", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044DFD2", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044DFD7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x20c]", + "string": null + }, + { + "address": "0x0044DFDD", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044DFE2", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044DFE5", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044DFE8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DFE9", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044DFEE", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044DFF4", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044DFF5", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044DFFA", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DFFC", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044DFFE", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x360]", + "string": null + }, + { + "address": "0x0044E004", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x370]", + "string": null + }, + { + "address": "0x0044E00A", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 0x388]", + "string": null + }, + { + "address": "0x0044E010", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044E016", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x24c]", + "string": null + }, + { + "address": "0x0044E01C", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E021", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x24c]", + "string": null + }, + { + "address": "0x0044E027", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E028", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x26c]", + "string": null + }, + { + "address": "0x0044E02E", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E030", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E032", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E037", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x260]", + "string": null + }, + { + "address": "0x0044E03D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x264]", + "string": null + }, + { + "address": "0x0044E043", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x268]", + "string": null + }, + { + "address": "0x0044E049", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x26c]", + "string": null + }, + { + "address": "0x0044E04F", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x398]", + "string": null + }, + { + "address": "0x0044E055", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x27c]", + "string": null + }, + { + "address": "0x0044E05B", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E060", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x270]", + "string": null + }, + { + "address": "0x0044E066", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x274]", + "string": null + }, + { + "address": "0x0044E06C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x278]", + "string": null + }, + { + "address": "0x0044E072", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x27c]", + "string": null + }, + { + "address": "0x0044E078", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E07B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1bc]", + "string": null + }, + { + "address": "0x0044E081", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0044E084", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044E087", + "mnemonic": "setb", + "op_str": "al", + "string": null + }, + { + "address": "0x0044E08A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E08B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x25c]", + "string": null + }, + { + "address": "0x0044E091", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E092", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E097", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x25c]", + "string": null + }, + { + "address": "0x0044E09D", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E09E", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E0A3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x24c]", + "string": null + }, + { + "address": "0x0044E0A9", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044E0AE", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044E0B1", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044E0B4", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E0B5", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044E0BA", + "mnemonic": "fstp", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044E0C0", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E0C1", + "mnemonic": "jmp", + "op_str": "0x44e0db", + "string": null + }, + { + "address": "0x0044E0C3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x308]", + "string": null + }, + { + "address": "0x0044E0C9", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x318], eax", + "string": null + }, + { + "address": "0x0044E0CF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [esi + 0x30c]", + "string": null + }, + { + "address": "0x0044E0D5", + "mnemonic": "mov", + "op_str": "dword ptr [esi + 0x31c], eax", + "string": null + }, + { + "address": "0x0044E0DB", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E0DD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E0E0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1a8]", + "string": null + }, + { + "address": "0x0044E0E6", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E0E8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E0E9", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044E0EF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E0F2", + "mnemonic": "fmul", + "op_str": "qword ptr [eax + 0x160]", + "string": null + }, + { + "address": "0x0044E0F8", + "mnemonic": "fdiv", + "op_str": "dword ptr [0x44f784]", + "string": null + }, + { + "address": "0x0044E0FE", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044E101", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044E104", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E105", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044E10A", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044E10D", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044E110", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E111", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E113", + "mnemonic": "mov", + "op_str": "cl, byte ptr [esi + 0x103ca]", + "string": null + }, + { + "address": "0x0044E119", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x320]", + "string": null + }, + { + "address": "0x0044E11F", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044E125", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044E12A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28c]", + "string": null + }, + { + "address": "0x0044E130", + "mnemonic": "mov", + "op_str": "edx, 0x44f970", + "string": "ROUNDDOWN( " + }, + { + "address": "0x0044E135", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E13A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28c]", + "string": null + }, + { + "address": "0x0044E140", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E141", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x2ac]", + "string": null + }, + { + "address": "0x0044E147", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4d2524]", + "string": null + }, + { + "address": "0x0044E14D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x0044E14F", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 4]", + "string": null + }, + { + "address": "0x0044E152", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E157", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2a0]", + "string": null + }, + { + "address": "0x0044E15D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2a4]", + "string": null + }, + { + "address": "0x0044E163", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2a8]", + "string": null + }, + { + "address": "0x0044E169", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2ac]", + "string": null + }, + { + "address": "0x0044E16F", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x318]", + "string": null + }, + { + "address": "0x0044E175", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044E178", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044E17B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E17C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x2c0]", + "string": null + }, + { + "address": "0x0044E182", + "mnemonic": "mov", + "op_str": "eax, 0x44f984", + "string": null + }, + { + "address": "0x0044E187", + "mnemonic": "call", + "op_str": "0x401a84", + "string": null + }, + { + "address": "0x0044E18C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x2c0]", + "string": null + }, + { + "address": "0x0044E192", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x2bc]", + "string": null + }, + { + "address": "0x0044E198", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E19D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2b0]", + "string": null + }, + { + "address": "0x0044E1A3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2b4]", + "string": null + }, + { + "address": "0x0044E1A9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2b8]", + "string": null + }, + { + "address": "0x0044E1AF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2bc]", + "string": null + }, + { + "address": "0x0044E1B5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E1B8", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20c]", + "string": null + }, + { + "address": "0x0044E1BE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E1BF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x29c]", + "string": null + }, + { + "address": "0x0044E1C5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E1C6", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E1CB", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x29c]", + "string": null + }, + { + "address": "0x0044E1D1", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E1D2", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E1D7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28c]", + "string": null + }, + { + "address": "0x0044E1DD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E1DE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x2d0]", + "string": null + }, + { + "address": "0x0044E1E4", + "mnemonic": "mov", + "op_str": "edx, 0x44f990", + "string": " * [RAT_1], " + }, + { + "address": "0x0044E1E9", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E1EE", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x2d0]", + "string": null + }, + { + "address": "0x0044E1F4", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E1F5", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E1FA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28c]", + "string": null + }, + { + "address": "0x0044E200", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E201", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x2e4]", + "string": null + }, + { + "address": "0x0044E207", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E20A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1a8]", + "string": null + }, + { + "address": "0x0044E210", + "mnemonic": "neg", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E212", + "mnemonic": "call", + "op_str": "0x4019dc", + "string": null + }, + { + "address": "0x0044E217", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x2e4]", + "string": null + }, + { + "address": "0x0044E21D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x2e0]", + "string": null + }, + { + "address": "0x0044E223", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E228", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x2e0]", + "string": null + }, + { + "address": "0x0044E22E", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E22F", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E234", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28c]", + "string": null + }, + { + "address": "0x0044E23A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E23B", + "mnemonic": "mov", + "op_str": "al, 0x29", + "string": null + }, + { + "address": "0x0044E23D", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xdf], al", + "string": null + }, + { + "address": "0x0044E243", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xe0], 1", + "string": null + }, + { + "address": "0x0044E24A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x2f4]", + "string": null + }, + { + "address": "0x0044E250", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xe0]", + "string": null + }, + { + "address": "0x0044E256", + "mnemonic": "call", + "op_str": "0x401348", + "string": null + }, + { + "address": "0x0044E25B", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x2f4]", + "string": null + }, + { + "address": "0x0044E261", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E262", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E267", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x28c]", + "string": null + }, + { + "address": "0x0044E26D", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10394]", + "string": null + }, + { + "address": "0x0044E273", + "mnemonic": "call", + "op_str": "0x401318", + "string": null + }, + { + "address": "0x0044E278", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x28c]", + "string": null + }, + { + "address": "0x0044E27E", + "mnemonic": "push", + "op_str": "dword ptr [esi + 0x288]", + "string": null + }, + { + "address": "0x0044E284", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x0044E286", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x288]", + "string": null + }, + { + "address": "0x0044E28C", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044E292", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044E294", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044E299", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10368]", + "string": null + }, + { + "address": "0x0044E29F", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x0044E2A4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E2A7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x1ac]", + "string": null + }, + { + "address": "0x0044E2AD", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x0044E2B0", + "mnemonic": "jb", + "op_str": "0x44e2cd", + "string": null + }, + { + "address": "0x0044E2B2", + "mnemonic": "je", + "op_str": "0x44e431", + "string": null + }, + { + "address": "0x0044E2B8", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x0044E2BB", + "mnemonic": "je", + "op_str": "0x44e592", + "string": null + }, + { + "address": "0x0044E2C1", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E2C2", + "mnemonic": "je", + "op_str": "0x44e992", + "string": null + }, + { + "address": "0x0044E2C8", + "mnemonic": "jmp", + "op_str": "0x44ee22", + "string": null + }, + { + "address": "0x0044E2CD", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E2CF", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E2D1", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f9a0]", + "string": null + }, + { + "address": "0x0044E2D7", + "mnemonic": "fmul", + "op_str": "qword ptr [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044E2DD", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044E2E0", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044E2E3", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E2E4", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044E2E9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x304]", + "string": null + }, + { + "address": "0x0044E2EF", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E2F4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x304]", + "string": null + }, + { + "address": "0x0044E2FA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E2FB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x324]", + "string": null + }, + { + "address": "0x0044E301", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E303", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E305", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E30A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x318]", + "string": null + }, + { + "address": "0x0044E310", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x31c]", + "string": null + }, + { + "address": "0x0044E316", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x320]", + "string": null + }, + { + "address": "0x0044E31C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x324]", + "string": null + }, + { + "address": "0x0044E322", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x334]", + "string": null + }, + { + "address": "0x0044E328", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0044E32D", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E32F", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E334", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x328]", + "string": null + }, + { + "address": "0x0044E33A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x32c]", + "string": null + }, + { + "address": "0x0044E340", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x330]", + "string": null + }, + { + "address": "0x0044E346", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x334]", + "string": null + }, + { + "address": "0x0044E34C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E34F", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044E355", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E356", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x314]", + "string": null + }, + { + "address": "0x0044E35C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E35D", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E362", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x314]", + "string": null + }, + { + "address": "0x0044E368", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E369", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E36E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x304]", + "string": null + }, + { + "address": "0x0044E374", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044E379", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044E37C", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044E37F", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E380", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E382", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x328]", + "string": null + }, + { + "address": "0x0044E388", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044E38E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044E390", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044E395", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x344]", + "string": null + }, + { + "address": "0x0044E39B", + "mnemonic": "mov", + "op_str": "edx, 0x44f9b4", + "string": "ROUNDDOWN([T_AMT] * [RAT_1], 0)" + }, + { + "address": "0x0044E3A0", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E3A5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x344]", + "string": null + }, + { + "address": "0x0044E3AB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E3AC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x364]", + "string": null + }, + { + "address": "0x0044E3B2", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E3B4", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E3B9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x358]", + "string": null + }, + { + "address": "0x0044E3BF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x35c]", + "string": null + }, + { + "address": "0x0044E3C5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x360]", + "string": null + }, + { + "address": "0x0044E3CB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x364]", + "string": null + }, + { + "address": "0x0044E3D1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x374]", + "string": null + }, + { + "address": "0x0044E3D7", + "mnemonic": "mov", + "op_str": "edx, 0x44f9dc", + "string": "+[BUGA_UP]" + }, + { + "address": "0x0044E3DC", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E3E1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x368]", + "string": null + }, + { + "address": "0x0044E3E7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x36c]", + "string": null + }, + { + "address": "0x0044E3ED", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x370]", + "string": null + }, + { + "address": "0x0044E3F3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x374]", + "string": null + }, + { + "address": "0x0044E3F9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E3FC", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044E402", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E403", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x354]", + "string": null + }, + { + "address": "0x0044E409", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E40A", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E40F", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x354]", + "string": null + }, + { + "address": "0x0044E415", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E416", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E41B", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x344]", + "string": null + }, + { + "address": "0x0044E421", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10398]", + "string": null + }, + { + "address": "0x0044E427", + "mnemonic": "call", + "op_str": "0x401318", + "string": null + }, + { + "address": "0x0044E42C", + "mnemonic": "jmp", + "op_str": "0x44ee30", + "string": null + }, + { + "address": "0x0044E431", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E433", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E435", + "mnemonic": "fld", + "op_str": "xword ptr [0x44f9a0]", + "string": null + }, + { + "address": "0x0044E43B", + "mnemonic": "fmul", + "op_str": "qword ptr [esi + 0x10]", + "string": null + }, + { + "address": "0x0044E43E", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044E441", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044E444", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E445", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044E44A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x384]", + "string": null + }, + { + "address": "0x0044E450", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E455", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x384]", + "string": null + }, + { + "address": "0x0044E45B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E45C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3a4]", + "string": null + }, + { + "address": "0x0044E462", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E464", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E466", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E46B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x398]", + "string": null + }, + { + "address": "0x0044E471", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x39c]", + "string": null + }, + { + "address": "0x0044E477", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3a0]", + "string": null + }, + { + "address": "0x0044E47D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3a4]", + "string": null + }, + { + "address": "0x0044E483", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3b4]", + "string": null + }, + { + "address": "0x0044E489", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0044E48E", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E490", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E495", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3a8]", + "string": null + }, + { + "address": "0x0044E49B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3ac]", + "string": null + }, + { + "address": "0x0044E4A1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3b0]", + "string": null + }, + { + "address": "0x0044E4A7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3b4]", + "string": null + }, + { + "address": "0x0044E4AD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E4B0", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044E4B6", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E4B7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x394]", + "string": null + }, + { + "address": "0x0044E4BD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E4BE", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E4C3", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x394]", + "string": null + }, + { + "address": "0x0044E4C9", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E4CA", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E4CF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x384]", + "string": null + }, + { + "address": "0x0044E4D5", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044E4DA", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044E4DD", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044E4E0", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E4E1", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E4E3", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x328]", + "string": null + }, + { + "address": "0x0044E4E9", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044E4EF", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044E4F1", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044E4F6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c4]", + "string": null + }, + { + "address": "0x0044E4FC", + "mnemonic": "mov", + "op_str": "edx, 0x44f9f0", + "string": "ROUNDDOWN([M_AMT] * [RAT_1], 0)" + }, + { + "address": "0x0044E501", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E506", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c4]", + "string": null + }, + { + "address": "0x0044E50C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E50D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3e4]", + "string": null + }, + { + "address": "0x0044E513", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E515", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E51A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3d8]", + "string": null + }, + { + "address": "0x0044E520", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3dc]", + "string": null + }, + { + "address": "0x0044E526", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3e0]", + "string": null + }, + { + "address": "0x0044E52C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3e4]", + "string": null + }, + { + "address": "0x0044E532", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3f4]", + "string": null + }, + { + "address": "0x0044E538", + "mnemonic": "mov", + "op_str": "edx, 0x44f9dc", + "string": "+[BUGA_UP]" + }, + { + "address": "0x0044E53D", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E542", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3e8]", + "string": null + }, + { + "address": "0x0044E548", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3ec]", + "string": null + }, + { + "address": "0x0044E54E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3f0]", + "string": null + }, + { + "address": "0x0044E554", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3f4]", + "string": null + }, + { + "address": "0x0044E55A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E55D", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044E563", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E564", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3d4]", + "string": null + }, + { + "address": "0x0044E56A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E56B", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E570", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3d4]", + "string": null + }, + { + "address": "0x0044E576", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E577", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E57C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3c4]", + "string": null + }, + { + "address": "0x0044E582", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10398]", + "string": null + }, + { + "address": "0x0044E588", + "mnemonic": "call", + "op_str": "0x401318", + "string": null + }, + { + "address": "0x0044E58D", + "mnemonic": "jmp", + "op_str": "0x44ee30", + "string": null + }, + { + "address": "0x0044E592", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E594", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E596", + "mnemonic": "fld", + "op_str": "qword ptr [esi]", + "string": null + }, + { + "address": "0x0044E598", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 8]", + "string": null + }, + { + "address": "0x0044E59B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x414]", + "string": null + }, + { + "address": "0x0044E5A1", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E5A6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x414]", + "string": null + }, + { + "address": "0x0044E5AC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E5AD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x434]", + "string": null + }, + { + "address": "0x0044E5B3", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E5B5", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E5B7", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E5BC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x428]", + "string": null + }, + { + "address": "0x0044E5C2", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x42c]", + "string": null + }, + { + "address": "0x0044E5C8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x430]", + "string": null + }, + { + "address": "0x0044E5CE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x434]", + "string": null + }, + { + "address": "0x0044E5D4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x268]", + "string": null + }, + { + "address": "0x0044E5DA", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x270]", + "string": null + }, + { + "address": "0x0044E5E0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x444]", + "string": null + }, + { + "address": "0x0044E5E6", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E5EB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x438]", + "string": null + }, + { + "address": "0x0044E5F1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x43c]", + "string": null + }, + { + "address": "0x0044E5F7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x440]", + "string": null + }, + { + "address": "0x0044E5FD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x444]", + "string": null + }, + { + "address": "0x0044E603", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E606", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1d8], 1", + "string": null + }, + { + "address": "0x0044E60D", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x0044E610", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E611", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x424]", + "string": null + }, + { + "address": "0x0044E617", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E618", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E61D", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x424]", + "string": null + }, + { + "address": "0x0044E623", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E624", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E629", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x414]", + "string": null + }, + { + "address": "0x0044E62F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E630", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x338]", + "string": null + }, + { + "address": "0x0044E636", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x454]", + "string": null + }, + { + "address": "0x0044E63C", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E641", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x454]", + "string": null + }, + { + "address": "0x0044E647", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E648", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E64D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x414]", + "string": null + }, + { + "address": "0x0044E653", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E654", + "mnemonic": "fld", + "op_str": "xword ptr [0x44fa10]", + "string": null + }, + { + "address": "0x0044E65A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x464]", + "string": null + }, + { + "address": "0x0044E660", + "mnemonic": "call", + "op_str": "0x401340", + "string": null + }, + { + "address": "0x0044E665", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x464]", + "string": null + }, + { + "address": "0x0044E66B", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E66C", + "mnemonic": "call", + "op_str": "0x401368", + "string": null + }, + { + "address": "0x0044E671", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x414]", + "string": null + }, + { + "address": "0x0044E677", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044E67C", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044E67F", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044E682", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E683", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044E688", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x404]", + "string": null + }, + { + "address": "0x0044E68E", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E693", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x404]", + "string": null + }, + { + "address": "0x0044E699", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E69A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x484]", + "string": null + }, + { + "address": "0x0044E6A0", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E6A2", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E6A4", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E6A9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x478]", + "string": null + }, + { + "address": "0x0044E6AF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x47c]", + "string": null + }, + { + "address": "0x0044E6B5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x480]", + "string": null + }, + { + "address": "0x0044E6BB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x484]", + "string": null + }, + { + "address": "0x0044E6C1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x494]", + "string": null + }, + { + "address": "0x0044E6C7", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0044E6CC", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E6CE", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E6D3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x488]", + "string": null + }, + { + "address": "0x0044E6D9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x48c]", + "string": null + }, + { + "address": "0x0044E6DF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x490]", + "string": null + }, + { + "address": "0x0044E6E5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x494]", + "string": null + }, + { + "address": "0x0044E6EB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E6EE", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044E6F4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E6F5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x474]", + "string": null + }, + { + "address": "0x0044E6FB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E6FC", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E701", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x474]", + "string": null + }, + { + "address": "0x0044E707", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E708", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E70D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x404]", + "string": null + }, + { + "address": "0x0044E713", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044E718", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044E71B", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044E71E", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044E71F", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E721", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x328]", + "string": null + }, + { + "address": "0x0044E727", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044E72D", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044E72F", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044E734", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E73A", + "mnemonic": "mov", + "op_str": "edx, 0x44fa24", + "string": "ROUNDDOWN(([TAMT]-[LAMT]" + }, + { + "address": "0x0044E73F", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E744", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E74A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E74B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4c4]", + "string": null + }, + { + "address": "0x0044E751", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E753", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E758", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4b8]", + "string": null + }, + { + "address": "0x0044E75E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4bc]", + "string": null + }, + { + "address": "0x0044E764", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4c0]", + "string": null + }, + { + "address": "0x0044E76A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4c4]", + "string": null + }, + { + "address": "0x0044E770", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4d4]", + "string": null + }, + { + "address": "0x0044E776", + "mnemonic": "mov", + "op_str": "edx, 0x44fa48", + "string": "[+ANJ_B]" + }, + { + "address": "0x0044E77B", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E780", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4c8]", + "string": null + }, + { + "address": "0x0044E786", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4cc]", + "string": null + }, + { + "address": "0x0044E78C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4d0]", + "string": null + }, + { + "address": "0x0044E792", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4d4]", + "string": null + }, + { + "address": "0x0044E798", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E79B", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1d8], 1", + "string": null + }, + { + "address": "0x0044E7A2", + "mnemonic": "jne", + "op_str": "0x44e7b5", + "string": null + }, + { + "address": "0x0044E7A4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x268]", + "string": null + }, + { + "address": "0x0044E7AA", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x44f7b4]", + "string": null + }, + { + "address": "0x0044E7B0", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044E7B2", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044E7B3", + "mnemonic": "jne", + "op_str": "0x44e7b9", + "string": null + }, + { + "address": "0x0044E7B5", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044E7B7", + "mnemonic": "jmp", + "op_str": "0x44e7bb", + "string": null + }, + { + "address": "0x0044E7B9", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x0044E7BB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E7BC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4b4]", + "string": null + }, + { + "address": "0x0044E7C2", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E7C3", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E7C8", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x4b4]", + "string": null + }, + { + "address": "0x0044E7CE", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E7CF", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E7D4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E7DA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E7DB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4f4]", + "string": null + }, + { + "address": "0x0044E7E1", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E7E3", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E7E8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4e8]", + "string": null + }, + { + "address": "0x0044E7EE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4ec]", + "string": null + }, + { + "address": "0x0044E7F4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4f0]", + "string": null + }, + { + "address": "0x0044E7FA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4f4]", + "string": null + }, + { + "address": "0x0044E800", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x504]", + "string": null + }, + { + "address": "0x0044E806", + "mnemonic": "mov", + "op_str": "edx, 0x44fa5c", + "string": "[+PMJ_B]" + }, + { + "address": "0x0044E80B", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E810", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4f8]", + "string": null + }, + { + "address": "0x0044E816", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x4fc]", + "string": null + }, + { + "address": "0x0044E81C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x500]", + "string": null + }, + { + "address": "0x0044E822", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x504]", + "string": null + }, + { + "address": "0x0044E828", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E82B", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1d8], 1", + "string": null + }, + { + "address": "0x0044E832", + "mnemonic": "jne", + "op_str": "0x44e845", + "string": null + }, + { + "address": "0x0044E834", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x270]", + "string": null + }, + { + "address": "0x0044E83A", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x44f7b4]", + "string": null + }, + { + "address": "0x0044E840", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044E842", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044E843", + "mnemonic": "jne", + "op_str": "0x44e849", + "string": null + }, + { + "address": "0x0044E845", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044E847", + "mnemonic": "jmp", + "op_str": "0x44e84b", + "string": null + }, + { + "address": "0x0044E849", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x0044E84B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E84C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4e4]", + "string": null + }, + { + "address": "0x0044E852", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E853", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E858", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x4e4]", + "string": null + }, + { + "address": "0x0044E85E", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E85F", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E864", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E86A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E86B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x524]", + "string": null + }, + { + "address": "0x0044E871", + "mnemonic": "mov", + "op_str": "edx, 0x44fa70", + "string": "+[B_AD_AMT]" + }, + { + "address": "0x0044E876", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E87B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x518]", + "string": null + }, + { + "address": "0x0044E881", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x51c]", + "string": null + }, + { + "address": "0x0044E887", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x520]", + "string": null + }, + { + "address": "0x0044E88D", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x524]", + "string": null + }, + { + "address": "0x0044E893", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x534]", + "string": null + }, + { + "address": "0x0044E899", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E89B", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E8A0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x528]", + "string": null + }, + { + "address": "0x0044E8A6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x52c]", + "string": null + }, + { + "address": "0x0044E8AC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x530]", + "string": null + }, + { + "address": "0x0044E8B2", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x534]", + "string": null + }, + { + "address": "0x0044E8B8", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x338]", + "string": null + }, + { + "address": "0x0044E8BE", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x44f7b4]", + "string": null + }, + { + "address": "0x0044E8C4", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044E8C6", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044E8C7", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x0044E8CA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E8CB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x514]", + "string": null + }, + { + "address": "0x0044E8D1", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E8D2", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E8D7", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x514]", + "string": null + }, + { + "address": "0x0044E8DD", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E8DE", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E8E3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E8E9", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E8EA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x544]", + "string": null + }, + { + "address": "0x0044E8F0", + "mnemonic": "mov", + "op_str": "edx, 0x44fa84", + "string": ") * [RAT_1], 0)" + }, + { + "address": "0x0044E8F5", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E8FA", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x544]", + "string": null + }, + { + "address": "0x0044E900", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E901", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E906", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E90C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E90D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x564]", + "string": null + }, + { + "address": "0x0044E913", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E915", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E91A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x558]", + "string": null + }, + { + "address": "0x0044E920", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x55c]", + "string": null + }, + { + "address": "0x0044E926", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x560]", + "string": null + }, + { + "address": "0x0044E92C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x564]", + "string": null + }, + { + "address": "0x0044E932", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x574]", + "string": null + }, + { + "address": "0x0044E938", + "mnemonic": "mov", + "op_str": "edx, 0x44f9dc", + "string": "+[BUGA_UP]" + }, + { + "address": "0x0044E93D", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044E942", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x568]", + "string": null + }, + { + "address": "0x0044E948", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x56c]", + "string": null + }, + { + "address": "0x0044E94E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x570]", + "string": null + }, + { + "address": "0x0044E954", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x574]", + "string": null + }, + { + "address": "0x0044E95A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044E95D", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044E963", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E964", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x554]", + "string": null + }, + { + "address": "0x0044E96A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E96B", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044E970", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x554]", + "string": null + }, + { + "address": "0x0044E976", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E977", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044E97C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x4a4]", + "string": null + }, + { + "address": "0x0044E982", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x10398]", + "string": null + }, + { + "address": "0x0044E988", + "mnemonic": "call", + "op_str": "0x401318", + "string": null + }, + { + "address": "0x0044E98D", + "mnemonic": "jmp", + "op_str": "0x44ee30", + "string": null + }, + { + "address": "0x0044E992", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E994", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044E996", + "mnemonic": "fld", + "op_str": "qword ptr [esi]", + "string": null + }, + { + "address": "0x0044E998", + "mnemonic": "fsub", + "op_str": "qword ptr [esi + 8]", + "string": null + }, + { + "address": "0x0044E99B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x594]", + "string": null + }, + { + "address": "0x0044E9A1", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E9A6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x594]", + "string": null + }, + { + "address": "0x0044E9AC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044E9AD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5b4]", + "string": null + }, + { + "address": "0x0044E9B3", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044E9B5", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044E9B7", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044E9BC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5a8]", + "string": null + }, + { + "address": "0x0044E9C2", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5ac]", + "string": null + }, + { + "address": "0x0044E9C8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5b0]", + "string": null + }, + { + "address": "0x0044E9CE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5b4]", + "string": null + }, + { + "address": "0x0044E9D4", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x268]", + "string": null + }, + { + "address": "0x0044E9DA", + "mnemonic": "fadd", + "op_str": "qword ptr [esi + 0x270]", + "string": null + }, + { + "address": "0x0044E9E0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5c4]", + "string": null + }, + { + "address": "0x0044E9E6", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044E9EB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5b8]", + "string": null + }, + { + "address": "0x0044E9F1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5bc]", + "string": null + }, + { + "address": "0x0044E9F7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5c0]", + "string": null + }, + { + "address": "0x0044E9FD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5c4]", + "string": null + }, + { + "address": "0x0044EA03", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044EA06", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1d8], 1", + "string": null + }, + { + "address": "0x0044EA0D", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x0044EA10", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA11", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5a4]", + "string": null + }, + { + "address": "0x0044EA17", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA18", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044EA1D", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x5a4]", + "string": null + }, + { + "address": "0x0044EA23", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA24", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044EA29", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x594]", + "string": null + }, + { + "address": "0x0044EA2F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA30", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x338]", + "string": null + }, + { + "address": "0x0044EA36", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5d4]", + "string": null + }, + { + "address": "0x0044EA3C", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044EA41", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x5d4]", + "string": null + }, + { + "address": "0x0044EA47", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA48", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044EA4D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x594]", + "string": null + }, + { + "address": "0x0044EA53", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA54", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x330]", + "string": null + }, + { + "address": "0x0044EA5A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5e4]", + "string": null + }, + { + "address": "0x0044EA60", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044EA65", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x5e4]", + "string": null + }, + { + "address": "0x0044EA6B", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA6C", + "mnemonic": "call", + "op_str": "0x401360", + "string": null + }, + { + "address": "0x0044EA71", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x594]", + "string": null + }, + { + "address": "0x0044EA77", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA78", + "mnemonic": "fld", + "op_str": "xword ptr [0x44fa10]", + "string": null + }, + { + "address": "0x0044EA7E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x5f4]", + "string": null + }, + { + "address": "0x0044EA84", + "mnemonic": "call", + "op_str": "0x401340", + "string": null + }, + { + "address": "0x0044EA89", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x5f4]", + "string": null + }, + { + "address": "0x0044EA8F", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EA90", + "mnemonic": "call", + "op_str": "0x401368", + "string": null + }, + { + "address": "0x0044EA95", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x594]", + "string": null + }, + { + "address": "0x0044EA9B", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044EAA0", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0044EAA3", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0044EAA6", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044EAA7", + "mnemonic": "call", + "op_str": "0x4091b0", + "string": null + }, + { + "address": "0x0044EAAC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x584]", + "string": null + }, + { + "address": "0x0044EAB2", + "mnemonic": "call", + "op_str": "0x401330", + "string": null + }, + { + "address": "0x0044EAB7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x584]", + "string": null + }, + { + "address": "0x0044EABD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EABE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x614]", + "string": null + }, + { + "address": "0x0044EAC4", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044EAC6", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044EAC8", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044EACD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x608]", + "string": null + }, + { + "address": "0x0044EAD3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x60c]", + "string": null + }, + { + "address": "0x0044EAD9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x610]", + "string": null + }, + { + "address": "0x0044EADF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x614]", + "string": null + }, + { + "address": "0x0044EAE5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x624]", + "string": null + }, + { + "address": "0x0044EAEB", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0044EAF0", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0044EAF2", + "mnemonic": "call", + "op_str": "0x401320", + "string": null + }, + { + "address": "0x0044EAF7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x618]", + "string": null + }, + { + "address": "0x0044EAFD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x61c]", + "string": null + }, + { + "address": "0x0044EB03", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x620]", + "string": null + }, + { + "address": "0x0044EB09", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x624]", + "string": null + }, + { + "address": "0x0044EB0F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044EB12", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax + 0x20d]", + "string": null + }, + { + "address": "0x0044EB18", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EB19", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x604]", + "string": null + }, + { + "address": "0x0044EB1F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EB20", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044EB25", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x604]", + "string": null + }, + { + "address": "0x0044EB2B", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EB2C", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044EB31", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x584]", + "string": null + }, + { + "address": "0x0044EB37", + "mnemonic": "call", + "op_str": "0x401308", + "string": null + }, + { + "address": "0x0044EB3C", + "mnemonic": "add", + "op_str": "esp, -8", + "string": null + }, + { + "address": "0x0044EB3F", + "mnemonic": "fstp", + "op_str": "qword ptr [esp]", + "string": null + }, + { + "address": "0x0044EB42", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0044EB43", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0044EB45", + "mnemonic": "lea", + "op_str": "edx, [esi + 0x328]", + "string": null + }, + { + "address": "0x0044EB4B", + "mnemonic": "lea", + "op_str": "eax, [esi + 0x3b8]", + "string": null + }, + { + "address": "0x0044EB51", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0044EB53", + "mnemonic": "call", + "op_str": "0x446aec", + "string": null + }, + { + "address": "0x0044EB58", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x634]", + "string": null + }, + { + "address": "0x0044EB5E", + "mnemonic": "mov", + "op_str": "edx, 0x44fa24", + "string": "ROUNDDOWN(([TAMT]-[LAMT]" + }, + { + "address": "0x0044EB63", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044EB68", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x634]", + "string": null + }, + { + "address": "0x0044EB6E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EB6F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x654]", + "string": null + }, + { + "address": "0x0044EB75", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044EB77", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044EB7C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x648]", + "string": null + }, + { + "address": "0x0044EB82", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x64c]", + "string": null + }, + { + "address": "0x0044EB88", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x650]", + "string": null + }, + { + "address": "0x0044EB8E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x654]", + "string": null + }, + { + "address": "0x0044EB94", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x664]", + "string": null + }, + { + "address": "0x0044EB9A", + "mnemonic": "mov", + "op_str": "edx, 0x44fa48", + "string": "[+ANJ_B]" + }, + { + "address": "0x0044EB9F", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044EBA4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x658]", + "string": null + }, + { + "address": "0x0044EBAA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x65c]", + "string": null + }, + { + "address": "0x0044EBB0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x660]", + "string": null + }, + { + "address": "0x0044EBB6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x664]", + "string": null + }, + { + "address": "0x0044EBBC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044EBBF", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1d8], 1", + "string": null + }, + { + "address": "0x0044EBC6", + "mnemonic": "jne", + "op_str": "0x44ebd9", + "string": null + }, + { + "address": "0x0044EBC8", + "mnemonic": "fld", + "op_str": "qword ptr [esi + 0x268]", + "string": null + }, + { + "address": "0x0044EBCE", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x44f7b4]", + "string": null + }, + { + "address": "0x0044EBD4", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0044EBD6", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0044EBD7", + "mnemonic": "jne", + "op_str": "0x44ebdd", + "string": null + }, + { + "address": "0x0044EBD9", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0044EBDB", + "mnemonic": "jmp", + "op_str": "0x44ebdf", + "string": null + }, + { + "address": "0x0044EBDD", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x0044EBDF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EBE0", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x644]", + "string": null + }, + { + "address": "0x0044EBE6", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EBE7", + "mnemonic": "call", + "op_str": "0x409180", + "string": null + }, + { + "address": "0x0044EBEC", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x644]", + "string": null + }, + { + "address": "0x0044EBF2", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EBF3", + "mnemonic": "call", + "op_str": "0x401358", + "string": null + }, + { + "address": "0x0044EBF8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x634]", + "string": null + }, + { + "address": "0x0044EBFE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0044EBFF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x684]", + "string": null + }, + { + "address": "0x0044EC05", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0044EC07", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044EC0C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x678]", + "string": null + }, + { + "address": "0x0044EC12", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x67c]", + "string": null + }, + { + "address": "0x0044EC18", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x680]", + "string": null + }, + { + "address": "0x0044EC1E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x684]", + "string": null + }, + { + "address": "0x0044EC24", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x694]", + "string": null + }, + { + "address": "0x0044EC2A", + "mnemonic": "mov", + "op_str": "edx, 0x44fa5c", + "string": "[+PMJ_B]" + }, + { + "address": "0x0044EC2F", + "mnemonic": "call", + "op_str": "0x401350", + "string": null + }, + { + "address": "0x0044EC34", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x688]", + "string": null + }, + { + "address": "0x0044EC3A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x68c]", + "string": null + }, + { + "address": "0x0044EC40", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x690]", + "string": null + }, + { + "address": "0x0044EC46", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x694]", + "string": null + }, + { + "address": "0x0044EC4C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x0044EC4F", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x1d8], 1", + "string": null + }, + { + "address": "0x0044EC56", + "mnemonic": "jne", + "op_str": "0x44ec69", + "string": null + } + ] + } + }, + "ST_CPM\\ST_SanCal.CPM": { + "Calq_San": { + "rva": "0x249D8", + "instructions": [ + { + "address": "0x004249D8", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x004249D9", + "mnemonic": "mov", + "op_str": "ebp, esp", + "string": null + }, + { + "address": "0x004249DB", + "mnemonic": "mov", + "op_str": "ecx, 0x84", + "string": null + }, + { + "address": "0x004249E0", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004249E2", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004249E4", + "mnemonic": "dec", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004249E5", + "mnemonic": "jne", + "op_str": "0x4249e0", + "string": null + }, + { + "address": "0x004249E7", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004249E8", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x004249E9", + "mnemonic": "push", + "op_str": "esi", + "string": null + }, + { + "address": "0x004249EA", + "mnemonic": "push", + "op_str": "edi", + "string": null + }, + { + "address": "0x004249EB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x004249EE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x20]", + "string": null + }, + { + "address": "0x004249F1", + "mnemonic": "test", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004249F3", + "mnemonic": "js", + "op_str": "0x4249fc", + "string": null + }, + { + "address": "0x004249F5", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [eax + edx*4]", + "string": null + }, + { + "address": "0x004249F8", + "mnemonic": "dec", + "op_str": "edx", + "string": null + }, + { + "address": "0x004249F9", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004249FA", + "mnemonic": "jns", + "op_str": "0x4249f5", + "string": null + }, + { + "address": "0x004249FC", + "mnemonic": "mov", + "op_str": "dword ptr [ebp + 0x1c], esp", + "string": null + }, + { + "address": "0x004249FF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00424A02", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00424A05", + "mnemonic": "test", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00424A07", + "mnemonic": "js", + "op_str": "0x424a10", + "string": null + }, + { + "address": "0x00424A09", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [eax + edx*4]", + "string": null + }, + { + "address": "0x00424A0C", + "mnemonic": "dec", + "op_str": "edx", + "string": null + }, + { + "address": "0x00424A0D", + "mnemonic": "push", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00424A0E", + "mnemonic": "jns", + "op_str": "0x424a09", + "string": null + }, + { + "address": "0x00424A10", + "mnemonic": "mov", + "op_str": "dword ptr [ebp + 0xc], esp", + "string": null + }, + { + "address": "0x00424A13", + "mnemonic": "mov", + "op_str": "edi, dword ptr [ebp + 0x14]", + "string": null + }, + { + "address": "0x00424A16", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00424A19", + "mnemonic": "inc", + "op_str": "ecx", + "string": null + }, + { + "address": "0x00424A1A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00424A1D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44bafc]", + "string": null + }, + { + "address": "0x00424A23", + "mnemonic": "call", + "op_str": "0x401230", + "string": null + }, + { + "address": "0x00424A28", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424A2A", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00424A2B", + "mnemonic": "push", + "op_str": "0x426787", + "string": null + }, + { + "address": "0x00424A30", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00424A33", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00424A36", + "mnemonic": "mov", + "op_str": "eax, 0x44a8e8", + "string": null + }, + { + "address": "0x00424A3B", + "mnemonic": "call", + "op_str": "0x401168", + "string": null + }, + { + "address": "0x00424A40", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x24]", + "string": null + }, + { + "address": "0x00424A43", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a8c4], eax", + "string": null + }, + { + "address": "0x00424A48", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a90c], 0x46", + "string": null + }, + { + "address": "0x00424A52", + "mnemonic": "mov", + "op_str": "byte ptr [0x44a8ad], 0", + "string": null + }, + { + "address": "0x00424A59", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4390fc]", + "string": null + }, + { + "address": "0x00424A5E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424A60", + "mnemonic": "mov", + "op_str": "edx, 0x2c", + "string": null + }, + { + "address": "0x00424A65", + "mnemonic": "call", + "op_str": "0x401088", + "string": null + }, + { + "address": "0x00424A6A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4390fc]", + "string": null + }, + { + "address": "0x00424A6F", + "mnemonic": "mov", + "op_str": "dword ptr [eax], 0xa", + "string": null + }, + { + "address": "0x00424A75", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x4390fc]", + "string": null + }, + { + "address": "0x00424A7A", + "mnemonic": "mov", + "op_str": "dword ptr [eax + 0x28], 1", + "string": null + }, + { + "address": "0x00424A81", + "mnemonic": "mov", + "op_str": "byte ptr [0x44a8c0], 0", + "string": null + }, + { + "address": "0x00424A88", + "mnemonic": "mov", + "op_str": "byte ptr [0x44a8c1], 0", + "string": null + }, + { + "address": "0x00424A8F", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 1], 0", + "string": null + }, + { + "address": "0x00424A93", + "mnemonic": "call", + "op_str": "0x4042f4", + "string": null + }, + { + "address": "0x00424A98", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424A9A", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a8f0], eax", + "string": null + }, + { + "address": "0x00424A9F", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424AA1", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a914], eax", + "string": null + }, + { + "address": "0x00424AA6", + "mnemonic": "mov", + "op_str": "eax, 0x44a8f8", + "string": null + }, + { + "address": "0x00424AAB", + "mnemonic": "call", + "op_str": "0x401168", + "string": null + }, + { + "address": "0x00424AB0", + "mnemonic": "mov", + "op_str": "eax, 0x44a904", + "string": null + }, + { + "address": "0x00424AB5", + "mnemonic": "call", + "op_str": "0x401168", + "string": null + }, + { + "address": "0x00424ABA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424ABF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424AC1", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x7bc8], 0", + "string": null + }, + { + "address": "0x00424AC8", + "mnemonic": "je", + "op_str": "0x424ada", + "string": null + }, + { + "address": "0x00424ACA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424ACF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424AD1", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x52ac], 2", + "string": null + }, + { + "address": "0x00424AD8", + "mnemonic": "je", + "op_str": "0x424ade", + "string": null + }, + { + "address": "0x00424ADA", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424ADC", + "mnemonic": "jmp", + "op_str": "0x424ae0", + "string": null + }, + { + "address": "0x00424ADE", + "mnemonic": "mov", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x00424AE0", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424AE6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00424AE8", + "mnemonic": "mov", + "op_str": "byte ptr [edx + 0x7bc8], al", + "string": null + }, + { + "address": "0x00424AEE", + "mnemonic": "push", + "op_str": "0x41d0b852", + "string": null + }, + { + "address": "0x00424AF3", + "mnemonic": "call", + "op_str": "0x41337c", + "string": null + }, + { + "address": "0x00424AF8", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00424AFA", + "mnemonic": "je", + "op_str": "0x426624", + "string": null + }, + { + "address": "0x00424B00", + "mnemonic": "mov", + "op_str": "eax, 0x44a8b4", + "string": null + }, + { + "address": "0x00424B05", + "mnemonic": "call", + "op_str": "0x401168", + "string": null + }, + { + "address": "0x00424B0A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439144]", + "string": null + }, + { + "address": "0x00424B0F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424B11", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x18]", + "string": null + }, + { + "address": "0x00424B14", + "mnemonic": "call", + "op_str": "0x401c24", + "string": null + }, + { + "address": "0x00424B19", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xd], al", + "string": null + }, + { + "address": "0x00424B1C", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp - 0xd], 0", + "string": null + }, + { + "address": "0x00424B20", + "mnemonic": "jne", + "op_str": "0x424b31", + "string": null + }, + { + "address": "0x00424B22", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439144]", + "string": null + }, + { + "address": "0x00424B27", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424B29", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x18]", + "string": null + }, + { + "address": "0x00424B2C", + "mnemonic": "call", + "op_str": "0x401c14", + "string": null + }, + { + "address": "0x00424B31", + "mnemonic": "mov", + "op_str": "esi, 5", + "string": null + }, + { + "address": "0x00424B36", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x1c]", + "string": null + }, + { + "address": "0x00424B39", + "mnemonic": "mov", + "op_str": "ebx, 0x44a838", + "string": null + }, + { + "address": "0x00424B3E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424B40", + "mnemonic": "mov", + "op_str": "dword ptr [ebx], edx", + "string": null + }, + { + "address": "0x00424B42", + "mnemonic": "add", + "op_str": "ebx, 4", + "string": null + }, + { + "address": "0x00424B45", + "mnemonic": "add", + "op_str": "eax, 4", + "string": null + }, + { + "address": "0x00424B48", + "mnemonic": "dec", + "op_str": "esi", + "string": null + }, + { + "address": "0x00424B49", + "mnemonic": "jne", + "op_str": "0x424b3e", + "string": null + }, + { + "address": "0x00424B4B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43910c]", + "string": null + }, + { + "address": "0x00424B50", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424B52", + "mnemonic": "mov", + "op_str": "al, byte ptr [eax]", + "string": null + }, + { + "address": "0x00424B54", + "mnemonic": "xor", + "op_str": "al, 1", + "string": null + }, + { + "address": "0x00424B56", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43915c]", + "string": null + }, + { + "address": "0x00424B5C", + "mnemonic": "mov", + "op_str": "byte ptr [edx], al", + "string": null + }, + { + "address": "0x00424B5E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x00424B61", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a868], eax", + "string": null + }, + { + "address": "0x00424B66", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a868]", + "string": null + }, + { + "address": "0x00424B6B", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x00424B6E", + "mnemonic": "je", + "op_str": "0x424b79", + "string": null + }, + { + "address": "0x00424B70", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00424B73", + "mnemonic": "jne", + "op_str": "0x424c49", + "string": null + }, + { + "address": "0x00424B79", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424B7E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424B80", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x173f], 0", + "string": null + }, + { + "address": "0x00424B87", + "mnemonic": "jne", + "op_str": "0x424be9", + "string": "뛇샋d" + }, + { + "address": "0x00424B89", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x38]", + "string": null + }, + { + "address": "0x00424B8C", + "mnemonic": "mov", + "op_str": "edx, 0x64", + "string": null + }, + { + "address": "0x00424B91", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00424B93", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00424B98", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x2c]", + "string": null + }, + { + "address": "0x00424B9B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x30]", + "string": null + }, + { + "address": "0x00424B9E", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x34]", + "string": null + }, + { + "address": "0x00424BA1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x38]", + "string": null + }, + { + "address": "0x00424BA4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x48]", + "string": null + }, + { + "address": "0x00424BA7", + "mnemonic": "mov", + "op_str": "edx, 0x64", + "string": null + }, + { + "address": "0x00424BAC", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00424BAE", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00424BB3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3c]", + "string": null + }, + { + "address": "0x00424BB6", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x40]", + "string": null + }, + { + "address": "0x00424BB9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x44]", + "string": null + }, + { + "address": "0x00424BBC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x48]", + "string": null + }, + { + "address": "0x00424BBF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424BC4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424BC6", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x1747], 1", + "string": null + }, + { + "address": "0x00424BCD", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x00424BD0", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424BD1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x00424BD4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424BD5", + "mnemonic": "call", + "op_str": "0x403c7c", + "string": null + }, + { + "address": "0x00424BDA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x28]", + "string": null + }, + { + "address": "0x00424BDD", + "mnemonic": "call", + "op_str": "0x401240", + "string": null + }, + { + "address": "0x00424BE2", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a8bc], eax", + "string": null + }, + { + "address": "0x00424BE7", + "mnemonic": "jmp", + "op_str": "0x424c53", + "string": null + }, + { + "address": "0x00424BE9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x68]", + "string": null + }, + { + "address": "0x00424BEC", + "mnemonic": "mov", + "op_str": "edx, 0x64", + "string": null + }, + { + "address": "0x00424BF1", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00424BF3", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00424BF8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x5c]", + "string": null + }, + { + "address": "0x00424BFB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x60]", + "string": null + }, + { + "address": "0x00424BFE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x64]", + "string": null + }, + { + "address": "0x00424C01", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x68]", + "string": null + }, + { + "address": "0x00424C04", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x78]", + "string": null + }, + { + "address": "0x00424C07", + "mnemonic": "mov", + "op_str": "edx, 0x64", + "string": null + }, + { + "address": "0x00424C0C", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00424C0E", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00424C13", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x6c]", + "string": null + }, + { + "address": "0x00424C16", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x70]", + "string": null + }, + { + "address": "0x00424C19", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x74]", + "string": null + }, + { + "address": "0x00424C1C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x78]", + "string": null + }, + { + "address": "0x00424C1F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424C24", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424C26", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x1747], 1", + "string": null + }, + { + "address": "0x00424C2D", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x00424C30", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424C31", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x00424C34", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424C35", + "mnemonic": "call", + "op_str": "0x403c7c", + "string": null + }, + { + "address": "0x00424C3A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x58]", + "string": null + }, + { + "address": "0x00424C3D", + "mnemonic": "call", + "op_str": "0x401240", + "string": null + }, + { + "address": "0x00424C42", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a8bc], eax", + "string": null + }, + { + "address": "0x00424C47", + "mnemonic": "jmp", + "op_str": "0x424c53", + "string": null + }, + { + "address": "0x00424C49", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a8bc], 0x64", + "string": null + }, + { + "address": "0x00424C53", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a8bc], 0x96", + "string": null + }, + { + "address": "0x00424C5D", + "mnemonic": "mov", + "op_str": "eax, 0x44a890", + "string": null + }, + { + "address": "0x00424C62", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424C64", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00424C69", + "mnemonic": "call", + "op_str": "0x401088", + "string": null + }, + { + "address": "0x00424C6E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00424C70", + "mnemonic": "mov", + "op_str": "eax, 0x44a890", + "string": null + }, + { + "address": "0x00424C75", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00424C7A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x422b04]", + "string": null + }, + { + "address": "0x00424C80", + "mnemonic": "call", + "op_str": "0x4012e0", + "string": null + }, + { + "address": "0x00424C85", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00424C88", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a868]", + "string": null + }, + { + "address": "0x00424C8D", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424C8E", + "mnemonic": "je", + "op_str": "0x424c97", + "string": null + }, + { + "address": "0x00424C90", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00424C93", + "mnemonic": "je", + "op_str": "0x424cb1", + "string": null + }, + { + "address": "0x00424C95", + "mnemonic": "jmp", + "op_str": "0x424cbd", + "string": null + }, + { + "address": "0x00424C97", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00424C99", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x00424C9E", + "mnemonic": "call", + "op_str": "0x401b94", + "string": null + }, + { + "address": "0x00424CA3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00424CA5", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00424CAA", + "mnemonic": "call", + "op_str": "0x401b8c", + "string": null + }, + { + "address": "0x00424CAF", + "mnemonic": "jmp", + "op_str": "0x424cbd", + "string": null + }, + { + "address": "0x00424CB1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00424CB3", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00424CB8", + "mnemonic": "call", + "op_str": "0x401b94", + "string": null + }, + { + "address": "0x00424CBD", + "mnemonic": "mov", + "op_str": "byte ptr [0x44a910], 0", + "string": null + }, + { + "address": "0x00424CC4", + "mnemonic": "mov", + "op_str": "byte ptr [0x44a911], 0", + "string": null + }, + { + "address": "0x00424CCB", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424CCD", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00424CCE", + "mnemonic": "push", + "op_str": "0x42661a", + "string": null + }, + { + "address": "0x00424CD3", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00424CD6", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00424CD9", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424CDB", + "mnemonic": "push", + "op_str": "ebp", + "string": null + }, + { + "address": "0x00424CDC", + "mnemonic": "push", + "op_str": "0x426366", + "string": null + }, + { + "address": "0x00424CE1", + "mnemonic": "push", + "op_str": "dword ptr fs:[eax]", + "string": null + }, + { + "address": "0x00424CE4", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], esp", + "string": null + }, + { + "address": "0x00424CE7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x7c]", + "string": null + }, + { + "address": "0x00424CEA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424CEB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x00424CF0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424CF2", + "mnemonic": "movsx", + "op_str": "ecx, byte ptr [eax + 2]", + "string": null + }, + { + "address": "0x00424CF6", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00424CFB", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x00424D00", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00424D05", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x7c]", + "string": null + }, + { + "address": "0x00424D08", + "mnemonic": "mov", + "op_str": "eax, 0x44a874", + "string": null + }, + { + "address": "0x00424D0D", + "mnemonic": "mov", + "op_str": "edx, 0x4267c4", + "string": "#,0." + }, + { + "address": "0x00424D12", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x00424D17", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x80]", + "string": null + }, + { + "address": "0x00424D1A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424D1B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x00424D20", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424D22", + "mnemonic": "movsx", + "op_str": "ecx, byte ptr [eax + 3]", + "string": null + }, + { + "address": "0x00424D26", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00424D2B", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x00424D30", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00424D35", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x80]", + "string": null + }, + { + "address": "0x00424D38", + "mnemonic": "mov", + "op_str": "eax, 0x44a878", + "string": null + }, + { + "address": "0x00424D3D", + "mnemonic": "mov", + "op_str": "edx, 0x4267c4", + "string": "#,0." + }, + { + "address": "0x00424D42", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x00424D47", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424D49", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a860], eax", + "string": null + }, + { + "address": "0x00424D4E", + "mnemonic": "call", + "op_str": "0x410cb8", + "string": null + }, + { + "address": "0x00424D53", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00424D58", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424D5A", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00424D5C", + "mnemonic": "mov", + "op_str": "dword ptr [eax + 0x250], edx", + "string": null + }, + { + "address": "0x00424D62", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00424D67", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424D69", + "mnemonic": "add", + "op_str": "eax, 0x540", + "string": null + }, + { + "address": "0x00424D6E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424D70", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00424D75", + "mnemonic": "call", + "op_str": "0x401088", + "string": null + }, + { + "address": "0x00424D7A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00424D7F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424D81", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x250]", + "string": null + }, + { + "address": "0x00424D87", + "mnemonic": "inc", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424D88", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424D89", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00424D8E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424D90", + "mnemonic": "add", + "op_str": "eax, 0x540", + "string": null + }, + { + "address": "0x00424D95", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00424D9A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x403224]", + "string": null + }, + { + "address": "0x00424DA0", + "mnemonic": "call", + "op_str": "0x4012e0", + "string": null + }, + { + "address": "0x00424DA5", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00424DA8", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424DAA", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a864], eax", + "string": null + }, + { + "address": "0x00424DAF", + "mnemonic": "mov", + "op_str": "eax, 0x44a828", + "string": null + }, + { + "address": "0x00424DB4", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424DB6", + "mnemonic": "mov", + "op_str": "edx, 0x10", + "string": null + }, + { + "address": "0x00424DBB", + "mnemonic": "call", + "op_str": "0x401088", + "string": null + }, + { + "address": "0x00424DC0", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424DC2", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a828], eax", + "string": null + }, + { + "address": "0x00424DC7", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00424DC9", + "mnemonic": "fld", + "op_str": "xword ptr [0x4267cc]", + "string": null + }, + { + "address": "0x00424DCF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x90]", + "string": null + }, + { + "address": "0x00424DD5", + "mnemonic": "call", + "op_str": "0x401278", + "string": null + }, + { + "address": "0x00424DDA", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x90]", + "string": null + }, + { + "address": "0x00424DE0", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00424DE2", + "mnemonic": "mov", + "op_str": "eax, 0x4267e0", + "string": null + }, + { + "address": "0x00424DE7", + "mnemonic": "call", + "op_str": "0x422eb8", + "string": "U뗭Q퉝" + }, + { + "address": "0x00424DEC", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00424DEE", + "mnemonic": "fld", + "op_str": "xword ptr [0x4267cc]", + "string": null + }, + { + "address": "0x00424DF4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00424DFA", + "mnemonic": "call", + "op_str": "0x401278", + "string": null + }, + { + "address": "0x00424DFF", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xa0]", + "string": null + }, + { + "address": "0x00424E05", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00424E07", + "mnemonic": "mov", + "op_str": "eax, 0x4267ec", + "string": null + }, + { + "address": "0x00424E0C", + "mnemonic": "call", + "op_str": "0x422eb8", + "string": "U뗭Q퉝" + }, + { + "address": "0x00424E11", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424E16", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424E18", + "mnemonic": "lea", + "op_str": "edx, [eax + 0x328]", + "string": null + }, + { + "address": "0x00424E1E", + "mnemonic": "mov", + "op_str": "eax, 0x4267f0", + "string": null + }, + { + "address": "0x00424E23", + "mnemonic": "call", + "op_str": "0x401020", + "string": null + }, + { + "address": "0x00424E28", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a850], eax", + "string": null + }, + { + "address": "0x00424E2D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424E32", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424E34", + "mnemonic": "lea", + "op_str": "edx, [eax + 0x328]", + "string": null + }, + { + "address": "0x00424E3A", + "mnemonic": "mov", + "op_str": "eax, 0x4267f4", + "string": null + }, + { + "address": "0x00424E3F", + "mnemonic": "call", + "op_str": "0x401020", + "string": null + }, + { + "address": "0x00424E44", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a854], eax", + "string": null + }, + { + "address": "0x00424E49", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424E4E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424E50", + "mnemonic": "lea", + "op_str": "edx, [eax + 0x328]", + "string": null + }, + { + "address": "0x00424E56", + "mnemonic": "mov", + "op_str": "eax, 0x4267f8", + "string": null + }, + { + "address": "0x00424E5B", + "mnemonic": "call", + "op_str": "0x401020", + "string": null + }, + { + "address": "0x00424E60", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a858], eax", + "string": null + }, + { + "address": "0x00424E65", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00424E6A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00424E6C", + "mnemonic": "lea", + "op_str": "edx, [eax + 0x328]", + "string": null + }, + { + "address": "0x00424E72", + "mnemonic": "mov", + "op_str": "eax, 0x4267fc", + "string": null + }, + { + "address": "0x00424E77", + "mnemonic": "call", + "op_str": "0x401020", + "string": null + }, + { + "address": "0x00424E7C", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a85c], eax", + "string": null + }, + { + "address": "0x00424E81", + "mnemonic": "mov", + "op_str": "eax, 0x44a87c", + "string": null + }, + { + "address": "0x00424E86", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00424E8C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00424E8E", + "mnemonic": "add", + "op_str": "edx, 0x68", + "string": null + }, + { + "address": "0x00424E91", + "mnemonic": "mov", + "op_str": "cl, 6", + "string": null + }, + { + "address": "0x00424E93", + "mnemonic": "call", + "op_str": "0x401078", + "string": null + }, + { + "address": "0x00424E98", + "mnemonic": "mov", + "op_str": "eax, 0x44a8e0", + "string": null + }, + { + "address": "0x00424E9D", + "mnemonic": "mov", + "op_str": "edx, 0x426808", + "string": null + }, + { + "address": "0x00424EA2", + "mnemonic": "call", + "op_str": "0x401178", + "string": null + }, + { + "address": "0x00424EA7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 0x10]", + "string": null + }, + { + "address": "0x00424EAA", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00424EAC", + "mnemonic": "jl", + "op_str": "0x425213", + "string": null + }, + { + "address": "0x00424EB2", + "mnemonic": "inc", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424EB3", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x18], eax", + "string": null + }, + { + "address": "0x00424EB6", + "mnemonic": "xor", + "op_str": "esi, esi", + "string": null + }, + { + "address": "0x00424EB8", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [ebp + 0xc]", + "string": null + }, + { + "address": "0x00424EBB", + "mnemonic": "lea", + "op_str": "eax, [esi + 1]", + "string": null + }, + { + "address": "0x00424EBE", + "mnemonic": "mov", + "op_str": "dword ptr [0x44a84c], eax", + "string": null + }, + { + "address": "0x00424EC3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00424EC5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424EC6", + "mnemonic": "push", + "op_str": "0x426814", + "string": null + }, + { + "address": "0x00424ECB", + "mnemonic": "call", + "op_str": "0x403c84", + "string": null + }, + { + "address": "0x00424ED0", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00424ED2", + "mnemonic": "je", + "op_str": "0x424f1e", + "string": null + }, + { + "address": "0x00424ED4", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa4]", + "string": null + }, + { + "address": "0x00424EDA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424EDB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a84c]", + "string": null + }, + { + "address": "0x00424EE0", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xac], eax", + "string": null + }, + { + "address": "0x00424EE6", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xa8], 0", + "string": null + }, + { + "address": "0x00424EED", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xac]", + "string": null + }, + { + "address": "0x00424EF3", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424EF5", + "mnemonic": "mov", + "op_str": "eax, 0x426820", + "string": null + }, + { + "address": "0x00424EFA", + "mnemonic": "call", + "op_str": "0x401624", + "string": null + }, + { + "address": "0x00424EFF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xa4]", + "string": null + }, + { + "address": "0x00424F05", + "mnemonic": "mov", + "op_str": "edx, 0x42682c", + "string": " 번째줄에 사용된 [ ` ] 문자는 사용할수 없는 문자입니다." + }, + { + "address": "0x00424F0A", + "mnemonic": "call", + "op_str": "0x4011a8", + "string": null + }, + { + "address": "0x00424F0F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xa4]", + "string": null + }, + { + "address": "0x00424F15", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424F17", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x00424F19", + "mnemonic": "call", + "op_str": "0x422b60", + "string": null + }, + { + "address": "0x00424F1E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00424F20", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424F21", + "mnemonic": "push", + "op_str": "0x42686c", + "string": null + }, + { + "address": "0x00424F26", + "mnemonic": "call", + "op_str": "0x403c84", + "string": null + }, + { + "address": "0x00424F2B", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00424F2D", + "mnemonic": "je", + "op_str": "0x424f79", + "string": null + }, + { + "address": "0x00424F2F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb0]", + "string": null + }, + { + "address": "0x00424F35", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424F36", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a84c]", + "string": null + }, + { + "address": "0x00424F3B", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xac], eax", + "string": null + }, + { + "address": "0x00424F41", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xa8], 0", + "string": null + }, + { + "address": "0x00424F48", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xac]", + "string": null + }, + { + "address": "0x00424F4E", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424F50", + "mnemonic": "mov", + "op_str": "eax, 0x426820", + "string": null + }, + { + "address": "0x00424F55", + "mnemonic": "call", + "op_str": "0x401624", + "string": null + }, + { + "address": "0x00424F5A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb0]", + "string": null + }, + { + "address": "0x00424F60", + "mnemonic": "mov", + "op_str": "edx, 0x426878", + "string": " 번째줄에 사용된 [ ]]> ] 문자는 사용할수 없습니다." + }, + { + "address": "0x00424F65", + "mnemonic": "call", + "op_str": "0x4011a8", + "string": null + }, + { + "address": "0x00424F6A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xb0]", + "string": null + }, + { + "address": "0x00424F70", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424F72", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x00424F74", + "mnemonic": "call", + "op_str": "0x422b60", + "string": null + }, + { + "address": "0x00424F79", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00424F7C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00424F7E", + "mnemonic": "call", + "op_str": "0x401180", + "string": null + }, + { + "address": "0x00424F83", + "mnemonic": "mov", + "op_str": "eax, 0x44a8a0", + "string": null + }, + { + "address": "0x00424F88", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00424F8B", + "mnemonic": "call", + "op_str": "0x401178", + "string": null + }, + { + "address": "0x00424F90", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x14]", + "string": null + }, + { + "address": "0x00424F93", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x00424F95", + "mnemonic": "call", + "op_str": "0x4245b4", + "string": null + }, + { + "address": "0x00424F9A", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00424F9C", + "mnemonic": "jne", + "op_str": "0x425206", + "string": null + }, + { + "address": "0x00424FA2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00424FA5", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x00424FAA", + "mnemonic": "cmp", + "op_str": "eax, 0xc8", + "string": null + }, + { + "address": "0x00424FAF", + "mnemonic": "jle", + "op_str": "0x425043", + "string": null + }, + { + "address": "0x00424FB5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb8]", + "string": null + }, + { + "address": "0x00424FBB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00424FBC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a84c]", + "string": null + }, + { + "address": "0x00424FC1", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xac], eax", + "string": null + }, + { + "address": "0x00424FC7", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xa8], 0", + "string": null + }, + { + "address": "0x00424FCE", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xac]", + "string": null + }, + { + "address": "0x00424FD4", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00424FD6", + "mnemonic": "mov", + "op_str": "eax, 0x426820", + "string": null + }, + { + "address": "0x00424FDB", + "mnemonic": "call", + "op_str": "0x401624", + "string": null + }, + { + "address": "0x00424FE0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xb8]", + "string": null + }, + { + "address": "0x00424FE6", + "mnemonic": "push", + "op_str": "0x4268b4", + "string": " 번째줄 " + }, + { + "address": "0x00424FEB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x14]", + "string": null + }, + { + "address": "0x00424FEE", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x00424FF3", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xbc]", + "string": null + }, + { + "address": "0x00424FF9", + "mnemonic": "call", + "op_str": "0x4015d4", + "string": null + }, + { + "address": "0x00424FFE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xbc]", + "string": null + }, + { + "address": "0x00425004", + "mnemonic": "push", + "op_str": "0x4268c8", + "string": "Byte 문자가 입력되었습니다.『최대길이 : " + }, + { + "address": "0x00425009", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xc0]", + "string": null + }, + { + "address": "0x0042500F", + "mnemonic": "mov", + "op_str": "eax, 0xc8", + "string": null + }, + { + "address": "0x00425014", + "mnemonic": "call", + "op_str": "0x4015d4", + "string": null + }, + { + "address": "0x00425019", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xc0]", + "string": null + }, + { + "address": "0x0042501F", + "mnemonic": "push", + "op_str": "0x4268fc", + "string": "Byte』" + }, + { + "address": "0x00425024", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xb4]", + "string": null + }, + { + "address": "0x0042502A", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x0042502F", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00425034", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xb4]", + "string": null + }, + { + "address": "0x0042503A", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0042503C", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x0042503E", + "mnemonic": "call", + "op_str": "0x422b60", + "string": null + }, + { + "address": "0x00425043", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00425045", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00425048", + "mnemonic": "call", + "op_str": "0x42ab44", + "string": null + }, + { + "address": "0x0042504D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a868]", + "string": null + }, + { + "address": "0x00425052", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425053", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00425056", + "mnemonic": "jae", + "op_str": "0x425112", + "string": "죶쭰" + }, + { + "address": "0x0042505C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xc4]", + "string": null + }, + { + "address": "0x00425062", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a86c]", + "string": null + }, + { + "address": "0x00425067", + "mnemonic": "call", + "op_str": "0x4015cc", + "string": null + }, + { + "address": "0x0042506C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xc4]", + "string": null + }, + { + "address": "0x00425072", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x00425077", + "mnemonic": "cmp", + "op_str": "eax, 0x82", + "string": null + }, + { + "address": "0x0042507C", + "mnemonic": "jl", + "op_str": "0x425112", + "string": "죶쭰" + }, + { + "address": "0x00425082", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xcc]", + "string": null + }, + { + "address": "0x00425088", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425089", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a84c]", + "string": null + }, + { + "address": "0x0042508E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xac], eax", + "string": null + }, + { + "address": "0x00425094", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 0xa8], 0", + "string": null + }, + { + "address": "0x0042509B", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xac]", + "string": null + }, + { + "address": "0x004250A1", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x004250A3", + "mnemonic": "mov", + "op_str": "eax, 0x426820", + "string": null + }, + { + "address": "0x004250A8", + "mnemonic": "call", + "op_str": "0x401624", + "string": null + }, + { + "address": "0x004250AD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xcc]", + "string": null + }, + { + "address": "0x004250B3", + "mnemonic": "push", + "op_str": "0x4268b4", + "string": " 번째줄 " + }, + { + "address": "0x004250B8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a86c]", + "string": null + }, + { + "address": "0x004250BD", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x004250C2", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xd0]", + "string": null + }, + { + "address": "0x004250C8", + "mnemonic": "call", + "op_str": "0x4015d4", + "string": null + }, + { + "address": "0x004250CD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xd0]", + "string": null + }, + { + "address": "0x004250D3", + "mnemonic": "push", + "op_str": "0x42690c", + "string": "Byte 문자가 출력되었습니다.『최대길이 : " + }, + { + "address": "0x004250D8", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xd4]", + "string": null + }, + { + "address": "0x004250DE", + "mnemonic": "mov", + "op_str": "eax, 0x82", + "string": null + }, + { + "address": "0x004250E3", + "mnemonic": "call", + "op_str": "0x4015d4", + "string": null + }, + { + "address": "0x004250E8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xd4]", + "string": null + }, + { + "address": "0x004250EE", + "mnemonic": "push", + "op_str": "0x4268fc", + "string": "Byte』" + }, + { + "address": "0x004250F3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xc8]", + "string": null + }, + { + "address": "0x004250F9", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x004250FE", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00425103", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0xc8]", + "string": null + }, + { + "address": "0x00425109", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x0042510B", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x0042510D", + "mnemonic": "call", + "op_str": "0x422b60", + "string": null + }, + { + "address": "0x00425112", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425117", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x0042511C", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0042511E", + "mnemonic": "jl", + "op_str": "0x425206", + "string": null + }, + { + "address": "0x00425124", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a868]", + "string": null + }, + { + "address": "0x00425129", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x0042512C", + "mnemonic": "je", + "op_str": "0x425133", + "string": "죶쭰" + }, + { + "address": "0x0042512E", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00425131", + "mnemonic": "jne", + "op_str": "0x425155", + "string": null + }, + { + "address": "0x00425133", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425138", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x0042513D", + "mnemonic": "imul", + "op_str": "eax, eax, 0x13", + "string": null + }, + { + "address": "0x00425140", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425146", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*4 + 0x40]", + "string": null + }, + { + "address": "0x0042514A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a8a0]", + "string": null + }, + { + "address": "0x00425150", + "mnemonic": "call", + "op_str": "0x401178", + "string": null + }, + { + "address": "0x00425155", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x0042515A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042515C", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x7bc8], 0", + "string": null + }, + { + "address": "0x00425163", + "mnemonic": "je", + "op_str": "0x425206", + "string": null + }, + { + "address": "0x00425169", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x0042516E", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x00425173", + "mnemonic": "imul", + "op_str": "eax, eax, 0x13", + "string": null + }, + { + "address": "0x00425176", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x0042517C", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*4 + 0x48]", + "string": null + }, + { + "address": "0x00425180", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425181", + "mnemonic": "lea", + "op_str": "ecx, [ebp - 0xd8]", + "string": null + }, + { + "address": "0x00425187", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a8f8]", + "string": null + }, + { + "address": "0x0042518D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 8]", + "string": null + }, + { + "address": "0x00425190", + "mnemonic": "call", + "op_str": "0x436a0c", + "string": null + }, + { + "address": "0x00425195", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xd8]", + "string": null + }, + { + "address": "0x0042519B", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042519C", + "mnemonic": "call", + "op_str": "0x401178", + "string": null + }, + { + "address": "0x004251A1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251A6", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x004251AB", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x004251AC", + "mnemonic": "jle", + "op_str": "0x425206", + "string": null + }, + { + "address": "0x004251AE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251B3", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x004251B8", + "mnemonic": "imul", + "op_str": "eax, eax, 0x13", + "string": null + }, + { + "address": "0x004251BB", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251C1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 - 4]", + "string": null + }, + { + "address": "0x004251C5", + "mnemonic": "mov", + "op_str": "edx, 0x426940", + "string": null + }, + { + "address": "0x004251CA", + "mnemonic": "call", + "op_str": "0x4011c0", + "string": null + }, + { + "address": "0x004251CF", + "mnemonic": "jne", + "op_str": "0x425206", + "string": null + }, + { + "address": "0x004251D1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251D6", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x004251DB", + "mnemonic": "imul", + "op_str": "eax, eax, 0x13", + "string": null + }, + { + "address": "0x004251DE", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251E4", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*4 - 4]", + "string": null + }, + { + "address": "0x004251E8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004251E9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251EE", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x004251F3", + "mnemonic": "imul", + "op_str": "eax, eax, 0x13", + "string": null + }, + { + "address": "0x004251F6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004251FC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + eax*4 + 0x48]", + "string": null + }, + { + "address": "0x00425200", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425201", + "mnemonic": "call", + "op_str": "0x401178", + "string": null + }, + { + "address": "0x00425206", + "mnemonic": "inc", + "op_str": "esi", + "string": null + }, + { + "address": "0x00425207", + "mnemonic": "add", + "op_str": "ebx, 4", + "string": null + }, + { + "address": "0x0042520A", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x0042520D", + "mnemonic": "jne", + "op_str": "0x424ebb", + "string": null + }, + { + "address": "0x00425213", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xc], 4", + "string": null + }, + { + "address": "0x0042521A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a868]", + "string": null + }, + { + "address": "0x0042521F", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x00425222", + "mnemonic": "je", + "op_str": "0x42522d", + "string": null + }, + { + "address": "0x00425224", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00425227", + "mnemonic": "jne", + "op_str": "0x426115", + "string": "〈쭰" + }, + { + "address": "0x0042522D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x00425232", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425234", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x0042523B", + "mnemonic": "jne", + "op_str": "0x4252c7", + "string": "죶쭰" + }, + { + "address": "0x00425241", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425246", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425248", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x0042524C", + "mnemonic": "jne", + "op_str": "0x4252c7", + "string": "죶쭰" + }, + { + "address": "0x0042524E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xf8]", + "string": null + }, + { + "address": "0x00425254", + "mnemonic": "mov", + "op_str": "edx, 0xe", + "string": null + }, + { + "address": "0x00425259", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x0042525B", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00425260", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xec]", + "string": null + }, + { + "address": "0x00425266", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf0]", + "string": null + }, + { + "address": "0x0042526C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf4]", + "string": null + }, + { + "address": "0x00425272", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xf8]", + "string": null + }, + { + "address": "0x00425278", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x108]", + "string": null + }, + { + "address": "0x0042527E", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x00425283", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00425285", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x0042528A", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0xfc]", + "string": null + }, + { + "address": "0x00425290", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x100]", + "string": null + }, + { + "address": "0x00425296", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x104]", + "string": null + }, + { + "address": "0x0042529C", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x108]", + "string": null + }, + { + "address": "0x004252A2", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 1", + "string": null + }, + { + "address": "0x004252A9", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x004252AC", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004252AD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xe8]", + "string": null + }, + { + "address": "0x004252B3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004252B4", + "mnemonic": "call", + "op_str": "0x403c7c", + "string": null + }, + { + "address": "0x004252B9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xe8]", + "string": null + }, + { + "address": "0x004252BF", + "mnemonic": "call", + "op_str": "0x401240", + "string": null + }, + { + "address": "0x004252C4", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xc], eax", + "string": null + }, + { + "address": "0x004252C7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004252CC", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x004252D1", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x004252D3", + "mnemonic": "add", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x004252D6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004252D8", + "mnemonic": "call", + "op_str": "0x401b94", + "string": null + }, + { + "address": "0x004252DD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004252E2", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x004252E7", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004252E9", + "mnemonic": "jl", + "op_str": "0x42556c", + "string": "죶쭰" + }, + { + "address": "0x004252EF", + "mnemonic": "inc", + "op_str": "eax", + "string": null + }, + { + "address": "0x004252F0", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x18], eax", + "string": null + }, + { + "address": "0x004252F3", + "mnemonic": "xor", + "op_str": "esi, esi", + "string": null + }, + { + "address": "0x004252F5", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x004252F8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004252FE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 4]", + "string": null + }, + { + "address": "0x00425302", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425303", + "mnemonic": "lea", + "op_str": "ebx, [esi + 1]", + "string": null + }, + { + "address": "0x00425306", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425308", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042530A", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0042530C", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425311", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425314", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x0042531A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0xc]", + "string": null + }, + { + "address": "0x0042531E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042531F", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425321", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425323", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a850]", + "string": null + }, + { + "address": "0x00425329", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x0042532E", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425331", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425337", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 8]", + "string": null + }, + { + "address": "0x0042533B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042533C", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x0042533E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425340", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a854]", + "string": null + }, + { + "address": "0x00425346", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x0042534B", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x0042534E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425354", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x10]", + "string": null + }, + { + "address": "0x00425358", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425359", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x0042535B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042535D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a858]", + "string": null + }, + { + "address": "0x00425363", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425368", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x0042536B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425371", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x18]", + "string": null + }, + { + "address": "0x00425375", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425376", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425378", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042537A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a85c]", + "string": null + }, + { + "address": "0x00425380", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425385", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x0042538A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042538C", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x00425393", + "mnemonic": "jne", + "op_str": "0x4253bd", + "string": null + }, + { + "address": "0x00425395", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x0042539A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042539C", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x004253A0", + "mnemonic": "jne", + "op_str": "0x4253bd", + "string": null + }, + { + "address": "0x004253A2", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x004253A5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004253AB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x1c]", + "string": null + }, + { + "address": "0x004253AF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004253B0", + "mnemonic": "lea", + "op_str": "ecx, [esi + 1]", + "string": null + }, + { + "address": "0x004253B3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004253B5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x004253B8", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x004253BD", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 1", + "string": null + }, + { + "address": "0x004253C4", + "mnemonic": "jne", + "op_str": "0x4253e7", + "string": null + }, + { + "address": "0x004253C6", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x004253C9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004253CF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x20]", + "string": null + }, + { + "address": "0x004253D3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004253D4", + "mnemonic": "lea", + "op_str": "ecx, [esi + 1]", + "string": null + }, + { + "address": "0x004253D7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x004253DA", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x004253DB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004253DD", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x004253E2", + "mnemonic": "jmp", + "op_str": "0x425562", + "string": null + }, + { + "address": "0x004253E7", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x004253EA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004253F0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4]", + "string": null + }, + { + "address": "0x004253F3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004253F4", + "mnemonic": "lea", + "op_str": "ebx, [esi + 1]", + "string": null + }, + { + "address": "0x004253F7", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x004253F9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004253FB", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x00425400", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425405", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425408", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x0042540E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x20]", + "string": null + }, + { + "address": "0x00425412", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425413", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425415", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425417", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x0042541C", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425421", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425424", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x0042542A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x24]", + "string": null + }, + { + "address": "0x0042542E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042542F", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425431", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425433", + "mnemonic": "mov", + "op_str": "edx, 7", + "string": null + }, + { + "address": "0x00425438", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x0042543D", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425440", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425446", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x30]", + "string": null + }, + { + "address": "0x0042544A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042544B", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x0042544D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042544F", + "mnemonic": "mov", + "op_str": "edx, 8", + "string": null + }, + { + "address": "0x00425454", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425459", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x0042545C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425462", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x34]", + "string": null + }, + { + "address": "0x00425466", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425467", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425469", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042546B", + "mnemonic": "mov", + "op_str": "edx, 9", + "string": null + }, + { + "address": "0x00425470", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425475", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x0042547A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042547C", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x52ac], 2", + "string": null + }, + { + "address": "0x00425483", + "mnemonic": "jne", + "op_str": "0x425546", + "string": null + }, + { + "address": "0x00425489", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x0042548C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425492", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x3c]", + "string": null + }, + { + "address": "0x00425496", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x10c]", + "string": null + }, + { + "address": "0x0042549C", + "mnemonic": "call", + "op_str": "0x4015d4", + "string": null + }, + { + "address": "0x004254A1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x10c]", + "string": null + }, + { + "address": "0x004254A7", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004254A8", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x004254AA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004254AC", + "mnemonic": "mov", + "op_str": "edx, 0xa", + "string": null + }, + { + "address": "0x004254B1", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x004254B6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x004254BB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004254BD", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x7bc8], 0", + "string": null + }, + { + "address": "0x004254C4", + "mnemonic": "je", + "op_str": "0x4254fe", + "string": null + }, + { + "address": "0x004254C6", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x004254C9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004254CF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x44]", + "string": null + }, + { + "address": "0x004254D3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004254D4", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x004254D6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004254D8", + "mnemonic": "mov", + "op_str": "edx, 0xb", + "string": null + }, + { + "address": "0x004254DD", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x004254E2", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x004254E5", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x004254EB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x48]", + "string": null + }, + { + "address": "0x004254EF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004254F0", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x004254F2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004254F4", + "mnemonic": "mov", + "op_str": "edx, 0xc", + "string": null + }, + { + "address": "0x004254F9", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x004254FE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00425503", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425505", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x7bcd], 0", + "string": null + }, + { + "address": "0x0042550C", + "mnemonic": "je", + "op_str": "0x42552a", + "string": null + }, + { + "address": "0x0042550E", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425511", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425517", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x28]", + "string": null + }, + { + "address": "0x0042551B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042551C", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x0042551E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425520", + "mnemonic": "mov", + "op_str": "edx, 0xf", + "string": null + }, + { + "address": "0x00425525", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x0042552A", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x0042552D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425533", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x40]", + "string": null + }, + { + "address": "0x00425537", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425538", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x0042553A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042553C", + "mnemonic": "mov", + "op_str": "edx, 0x10", + "string": null + }, + { + "address": "0x00425541", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425546", + "mnemonic": "imul", + "op_str": "eax, esi, 0x13", + "string": null + }, + { + "address": "0x00425549", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x0042554F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edx + eax*4 + 0x38]", + "string": null + }, + { + "address": "0x00425553", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425554", + "mnemonic": "mov", + "op_str": "ecx, ebx", + "string": null + }, + { + "address": "0x00425556", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425558", + "mnemonic": "mov", + "op_str": "edx, 0xd", + "string": null + }, + { + "address": "0x0042555D", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425562", + "mnemonic": "inc", + "op_str": "esi", + "string": null + }, + { + "address": "0x00425563", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00425566", + "mnemonic": "jne", + "op_str": "0x4252f5", + "string": null + }, + { + "address": "0x0042556C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a890]", + "string": null + }, + { + "address": "0x00425571", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x00425576", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x00425578", + "mnemonic": "add", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x0042557B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042557D", + "mnemonic": "call", + "op_str": "0x401ba4", + "string": null + }, + { + "address": "0x00425582", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425584", + "mnemonic": "call", + "op_str": "dword ptr [edx + 0x44]", + "string": null + }, + { + "address": "0x00425587", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a838]", + "string": null + }, + { + "address": "0x0042558C", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0042558E", + "mnemonic": "jle", + "op_str": "0x4256d1", + "string": null + }, + { + "address": "0x00425594", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x18], eax", + "string": null + }, + { + "address": "0x00425597", + "mnemonic": "mov", + "op_str": "ebx, 0x44a83c", + "string": null + }, + { + "address": "0x0042559C", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x0042559E", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x004255A0", + "mnemonic": "push", + "op_str": "0x3ff00000", + "string": null + }, + { + "address": "0x004255A5", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004255A7", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004255A9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x004255AB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004255AC", + "mnemonic": "push", + "op_str": "0xa", + "string": null + }, + { + "address": "0x004255AE", + "mnemonic": "call", + "op_str": "0x403d44", + "string": null + }, + { + "address": "0x004255B3", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 3", + "string": null + }, + { + "address": "0x004255BA", + "mnemonic": "setne", + "op_str": "al", + "string": null + }, + { + "address": "0x004255BD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004255BE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x110]", + "string": null + }, + { + "address": "0x004255C4", + "mnemonic": "mov", + "op_str": "edx, 0x44a87c", + "string": null + }, + { + "address": "0x004255C9", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x004255CE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x110]", + "string": null + }, + { + "address": "0x004255D4", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebx]", + "string": null + }, + { + "address": "0x004255D6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x004255DC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004255DE", + "mnemonic": "mov", + "op_str": "dl, byte ptr [edx + 0x7c4]", + "string": null + }, + { + "address": "0x004255E4", + "mnemonic": "call", + "op_str": "0x410dc0", + "string": "U뗭Q퉭" + }, + { + "address": "0x004255E9", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 3", + "string": null + }, + { + "address": "0x004255F0", + "mnemonic": "jne", + "op_str": "0x4256c5", + "string": null + }, + { + "address": "0x004255F6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x004255F8", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004255FA", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x004255FD", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4390f8]", + "string": null + }, + { + "address": "0x00425603", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425605", + "mnemonic": "lea", + "op_str": "edx, [edx + eax*8 - 0x30]", + "string": null + }, + { + "address": "0x00425609", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x0042560E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425610", + "mnemonic": "movsx", + "op_str": "eax, byte ptr [eax + 0x58]", + "string": null + }, + { + "address": "0x00425614", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425616", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00425619", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x0042561F", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx]", + "string": null + }, + { + "address": "0x00425621", + "mnemonic": "lea", + "op_str": "eax, [ecx + eax*8 + 0x188]", + "string": null + }, + { + "address": "0x00425628", + "mnemonic": "mov", + "op_str": "ecx, 5", + "string": null + }, + { + "address": "0x0042562D", + "mnemonic": "call", + "op_str": "0x414a50", + "string": null + }, + { + "address": "0x00425632", + "mnemonic": "test", + "op_str": "al, al", + "string": null + }, + { + "address": "0x00425634", + "mnemonic": "jne", + "op_str": "0x4256c5", + "string": null + }, + { + "address": "0x0042563A", + "mnemonic": "mov", + "op_str": "edx, 0x426944", + "string": null + }, + { + "address": "0x0042563F", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xac]", + "string": null + }, + { + "address": "0x00425645", + "mnemonic": "call", + "op_str": "0x401070", + "string": null + }, + { + "address": "0x0042564A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x0042564F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425651", + "mnemonic": "lea", + "op_str": "edx, [eax + 0x68]", + "string": null + }, + { + "address": "0x00425654", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xac]", + "string": null + }, + { + "address": "0x0042565A", + "mnemonic": "mov", + "op_str": "cl, 7", + "string": null + }, + { + "address": "0x0042565C", + "mnemonic": "call", + "op_str": "0x401068", + "string": null + }, + { + "address": "0x00425661", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0xac]", + "string": null + }, + { + "address": "0x00425667", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x120]", + "string": null + }, + { + "address": "0x0042566D", + "mnemonic": "call", + "op_str": "0x401070", + "string": null + }, + { + "address": "0x00425672", + "mnemonic": "mov", + "op_str": "edx, 0x426948", + "string": null + }, + { + "address": "0x00425677", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x120]", + "string": null + }, + { + "address": "0x0042567D", + "mnemonic": "mov", + "op_str": "cl, 0xb", + "string": null + }, + { + "address": "0x0042567F", + "mnemonic": "call", + "op_str": "0x401068", + "string": null + }, + { + "address": "0x00425684", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x120]", + "string": null + }, + { + "address": "0x0042568A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x180]", + "string": null + }, + { + "address": "0x00425690", + "mnemonic": "call", + "op_str": "0x401070", + "string": null + }, + { + "address": "0x00425695", + "mnemonic": "mov", + "op_str": "edx, 0x426950", + "string": "S계산금액과 저장된 금액에 차이가 있으니 해당 코드를 재 계산한 후 다시 작업 하십시요." + }, + { + "address": "0x0042569A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x180]", + "string": null + }, + { + "address": "0x004256A0", + "mnemonic": "mov", + "op_str": "cl, 0x5e", + "string": null + }, + { + "address": "0x004256A2", + "mnemonic": "call", + "op_str": "0x401068", + "string": null + }, + { + "address": "0x004256A7", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x180]", + "string": null + }, + { + "address": "0x004256AD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x114]", + "string": null + }, + { + "address": "0x004256B3", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x004256B8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x114]", + "string": null + }, + { + "address": "0x004256BE", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x004256C0", + "mnemonic": "call", + "op_str": "0x412704", + "string": null + }, + { + "address": "0x004256C5", + "mnemonic": "add", + "op_str": "ebx, 4", + "string": null + }, + { + "address": "0x004256C8", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x004256CB", + "mnemonic": "jne", + "op_str": "0x42559c", + "string": null + }, + { + "address": "0x004256D1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004256D6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004256D8", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x260], 0", + "string": null + }, + { + "address": "0x004256DF", + "mnemonic": "je", + "op_str": "0x425c45", + "string": "죋쭰" + }, + { + "address": "0x004256E5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004256EA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004256EC", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x270]", + "string": null + }, + { + "address": "0x004256F2", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x4269a4]", + "string": null + }, + { + "address": "0x004256F8", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x004256FA", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x004256FB", + "mnemonic": "jne", + "op_str": "0x425731", + "string": null + }, + { + "address": "0x004256FD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425702", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425704", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x278]", + "string": null + }, + { + "address": "0x0042570A", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x4269a4]", + "string": null + }, + { + "address": "0x00425710", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x00425712", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x00425713", + "mnemonic": "jne", + "op_str": "0x425731", + "string": null + }, + { + "address": "0x00425715", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x0042571A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042571C", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x280]", + "string": null + }, + { + "address": "0x00425722", + "mnemonic": "fcomp", + "op_str": "dword ptr [0x4269a4]", + "string": null + }, + { + "address": "0x00425728", + "mnemonic": "fnstsw", + "op_str": "ax", + "string": null + }, + { + "address": "0x0042572A", + "mnemonic": "sahf", + "op_str": "", + "string": null + }, + { + "address": "0x0042572B", + "mnemonic": "je", + "op_str": "0x425c45", + "string": "죋쭰" + }, + { + "address": "0x00425731", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a838]", + "string": null + }, + { + "address": "0x00425736", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425738", + "mnemonic": "jle", + "op_str": "0x425c45", + "string": "죋쭰" + }, + { + "address": "0x0042573E", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x18], eax", + "string": null + }, + { + "address": "0x00425741", + "mnemonic": "mov", + "op_str": "ebx, 0x44a83c", + "string": null + }, + { + "address": "0x00425746", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425748", + "mnemonic": "mov", + "op_str": "esi, dword ptr [eax + 0x24c]", + "string": null + }, + { + "address": "0x0042574E", + "mnemonic": "lea", + "op_str": "edx, [esi + 1]", + "string": null + }, + { + "address": "0x00425751", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425753", + "mnemonic": "call", + "op_str": "0x401b94", + "string": null + }, + { + "address": "0x00425758", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042575A", + "mnemonic": "mov", + "op_str": "edx, esi", + "string": null + }, + { + "address": "0x0042575C", + "mnemonic": "call", + "op_str": "0x401ba4", + "string": null + }, + { + "address": "0x00425761", + "mnemonic": "mov", + "op_str": "edx, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425763", + "mnemonic": "call", + "op_str": "dword ptr [edx + 0x44]", + "string": null + }, + { + "address": "0x00425766", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x184]", + "string": null + }, + { + "address": "0x0042576C", + "mnemonic": "call", + "op_str": "0x42489c", + "string": null + }, + { + "address": "0x00425771", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x184]", + "string": null + }, + { + "address": "0x00425777", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425778", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042577A", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x0042577C", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x0042577E", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425783", + "mnemonic": "push", + "op_str": "0x4269b0", + "string": null + }, + { + "address": "0x00425788", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x0042578A", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x0042578C", + "mnemonic": "mov", + "op_str": "edx, 0xa", + "string": null + }, + { + "address": "0x00425791", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425796", + "mnemonic": "push", + "op_str": "0x4269bc", + "string": null + }, + { + "address": "0x0042579B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x190]", + "string": null + }, + { + "address": "0x004257A1", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004257A2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x004257A7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004257A9", + "mnemonic": "movsx", + "op_str": "ecx, byte ptr [eax + 2]", + "string": null + }, + { + "address": "0x004257AD", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x004257B2", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x004257B7", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x004257BC", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x190]", + "string": null + }, + { + "address": "0x004257C2", + "mnemonic": "push", + "op_str": "0x4269c8", + "string": null + }, + { + "address": "0x004257C7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x18c]", + "string": null + }, + { + "address": "0x004257CD", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x004257D2", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x004257D7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x18c]", + "string": null + }, + { + "address": "0x004257DD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004257DE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x194]", + "string": null + }, + { + "address": "0x004257E4", + "mnemonic": "mov", + "op_str": "ecx, 0x4269c8", + "string": null + }, + { + "address": "0x004257E9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a874]", + "string": null + }, + { + "address": "0x004257EF", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x004257F4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x194]", + "string": null + }, + { + "address": "0x004257FA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004257FB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8c4]", + "string": null + }, + { + "address": "0x00425800", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425801", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00425803", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425805", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00425808", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4390f8]", + "string": null + }, + { + "address": "0x0042580E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425810", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0x413b0]", + "string": null + }, + { + "address": "0x00425817", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0042581A", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x0042581D", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x0042581E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x188]", + "string": null + }, + { + "address": "0x00425824", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425825", + "mnemonic": "call", + "op_str": "0x403cfc", + "string": null + }, + { + "address": "0x0042582A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x188]", + "string": null + }, + { + "address": "0x00425830", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425831", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425833", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425835", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a850]", + "string": null + }, + { + "address": "0x0042583B", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425840", + "mnemonic": "push", + "op_str": "0x4269bc", + "string": null + }, + { + "address": "0x00425845", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1a0]", + "string": null + }, + { + "address": "0x0042584B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042584C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x00425851", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425853", + "mnemonic": "movsx", + "op_str": "ecx, byte ptr [eax + 2]", + "string": null + }, + { + "address": "0x00425857", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x0042585C", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x00425861", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00425866", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1a0]", + "string": null + }, + { + "address": "0x0042586C", + "mnemonic": "push", + "op_str": "0x4269c8", + "string": null + }, + { + "address": "0x00425871", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x19c]", + "string": null + }, + { + "address": "0x00425877", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x0042587C", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00425881", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x19c]", + "string": null + }, + { + "address": "0x00425887", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425888", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1a4]", + "string": null + }, + { + "address": "0x0042588E", + "mnemonic": "mov", + "op_str": "ecx, 0x4269c8", + "string": null + }, + { + "address": "0x00425893", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a874]", + "string": null + }, + { + "address": "0x00425899", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x0042589E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1a4]", + "string": null + }, + { + "address": "0x004258A4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004258A5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8c4]", + "string": null + }, + { + "address": "0x004258AA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004258AB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x004258AD", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004258AF", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x004258B2", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4390f8]", + "string": null + }, + { + "address": "0x004258B8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004258BA", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0x413b8]", + "string": null + }, + { + "address": "0x004258C1", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x004258C4", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x004258C7", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x004258C8", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x198]", + "string": null + }, + { + "address": "0x004258CE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004258CF", + "mnemonic": "call", + "op_str": "0x403cfc", + "string": null + }, + { + "address": "0x004258D4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x198]", + "string": null + }, + { + "address": "0x004258DA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004258DB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x004258DD", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x004258DF", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a854]", + "string": null + }, + { + "address": "0x004258E5", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x004258EA", + "mnemonic": "push", + "op_str": "0x4269bc", + "string": null + }, + { + "address": "0x004258EF", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1b0]", + "string": null + }, + { + "address": "0x004258F5", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004258F6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x004258FB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004258FD", + "mnemonic": "movsx", + "op_str": "ecx, byte ptr [eax + 2]", + "string": null + }, + { + "address": "0x00425901", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00425906", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x0042590B", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00425910", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1b0]", + "string": null + }, + { + "address": "0x00425916", + "mnemonic": "push", + "op_str": "0x4269c8", + "string": null + }, + { + "address": "0x0042591B", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1ac]", + "string": null + }, + { + "address": "0x00425921", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00425926", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x0042592B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1ac]", + "string": null + }, + { + "address": "0x00425931", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425932", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1b4]", + "string": null + }, + { + "address": "0x00425938", + "mnemonic": "mov", + "op_str": "ecx, 0x4269c8", + "string": null + }, + { + "address": "0x0042593D", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a874]", + "string": null + }, + { + "address": "0x00425943", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x00425948", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1b4]", + "string": null + }, + { + "address": "0x0042594E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042594F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8c4]", + "string": null + }, + { + "address": "0x00425954", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425955", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00425957", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425959", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x0042595C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4390f8]", + "string": null + }, + { + "address": "0x00425962", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425964", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0x413c0]", + "string": null + }, + { + "address": "0x0042596B", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x0042596E", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00425971", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00425972", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1a8]", + "string": null + }, + { + "address": "0x00425978", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425979", + "mnemonic": "call", + "op_str": "0x403cfc", + "string": null + }, + { + "address": "0x0042597E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1a8]", + "string": null + }, + { + "address": "0x00425984", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425985", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425987", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425989", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a858]", + "string": null + }, + { + "address": "0x0042598F", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425994", + "mnemonic": "push", + "op_str": "0x4269bc", + "string": null + }, + { + "address": "0x00425999", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c0]", + "string": null + }, + { + "address": "0x0042599F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004259A0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439158]", + "string": null + }, + { + "address": "0x004259A5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004259A7", + "mnemonic": "movsx", + "op_str": "ecx, byte ptr [eax + 2]", + "string": null + }, + { + "address": "0x004259AB", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x004259B0", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x004259B5", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x004259BA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1c0]", + "string": null + }, + { + "address": "0x004259C0", + "mnemonic": "push", + "op_str": "0x4269c8", + "string": null + }, + { + "address": "0x004259C5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1bc]", + "string": null + }, + { + "address": "0x004259CB", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x004259D0", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x004259D5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1bc]", + "string": null + }, + { + "address": "0x004259DB", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004259DC", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c4]", + "string": null + }, + { + "address": "0x004259E2", + "mnemonic": "mov", + "op_str": "ecx, 0x4269c8", + "string": null + }, + { + "address": "0x004259E7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a874]", + "string": null + }, + { + "address": "0x004259ED", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x004259F2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c4]", + "string": null + }, + { + "address": "0x004259F8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004259F9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8c4]", + "string": null + }, + { + "address": "0x004259FE", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004259FF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00425A01", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425A03", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00425A06", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4390f8]", + "string": null + }, + { + "address": "0x00425A0C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425A0E", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0x413a8]", + "string": null + }, + { + "address": "0x00425A15", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00425A18", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00425A1B", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00425A1C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1b8]", + "string": null + }, + { + "address": "0x00425A22", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425A23", + "mnemonic": "call", + "op_str": "0x403cfc", + "string": null + }, + { + "address": "0x00425A28", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1b8]", + "string": null + }, + { + "address": "0x00425A2E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425A2F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425A31", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425A33", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a85c]", + "string": null + }, + { + "address": "0x00425A39", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425A3E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x00425A43", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425A45", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x00425A4C", + "mnemonic": "jne", + "op_str": "0x425aec", + "string": null + }, + { + "address": "0x00425A52", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425A57", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425A59", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x00425A5D", + "mnemonic": "jne", + "op_str": "0x425aec", + "string": null + }, + { + "address": "0x00425A63", + "mnemonic": "push", + "op_str": "0x4269bc", + "string": null + }, + { + "address": "0x00425A68", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1d0]", + "string": null + }, + { + "address": "0x00425A6E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425A6F", + "mnemonic": "mov", + "op_str": "ecx, 4", + "string": null + }, + { + "address": "0x00425A74", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00425A79", + "mnemonic": "mov", + "op_str": "eax, 0x4267b4", + "string": "00000" + }, + { + "address": "0x00425A7E", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00425A83", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1d0]", + "string": null + }, + { + "address": "0x00425A89", + "mnemonic": "push", + "op_str": "0x4269c8", + "string": null + }, + { + "address": "0x00425A8E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1cc]", + "string": null + }, + { + "address": "0x00425A94", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00425A99", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00425A9E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1cc]", + "string": null + }, + { + "address": "0x00425AA4", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425AA5", + "mnemonic": "push", + "op_str": "0x4269d4", + "string": "#,0.0000;;'" + }, + { + "address": "0x00425AAA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8c4]", + "string": null + }, + { + "address": "0x00425AAF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425AB0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00425AB2", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425AB4", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00425AB7", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x4390f8]", + "string": null + }, + { + "address": "0x00425ABD", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425ABF", + "mnemonic": "fld", + "op_str": "qword ptr [edx + eax*8 + 0x413d0]", + "string": null + }, + { + "address": "0x00425AC6", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00425AC9", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00425ACC", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00425ACD", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1c8]", + "string": null + }, + { + "address": "0x00425AD3", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425AD4", + "mnemonic": "call", + "op_str": "0x403cfc", + "string": null + }, + { + "address": "0x00425AD9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1c8]", + "string": null + }, + { + "address": "0x00425ADF", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425AE0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425AE2", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425AE4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00425AE7", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425AEC", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 1", + "string": null + }, + { + "address": "0x00425AF3", + "mnemonic": "jne", + "op_str": "0x425b09", + "string": null + }, + { + "address": "0x00425AF5", + "mnemonic": "push", + "op_str": "0x4269e8", + "string": "금액적용(%)" + }, + { + "address": "0x00425AFA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00425AFD", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x00425AFE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425B00", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425B02", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425B07", + "mnemonic": "jmp", + "op_str": "0x425b6e", + "string": null + }, + { + "address": "0x00425B09", + "mnemonic": "push", + "op_str": "0x4269fc", + "string": null + }, + { + "address": "0x00425B0E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425B10", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425B12", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x00425B17", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425B1C", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x1d4]", + "string": null + }, + { + "address": "0x00425B22", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebx]", + "string": null + }, + { + "address": "0x00425B24", + "mnemonic": "call", + "op_str": "0x4015d4", + "string": null + }, + { + "address": "0x00425B29", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1d4]", + "string": null + }, + { + "address": "0x00425B2F", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425B30", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425B32", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425B34", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x00425B39", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425B3E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00425B40", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425B42", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425B44", + "mnemonic": "mov", + "op_str": "edx, 7", + "string": null + }, + { + "address": "0x00425B49", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425B4E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00425B50", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425B52", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425B54", + "mnemonic": "mov", + "op_str": "edx, 8", + "string": null + }, + { + "address": "0x00425B59", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425B5E", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x00425B60", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425B62", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425B64", + "mnemonic": "mov", + "op_str": "edx, 9", + "string": null + }, + { + "address": "0x00425B69", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425B6E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439100]", + "string": null + }, + { + "address": "0x00425B73", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425B75", + "mnemonic": "cmp", + "op_str": "dword ptr [eax + 0x52ac], 2", + "string": null + }, + { + "address": "0x00425B7C", + "mnemonic": "jne", + "op_str": "0x425c39", + "string": null + }, + { + "address": "0x00425B82", + "mnemonic": "push", + "op_str": "0x426a08", + "string": null + }, + { + "address": "0x00425B87", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425B8C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425B8E", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x278]", + "string": null + }, + { + "address": "0x00425B94", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00425B97", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00425B9A", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00425B9B", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x1dc]", + "string": null + }, + { + "address": "0x00425BA1", + "mnemonic": "mov", + "op_str": "eax, 0x426a1c", + "string": "M:0.#######" + }, + { + "address": "0x00425BA6", + "mnemonic": "call", + "op_str": "0x401634", + "string": null + }, + { + "address": "0x00425BAB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1dc]", + "string": null + }, + { + "address": "0x00425BB1", + "mnemonic": "push", + "op_str": "0x426a30", + "string": null + }, + { + "address": "0x00425BB6", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425BBB", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425BBD", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x270]", + "string": null + }, + { + "address": "0x00425BC3", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00425BC6", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00425BC9", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00425BCA", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x1e0]", + "string": null + }, + { + "address": "0x00425BD0", + "mnemonic": "mov", + "op_str": "eax, 0x426a3c", + "string": "L:0.#######" + }, + { + "address": "0x00425BD5", + "mnemonic": "call", + "op_str": "0x401634", + "string": null + }, + { + "address": "0x00425BDA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e0]", + "string": null + }, + { + "address": "0x00425BE0", + "mnemonic": "push", + "op_str": "0x426a30", + "string": null + }, + { + "address": "0x00425BE5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425BEA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425BEC", + "mnemonic": "fld", + "op_str": "qword ptr [eax + 0x280]", + "string": null + }, + { + "address": "0x00425BF2", + "mnemonic": "add", + "op_str": "esp, -0xc", + "string": null + }, + { + "address": "0x00425BF5", + "mnemonic": "fstp", + "op_str": "xword ptr [esp]", + "string": null + }, + { + "address": "0x00425BF8", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00425BF9", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x1e4]", + "string": null + }, + { + "address": "0x00425BFF", + "mnemonic": "mov", + "op_str": "eax, 0x426a50", + "string": "S:0.#######" + }, + { + "address": "0x00425C04", + "mnemonic": "call", + "op_str": "0x401634", + "string": null + }, + { + "address": "0x00425C09", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1e4]", + "string": null + }, + { + "address": "0x00425C0F", + "mnemonic": "push", + "op_str": "0x426a64", + "string": null + }, + { + "address": "0x00425C14", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1d8]", + "string": null + }, + { + "address": "0x00425C1A", + "mnemonic": "mov", + "op_str": "edx, 7", + "string": null + }, + { + "address": "0x00425C1F", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00425C24", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x1d8]", + "string": null + }, + { + "address": "0x00425C2A", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425C2B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425C2D", + "mnemonic": "mov", + "op_str": "ecx, esi", + "string": null + }, + { + "address": "0x00425C2F", + "mnemonic": "mov", + "op_str": "edx, 0x10", + "string": null + }, + { + "address": "0x00425C34", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425C39", + "mnemonic": "add", + "op_str": "ebx, 4", + "string": null + }, + { + "address": "0x00425C3C", + "mnemonic": "dec", + "op_str": "dword ptr [ebp - 0x18]", + "string": null + }, + { + "address": "0x00425C3F", + "mnemonic": "jne", + "op_str": "0x425746", + "string": null + }, + { + "address": "0x00425C45", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a868]", + "string": null + }, + { + "address": "0x00425C4A", + "mnemonic": "sub", + "op_str": "eax, 1", + "string": null + }, + { + "address": "0x00425C4D", + "mnemonic": "je", + "op_str": "0x425c58", + "string": null + }, + { + "address": "0x00425C4F", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00425C52", + "mnemonic": "jne", + "op_str": "0x426115", + "string": "〈쭰" + }, + { + "address": "0x00425C58", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a90c]", + "string": null + }, + { + "address": "0x00425C5D", + "mnemonic": "add", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00425C5F", + "mnemonic": "lea", + "op_str": "eax, [eax + eax*2]", + "string": null + }, + { + "address": "0x00425C62", + "mnemonic": "add", + "op_str": "eax, 6", + "string": null + }, + { + "address": "0x00425C65", + "mnemonic": "call", + "op_str": "0x414bf0", + "string": null + }, + { + "address": "0x00425C6A", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00425C6C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425C6E", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00425C70", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425C75", + "mnemonic": "mov", + "op_str": "eax, 0x5a", + "string": null + }, + { + "address": "0x00425C7A", + "mnemonic": "call", + "op_str": "0x414bf0", + "string": null + }, + { + "address": "0x00425C7F", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00425C81", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425C83", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00425C88", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425C8D", + "mnemonic": "mov", + "op_str": "eax, 0x5a", + "string": null + }, + { + "address": "0x00425C92", + "mnemonic": "call", + "op_str": "0x414bf0", + "string": null + }, + { + "address": "0x00425C97", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00425C99", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425C9B", + "mnemonic": "mov", + "op_str": "edx, 2", + "string": null + }, + { + "address": "0x00425CA0", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425CA5", + "mnemonic": "mov", + "op_str": "eax, 0x5a", + "string": null + }, + { + "address": "0x00425CAA", + "mnemonic": "call", + "op_str": "0x414bf0", + "string": null + }, + { + "address": "0x00425CAF", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00425CB1", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425CB3", + "mnemonic": "mov", + "op_str": "edx, 3", + "string": null + }, + { + "address": "0x00425CB8", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425CBD", + "mnemonic": "mov", + "op_str": "eax, 0x5a", + "string": null + }, + { + "address": "0x00425CC2", + "mnemonic": "call", + "op_str": "0x414bf0", + "string": null + }, + { + "address": "0x00425CC7", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00425CC9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425CCB", + "mnemonic": "mov", + "op_str": "edx, 4", + "string": null + }, + { + "address": "0x00425CD0", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425CD5", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x204]", + "string": null + }, + { + "address": "0x00425CDB", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a8b8]", + "string": null + }, + { + "address": "0x00425CE1", + "mnemonic": "mov", + "op_str": "cl, 0xfc", + "string": null + }, + { + "address": "0x00425CE3", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00425CE8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1f8]", + "string": null + }, + { + "address": "0x00425CEE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x1fc]", + "string": null + }, + { + "address": "0x00425CF4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x200]", + "string": null + }, + { + "address": "0x00425CFA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x204]", + "string": null + }, + { + "address": "0x00425D00", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x218]", + "string": null + }, + { + "address": "0x00425D06", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425D07", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425D09", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425D0B", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x00425D10", + "mnemonic": "call", + "op_str": "0x401b9c", + "string": null + }, + { + "address": "0x00425D15", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x218]", + "string": null + }, + { + "address": "0x00425D1B", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x00425D20", + "mnemonic": "mov", + "op_str": "edx, eax", + "string": null + }, + { + "address": "0x00425D22", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x214]", + "string": null + }, + { + "address": "0x00425D28", + "mnemonic": "mov", + "op_str": "cl, 0xfc", + "string": null + }, + { + "address": "0x00425D2A", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00425D2F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x208]", + "string": null + }, + { + "address": "0x00425D35", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x20c]", + "string": null + }, + { + "address": "0x00425D3B", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x210]", + "string": null + }, + { + "address": "0x00425D41", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x214]", + "string": null + }, + { + "address": "0x00425D47", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x21c]", + "string": null + }, + { + "address": "0x00425D4D", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425D4E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425D50", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425D52", + "mnemonic": "mov", + "op_str": "edx, 5", + "string": null + }, + { + "address": "0x00425D57", + "mnemonic": "call", + "op_str": "0x401b9c", + "string": null + }, + { + "address": "0x00425D5C", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x21c]", + "string": null + }, + { + "address": "0x00425D62", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x00425D67", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [0x44a8b8]", + "string": null + }, + { + "address": "0x00425D6D", + "mnemonic": "setg", + "op_str": "al", + "string": null + }, + { + "address": "0x00425D70", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425D71", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1f4]", + "string": null + }, + { + "address": "0x00425D77", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425D78", + "mnemonic": "call", + "op_str": "0x403c7c", + "string": null + }, + { + "address": "0x00425D7D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1f4]", + "string": null + }, + { + "address": "0x00425D83", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425D84", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x22c]", + "string": null + }, + { + "address": "0x00425D8A", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x00425D8F", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00425D91", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00425D96", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x22c]", + "string": null + }, + { + "address": "0x00425D9C", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425D9D", + "mnemonic": "call", + "op_str": "0x4012a8", + "string": null + }, + { + "address": "0x00425DA2", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1f4]", + "string": null + }, + { + "address": "0x00425DA8", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425DA9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x23c]", + "string": null + }, + { + "address": "0x00425DAF", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x00425DB4", + "mnemonic": "mov", + "op_str": "cl, 1", + "string": null + }, + { + "address": "0x00425DB6", + "mnemonic": "call", + "op_str": "0x401268", + "string": null + }, + { + "address": "0x00425DBB", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x23c]", + "string": null + }, + { + "address": "0x00425DC1", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425DC2", + "mnemonic": "call", + "op_str": "0x401298", + "string": null + }, + { + "address": "0x00425DC7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x1f4]", + "string": null + }, + { + "address": "0x00425DCD", + "mnemonic": "call", + "op_str": "0x401240", + "string": null + }, + { + "address": "0x00425DD2", + "mnemonic": "call", + "op_str": "0x414bf0", + "string": null + }, + { + "address": "0x00425DD7", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00425DD9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00425DDC", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x00425DDD", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425DDF", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425DE4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x00425DE9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425DEB", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x00425DF2", + "mnemonic": "jne", + "op_str": "0x425e10", + "string": null + }, + { + "address": "0x00425DF4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425DF9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425DFB", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x00425DFF", + "mnemonic": "jne", + "op_str": "0x425e10", + "string": null + }, + { + "address": "0x00425E01", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E03", + "mnemonic": "mov", + "op_str": "ecx, 0x5a", + "string": null + }, + { + "address": "0x00425E08", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00425E0B", + "mnemonic": "call", + "op_str": "0x401b84", + "string": null + }, + { + "address": "0x00425E10", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 1", + "string": null + }, + { + "address": "0x00425E17", + "mnemonic": "jne", + "op_str": "0x426115", + "string": "〈쭰" + }, + { + "address": "0x00425E1D", + "mnemonic": "push", + "op_str": "0x426a70", + "string": "산 출 내 역" + }, + { + "address": "0x00425E22", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E24", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425E26", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00425E28", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425E2D", + "mnemonic": "push", + "op_str": "0x426a84", + "string": "노 무 비" + }, + { + "address": "0x00425E32", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E34", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425E36", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a850]", + "string": null + }, + { + "address": "0x00425E3C", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425E41", + "mnemonic": "push", + "op_str": "0x426a98", + "string": "재 료 비" + }, + { + "address": "0x00425E46", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E48", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425E4A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a854]", + "string": null + }, + { + "address": "0x00425E50", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425E55", + "mnemonic": "push", + "op_str": "0x426aac", + "string": "경 비" + }, + { + "address": "0x00425E5A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E5C", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425E5E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a858]", + "string": null + }, + { + "address": "0x00425E64", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425E69", + "mnemonic": "push", + "op_str": "0x426ac0", + "string": " 계 " + }, + { + "address": "0x00425E6E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E70", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425E72", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a85c]", + "string": null + }, + { + "address": "0x00425E78", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425E7D", + "mnemonic": "push", + "op_str": "0x426ad4", + "string": " 비 고 " + }, + { + "address": "0x00425E82", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00425E85", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x00425E86", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425E88", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425E8A", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425E8F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x00425E94", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425E96", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x19ba], 1", + "string": null + }, + { + "address": "0x00425E9D", + "mnemonic": "jne", + "op_str": "0x426115", + "string": "〈쭰" + }, + { + "address": "0x00425EA3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425EA8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425EAA", + "mnemonic": "cmp", + "op_str": "byte ptr [eax + 0x57], 5", + "string": null + }, + { + "address": "0x00425EAE", + "mnemonic": "jne", + "op_str": "0x426115", + "string": "〈쭰" + }, + { + "address": "0x00425EB4", + "mnemonic": "push", + "op_str": "0x426ae8", + "string": "북측노무비($)" + }, + { + "address": "0x00425EB9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [edi]", + "string": null + }, + { + "address": "0x00425EBB", + "mnemonic": "xor", + "op_str": "ecx, ecx", + "string": null + }, + { + "address": "0x00425EBD", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0xc]", + "string": null + }, + { + "address": "0x00425EC0", + "mnemonic": "call", + "op_str": "0x401bac", + "string": null + }, + { + "address": "0x00425EC5", + "mnemonic": "jmp", + "op_str": "0x426115", + "string": "〈쭰" + }, + { + "address": "0x00425ECA", + "mnemonic": "inc", + "op_str": "dword ptr [0x44a860]", + "string": null + }, + { + "address": "0x00425ED0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425ED5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425ED7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x250]", + "string": null + }, + { + "address": "0x00425EDD", + "mnemonic": "cmp", + "op_str": "eax, dword ptr [0x44a860]", + "string": null + }, + { + "address": "0x00425EE3", + "mnemonic": "jge", + "op_str": "0x425f1e", + "string": null + }, + { + "address": "0x00425EE5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425EEA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425EEC", + "mnemonic": "mov", + "op_str": "ebx, dword ptr [0x44a860]", + "string": null + }, + { + "address": "0x00425EF2", + "mnemonic": "mov", + "op_str": "dword ptr [eax + 0x250], ebx", + "string": null + }, + { + "address": "0x00425EF8", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425EFD", + "mnemonic": "inc", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00425EFE", + "mnemonic": "push", + "op_str": "ebx", + "string": null + }, + { + "address": "0x00425EFF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425F04", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00425F06", + "mnemonic": "add", + "op_str": "eax, 0x540", + "string": null + }, + { + "address": "0x00425F0B", + "mnemonic": "mov", + "op_str": "ecx, 1", + "string": null + }, + { + "address": "0x00425F10", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x403224]", + "string": null + }, + { + "address": "0x00425F16", + "mnemonic": "call", + "op_str": "0x4012e0", + "string": null + }, + { + "address": "0x00425F1B", + "mnemonic": "add", + "op_str": "esp, 4", + "string": null + }, + { + "address": "0x00425F1E", + "mnemonic": "add", + "op_str": "dword ptr [0x44a864], 0x80", + "string": null + }, + { + "address": "0x00425F28", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x00425F32", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425F38", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425F3A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x00425F40", + "mnemonic": "lea", + "op_str": "eax, [edx + eax*8 + 0x13]", + "string": null + }, + { + "address": "0x00425F44", + "mnemonic": "mov", + "op_str": "edx, 0x44a87c", + "string": null + }, + { + "address": "0x00425F49", + "mnemonic": "mov", + "op_str": "cl, 6", + "string": null + }, + { + "address": "0x00425F4B", + "mnemonic": "call", + "op_str": "0x401078", + "string": null + }, + { + "address": "0x00425F50", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x340]", + "string": null + }, + { + "address": "0x00425F56", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00425F57", + "mnemonic": "mov", + "op_str": "ecx, 6", + "string": null + }, + { + "address": "0x00425F5C", + "mnemonic": "mov", + "op_str": "edx, 1", + "string": null + }, + { + "address": "0x00425F61", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8b4]", + "string": null + }, + { + "address": "0x00425F66", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00425F6B", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x340]", + "string": null + }, + { + "address": "0x00425F71", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x33c]", + "string": null + }, + { + "address": "0x00425F77", + "mnemonic": "mov", + "op_str": "ecx, 0xff", + "string": null + }, + { + "address": "0x00425F7C", + "mnemonic": "call", + "op_str": "0x401198", + "string": null + }, + { + "address": "0x00425F81", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x33c]", + "string": null + }, + { + "address": "0x00425F87", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x00425F91", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425F97", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx]", + "string": null + }, + { + "address": "0x00425F99", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ecx + 0x540]", + "string": null + }, + { + "address": "0x00425F9F", + "mnemonic": "lea", + "op_str": "eax, [ecx + eax*8 + 0x1a]", + "string": null + }, + { + "address": "0x00425FA3", + "mnemonic": "mov", + "op_str": "cl, 6", + "string": null + }, + { + "address": "0x00425FA5", + "mnemonic": "call", + "op_str": "0x401078", + "string": null + }, + { + "address": "0x00425FAA", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x00425FB4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425FBA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425FBC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x00425FC2", + "mnemonic": "mov", + "op_str": "byte ptr [edx + eax*8 + 0x1d1], 0", + "string": null + }, + { + "address": "0x00425FCA", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x00425FD4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425FDA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425FDC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x00425FE2", + "mnemonic": "mov", + "op_str": "byte ptr [edx + eax*8 + 0x1d3], 0", + "string": null + }, + { + "address": "0x00425FEA", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x00425FF4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00425FFA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00425FFC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x00426002", + "mnemonic": "mov", + "op_str": "byte ptr [edx + eax*8 + 0x1d5], 0", + "string": null + }, + { + "address": "0x0042600A", + "mnemonic": "fild", + "op_str": "dword ptr [0x44a864]", + "string": null + }, + { + "address": "0x00426010", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x0042601A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426020", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00426022", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x00426028", + "mnemonic": "fstp", + "op_str": "qword ptr [edx + eax*8 + 0x1e8]", + "string": null + }, + { + "address": "0x0042602F", + "mnemonic": "wait", + "op_str": "", + "string": null + }, + { + "address": "0x00426030", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x0042603A", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426040", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00426042", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x00426048", + "mnemonic": "mov", + "op_str": "word ptr [edx + eax*8 + 0x41c], 0", + "string": null + }, + { + "address": "0x00426052", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x0042605C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426062", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00426064", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x0042606A", + "mnemonic": "mov", + "op_str": "byte ptr [edx + eax*8 + 0x40f], 0", + "string": null + }, + { + "address": "0x00426072", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x0042607C", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426082", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00426084", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x0042608A", + "mnemonic": "mov", + "op_str": "word ptr [edx + eax*8 + 0x41e], 0", + "string": null + }, + { + "address": "0x00426094", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x0042609E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004260A4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004260A6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x004260AC", + "mnemonic": "mov", + "op_str": "word ptr [edx + eax*8 + 0x420], 0", + "string": null + }, + { + "address": "0x004260B6", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x004260C0", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004260C6", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004260C8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x004260CE", + "mnemonic": "mov", + "op_str": "word ptr [edx + eax*8 + 0x422], 0", + "string": null + }, + { + "address": "0x004260D8", + "mnemonic": "imul", + "op_str": "eax, dword ptr [0x44a860], 0xaa", + "string": null + }, + { + "address": "0x004260E2", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004260E8", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004260EA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx + 0x540]", + "string": null + }, + { + "address": "0x004260F0", + "mnemonic": "mov", + "op_str": "byte ptr [edx + eax*8 + 0x2d], 0", + "string": null + }, + { + "address": "0x004260F5", + "mnemonic": "push", + "op_str": "0x44a8b4", + "string": null + }, + { + "address": "0x004260FA", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8b4]", + "string": null + }, + { + "address": "0x004260FF", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x00426104", + "mnemonic": "mov", + "op_str": "ecx, eax", + "string": null + }, + { + "address": "0x00426106", + "mnemonic": "mov", + "op_str": "edx, 7", + "string": null + }, + { + "address": "0x0042610B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8b4]", + "string": null + }, + { + "address": "0x00426110", + "mnemonic": "call", + "op_str": "0x4011e0", + "string": null + }, + { + "address": "0x00426115", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8b4]", + "string": null + }, + { + "address": "0x0042611A", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x0042611F", + "mnemonic": "cmp", + "op_str": "eax, 5", + "string": null + }, + { + "address": "0x00426122", + "mnemonic": "jg", + "op_str": "0x425eca", + "string": null + }, + { + "address": "0x00426128", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43915c]", + "string": null + }, + { + "address": "0x0042612D", + "mnemonic": "cmp", + "op_str": "byte ptr [eax], 0", + "string": null + }, + { + "address": "0x00426130", + "mnemonic": "je", + "op_str": "0x42615e", + "string": null + }, + { + "address": "0x00426132", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426137", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00426139", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x54c]", + "string": null + }, + { + "address": "0x0042613F", + "mnemonic": "call", + "op_str": "0x4012d8", + "string": null + }, + { + "address": "0x00426144", + "mnemonic": "test", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x00426146", + "mnemonic": "jle", + "op_str": "0x42615e", + "string": null + }, + { + "address": "0x00426148", + "mnemonic": "mov", + "op_str": "ecx, 0x426b00", + "string": "산근 계산중 오류가 있어 계산을 완료하지 못했습니다.\r오류 내용을 확인해 보십시요." + }, + { + "address": "0x0042614D", + "mnemonic": "mov", + "op_str": "dl, 1", + "string": null + }, + { + "address": "0x0042614F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44bbb4]", + "string": null + }, + { + "address": "0x00426154", + "mnemonic": "call", + "op_str": "0x401654", + "string": null + }, + { + "address": "0x00426159", + "mnemonic": "call", + "op_str": "0x401130", + "string": null + }, + { + "address": "0x0042615E", + "mnemonic": "mov", + "op_str": "byte ptr [ebp - 1], 1", + "string": null + }, + { + "address": "0x00426162", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 1", + "string": null + }, + { + "address": "0x00426169", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x0042616C", + "mnemonic": "and", + "op_str": "al, byte ptr [0x44a8ad]", + "string": null + }, + { + "address": "0x00426172", + "mnemonic": "je", + "op_str": "0x426346", + "string": null + }, + { + "address": "0x00426178", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x0042617D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042617F", + "mnemonic": "cmp", + "op_str": "word ptr [eax + 0xe46], 0", + "string": null + }, + { + "address": "0x00426187", + "mnemonic": "je", + "op_str": "0x426346", + "string": null + }, + { + "address": "0x0042618D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x00426192", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00426194", + "mnemonic": "mov", + "op_str": "ax, word ptr [eax + 0xe46]", + "string": null + }, + { + "address": "0x0042619B", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042619C", + "mnemonic": "sub", + "op_str": "ax, 3", + "string": null + }, + { + "address": "0x004261A0", + "mnemonic": "jae", + "op_str": "0x426346", + "string": null + }, + { + "address": "0x004261A6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x350]", + "string": null + }, + { + "address": "0x004261AC", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x44a8e8]", + "string": null + }, + { + "address": "0x004261B2", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x004261B7", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x350]", + "string": null + }, + { + "address": "0x004261BD", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004261BE", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x370]", + "string": null + }, + { + "address": "0x004261C4", + "mnemonic": "mov", + "op_str": "edx, 0x426b5c", + "string": null + }, + { + "address": "0x004261C9", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x004261CE", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x364]", + "string": null + }, + { + "address": "0x004261D4", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x368]", + "string": null + }, + { + "address": "0x004261DA", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x36c]", + "string": null + }, + { + "address": "0x004261E0", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x370]", + "string": null + }, + { + "address": "0x004261E6", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x380]", + "string": null + }, + { + "address": "0x004261EC", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x004261EE", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x004261F3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x374]", + "string": null + }, + { + "address": "0x004261F9", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x378]", + "string": null + }, + { + "address": "0x004261FF", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x37c]", + "string": null + }, + { + "address": "0x00426205", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x380]", + "string": null + }, + { + "address": "0x0042620B", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a8e8], 0", + "string": null + }, + { + "address": "0x00426212", + "mnemonic": "sete", + "op_str": "al", + "string": null + }, + { + "address": "0x00426215", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426216", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x360]", + "string": null + }, + { + "address": "0x0042621C", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042621D", + "mnemonic": "call", + "op_str": "0x403c7c", + "string": null + }, + { + "address": "0x00426222", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x360]", + "string": null + }, + { + "address": "0x00426228", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426229", + "mnemonic": "call", + "op_str": "0x401298", + "string": null + }, + { + "address": "0x0042622E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x350]", + "string": null + }, + { + "address": "0x00426234", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426235", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x390]", + "string": null + }, + { + "address": "0x0042623B", + "mnemonic": "mov", + "op_str": "edx, 0x426b68", + "string": null + }, + { + "address": "0x00426240", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x00426245", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x390]", + "string": null + }, + { + "address": "0x0042624B", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042624C", + "mnemonic": "call", + "op_str": "0x401298", + "string": null + }, + { + "address": "0x00426251", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x350]", + "string": null + }, + { + "address": "0x00426257", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426258", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3a4]", + "string": null + }, + { + "address": "0x0042625E", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8b0]", + "string": null + }, + { + "address": "0x00426263", + "mnemonic": "call", + "op_str": "0x4015cc", + "string": null + }, + { + "address": "0x00426268", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x3a4]", + "string": null + }, + { + "address": "0x0042626E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3a0]", + "string": null + }, + { + "address": "0x00426274", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x00426279", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3a0]", + "string": null + }, + { + "address": "0x0042627F", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426280", + "mnemonic": "call", + "op_str": "0x401298", + "string": null + }, + { + "address": "0x00426285", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x350]", + "string": null + }, + { + "address": "0x0042628B", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042628C", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3c4]", + "string": null + }, + { + "address": "0x00426292", + "mnemonic": "xor", + "op_str": "edx, edx", + "string": null + }, + { + "address": "0x00426294", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x00426299", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3b8]", + "string": null + }, + { + "address": "0x0042629F", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3bc]", + "string": null + }, + { + "address": "0x004262A5", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3c0]", + "string": null + }, + { + "address": "0x004262AB", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3c4]", + "string": null + }, + { + "address": "0x004262B1", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3d4]", + "string": null + }, + { + "address": "0x004262B7", + "mnemonic": "mov", + "op_str": "edx, 0x426b74", + "string": null + }, + { + "address": "0x004262BC", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x004262C1", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3c8]", + "string": null + }, + { + "address": "0x004262C7", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3cc]", + "string": null + }, + { + "address": "0x004262CD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3d0]", + "string": null + }, + { + "address": "0x004262D3", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3d4]", + "string": null + }, + { + "address": "0x004262D9", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3d8]", + "string": null + }, + { + "address": "0x004262DF", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44a8b0]", + "string": null + }, + { + "address": "0x004262E4", + "mnemonic": "call", + "op_str": "0x4015cc", + "string": null + }, + { + "address": "0x004262E9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x3d8]", + "string": null + }, + { + "address": "0x004262EF", + "mnemonic": "call", + "op_str": "0x4011a0", + "string": null + }, + { + "address": "0x004262F4", + "mnemonic": "cmp", + "op_str": "eax, 0x23", + "string": null + }, + { + "address": "0x004262F7", + "mnemonic": "setg", + "op_str": "al", + "string": null + }, + { + "address": "0x004262FA", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004262FB", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3b4]", + "string": null + }, + { + "address": "0x00426301", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426302", + "mnemonic": "call", + "op_str": "0x403c7c", + "string": null + }, + { + "address": "0x00426307", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3b4]", + "string": null + }, + { + "address": "0x0042630D", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042630E", + "mnemonic": "call", + "op_str": "0x401298", + "string": null + }, + { + "address": "0x00426313", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x350]", + "string": null + }, + { + "address": "0x00426319", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042631A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3e8]", + "string": null + }, + { + "address": "0x00426320", + "mnemonic": "mov", + "op_str": "edx, 0x426b80", + "string": " 번째줄은 강제수량이 쓰여졌습니다." + }, + { + "address": "0x00426325", + "mnemonic": "call", + "op_str": "0x401290", + "string": null + }, + { + "address": "0x0042632A", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x3e8]", + "string": null + }, + { + "address": "0x00426330", + "mnemonic": "pop", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426331", + "mnemonic": "call", + "op_str": "0x401298", + "string": null + }, + { + "address": "0x00426336", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x350]", + "string": null + }, + { + "address": "0x0042633C", + "mnemonic": "mov", + "op_str": "eax, 0x44a8e8", + "string": null + }, + { + "address": "0x00426341", + "mnemonic": "call", + "op_str": "0x401260", + "string": null + }, + { + "address": "0x00426346", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x0042634B", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042634D", + "mnemonic": "mov", + "op_str": "dl, byte ptr [0x44a8ad]", + "string": null + }, + { + "address": "0x00426353", + "mnemonic": "mov", + "op_str": "byte ptr [eax + 0x248], dl", + "string": null + }, + { + "address": "0x00426359", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x0042635B", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x0042635C", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0042635D", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x0042635E", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x00426361", + "mnemonic": "jmp", + "op_str": "0x4263f6", + "string": null + }, + { + "address": "0x00426366", + "mnemonic": "jmp", + "op_str": "0x401120", + "string": null + }, + { + "address": "0x0042636B", + "mnemonic": "add", + "op_str": "dword ptr [eax], eax", + "string": null + }, + { + "address": "0x0042636D", + "mnemonic": "add", + "op_str": "byte ptr [eax], al", + "string": null + }, + { + "address": "0x0042636F", + "mnemonic": "mov", + "op_str": "ah, 0xbb", + "string": null + }, + { + "address": "0x00426371", + "mnemonic": "inc", + "op_str": "esp", + "string": null + }, + { + "address": "0x00426372", + "mnemonic": "add", + "op_str": "byte ptr [edi + 0x63], dh", + "string": null + }, + { + "address": "0x00426375", + "mnemonic": "inc", + "op_str": "edx", + "string": null + }, + { + "address": "0x00426376", + "mnemonic": "add", + "op_str": "byte ptr [ecx - 0xba393d], cl", + "string": null + }, + { + "address": "0x0042637C", + "mnemonic": "add", + "op_str": "byte ptr [ecx + 0x44a84c], ah", + "string": null + }, + { + "address": "0x00426382", + "mnemonic": "dec", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426383", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp + 0x18]", + "string": null + }, + { + "address": "0x00426386", + "mnemonic": "mov", + "op_str": "dword ptr [edx], eax", + "string": null + }, + { + "address": "0x00426388", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp + 8]", + "string": null + }, + { + "address": "0x0042638B", + "mnemonic": "add", + "op_str": "eax, -2", + "string": null + }, + { + "address": "0x0042638E", + "mnemonic": "sub", + "op_str": "eax, 2", + "string": null + }, + { + "address": "0x00426391", + "mnemonic": "jb", + "op_str": "0x4263f1", + "string": null + }, + { + "address": "0x00426393", + "mnemonic": "push", + "op_str": "0x426bac", + "string": "굴림체" + }, + { + "address": "0x00426398", + "mnemonic": "push", + "op_str": "0x7f01", + "string": null + }, + { + "address": "0x0042639D", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x0042639F", + "mnemonic": "mov", + "op_str": "eax, 0x426bbc", + "string": "확 인 (&O)" + }, + { + "address": "0x004263A4", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0x3ec], eax", + "string": null + }, + { + "address": "0x004263AA", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3ec]", + "string": null + }, + { + "address": "0x004263B0", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x004263B1", + "mnemonic": "push", + "op_str": "0", + "string": null + }, + { + "address": "0x004263B3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3f4]", + "string": null + }, + { + "address": "0x004263B9", + "mnemonic": "mov", + "op_str": "edx, 0x44a87c", + "string": null + }, + { + "address": "0x004263BE", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x004263C3", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x3f4]", + "string": null + }, + { + "address": "0x004263C9", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3f0]", + "string": null + }, + { + "address": "0x004263CF", + "mnemonic": "mov", + "op_str": "edx, 0x426bd0", + "string": "산근" + }, + { + "address": "0x004263D4", + "mnemonic": "call", + "op_str": "0x4011b0", + "string": null + }, + { + "address": "0x004263D9", + "mnemonic": "mov", + "op_str": "ecx, dword ptr [ebp - 0x3f0]", + "string": null + }, + { + "address": "0x004263DF", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebx + 4]", + "string": null + }, + { + "address": "0x004263E2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44bc7c]", + "string": null + }, + { + "address": "0x004263E7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004263E9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x30]", + "string": null + }, + { + "address": "0x004263EC", + "mnemonic": "call", + "op_str": "0x4129b8", + "string": null + }, + { + "address": "0x004263F1", + "mnemonic": "call", + "op_str": "0x401138", + "string": null + }, + { + "address": "0x004263F6", + "mnemonic": "xor", + "op_str": "eax, eax", + "string": null + }, + { + "address": "0x004263F8", + "mnemonic": "pop", + "op_str": "edx", + "string": null + }, + { + "address": "0x004263F9", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004263FA", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004263FB", + "mnemonic": "mov", + "op_str": "dword ptr fs:[eax], edx", + "string": null + }, + { + "address": "0x004263FE", + "mnemonic": "push", + "op_str": "0x426624", + "string": null + }, + { + "address": "0x00426403", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp - 1], 0", + "string": null + }, + { + "address": "0x00426407", + "mnemonic": "je", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x0042640D", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a868], 1", + "string": null + }, + { + "address": "0x00426414", + "mnemonic": "jne", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x0042641A", + "mnemonic": "cmp", + "op_str": "dword ptr [0x44a8e8], 0", + "string": null + }, + { + "address": "0x00426421", + "mnemonic": "je", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x00426427", + "mnemonic": "push", + "op_str": "0x426bac", + "string": "굴림체" + }, + { + "address": "0x0042642C", + "mnemonic": "push", + "op_str": "0x7f04", + "string": null + }, + { + "address": "0x00426431", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x00426436", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00426438", + "mnemonic": "movzx", + "op_str": "eax, word ptr [eax + 0xe46]", + "string": null + }, + { + "address": "0x0042643F", + "mnemonic": "inc", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426440", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x00426441", + "mnemonic": "mov", + "op_str": "eax, 0x426be0", + "string": "메세지 숨김" + }, + { + "address": "0x00426446", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xac], eax", + "string": null + }, + { + "address": "0x0042644C", + "mnemonic": "mov", + "op_str": "eax, 0x426bf4", + "string": "XML비호환 보이기 " + }, + { + "address": "0x00426451", + "mnemonic": "mov", + "op_str": "dword ptr [ebp - 0xa8], eax", + "string": null + }, + { + "address": "0x00426457", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0xac]", + "string": null + }, + { + "address": "0x0042645D", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042645E", + "mnemonic": "push", + "op_str": "1", + "string": null + }, + { + "address": "0x00426460", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426465", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00426467", + "mnemonic": "lea", + "op_str": "edx, [eax + 0x68]", + "string": null + }, + { + "address": "0x0042646A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x408]", + "string": null + }, + { + "address": "0x00426470", + "mnemonic": "call", + "op_str": "0x401070", + "string": null + }, + { + "address": "0x00426475", + "mnemonic": "mov", + "op_str": "edx, 0x426c08", + "string": null + }, + { + "address": "0x0042647A", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x408]", + "string": null + }, + { + "address": "0x00426480", + "mnemonic": "mov", + "op_str": "cl, 9", + "string": null + }, + { + "address": "0x00426482", + "mnemonic": "call", + "op_str": "0x401068", + "string": null + }, + { + "address": "0x00426487", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x408]", + "string": null + }, + { + "address": "0x0042648D", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3fc]", + "string": null + }, + { + "address": "0x00426493", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x00426498", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x3fc]", + "string": null + }, + { + "address": "0x0042649E", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x410]", + "string": null + }, + { + "address": "0x004264A4", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004264AA", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004264AC", + "mnemonic": "add", + "op_str": "edx, 0x99", + "string": null + }, + { + "address": "0x004264B2", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x004264B7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x410]", + "string": null + }, + { + "address": "0x004264BD", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x40c]", + "string": null + }, + { + "address": "0x004264C3", + "mnemonic": "call", + "op_str": "0x4015bc", + "string": null + }, + { + "address": "0x004264C8", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x40c]", + "string": null + }, + { + "address": "0x004264CE", + "mnemonic": "push", + "op_str": "0x426c14", + "string": null + }, + { + "address": "0x004264D3", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x418]", + "string": null + }, + { + "address": "0x004264D9", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x004264DF", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x004264E1", + "mnemonic": "add", + "op_str": "edx, 0xff", + "string": null + }, + { + "address": "0x004264E7", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x004264EC", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x418]", + "string": null + }, + { + "address": "0x004264F2", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x414]", + "string": null + }, + { + "address": "0x004264F8", + "mnemonic": "call", + "op_str": "0x4015bc", + "string": null + }, + { + "address": "0x004264FD", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x414]", + "string": null + }, + { + "address": "0x00426503", + "mnemonic": "push", + "op_str": "0x426c20", + "string": null + }, + { + "address": "0x00426508", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x420]", + "string": null + }, + { + "address": "0x0042650E", + "mnemonic": "mov", + "op_str": "edx, dword ptr [0x43912c]", + "string": null + }, + { + "address": "0x00426514", + "mnemonic": "mov", + "op_str": "edx, dword ptr [edx]", + "string": null + }, + { + "address": "0x00426516", + "mnemonic": "add", + "op_str": "edx, 0x179", + "string": null + }, + { + "address": "0x0042651C", + "mnemonic": "call", + "op_str": "0x401190", + "string": null + }, + { + "address": "0x00426521", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x420]", + "string": null + }, + { + "address": "0x00426527", + "mnemonic": "lea", + "op_str": "edx, [ebp - 0x41c]", + "string": null + }, + { + "address": "0x0042652D", + "mnemonic": "call", + "op_str": "0x4015bc", + "string": null + }, + { + "address": "0x00426532", + "mnemonic": "push", + "op_str": "dword ptr [ebp - 0x41c]", + "string": null + }, + { + "address": "0x00426538", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x3f8]", + "string": null + }, + { + "address": "0x0042653E", + "mnemonic": "mov", + "op_str": "edx, 6", + "string": null + }, + { + "address": "0x00426543", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00426548", + "mnemonic": "mov", + "op_str": "eax, dword ptr [ebp - 0x3f8]", + "string": null + }, + { + "address": "0x0042654E", + "mnemonic": "push", + "op_str": "eax", + "string": null + }, + { + "address": "0x0042654F", + "mnemonic": "push", + "op_str": "dword ptr [0x44a8e8]", + "string": null + }, + { + "address": "0x00426555", + "mnemonic": "push", + "op_str": "0x426c2c", + "string": null + }, + { + "address": "0x0042655A", + "mnemonic": "push", + "op_str": "0x426c2c", + "string": null + }, + { + "address": "0x0042655F", + "mnemonic": "push", + "op_str": "0x426c2c", + "string": null + }, + { + "address": "0x00426564", + "mnemonic": "push", + "op_str": "0x426c38", + "string": "☆☆ 산근 계산식 경고메세지 범위를 변경 하시겠습니까?" + }, + { + "address": "0x00426569", + "mnemonic": "push", + "op_str": "0x426c2c", + "string": null + }, + { + "address": "0x0042656E", + "mnemonic": "push", + "op_str": "0x426c2c", + "string": null + }, + { + "address": "0x00426573", + "mnemonic": "push", + "op_str": "0x426c78", + "string": " 경고메세지 설정기능은 초기값 설정의 \"산근계산식 메세지 보이기\" 에서" + }, + { + "address": "0x00426578", + "mnemonic": "push", + "op_str": "0x426c2c", + "string": null + }, + { + "address": "0x0042657D", + "mnemonic": "push", + "op_str": "0x426ccc", + "string": " 재설정 가능합니다." + }, + { + "address": "0x00426582", + "mnemonic": "lea", + "op_str": "eax, [ebp - 0x424]", + "string": null + }, + { + "address": "0x00426588", + "mnemonic": "mov", + "op_str": "edx, 0xa", + "string": null + }, + { + "address": "0x0042658D", + "mnemonic": "call", + "op_str": "0x4011b8", + "string": null + }, + { + "address": "0x00426592", + "mnemonic": "mov", + "op_str": "edx, dword ptr [ebp - 0x424]", + "string": null + }, + { + "address": "0x00426598", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x44bc7c]", + "string": null + }, + { + "address": "0x0042659D", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x0042659F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x30]", + "string": null + }, + { + "address": "0x004265A2", + "mnemonic": "pop", + "op_str": "ecx", + "string": null + }, + { + "address": "0x004265A3", + "mnemonic": "call", + "op_str": "0x4129b8", + "string": null + }, + { + "address": "0x004265A8", + "mnemonic": "dec", + "op_str": "ax", + "string": null + }, + { + "address": "0x004265AB", + "mnemonic": "je", + "op_str": "0x4265be", + "string": null + }, + { + "address": "0x004265AD", + "mnemonic": "dec", + "op_str": "ax", + "string": null + }, + { + "address": "0x004265B0", + "mnemonic": "je", + "op_str": "0x4265d0", + "string": null + }, + { + "address": "0x004265B2", + "mnemonic": "dec", + "op_str": "ax", + "string": null + }, + { + "address": "0x004265B5", + "mnemonic": "je", + "op_str": "0x4265e2", + "string": null + }, + { + "address": "0x004265B7", + "mnemonic": "dec", + "op_str": "ax", + "string": null + }, + { + "address": "0x004265BA", + "mnemonic": "je", + "op_str": "0x4265f4", + "string": null + }, + { + "address": "0x004265BC", + "mnemonic": "jmp", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x004265BE", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x004265C3", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004265C5", + "mnemonic": "mov", + "op_str": "word ptr [eax + 0xe46], 0", + "string": null + }, + { + "address": "0x004265CE", + "mnemonic": "jmp", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x004265D0", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x004265D5", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004265D7", + "mnemonic": "mov", + "op_str": "word ptr [eax + 0xe46], 1", + "string": null + }, + { + "address": "0x004265E0", + "mnemonic": "jmp", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x004265E2", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x004265E7", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004265E9", + "mnemonic": "mov", + "op_str": "word ptr [eax + 0xe46], 2", + "string": null + }, + { + "address": "0x004265F2", + "mnemonic": "jmp", + "op_str": "0x426604", + "string": null + }, + { + "address": "0x004265F4", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439108]", + "string": null + }, + { + "address": "0x004265F9", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x004265FB", + "mnemonic": "mov", + "op_str": "word ptr [eax + 0xe46], 3", + "string": null + }, + { + "address": "0x00426604", + "mnemonic": "cmp", + "op_str": "byte ptr [ebp - 0xd], 0", + "string": null + }, + { + "address": "0x00426608", + "mnemonic": "jne", + "op_str": "0x426619", + "string": null + }, + { + "address": "0x0042660A", + "mnemonic": "mov", + "op_str": "eax, dword ptr [0x439144]", + "string": null + }, + { + "address": "0x0042660F", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax]", + "string": null + }, + { + "address": "0x00426611", + "mnemonic": "mov", + "op_str": "eax, dword ptr [eax + 0x18]", + "string": null + }, + { + "address": "0x00426614", + "mnemonic": "call", + "op_str": "0x401c1c", + "string": null + }, + { + "address": "0x00426619", + "mnemonic": "ret", + "op_str": "", + "string": null + } + ] + } + } +} \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/jb_block_map.py b/scratch/orca_artifacts/stmate_competitor_analysis/jb_block_map.py new file mode 100644 index 00000000..a3791738 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/jb_block_map.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +"""JB 43개를 연도축으로 겹쳐 셀 사용패턴으로 블록 경계를 찾는다. 원본은 읽기만.""" +import pathlib, struct, sys, io, collections +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace") +ROOT = pathlib.Path(r"C:\경영정보(주)\System\ST_BSC") + +def read_dbf(p): + b = p.read_bytes() + nrec, hlen, rlen = struct.unpack_from("=10 else " ") for c in range(C)) + print(hdr); print(" " + "".join(str((c+1)%10) for c in range(C))) + for r in range(R): + line = "".join(("·" if used[r][c]==0 else ("#" if used[r][c]==len(items) else "+")) for c in range(C)) + nz = sum(1 for c in range(C) if used[r][c]) + print(" %2d %s 열%d개" % (r, line, nz)) diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/jb_expansion_diff.py b/scratch/orca_artifacts/stmate_competitor_analysis/jb_expansion_diff.py new file mode 100644 index 00000000..4ee3aaa8 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/jb_expansion_diff.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +import pathlib, struct, sys, io +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace") +ROOT = pathlib.Path(r"C:\경영정보(주)\System\ST_BSC") +def rd(p): + b=p.read_bytes(); nrec,hlen,rlen=struct.unpack_from("1e-9] +print("\n1~20열에서 값이 달라진 셀 %d개" % len(d)) +for r,c,a,b2 in d[:25]: print(" 행%2d 열%-2d %g -> %g" % (r,c,a,b2)) + +print("\n21~35열(새로 생긴 열)에서 값이 든 자리") +rows={} +for r in range(50): + h=[(c+1,Rn[r][c]) for c in range(20,35) if Rn[r][c]] + if h: rows[r]=h +for r,h in rows.items(): print(" 행%2d : %s" % (r, " ".join("열%d=%g"%x for x in h))) +print("\n새 열 중 실제로 쓰인 열 번호: %s" % sorted({c for h in rows.values() for c,_ in h})) +print("새 열에 값이 든 행 번호: %s" % sorted(rows)) diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/jb_shapes.py b/scratch/orca_artifacts/stmate_competitor_analysis/jb_shapes.py new file mode 100644 index 00000000..a8d81b59 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/jb_shapes.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +import pathlib, struct, sys, io +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace") +ROOT = pathlib.Path(r"C:\경영정보(주)\System\ST_BSC") +for p in sorted(ROOT.glob("*.JB_*")): + b=p.read_bytes(); nrec,hlen,rlen=struct.unpack_from(" +RepeatActionx +RepeatIntervalx +RepeatStartInterval| +ShowFocused| +CursorHandCustom,2@ +ButtonKind +ColorMarginLeftTop +ColorMarginRightBottom +ColorMarginStyled +Version| +PopupMenuMarkX1@ +PopupMenuMarkGapp1@ +PositionPopup| +PlayMusic +PopupMenu +HotTrackColor| +HotTrack(1@ +Spacing@1@ +SpacingLayoutD0@ +OnMouseOverp0@ +OnMouseOut +NumGlyphs +NumGlyphsHot +Glyph +GlyphHot +Layout +ButtonStyle| +Cancel| +Defaultd +HintSecondLine| +Enabled$ +Caption| +ParentFont +Fontd +OnClickd +OnDblClick +OnDragDrop +OnDragOver +OnEndDrag +OnMouseDown +OnMouseUp +OnMouseMove +OnStartDrag| +ShowHint| +ParentColor| +Visible +Colorh +HelpContext| +TabStop +OnKeyDown +OnKeyPress +OnKeyUp( +TabOrderd +OnEnterd +OnExit, +Align +OnContextPopup +Action +Anchors +Constraintsl +BiDiMode| +ParentBiDiMode +^[Y] +Version 4.01, Copyright + 2000-2001 by Min +Uh!G@ +h0G@ +h8G@ +hPG@ +h\G@ +hxG@ +h0H@ +h 0) .and. ( SUBSTR(ALLTRIM(NAME), 1, 2)=" +" ) .and. ( AT(SUBSTR(ALLTRIM(NAME), 3, 2)," +") > 0 ) .and. (AT(" +",NAME) = 0) +LAMT +MAMT +SAMT +NAMT +TAMT +@i,D +h,KA +Ph8VA +urhDVA +t;hDVA +h$VA +AAMT +RATE_L +5d$M +MLST +MLSW +u=hX +RYVW +u1hx +WuOi +%u6i +@i,B +%upi +xiDt +xiWu$ +0123456 +NAME +SIZE +UNIT +CODEA +JDCODE +WQCODE +EDT_DATE +DOLLOR +ACDEFBKZ +AKBCDEFZ +Tu'3 +Tuv3 +ulhP +_^iE +uQiE +=d$M +@WH, +@i,Bt +_^;] +012345679 +L.S. +P.S. +No. +h "B +tuh,"B +hl"B +MLSWBDXPRAQ +X_QTY +X_HAL +Uh40B +hP1B +h@1B +hd1B +hp1B +Ph(2B +,Bt , +h;0B +ST_SanCal.CPM +Calq_San + Calq_San +IFORM +JOJAK + +ACTTYP +h0OB +|,C3 +p8hlOB +hdPB +hTRB +h(SB +h4SB +,Bt$, +h|TB += 2M +p8h8UB +CODE="W" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2) +CODE="W" .and. TAMT1<>MAMT1+LAMT1+SAMT1 +TAMT2 +MAMT2 +LAMT2 +SAMT2 + * * * * * + * * * * * +NotePad +(SUBSTR(CODE,1,1)$"LMS" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE="L" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE="M" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE="S" and (SAMT1<>TAMT1 or SAMT2<>TAMT2)) +(SUBSTR(CODE,1,1)$"LMS" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE="L" and LAMT1<>TAMT1) or (CODE="M" and MAMT1<>TAMT1) or (CODE="S" and SAMT1<>TAMT1) +BDQTY +S_ADJ +ADJ_L +ADJ_M +ADJ_S +NAGCD +BCONT +Notice.Txt +Uh>qB +,Du} +hHqB +BDCODE1 +ITM_TYP +A_AMT +T_AMT +L_AMT +M_AMT +S_AMT +N_AMT +FRM_NH +Uh8xB +hdxB +UhqvB +hpxB +hxvB +h?xB +BDCODE$" +CODE="X" .and. RXX= +Exec Calculate - +Cal Cost + .... +SUBSTR(BDCODE,1,1)$"BD" .and. CODE="S" +( CODE="S" .and. (UNIT="$" .or. UNIT=" +((CODE="B" .or. CODE="X") .and. UNIT=" +") .or. ( CODE="S" .and. (UNIT="$" .or. UNIT=" +") ) + .or. ( CODE="M" .and. DOLLOR ) +COSTN.DBF +(CODE="B" .and. UNIT="X") .or. CODE="X" +CODE="D" +CODE="B" .and. UNIT!="X" +0.#### +NAGCD= +Add Err +uph, +t4h, +ST_WORK +STmate +PR;RR;PJ +Dp_MinMsg.Cpm +MINIMSG + MINIMSG + ... +_^[YY] +WBDX +u-h0 +u)h0 +[1/2] +[2/2] +PCLASS +SCLASS +PRIV_PR +BDCODE1="T" +ITNUM +MLSWBDXA +ENDCODE +BDXAWPQ +QTY1_B +QTY1_N +QTY1_H +ErrLog.Txt +E$Pj +5,%M +Exec ReCal - +Calc Boq +(TEXT,JDL) +SOFTWARE\ +(STmate8x)\POS_DLL +POS_D_STMATE +SDf+ +S@f+ + +p8h$#C +hD#C +CHAMT +PXXNM +FXXNM +QXXNM +KXXNM +KBOQ +PCODE +OVR_6LV +FINL_LV +MCOST +LCOST +NCOST +SCOST +ACOST +TCOST +Uha*C +5t*C +hh*C +Uh=/C +hX/C +UhO-C +hD/C +PRJLST.DBF +XX1NM +XX2NM +XX3NM +XX4NM +CompanyName +FileDescription +FileVersion +InternalName +LegalCopyright +LegalTradeMarks +OriginalFilename +ProductName +ProductVersion +Comments +h\CC +3h,DC +h|CC +hDDC +hhDC +h" " .and. !UC +... [ +.Txt + * * * * * + + +C$Nt +C$_^[ +UhWeC +hteC +h^eC +w0.00# +QSV3 +UhuhC +UhKhC + j j +h=hC +hRhC +h|hC +ST_U_Archive.CPM +ComP_Time +CONBD +CONH +CONAW +CONDW +CONHD +QQQQQSV3 +$tph +h,mC + +,-,*,/ +Uh%oC +h,oC +|2F3 +u7hhpC +(&O) +KEY +KEY( +Uh&wC +t4kE +u&kE +h-wC +PRJ_MEMO.INI +KANJUB +PRJ_MEMO +JAB_TYPE +CAL_ACTL +VIS_TOTL +_C_NBUGAM +PNAME +%15s + +COSTW + + (0.#####%) + + +0.#####% + +;COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI; +;BOJUNG;COSTS;BRJ0;PRJ0;BRJ1;PRJ1;BRJ2;PRJ2;BRJ3;PRJ3;BRJ4;PRJ4;BRJ5;PRJ5;BRJ6;PRJ6;BRJ7;PRJ7;BRJ8;PRJ8;BRJ9;PRJ9;CONA;CONB;COND;CONH;CONL;CONX;CON$;KANJUB;TEMP;TMPB;TREE; +;PRJ_MEMO; +;PRT; +;IMG;FORM;IMSI;SETREP; +ST_Log\ST_log.stlog +ST_log\ +STmate Start +STmate End +;0A;0D; +=============== STmate Start +(yyyy-mm-dd hh:nn:ss) + =============== +[dd-hhnnss zzz] +%-15s +%-20s +================ STmate End + ================ +|$0Q +QjdP +TKANSELREC +TKANCOSTRECP + = 1 + = 2 + = 3 + = 4 + = 5 + = 6 + = 7 + = 8 + = 9 + = 10 +5,2M +_ADD +X0Uj +C_DOSEOH +C_EIS_HOLLAB +C_KANNO +C_S_PUMJIL +C_SANBO +C_KOBO +C_SANGSI +C_KAN_M +C_BUSAN +C_KUNBO +C_SLVBO +C_YUNBO +C_TBUGUM +C_ANJUN_G +C_T_ANJUN_N +C_ANJUN +C_S_ANJUN_B +C_T_KITA +C_S_SUDO +C_S_BOKRI +C_S_SOMO +C_S_TONGSIN +C_S_SEGUM +C_S_PEGI +C_S_DOSEO +C_S_JIGUP +C_KONGSU +C_KONGSU_A +C_KONGSU_MA +C_HADOSU +C_HWAN +C_EQIPSU +C_BUDM_SM +C_BUDM_IC +C_ANJUN_B +C_PUMJIL_B +C_PSAMT_B +C_EXCEPT_B +C_BUSAN_B +C_PURCHAS +C_T_K_MAT +C_ILBAN +C_TOT_1 +C_IYUN_C +C_IYUN_M +C_IYUN +C_ANJUNP +C_S_SIGONG +C_EIS_SUPPAY +C_EIS_HOLPAY +C_EIS_SOCINS +C_EIS_INCENT +C_KONGGUP +C_KONGSA_C +C_KONGSA_J +C_KONGSA +C_BUGA +C_BUGA_M +C_T_PEGI +C_T_KOLJAE +C_NBUGAM +C_DOGUP +C_KWANGUP +C_KWANGUP_D +C_KWANGUP_K +C_UPDNKWN +C_T_JODAL +C_SAGUP +C_KN_SA +C_TOTAL +ADD_CNT_ +ADD_NAME_ +ADD_UNIT_ +ADD_BIGO_ +ADD_ADDT_ +ADD_AMT_ +ADD_BUGA_ +S_DAMT_M +S_KAMT_M +S_DAMT_L +S_DAMT_S +uEUj +I_BF_CH_BO +C_KAN_M +C_BUSAN +C_ANJUN1_G +C_ANJUN2_G +I_COST_BO +I_MTYP +I_LTYP +I_MXA +I_MXK +R_R_DM +R_R_DL +R_R_L +R_R_DMDL +R_R_DML +R_R_MxA +R_R_MxK +R_DOSEOH +R_KANNO +R_SANBO +R_KOBO +R_KUNBO +R_SLVBO +R_YUNBO +R_TBUGUM +R_ANJUN +R_ANJUN1 +R_ANJUN2 +R_T_KITA +R_S_SUDO +R_S_BOKRI +R_S_SOMO +R_S_TONGSIN +R_S_SEGUM +R_S_PEGI +R_S_DOSEO +R_S_JIGUP +R_KONGSU +Y_KONGSU +R_HADOSU +R_HWAN +R_EQIPSU +R_BUDM_SM +R_BUDM_IC +R_ILBAN +R_IYUN +R_ANJUNP +R_S_SIGONG +R_S_SIGONG_1 +R_EIS_HOLIR1 +R_EIS_HOLIR2 +R_EIS_SOCIR2 +R_EIS_INCENT +R_KONGSA +I_KUNBO +I_YUNBO +I_ANJUN_K +I_ANJUN_B +I_ANJUN_TYPE +B_ANJUN_B +B_PUMJIL_B +B_PSAMT_B +B_EXCEPT_B +B_BUSAN_B +B_NBUGAM +B_KWANGUP_D +B_KWANGUP_K +B_T_JODAL +I_IYUN +I_KONG_TYPE +I_KONG_KIKAN +I_KUN_TYPE +I_JEOLSA +I_TBUGUM +I_ILBAN +I_EQIP +I_BUGA +I_HWAN +I_KN_SA_TYPE +I_POS_SA +I_KOBO_TYPE +I_BID_TYPE +I_KOSU_TYPE +I_NAG_RATE +I_SET_BASE +I_KAN_JEOLSA +I_KWN_COMB +I_KWN_JEOLSA +I_KWN_UPDN +I_KWN_K_JEOLSA +I_KWN_K_UPDN +I_ANJUNAUTO +I_AN_DN_TYPE +I_ANPUM +B_KONGSA +B_BUGA_UP +I_DOGUP +I_DOG_JEOL +I_TOT_JEOL +I_TOT_ADD +D_KANNO +D_SANBO +D_KOBO +D_KUNBO +D_SLVBO +D_YUNBO +D_TBUGUM +D_ANJUN +D_T_KITA +D_S_SUDO +D_S_BOKRI +D_S_SOMO +D_S_TONGSIN +D_S_SEGUM +D_S_PEGI +D_S_DOSEO +D_S_JIGUP +D_KONGSU +D_HADOSU +D_HWAN +D_EQIPSU +D_BUDM_SM +D_BUDM_IC +D_ILBAN +D_ANJUNP +D_S_SIGONG +D_EIS_SUPPAY +D_KONGSA +S_KANNO +S_SANBO +S_KOBO +S_KUNBO +S_SLVBO +S_YUNBO +S_TBUGUM +S_ANJUN +S_T_KITA +S_S_SUDO +S_S_BOKRI +S_S_SOMO +S_S_TONGSIN +S_S_SEGUM +S_S_PEGI +S_S_DOSEO +S_S_JIGUP +S_KONGSU +S_HADOSU +S_HWAN +S_EQIPSU +S_BUDM_SM +S_BUDM_IC +S_ILBAN +S_ANJUNP +S_S_SIGONG +S_EIS_HOLLAB +S_EIS_SUPPAY +S_EIS_SOCINS +S_EIS_INCENT +S_KONGSA +h ^D +h4^D +hH^D +hh^D +h|^D +~,Uj +B_CHANGE +D_EIS_HOLLAB +D_EIS_SOCINS +D_EIS_INCENT +=%2M +CLhl +=$2M +ROUNDDOWN( [LAMT] * [RAT_1], +ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], +[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), +[C_AMT_B] +[C_TAMT_B] ++ROUNDDOWN( +(([LAMT][+LAB])- + * [RAT_1], +[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], +ROUNDDOWN( +([LAMT][+LAB]) +ROUNDDOWN( [C_KUNBO] * [RAT_1], +ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], +[LAMT][+LAB] +[C_KUNBO] +([TAMT]) +([LAMT]+[M_AMT] +ROUNDDOWN( +*[TAMT],0) +IF(([LAMT]+[M_AMT])>ROUNDDOWN( +*[TAMT],0),ROUNDDOWN( +*[TAMT],0),([LAMT]+[M_AMT])) +[C_SAGUP_C] +/1.1 +ROUNDDOWN( ( + ) * [RAT_1] +( ( + * 1.2, +([L_AMT]+[M_AMT]) +IF(([L_AMT]+[M_AMT])>ROUNDDOWN( +*[TAMT],0),([L_AMT]+[M_AMT])) +ROUNDDOWN( (( +)[+LAB]) * [RAT_1], ++([TAMT] +[+ANJ_B] +[+PMJ_B] +) * [RAT_1] + ) * +ROUNDDOWN( ([TAMT] +) * [RAT_1], +u6hx +ROUNDDOWN( ([T_AMT]+ +ROUNDDOWN( [T_AMT] * [RAT_1], +ROUNDDOWN( [T_AMT] * [RAT_1], 0 ) +ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 ) +3333333 +ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), + - [IYUN_M] +ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT] +ROUNDDOWN([T_AMT] * [RAT_1], 0) ++[BUGA_UP] +ROUNDDOWN([M_AMT] * [RAT_1], 0) +ROUNDDOWN(([TAMT]-[LAMT] ++[B_AD_AMT] +) * [RAT_1], 0) +ROUND( [C_AD_AMT] , - +ROUNDDOWN( [C_AD_AMT] , - +ROUNDUP( [C_AD_AMT] , - +PSVj +StType_Kan +K_ORD +Uh/2E +h92E +([C_KWANGUP] +-[C_T_JODAL] +)/1.1 +-[C_KWANG_K] ++[C_SAGUP_C]/1.1 ++[C_SAGUP_C] +[C_SAGUP_C]/1.1 +ROUNDDOWN([T_AMT] +=04M +[C_KWANGUP] +[C_KWANG_K] +[C_T_JODAL] +Uh6ZE +t6hTZE +0h`ZE +hpZE +xu,hpZE +h([E +hP[E +h=ZE +.DBF +(ITM_TYP= +) .and. +(BDCODE1="T") + .or. +(SORTCODE> + .and. +SORTCODE< +) .and. (" +"$NAME1) .and. +((BDCODE1="PR") .or. ("%"$UNIT1) .or. (" +"$NAME1)) ) .and. !BL_AMT +T_AMT2 +T_AMT3 +T_AMT4 +QQQQQQQSVW +UhxcE +TIdHeaderList +IdHeaderList +UhxiE +UhzjE +6h$lE +|"C3 +UhomE +hvmE +TIdConnectionIntercept +IdIntercept +OnConnect3 +TIdSSLConnectionIntercept +TIdSSLConnectionInterceptpoE +IdSSLIntercept +UhupE +h|pE +TSocksVersion +svNoSocks +svSocks4 +svSocks4A +svSocks5 +IdSocks +TSocksAuthentication +saNoAuthentication +saUsernamePassword +TSocksInfo +TSocksInfo|qE +Authenticationd +Hostd +Passwordx +Portd +UserID +Version +Uh}sE +TIdBuffer +TIdTCPConnection +TIdTCPConnectionTtE +IdTCPConnection +ASCIIFilterdnE +Intercept| +InterceptEnabledd +OnDisconnected +OnWorkp +OnWorkBegin +OnWorkEndx +RecvBufferSizex +SendBufferSize +EIdTCPConnectionError +EIdObjectTypeNotSupported +EIdNotEnoughDataInBuffer +EIdInterceptPropIsNil +EIdInterceptPropInvalid +EIdNoDataToReadU +UhyyE +Uh\yE +hcyE +S`_^[ +$ZXv' +ZX~! +-ERR +Qx]_^[ +$ZXt +$ZXs% +$ZXs +S4^[ +Sd_^[Y] +;~|u +$ZXw +_^Y] +R?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ ++-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +TIdASCIICoder +TIdASCIICodert +IdCoder3To4 +TId3To4Coder +TId3To4Coder` +TIdBase64Encoder +TIdBase64Encoder< +TIdBase64Decoder +TIdBase64Decoder +TIdUUEncoder +TIdUUDecoder +TIdXXEncoder +TIdXXDecoder +EIdTableNotFound +-x$M +;wPv +GP]_^[ +SVWUQ +;<$wU +;<$v +HtQH +FPZ]_^[ +;sPr +=x$M +OtIO +TABLE +BEGIN +No BEGIN statement followed a TABLE +Privilege chars not numeric +Not enough chars for three-digit Privilege +Too many chars for three-digit Privilege + Data ended without an END statment +base64 +x-uu +x-xx +TIdHTTPProtocolVersion +pv1_0 +pv1_1 +IdHTTP +TIdHTTPOnRedirectEvent +dest +NumRedirect +Handled +Boolean +TIdHeaderInfo| +TIdHeaderInfo +Acceptd +AcceptCharSetd +AcceptEncodingd +AcceptLanguaged +Connectiond +ContentEncodingd +ContentLanguagex +ContentLengthl +ContentRangeEndl +ContentRangeStartd +ContentTyped +ContentVersionX +DateX +Expires +ExtraHeadersd +FromX +LastModifiedd +Locationd +Passwordd +ProxyAuthenticated +ProxyPasswordx +ProxyPortd +ProxyServerd +ProxyUsernamed +Refererd +Serverd +UserAgentd +Usernamed +WWWAuthenticate +TIdHTTP +TIdHTTP< +HandleRedirects +ProtocolVersionx +RedirectMaximumx +Request +OnRedirectx +text/html, */* +Mozilla/3.0 (compatible; Indy Library) +Location +Server +Connection +Content-Version +Content-Encoding +Content-Language +Content-Type +Content-Length +Content-Range +Date +Last-Modified +Proxy-Authenticate +Accept: +Accept-Charset: +Accept-Encoding: +Accept-Language: +From: +Referer: +User-Agent: +Connection: +Content-Version: +Content-Encoding: +Content-Language: +Content-Type: +Content-Length: +Range: bytes= +Authorization: Basic +Proxy-Authorization: Basic +HTTPS +QQQQQQS3 +Transfer-Encoding +chunked +|(C3 +HEAD + HTTP/ +GET +POST +Host: +CLOSE +QQQQQSV +CONNECT +\/:*?<>| +\/:*?"<>| +.PDF +.SRP +SRP / PDF + SRP + PDF + Microsoft Print to PDF + SRP +STmate +B@Iu +s@hp +ADD_PER +ST_U_ConBD.CPM +CON_QTY9 +CON_QTY +CONBD_USD_QTY +UhL F +hS F +Microsoft Print to PDF +UhH'F +h`'F +hx'F +h0(F +h<(F +hH(F +hO'F + S.b.STmate +Uh:,F +h$-F +hA,F + | +0.0 +Bprintui.dll,PrintUIEntry /o /n "Microsoft Print to PDF" +rundll32.exe +Open +QQQQQQQQS3 +Uha/F +=8BN +hx/F +hF/F +hh/F +ComP_Files +Uho>F +h,@F +h8@F +hD@F +hT@F +hd@F +hx@F +PhdBF +PhhBF +hxBF +hhBF +=4BN +hy>F +http://www.stma.co.kr/program/ST_Viewer.asp +http://www.stma.co.kr/program/ST_Viewer.asp?ST_VER= +STmate_ +.htm + PDF +/select," +explorer.exe +explore +- +"$ITNUM) .or. (" +"$NAME1) .or. (" +"$SIZE1)) +(BDCODE1="T") .and. (BDCODE1>="T +(ITM_TYP> +) .and. (ITM_TYP< +"$NAME1) .and. ( (BDCODE1="PR") .or. ("%"$UNIT1) .or. (" +"$NAME1) ) .or. ( (ITM_TYP=71) .and. (SUBSTR(BDCODE1,1,1)$"TEC") .and. (SUBSTR(BDCODE1,2,1)>=" +UhcUF +t/h|UF +hjUF +PNUM +TCOST1 +TCOST2 +TCOST3 +TCOST4 +COSTW1 +COSTW2 +COSTW3 +COSTW4 +UhG\F +hN\F +#,0.######;;' +#,#;;' +====== +UhraF +hyaF +#,0;;' +UhwkF +h~kF +STHelp.Chm +UhbmF +PhxmF +hxmF +himF +"$(BDCODE1+ITNUM+NAME1+SIZE1) +R<^[ +QQQQQQQSV +Uh~oF +UhmsF +uBjRj +htsF +-DBN +StBar +Pg_Ctrl +TbSh_T +TbSh_S +mBtn_Set_Def +mBtn_Change +mBtn_Quit +cBx_K_JeolSa +SclBx_T +Pn03_T +Label75 +Label76$ +Label13( +Label15, +LR160 +Pn01_T4 +Label478 +Label48< +Label49@ +Label50D +Label51H +Label52L +Label53P +Label54T +lb_ANJUN_TX +Label56\ +Label57` +tmBaed +Label10h +lb_TBUGUM_Tl +pn02_Tp +Label58t +Label59x +Label60| +Pn0_Input +Pn1_Input +PgAddAmt +tabAdd1 +tabAdd2 +tabAdd3 +tabAdd4 +RGrid_Add01 +pn_Ctrl_Add +mBtn_AddAmt +mBtn_DelAmt +Label8 +mBtn_MoveUp +mBtn_MoveDn +RGrid_Add02 +RGrid_Add03 +RGrid_Add04 +Disp_SAMT_T_T +Disp_DAMT_M_T +lb_KUNBO_T +Disp_Add01_T +Disp_Add02_T +Disp_Add03_T +Disp_SAMT_L_T +Disp_SAMT_S_T +Disp_ILBAN_T +Disp_TOT_1_T +Disp_IYUN_T +Disp_KONGGUP_T +Disp_KONGSA_T +Disp_BUGA_T +Disp_BUSAN_B_T +Pn04_T +Label78 +lb_KWAN_D_T_ +Pn05_T +Label89 +Disp_Add04_T +Disp_DOGUP_T +Disp_KWANGUP_D_T +Disp_TOTAL_T +Disp_DAMT_L_T$ +Disp_KANNO_T( +Disp_DAMT_S_T, +Disp_SANBO_T0 +Disp_KOBO_T4 +Disp_ANJUN_T8 +Disp_KITA_T< +Disp_TBUGUM_T@ +Disp_HWAN_TD +Ed_R_KanNo_TH +Ed_R_SanBo_TL +Ed_R_KoBo_TP +Ed_R_AnJun_TT +Ed_R_KiTa_TX +Ed_R_TBuGum_T\ +Ed_R_Hwan_T` +Ed_R_ILBan_Td +Ed_R_Iyun_Th +Ed_C_IYUN_M_Tl +Ed_C_AnJun_G_Tp +Ed_C_KongSa_Tt +Ed_R_KongSa_Tx +Ed_C_AnJun_K_T| +Ed_C_AnJun_B_T +Ck_B_KongSa_T +Ck_B_BUGA_UP_T +lb_SAGUP_T_ +Disp_SAGUP_T +tb_Rate_R +mBtn_Result +cBx_Tot_Jeol_T +SclBx_S +Pn03_S +Label14 +Label17 +Label19 +Label20 +Disp_KONGGUP_S +Disp_KONGSA_S +Disp_BUGA_S +Disp_Add03_S +Ed_C_KongSa_S +Ed_R_KongSa_S +Ck_B_KongSa_S +Ck_B_BUGA_UP_S +Pn01_S +Label21 +Label22 +Label23 +Label24 +Label25 +Label26 +Label27 +Label30 +Label32 +Label33 +Label35 +lb_TBUGUM_S +Disp_SAMT_T_S +Disp_DAMT_T_S +Label37 +Disp_KANNO_S +Disp_SAMT_S_S +Disp_PUMJIL_B_S +Disp_SANBO_S$ +Disp_KOBO_S( +Disp_ANJUN_S, +Disp_ANJUN_B_S0 +Disp_TBUGUM_S4 +Disp_HWAN_S8 +Label38< +Label39@ +Label40D +Label120H +Label122L +Label124P +Label126T +Label128X +Disp_SUDO_S\ +Disp_BOKRI_S` +Disp_SOMO_Sd +Disp_TONGSIN_Sh +Disp_JIGUP_Sl +Disp_DOSEO_Sp +Disp_PEGI_St +Disp_SEGUM_Sx +Disp_Add01_S| +Ed_R_KanNo_S +Ed_R_SanBo_S +Ed_R_KoBo_S +Ed_R_AnJun_S +Ed_R_TBuGum_S +Ed_R_Hwan_S +Ed_C_AnJun_G_S +Ed_C_AnJun_K_S +Ed_C_AnJun_B_S +Ed_R_SUDO_S +Ed_R_BOKRI_S +Ed_R_TONGSIN_S +Ed_R_SOMO_S +Ed_R_JIGUP_S +Ed_R_DOSEO_S +Ed_R_SEGUM_S +Ed_R_PEGI_S +pn02_S +Label41 +Label42 +Disp_ILBAN_S +Disp_IYUN_S +Disp_Add02_S +Ed_R_ILBan_S +Ed_R_Iyun_S +Ed_C_IYUN_M_S +Pn04_S +Label43 +lb_KWAN_D_S_ +Disp_DOGUP_S +Disp_KWANGUP_D_S +lb_SAGUP_S_ +Disp_SAGUP_S +Disp_Add04_S +Pn05_S +Label46 +Disp_TOTAL_S +cBx_Tot_Jeol_S +pnSI_S +Label18 +Disp_SIGONG_S +Ed_R_SIGONG_S$ +Ed_R_SIGONG_1_S( +Disp_R_IYUN_C_T, +cBx_Chasu0 +Popup_Add_AMT4 +mi_From_Nae8 +mi_From_List< +mi_Recall@ +Label61D +Disp_SAGUP1_TH +lb_SAGUP_TL +Disp_SAGUP2_TP +Ed_C_K_MAT_TT +Ed_C_MBuga_TX +Ed_C_MBuga_S\ +lb_YUNBO_T` +Label64d +Label65h +Label66l +Disp_KUNBO_Tp +Disp_YUNBO_Tt +Disp_KONGSU_Tx +Disp_HADOSU_T| +Ed_R_KUNBO_T +Ed_R_YUNBO_T +Ed_R_KONGSU_T +Ed_R_HADOSU_T +Ed_C_KONGSU_A_T +Disp_Y_KONGSU_T +Ed_C_KUNBO_T +Ed_C_YUNBO_T +Ed_Y_KONGSU_T +lb_KUNBO_S +lb_YUNBO_S +Disp_KUNBO_S +Disp_YUNBO_S +Ed_R_KUNBO_S +Ed_R_YUNBO_S +Ed_C_KUNBO_S +Ed_C_YUNBO_S +Label71 +Label72 +Disp_HADOSU_S +Label73 +Disp_KONGSU_S +Ed_Y_KONGSU_S +Ed_R_KONGSU_S +Ed_R_HADOSU_S +Ed_C_KONGSU_A_S +SpeedButton1 +SpeedButton2 +SpeedButton3 +SpeedButton4 +SpeedButton5 +sBtn_iLBan_Hint_T +sBtn_iYun_Hint_T +SpeedButton8 +SpeedButton9 +SpeedButton10 +SpeedButton11 +SpeedButton12 +sBtn_iLBan_Hint_S +sBtn_iYun_Hint_S +mi_From_Joong +SpeedButton15$ +SpeedButton16( +tb_Rate_M, +TbSh_TA0 +SclBx_TA4 +Pn03_TA8 +Label81< +Label82@ +Label84D +Label85H +LR16AL +Disp_KONGGUP_TAP +Disp_KONGSA_TAT +Disp_BUGA_TAX +Disp_BUSAN_B_TA\ +lb_SAGUP_TA` +Disp_SAGUP2_TAd +Ed_R_KongSa_TAh +Disp_Add03_TAl +Ed_C_KongSa_TAp +Ck_B_KongSa_TAt +Ck_B_BUGA_UP_TAx +Ed_C_MBuga_TA| +Pn01_TA +Label87 +Label88 +Label90 +lb_ANJUN_TA +Label92 +Label93 +Label94 +Label95 +lb_TBUGUM_TA +Disp_DAMT_T_TA +lb_KUNBO_TA +Disp_KANNO_TA +Disp_SANBO_TA +Disp_KOBO_TA +Disp_ANJUN_TA +Disp_KITA_TA +Disp_TBUGUM_TA +lb_YUNBO_TA +Label99 +Label100 +Label101 +Disp_KUNBO_TA +Disp_YUNBO_TA +Disp_HADOSU_TA +Disp_Y_KONGSU_TA +Disp_KONGSU_TA +Ed_Y_KONGSU_TA +Disp_HWAN_TA +SpeedButton6 +SpeedButton7 +SpeedButton13 +SpeedButton14 +SpeedButton17 +Label102 +lb_R_RateDM_TA +lb_R_RateDL_TA +Label105 +Disp_SAMT_S_TA +lb_R_RateL_TA +lb_R_RateDMDL_TA +lb_R_RateDML_TA$ +SpeedButton18( +Ed_R_RateDM_TA, +Ed_R_RateDL_TA0 +Ed_R_RateL_TA4 +Ed_R_RateDMDL_TA8 +Ed_R_RateDML_TA< +Disp_Add01_TA@ +Ed_R_KanNo_TAD +Ed_R_SanBo_TAH +Ed_R_KoBo_TAL +Ed_R_AnJun_TAP +Ed_R_KiTa_TAT +Ed_R_TBuGum_TAX +Ed_R_Hwan_TA\ +Ed_C_AnJun_G_TA` +Ed_C_AnJun_K_TAd +Ed_C_AnJun_B_TAh +Ed_R_KUNBO_TAl +Ed_R_YUNBO_TAp +Ed_R_KONGSU_TAt +Ed_R_HADOSU_TAx +Ed_C_KONGSU_A_TA| +Ed_C_KUNBO_TA +Ed_C_YUNBO_TA +pn02_TA +Label109 +Label110 +Disp_ILBAN_TA +Disp_IYUN_TA +Label111 +Disp_SAGUP1_TA +sBtn_iLBan_Hint_TA +sBtn_iYun_Hint_TA +Disp_Add02_TA +Ed_R_ILBan_TA +Ed_R_Iyun_TA +Ed_C_IYUN_M_TA +Ed_C_K_MAT_TA +Pn04_TA +Label112 +lb_KWAN_D_TA_ +Disp_DOGUP_TA +Disp_KWANGUP_D_TA +lb_SAGUP_TA_ +Disp_SAGUP_TA +Disp_Add04_TA +Pn05_TA +Label115 +Disp_TOTAL_TA +cBx_Tot_Jeol_TA +TbSh_SA +SclBx_SA +Pn03_SA +Label116 +Label117 +Label118 +Label119 +Disp_KONGGUP_SA +Disp_KONGSA_SA +Disp_BUGA_SA +Ed_R_KongSa_SA +Disp_Add03_SA +Ed_C_KongSa_SA +Ck_B_KongSa_SA$ +Ck_B_BUGA_UP_SA( +Ed_C_MBuga_SA, +Pn01_SA0 +Label1214 +Label1238 +Label125< +Label127@ +Label129D +Label130H +Label131L +Label132P +Label133T +lb_TBUGUM_SAX +Disp_DAMT_T_SA\ +Label135` +Disp_KANNO_SAd +Disp_PUMJIL_B_SAh +Disp_SANBO_SAl +Disp_KOBO_SAp +Disp_ANJUN_SAt +Disp_ANJUN_B_SAx +Disp_TBUGUM_SA| +Disp_HWAN_SA +Label136 +Label137 +Label138 +Label139 +Label140 +Label141 +Label142 +Label143 +Disp_SUDO_SA +Disp_BOKRI_SA +Disp_SOMO_SA +Disp_TONGSIN_SA +Disp_JIGUP_SA +Disp_DOSEO_SA +Disp_PEGI_SA +Disp_SEGUM_SA +lb_KUNBO_SA +lb_YUNBO_SA +Disp_KUNBO_SA +Disp_YUNBO_SA +Label146 +Label147 +Disp_HADOSU_SA +Label148 +Disp_KONGSU_SA +Ed_Y_KONGSU_SA +SpeedButton19 +SpeedButton20 +SpeedButton21 +SpeedButton22 +SpeedButton23 +Label149 +Label150 +lb_R_RateDM_SA +lb_R_RateDL_SA +lb_R_RateL_SA +lb_R_RateDMDL_SA +lb_R_RateDML_SA +Disp_SAMT_S_SA +SpeedButton24 +Ed_R_RateDM_SA$ +Ed_R_RateDL_SA( +Ed_R_RateL_SA, +Ed_R_RateDMDL_SA0 +Ed_R_RateDML_SA4 +Disp_Add01_SA8 +Ed_R_KanNo_SA< +Ed_R_SanBo_SA@ +Ed_R_KoBo_SAD +Ed_R_AnJun_SAH +Ed_R_TBuGum_SAL +Ed_R_Hwan_SAP +Ed_C_AnJun_G_SAT +Ed_C_AnJun_K_SAX +Ed_C_AnJun_B_SA\ +Ed_R_SUDO_SA` +Ed_R_BOKRI_SAd +Ed_R_TONGSIN_SAh +Ed_R_SOMO_SAl +Ed_R_JIGUP_SAp +Ed_R_DOSEO_SAt +Ed_R_SEGUM_SAx +Ed_R_PEGI_SA| +Ed_R_KUNBO_SA +Ed_R_YUNBO_SA +Ed_C_KUNBO_SA +Ed_C_YUNBO_SA +Ed_R_KONGSU_SA +Ed_R_HADOSU_SA +Ed_C_KONGSU_A_SA +pn02_SA +Label156 +Label157 +Disp_ILBAN_SA +Disp_IYUN_SA +sBtn_iLBan_Hint_SA +sBtn_iYun_Hint_SA +Disp_Add02_SA +Ed_R_ILBan_SA +Ed_R_Iyun_SA +Ed_C_IYUN_M_SA +Pn04_SA +Label158 +lb_KWAN_D_SA_ +Disp_DOGUP_SA +Disp_KWANGUP_D_SA +lb_SAGUP_SA_ +Disp_SAGUP_SA +Disp_Add04_SA +Pn05_SA +Label161 +Disp_TOTAL_SA +cBx_Tot_Jeol_SA +pnSI_SA +Label162 +Disp_SIGONG_SA +Ed_R_SIGONG_SA +Ed_R_SIGONG_1_SA +tb_Rate_A_ +tb_Rate_B +cBx_W_Type +Lbl_DSAMT_M_T +Lbl_DSAMT_M_TA +Ed_C_IYUN_T +Ed_C_IYUN_TA$ +mBtn_Rate( +mBtn_Print, +Ed_C_LTYP_TA0 +Ed_C_LTYP_SA4 +Ed_R_RateMxA_TA8 +Ed_R_RateMxK_TA< +lb_R_RateMxA_TA@ +lb_R_RateMxK_TAD +lb_R_RateMxA_SAH +Ed_R_RateMxA_SAL +lb_R_RateMxK_SAP +Ed_R_RateMxK_SAT +Lbl_MxA_TAX +Lbl_MxK_TA\ +Lbl_MxA_SA` +Lbl_MxK_SAd +Ed_C_RateMxA_SAh +Ed_C_RateMxK_SAl +Ed_C_RateMxA_TAp +Ed_C_RateMxK_TAt +Ed_C_DOGUP_Tx +Ed_C_DOGUP_S| +Ed_C_DOGUP_TA +Ed_C_DOGUP_SA +lb_SLVBO_T +Disp_SLVBO_T +Ed_R_SlvBo_T +lb_SLVBO_S +Disp_SLVBO_S +Ed_R_SlvBo_S +lb_SLVBO_TA +Disp_SLVBO_TA +Ed_R_SlvBo_TA +lb_SLVBO_SA +Disp_SLVBO_SA +Ed_R_SlvBo_SA +Label9 +Disp_NBUGAM_T +Label11 +Disp_NBUGAM_TA +cBx_KWN_Jeol_T +cBx_KWN_UPDN_T +cBx_KWN_Jeol_S +cBx_KWN_UPDN_S +cBx_KWN_Jeol_TA +cBx_KWN_UPDN_TA +cBx_KWN_Jeol_SA +cBx_KWN_UPDN_SA +cBx_Jeol_T +cBx_Jeol_S +cBx_Jeol_TA +cBx_Jeol_SA +lb_ANJUN2_T +lb_ANJUN1_T +Disp_ANJUN2_T +Disp_ANJUN1_T +lb_R_AnJun2_T +lb_C_AnJun2_G_T +lb_R_AnJun1_T +lb_C_AnJun1_G_T +lb_C_AnJun2_K_T +cBx_Tot_Add_T +cBx_Tot_Add_S +cBx_Tot_Add_TA$ +cBx_Tot_Add_SA( +Label6, +Label160 +Disp_ANJUN2_S4 +Disp_ANJUN1_S8 +lb_R_AnJun2_S< +lb_C_AnJun2_G_S@ +lb_R_AnJun1_SD +lb_C_AnJun1_G_SH +lb_C_AnJun2_K_SL +lb_ANJUN2_TAP +lb_ANJUN1_TAT +Disp_ANJUN2_TAX +Disp_ANJUN1_TA\ +lb_R_AnJun2_TA` +lb_C_AnJun2_G_TAd +lb_R_AnJun1_TAh +lb_C_AnJun1_G_TAl +lb_C_AnJun2_K_TAp +Label45t +Label62x +Disp_ANJUN2_SA| +Disp_ANJUN1_SA +lb_R_AnJun2_SA +lb_C_AnJun2_G_SA +lb_R_AnJun1_SA +lb_C_AnJun1_G_SA +lb_C_AnJun2_K_SA +cBx_TOTAL_T +cBx_TOTAL_TA +Lbl_MxA_SA2 +Lbl_MxA_SA1 +Lbl_MxA_TA2 +Lbl_MxA_TA1 +tb_Rate_RA +Ed_C_MTYP_SA +Ed_C_MTYP_TA +Label74 +Label80 +Label86 +Disp_MTYP_T_TA +Disp_MTYP_L_TA +Disp_MTYP_M_TA +pn_MTYP_T +pn_MTYP_S +Label114 +Label165 +Disp_MTYP_T_SA +Disp_MTYP_L_SA +Disp_MTYP_M_SA +Label167 +Ed_R_AnJunP_T +Disp_ANJUNP_T +lb_C_AnJunP_K_T +Label168 +Ed_R_AnJunP_S +Disp_ANJUNP_S +lb_C_AnJunP_K_S +Label169 +lb_C_AnJunP_K_TA +Ed_R_AnJunP_TA +Disp_ANJUNP_TA +Label170$ +Ed_R_AnJunP_SA( +Disp_ANJUNP_SA, +lb_C_AnJunP_K_SA0 +SpeedButton254 +SpeedButton268 +Label187< +Disp_EQIPSU_T@ +Ed_R_EQIPSU_TD +Label188H +Ed_R_EQIPSU_SL +Disp_EQIPSU_SP +Label189T +Disp_EQIPSU_TAX +Ed_R_EQIPSU_TA\ +Label190` +Disp_EQIPSU_SAd +Ed_R_EQIPSU_SAh +Panel3l +lbl_Kobo_Typep +Label4t +lbl_Kong_Typex +Lbl_Kong_Kikan| +lbl_JeolSa +lbl_Buga +lbl_TBugum +lbl_Hwan +lbl_AnJun_Type +lbl_Kwan_Sa +lbl_Pos_Sagup +lbl_Bid_Type +lbl_Nag_Rate +lbl_Set_Base +lbl_iLBan +Label191 +cmBx_Kobo_Type +cmBx_JAB_TYPE +cmBx_Kong_Type +cmBx_JeolSa +cmBx_Buga +cmBx_TBugum +cmBx_Hwan +cmBx_AnJun_Type +cmBx_Kwan_Sa +cmBx_Pos_Sagup +cmBx_Kun_Type +cmBx_Bid_Type +cmBx_KONGSU +cmBx_Set_Base +cmBx_Kong_Kikan +cBx_iLBan +cmBx_EQIP +pn_Kan_Amt +rGrd_Kan_Amt +Panel4 +Label192 +Ed_C_KONGSU_MA_T +Ed_C_KONGSU_MA_S +Ed_C_KONGSU_MA_TA +Ed_C_KONGSU_MA_SA +wEd_TOTAL_T +wEd_TOTAL_S +wEd_TOTAL_TA +wEd_TOTAL_SA +wEd_DOGUP_T$ +wEd_DOGUP_S( +wEd_DOGUP_TA, +wEd_DOGUP_SA0 +ActionList14 +Act_Call_Calc8 +pn_Anjun_T< +Label63@ +Label67D +Disp_ANJUN_T1H +Label70L +Label97P +pn_Anjun_ST +Label98X +Label104\ +Disp_ANJUN_S1` +Label106d +Label107h +pn_Anjun_TAl +Label108p +Label144t +Disp_ANJUN_TA1x +Label145| +Label151 +pn_Anjun_SA +Label152 +Label153 +Disp_ANJUN_SA1 +Label171 +Label172 +Ed_R_DoseoH_T +Label12 +Disp_DoseoH_T +Lbl_DSAMT_L_T +pn_Same +sBtn_Same +SpeedButton27 +Act_Sel_Small +SpeedButton28 +SpeedButton29 +SpeedButton30 +sBtn_ChOpt +Act_Ch_Opt +cBx_DoSeoH_T +tabAdd5 +lb_KWAN_K_T_ +Disp_KWANGUP_K_T +lb_KWAN_K_S_ +Disp_KWANGUP_K_S +lb_KWAN_K_TA_ +Disp_KWANGUP_K_TA +lb_KWAN_K_SA_ +Disp_KWANGUP_K_SA +TabSheet1 +pnSet_Def_Amt_del +Label5 +lb_NBUGAM_del +Label166 +lbl_Kwan_Combo_del +Label96 +Ed_C_KWANGUP_del +Ed_C_NBUGAM_del +Ed_C_KWANGUP_K_del +Ed_C_KWANGUP_D_d +Ed_C_JODAL_del$ +Act_Next_Tab( +Act_Prev_Tab, +pnSet_Optn0 +Label34 +Label1758 +Label176< +Label68@ +Label185D +Label34H +cmBx_ANJUNL +cmBx_Buga1P +cmBx_Kwan_Sa1T +Ed_C_SANGSIX +cBx_Dog_Jeol\ +pn_CH_BO` +Label103d +cBx_CH_BOh +cmBx_Anjun_DNl +pnSet_Etc_Amt_delp +lb_ANJUN_delt +lb_PEGI_delx +lb_KOLJAE_del| +Label7 +Label134 +Ed_C_ANJUN_del +Ed_C_PEGI_del +Ed_C_KOLJAE_del +Ed_C_SAGUP_del +cBx_KWN_K_Jeol_T +cBx_KWN_K_UPDN_T +cBx_KWN_K_Jeol_S +cBx_KWN_K_UPDN_S +cBx_KWN_K_Jeol_TA +cBx_KWN_K_UPDN_TA +cBx_KWN_K_Jeol_SA +cBx_KWN_K_UPDN_SA +cBx_Kwan_Comb_del +Cmbx_PORD1_H +cBx_Auto_del +cmBx_AnJun_Type1 +Label36 +tabAdd_BSC +RGrid_Base1 +Label44 +Disp_ANJUN_B_T +Label79 +Disp_PUMJIL_B_T +Label113 +Disp_PSAMT_B_T +Label154 +Disp_EXCEPT_B_T +Label155 +Disp_BUSAN_B_S +Label159 +Label163 +Disp_PSAMT_B_S +Disp_EXCEPT_B_S +Label164 +Disp_ANJUN_B_TA +Label174 +Disp_PUMJIL_B_TA +Label177 +Disp_PSAMT_B_TA +Disp_EXCEPT_B_TA$ +Label193( +Label194, +Label1950 +Disp_PSAMT_B_SA4 +Disp_EXCEPT_B_SA8 +Label196< +Disp_BUSAN_B_SA@ +RGrid_Base2D +Label183H +Ed_Y_KONGSUL +Label29P +Ed_R_KONGSAT +Label173X +cmBx_Kwan_Comb\ +pnSet_Wonga` +Label178d +Label179h +Label180l +Label181p +Label182t +Label69x +Label184| +Label186 +Ed_C_KAN_M +Ed_S_DAMT_M +Ed_S_DAMT_L +Ed_S_DAMT_S +Ed_S_KAMT_M +Ed_C_BUSAN +Label55 +Disp_PURCHAS_T +Label77 +Disp_PURCHAS_S +Label83 +Disp_PURCHAS_TA +Label91 +Disp_PURCHAS_SA +mBtn_Kobo +pn_ShowAdd +sBtn_ShowAdd +Pn_EIS_T +Lb_EIS_SupPay_T +Disp_EIS_SupPay_T +Lb_EIS_HoliPay_T +Ed_R_HoliR1_T +Disp_EIS_HoliPay_T +Ed_R_HoliR2_T +Lb_EIS_SocInsu_T +Ed_R_SocIR2_T +Disp_EIS_SocInsu_T +Lb_EIS_IncMoney_T +Ed_R_Incent_T +Disp_EIS_IncMoney_T +Ed_R_SocIR1_T +Pn_EIS_T2 +Label197 +Disp_EIS_SocInsu_T2 +Label198 +Disp_EIS_IncMoney_T2 +Pn_EIS_T1 +Label199 +Disp_EIS_HoliLAB_T +Label200 +cmBx_AnPum$ +Lbl_AnPum_T( +Lbl_DAMT_S_T, +Lbl_AnPum_S0 +Lbl_AnPum_TA4 +Lbl_AnPum_SA8 +mBtn_P_Jab< +Label201@ +Ed_R_BUDM_SM_TD +Disp_BUDM_SM_TH +Label202L +Ed_R_BUDM_IC_TP +Disp_BUDM_IC_TT +Label203X +Ed_R_BUDM_SM_S\ +Disp_BUDM_SM_S` +Label204d +Ed_R_BUDM_IC_Sh +Disp_BUDM_IC_Sl +Label205p +Ed_R_BUDM_SM_TAt +Disp_BUDM_SM_TAx +Label206| +Ed_R_BUDM_IC_TA +Disp_BUDM_IC_TA +Label207 +Ed_R_BUDM_SM_SA +Disp_BUDM_SM_SA +Label208 +Ed_R_BUDM_IC_SA +Disp_BUDM_IC_SAO +mBtn_ChangeClick +mBtn_QuitClick +FormCloseQuery +mBtn_Set_DefClick +PgAddAmtChange +mBtn_AddAmtClick +mBtn_DelAmtClick +mBtn_MoveUpClick +mBtn_MoveDnClick +RGrid_SelectionChange +RGrid_AfterPost +PgAddAmtChanging +Ed_KeyPress +Ed_Enter +Ed_Exit +TYPEChange +Ed_R_CExit +Ed_C_R_Change +Disp_Add_DrawCell +cBx_Tot_Jeol_ValueChange +Ed_KN_SADblClick +cBx_ChasuValueChange +RGrid_Add_DragDrop +RGrid_Add_DragOver +RGrid_Add_MouseDown +mi_From_ListClick +RGrid_KeyDown +mi_RecallClick +Popup_Add_AMTPopup +Ed_R_C_Enter +SclBx_MouseWheel +sBtn_HintClick +mi_From_JoongClick +cBx_W_TypeValueChange +Ed_C_IYUN_Change +mBtn_RateClick +mBtn_PrintClick +cmBx_COST_BOValueChange +Ed_C_DOGUP_Change +cBx_KWN_Jeol_TValueChange +cmBx_Kong_TypeEnter +cmBx_Kong_TypeExit +cBx_Jeol_TValueChange +cBx_Tot_Add_TKeyDown +cmBx_ANJUNValueChange +cmBx_Kwan_Sa1ValueChange +Ed_C_KAN_MExit +rGrd_Kan_AmtExit" +rGrd_Kan_AmtSelectionChange +rGrd_Kan_AmtAfterPost +rGrd_Kan_AmtDrawCell +rGrd_Kan_AmtDrawRow +Disp_TOTAL_DblClick +wEd_TOTAL_TExit +wEd_TOTAL_TKeyPress +Disp_DOGUP_DblClick +Act_Call_CalcExecute +Set_Anj_T +sBtn_SameClick +Act_Sel_SmallExecute +Act_Ch_OptExecute +cBx_DoSeoH_TClick +Act_Next_TabExecute +Cal_All_Chasu +cBx_Kwan_Comb_delClick +RGrid_Base_ValueChanged +RGrid_Base_CellExit +RGrid_Base_RowChange +RGrid_Base1DrawCell +RGrid_Base2DrawCell +RGrid_Base_Enter +RGrid_Base_AfterPost +FormResize +mBtn_KoboClick +sBtn_ShowAddClick +wCombo_Click +RGrid_Add01DrawCell +TwM_KanJub +KanJub +!!.. +..!! +POS_D_KANJUB + > +Ind_Cost +u3U3 +(XML) + - +=pHO +5 .. +> .. +..................... + 4) + 5) + 6) +) + > + > .. + 7) +) + 8) + = #,0 +HtGH +=lHO +HtCHttH +Disp_Add0 +"......................."#,#0 +;"......................."-#,#0 +;"......................."#,#0 +. XXXX + XXXX ................... + ...................................................................... + ............ +......................................................... +r,uR +RATE_20 +RATE_18 +RATE_17 +RATE_01 +RATE_ +RATE_11 +RATE_06 +RATE_19 +RATE_21 +RATE_26 +LSVW +....... +Qdh`BN +;5DHP +@XP3 + (&Y) +;BH}> +@L;E +RWSj +RATE_07 +RATE_08 +RATE_09 +RATE_10 +RATE_02 +RATE_03 +RATE_04 +RATE_16 +=4HO + ~ 12 + ~ 36 + ~5 +, 30 +~100 +, 100 + ~50 +, 50 +~300 +, 300 +~1000 +, 1000 +=8HP +H_CODE="X" +H_CODE +H_QTY +ST_KanJub.CPM +Edit_Kan_Rate +A@Ju +PSSSj +ST_Prt.CPM +Rep_Print +UhB"H +hI"H +Uh1$H +h8$H +|jG3 +|hG3 +r3u` +Uh(:H +7t/HtQ +=(HO +=,HO +hL:H +h/:H +QQQQSV +UhhiH +UhCiH +=!FO +="FO +=$FO +=#FO +=%FO +=&FO +='FO +=(FO +=)FO += FO +=*FO +hJiH +hoiH +UhTlH +h[lH += EN +% EN +-$oH +%pBN +-0oH +hDoH +h\oH +hhoH +UhGsH +hNsH +5PuH +YZ]_^[ +Uh#wH +-0wH +- s4 +@,;E +;B(t, +@$Ph +;B4t +GraphicColor +TColorManager +EColorConversionError +FNu% +FNu( +- 5K +-,5K +-85K +@Hu +333333 +-DAK +5TAK +-XAK +-dAK +5pAK +-tAK +tM*] +@Hu" +-piK +-|iK +- nK +-,nK +-8nK +-DnK +-PnK +UhmyK +htyK +UhQzK +hXzK +Uhh{K +ho{K +|cG3 +|]G3 +|7G3 +|6G3 +TCardinalArray +GraphicEx +TByteArray +TFloatArray +TImagePropertiesh +TGraphicExGraphic +TGraphicExGraphic, +TSGIGraphic +TSGIGraphicH +TAutodeskGraphic +TAutodeskGraphic` +TTIFFGraphic +TEPSGraphic0 +TEPSGraphic +TTargaGraphic +TPCXGraphic0 +TPCXGraphic +TPCDGraphic, +TPCDGraphic +TPPMGraphic( +TPPMGraphic +TCUTGraphic +TRLAGraphic4 +TRLAGraphic +TPSDGraphic0 +TPSDGraphic +TPSPGraphic, +TPSPGraphic +TPNGGraphic +TFileFormatListU +r?@3 +R Pjd +Autodesk +$_^[ +PjdW +sgi, bw or rgb(a) +$f=MMt +f=IIt +t\f=MMu +$ZXr +$YZ^[ +;BT~ +TIF/TIFF +MMu +tnHtq +%trHtu- +|kC3 +|PC3 +Q8^[ +PCX or SCR +PCD_OPA +t$7? +Pjdj +<$Pu +$ZXu( +PBM, PGM or PPM +.pal +8BPS +PSD or PDD +Paint Shop Pro Image File +Uhy#L +IDATPLTEgAMA +bKGDtRNSIENDSVWU +IHDRgAMA +GIENDSVWUQ +Uh26L +R PjdW +R,Ph +h96L +IDATSVWQ +Uh(:L +h/:L +IDAT +Uh$>L +h+>L +TClassEntry +TExtensionEntry +|#F3 +;(u( +UhLDL +hSDL +jfif +jpeg +tiff +rgba +TDecoder +TTargaRLEDecoder +TTIFFLZWDecoder +TPackbitsRLEDecoder +TPCXRLEDecoder +TSGIRLEDecoder +TCUTRLEDecoder +TPSPRLEDecoder +TRLADecoder +TStateArray +GraphicCompression +TCCITTDecoder +TCCITTFax3Decoder +TCCITTMHDecoder +TLZ77Decoder +TTIFFJPEGDecoder +TThunderDecoderxUL +TPCDDecoder +EGraphicCompressionU +UhCVL +hJVL +KFHu +@YZ]_^[ +&C;] +u($? +SVWQ3 +@|!3 +@,H, +Uh9iL +h@iL +UhMmL +CT;CXu6 +;H t +;B$t +Uh+mL +h2mL +hTmL +UhXnL +h_nL +Uh1uL +h8uL +UhiuL +hpuL +HRPage1 +HRPageBand1 +HlCap +HRLabel34 +HRLabel35 +HRLabel36 +HRLabel38 +HRLabel40 +HRLabel42 +HRLabel44 +HRLabel45$ +HRLabel47( +HRDBText141, +HRDBText1420 +HRDBText1434 +HRDBText1448 +HRDBText145< +HRDBText146@ +HRLabel37D +HRLabel39H +HRLabel41L +HRLabel43P +HRLabel46T +HRLabel48X +HRLabel49\ +HRLabel50` +HRLabel52d +HRDBText147h +HRDBText148l +HRDBText149p +HRDBText150t +HRDBText151x +HRDBText152| +HRDBText153 +HRDBText154 +HRDBText155 +HRDBText156 +HRDBText157 +HRDBText158 +HRDBText163 +HRDBText164 +HRDBText165 +HRDBText166 +HRLabel54 +HRLabel55 +HRDBText167 +HRLabel56 +HRDBText168 +HRLabel57 +HRDBText169 +HRLabel58 +HRDBText170 +HRLabel59 +HRDBText171 +HRLabel53 +HRLabel60 +HRLabel61 +HRLabel62 +HRLabel63 +HRDBText172 +HRDBText173 +HRDBText174 +HRDBText175 +HRLabel64 +HRLabel65 +HRLabel66 +HRDBText176 +HRDBText177 +HRDBText178 +HRLabel67 +HRLabel68 +HRDBText179 +HRDBText180 +HRLabel69 +HRLabel70$ +HRDBText181( +HRLabel71, +HRLabel720 +HRLabel734 +HRDBText1828 +HRDBText183< +HRDBText184@ +HRLabel74D +HRLabel82H +HRLabel84L +HRLabel85P +HRLabel86T +HRLabel76X +HRLabel77\ +HRLabel79` +HRDBText185d +HRDBText186h +HRDBText189l +HRDBText190p +HRDBText187t +HRDBText191x +HRMemo9| +HRLabel75 +HRLabel81 +HRLabel90 +HRDBText193 +HRDBText194 +HRDBText195 +HRDBText196 +HRDBText197 +HRDBText198 +HRLabel1 +HRLabel2 +HRLabel3 +HRLabel4 +HRLabel5 +HRLabel6 +HRLabel7 +HRLabel8 +HRLabel9 +HRLabel10 +HRLabel11 +HRLabel12 +HRLabel13 +HRLabel14 +HRLabel15 +HRLabel16 +HRLabel83 +HRDBText199 +HRDBText200 +HRLabel87 +HRDBText201 +HRDBText188 +HRDBText192 +HRDBText202 +HRLabel78 +HRLabel80 +HRLabel88 +HRDBText235 +HRDBText236 +HRDBText237 +HRDBText239 +HRLabel89 +HRLabel91$ +HRLabel92( +HRLabel93, +HRLabel940 +HRDBText2414 +HRDBText2428 +HRDBText243< +HRLabel95@ +HRLabel96D +HRDBText244H +HRLabel97L +HRLabel98P +HRDBText247T +HRLabel99X +HRLabel100\ +HRDBText248` +HRLabel101d +HRLabel102h +HRDBText249l +HRDBText250p +HRDBText251t +HRLabel103x +HRDBText240| +HRDBText245 +HRDBText246 +HRLabel104 +HRDBText252 +HRDBText253 +HRDBText254 +HRLabel105 +HRLabel106 +HRLabel107 +HRLabel108 +HRLabel109 +HRLabel110 +HRLabel111 +HRDBText159 +HRDBText160 +HRDBText161 +HRDBText162 +HRDBText238 +HRDBText273 +HRDBText274 +HRDBText276 +HRDBText277 +HRDBText278 +HRDBText280 +HRDBText281 +HRDBText282 +HRDBText284 +HRDBText285 +HRDBText286 +HRDBText287 +HRDBText288 +HRDBText289 +HRDBText290 +HRLabel114 +HRDBText295 +HRDBText296 +HRDBText297 +HRDBText298 +HRDBText299 +HRDBText300 +HRDBText301 +HRDBText302$ +HRDBText303( +HRDBText304, +HRDBText3050 +HRDBText3064 +HRDBText3078 +HRDBText308< +HRDBText309@ +HRDBText310D +HRDBText311H +HRDBText312L +HRDBText313P +HRDBText314T +HRLabel112X +HRLabel113\ +HRLabel18` +HRLabel19d +HRLabel20h +HRLabel21l +HRMemo3p +HRLabel22t +HRLabel23x +HRLabel24| +HRLabel25 +HRMemo4 +HRLabel26 +HRLabel27 +HRLabel28 +HRLabel29 +HRMemo6 +HRLabel30 +HRLabel31 +HRLabel32 +HRLabel33 +HRDBText1 +HRDBText2 +HRDBText9 +HRDBText10 +HRDBText17 +HRDBText18 +HRDBText25 +HRDBText26 +HRDBText36 +HRDBText37 +HRDBText44 +HRDBText45 +HRDBText52 +HRDBText53 +HRDBText60 +HRDBText61 +HRDBText71 +HRDBText72 +HRDBText79 +HRDBText80 +HRDBText87 +HRDBText88 +HRDBText95 +HRDBText96 +HRDBText106 +HRDBText107 +HRDBText114 +HRDBText115 +HRDBText122 +HRDBText123 +HRDBText130$ +HRDBText131( +HRDBText203, +HRDBText2040 +HRDBText2054 +HRDBText2068 +HRDBText207< +HRDBText208@ +HRDBText209D +HRDBText210H +HRDBText211L +HRDBText212P +HRDBText213T +HRDBText214X +HRDBText215\ +HRDBText216` +HRDBText217d +HRDBText218h +HRDBText3l +HRDBText4p +HRDBText11t +HRDBText12x +HRDBText19| +HRDBText20 +HRDBText27 +HRDBText28 +HRDBText38 +HRDBText39 +HRDBText46 +HRDBText47 +HRDBText54 +HRDBText55 +HRDBText62 +HRDBText63 +HRDBText73 +HRDBText74 +HRDBText81 +HRDBText82 +HRDBText89 +HRDBText90 +HRDBText97 +HRDBText98 +HRDBText108 +HRDBText109 +HRDBText116 +HRDBText117 +HRDBText124 +HRDBText125 +HRDBText132 +HRDBText133 +HRDBText255 +HRDBText256 +HRDBText257 +HRDBText258 +HRDBText259 +HRDBText260 +HRDBText261 +HRDBText262 +HRDBText263 +HRDBText264 +HRDBText265 +HRDBText266 +HRDBText267 +HRDBText268 +HRDBText269$ +HRDBText270( +HRDBText5, +HRDBText134 +HRDBText148 +HRDBText21< +HRDBText22@ +HRDBText29D +HRDBText30H +HRDBText40L +HRDBText41P +HRDBText48T +HRDBText49X +HRDBText56\ +HRDBText57` +HRDBText64d +HRDBText65h +HRDBText75l +HRDBText76p +HRDBText83t +HRDBText84x +HRDBText91| +HRDBText92 +HRDBText99 +HRDBText100 +HRDBText110 +HRDBText111 +HRDBText118 +HRDBText119 +HRDBText126 +HRDBText127 +HRDBText135 +HRDBText219 +HRDBText220 +HRDBText221 +HRDBText222 +HRDBText223 +HRDBText224 +HRDBText225 +HRDBText226 +HRDBText227 +HRDBText228 +HRDBText229 +HRDBText230 +HRDBText231 +HRDBText232 +HRDBText233 +HRDBText234 +HRDBText7 +HRDBText8 +HRDBText15 +HRDBText16 +HRDBText23 +HRDBText24 +HRDBText31 +HRDBText32 +HRDBText42 +HRDBText43 +HRDBText50 +HRDBText51 +HRDBText58 +HRDBText59 +HRDBText66$ +HRDBText67( +HRDBText77, +HRDBText780 +HRDBText854 +HRDBText868 +HRDBText93< +HRDBText94@ +HRDBText101D +HRDBText102H +HRDBText112L +HRDBText113P +HRDBText120T +HRDBText121X +HRDBText128\ +HRDBText129` +HRDBText136d +HRDBText137h +HRDBText271l +HRDBText275p +HRDBText279t +HRDBText283x +HRMemo1| +HRDBText33 +HRDBText34 +HRDBText68 +HRMemo2 +HRDBText69 +HRDBText103 +HRMemo5 +HRDBText104 +HRDBText138 +HRMemo7 +HRDBText139 +HRDBText272 +HRDBText35 +HRDBText70 +HRDBText105 +HRDBText140 +HRMemo8 +HRMemo10 +HRMemo11 +HRDBText291 +HRDBText292 +HRDBText293 +HRDBText294 +HRDBText315 +HRDBText316 +HRDBText317 +HRDBText318 +HRLabel17 +HRLabel51 +HRDBText319 +HRLabel115 +HRDBText320 +HRPageBand1BeforePrint +HrpSaveDialog +TPM_KAN_RATE +P_Kan_Rate +QQQQQQS +-\RR +rGrd_BoqXX +rGrd_Jab +sBtn_Quit +sBtn_Calc_Jab +sBtn_Set_Rate +Label1 +cmBx_Buga$ +Label2( +cmBx_JeolSa, +cmBx_Tot_Jeol +rGrd_BoqXXDrawCell +sBtn_QuitClick +rGrd_JabDrawCell +rGrd_JabRowChange +rGrd_JabDrawRow +rGrd_JabCellEnter +sBtn_Set_RateClick +sBtn_Calc_JabClick +rGrd_JabBeforePost +rGrd_JabKeyDown +cmBx_ValueChange +cmBx_BugaKeyDown +TwM_KanJub_K +KanJub_K +ADD_ +(BDCODE1="T") .and. (BDCODE1>"T +#,0.###;;# +#,0.##%;;# +%-5s +0.000%;;# +. x +umUh +umUh8 +YUht +tjUh +YUh, +YUhT +YUhx +tmUh +ujUh4 +YUh< +YUhh +YUh +YUhD +YUh8 +YUh\ +YUh| +ujUh +YUhH +YUh0 +tlUh +ujUhD +rjUh +0.0###% +0.00%;;# +^YY] +Ht@Htu +LCOST2 +Hu#j +YFKu +5LtY +-@lX +vH'B +vH7B +7F7N7V7^7f7n7v7~7 +8&8.868>8F8N8V8^8f8n8v8~8 +8c9o9|9 +:&:.:6:>:F:N:V:^:f:n:v:~: +;$;6;>;F;N;V;^;f;n;v;~; +<&<.<6<>=F=N=V=^=f=n=v=~= +>&>.>6>>>F>N>V>^>f>n>v>~> +?&?.?6?>?F?N?V?^?f?n?v?~? +0&0.060>0F0N0V0^0f0n0v0~0 +1&1.161>1F1N1V1^1f1n1v1~1 +2'242F2N2V2^2f2s2 +3+373D3V3^3k3w3 +4&4.464>4F4N4V4^4f4s4 +5&5.565>5F5N5V5^5f5n5v5~5 +6&6.666>6F6N6V6^6f6n6v6~6 +9&9.969>9F9N9V9^9f9n9v9~9 +;&;.;6;>;F;N;V;^;f;n;v;~; +<&<.<6<>0D0p0 +1(1@1X1p1 +1,2@2 +3 3$3(3,3034383<3@3D3H3L3P3T3X3\3`3d3h3l3p3t3x3|3 +4F4J4N4R4V4Z4^4b4f4j4n4r4v4z4~4 +5 5$5(5,5054585<5@5D5H5L5P5T5X5\5`5d5h5l5p5t5x5|5 +6"6A6E6I6j6n6r6 +7;7C7l7t7 +848<8X8`8|8 +979\9d9 +:1:R:Z:t:x:|: +;%;1;G;l; +<$4>]>e>~> +0.0@0 +2+2/23272;2?2C2G2K2O2S2W2[2`2e2}2 +2%363;3S3X3 +4)4.4f4w4|4 +5<5M5R5j5o5 +6#6(6@6E6y6 +7T;[;g;k;o;s; +=;=">I? +0 0.0 +6@7E7Z8 +3'6.6:6>6B6F6 +8"8&8*8.82868:8>8 +0M6T6`6d6h6l6C:O:\:n:v:~: +=&=.=6=>=F=N=V=^=f=n={= +?&?.?;?G?N?`?r? +0 0$0(0,0004080<0@0v0 +2'232@2R2_2k2x2 +3,3>3D3 +=%=7=J=R=W=\=o={= +>G>S>`>r> +?"?,?C?K?T?`?h?x? +0&010C0V0 +8 8+868A8L8 +8@9K9W9i9 +: :*:5:?:J:T:^:h:s: +; ;$;(;,;0;4;8;<;@;X;x; +<<G>T>f>l>t>|> +?$?,?4?A>I>Q>Y>a>i>q>y> +2(2A2M2`2j2o2~2 +3 3$3(3,3034383<3@3D3H3L3d3z3~3 +4 4$4(4,4044484<4@4D4H4L4d4{4 +585X5`5d5h5l5p5t5x5|5 +6"6b6 +7 7(7,7074787<7@7D7H7u7}7 +8(8-8:8?8L8Q8^8c8p8u8 +9$9)969;9H9M9Z9_9l9q9~9 +: :%:2:7:D:I:V:[:h:m:z: +;!;.;5;J;Y;p; +? ?@?H?L?P?T?X?\?`?d?h?l? +0 0$0(0,0004080<0@0D0H0L0P0 +1@1I1 +1>2Y2 +3&3Y3m3 +4L4k4 +627}7 +8"8A8W8k8~8 +9F9S9d9q9 +:":B:N:j: +< 3>h> +? ?$?(?,?0?4?8?)>->D>a> +? ?$?(?,?[? +/0S0 +1 131B1`1 +2 2/292K2j2y2 +4*474C4P4b4o4{4 +5#505B5H5\5 +:9;v; +;+ >6>;>L>Q>b>g>z> +?!?4?9?J?O?`?e?x?}? +12171U1Z1f1q1v1 +2F2K2^2c2v2{2 +333@3n3{3 +4(4-4@4E4X4]4p4u4 +4z5T9n9 +97:H:m: +;';2;<;U;b;r; +;)<51>R>[>u> +3+4G4h4 +5+575K5U5Z5l5w5 +6'6L6g6 +8*9K9 +<"=1=;=b=n= +<1I1Q1t1 +4'4x4 +6L7Z7u7 +859^9 +:Y;d;n;{; +O>b> +?$?9?]? +060^0 +1.1V1}1 +263>3 +6=6g6 +6$7Q7 +8#9\9 +<>.?[? +0-1`1 +2%2j2 +2)3\3 +3'4L4l4 +465p5 +7@7o7 +7+8Z8 +9L9b9 +:7:X: +=">0>S>a> +?)?3?8?C?`?j?o?z? +0<0P0a0o0 +1-1P1d1u1 +2%2H2V2y2 +3 3*3;3I3a3o3 +6&7E7c7 +1h6|6_;s; +0P0v0 +2>2O2 +7\7o7 +9?9u9 +:4:}: +0@0h0%151a1 +5&595P5_5k5 +6b7l7 +7^8h8 +9s9}9 +:<:F: +;R;\; +;R<\< +p> +> ?*?b?l? +10;0v0 +1e1o1 +2G2Q2 +3U4w4 +7H7W7g7q7 +748B8R8b8 +929A9a9q9{9 +9J:z: +: ;n; +<&=B=h= +=!>J>f> +?E?n? +.0i0 +0N1q1 +3"494I4^4 +525Q5`5o5~5 +536Q6e6~6 +6b7y7 +8w;98>Y>m? +2D4T4 +5(5=5S5f5}5 +6&6=6S6f6}6"7 +8E8k8 +9J9k9 +?*?P?Z?d?n?x? +1=2c2 +2:374G4 +5+5C5 +848E8g8 +969J9a9r9 +:M:r: +:1;A;D=t= +112E284H4t6 +:&:7:A:K:U:_:i: +:m;~; +<90_0 +2k2|2 +5R5b5 +5"6<6_6 +6*7C7e7~7 +9I9i9|9 +:R;*<:;>s> +0<0S0z0 +033>3X3j3 +4%484Q4 +4 525D5O5a5l5~5 +6&6D6_6y6 +717=7T7Y7^7c7~7 +8$8b8r8 +9I9Y9 +:$:9:G:m:z: +;);3;@;R;m;x; +\> +040o0 +0 1R1s1 +4#5|5 +6*7\7y7 +7/8<8G8X8m8y8 +9,:6:E:W:\:k:|: +;+;:;T;d; +<"<'<1/>`>n> +?:?R? +0:0]0~0 +0H1n1 +252S2y2 +3A4s4 +5;5a5 +6?6s6 +7$8L8s8 +8&9Q9|9 +:L:w: +:";V;h; +<04>^>x> +?2?X?~? +4q4@5P5 +7'7K7s7 +:&:B:Y: +;*;5;@;K;V;a;k;{; +<)<6<=!>+>5>I>S>]> +>;?]?m? +010<0N0X0 +1&161E1u1 +2'292E2T2b2x2 +3<3P3r3w3 +434D4U4_4i4}4 +5)5M5a5w5 +6*6;6O6`6q6|6 +7!7.787\7p7 +8$8:8I8e8w8 +9*9<9G9R9]9h9s9~9 +; ;%;*;E;O;];}; +<8+><>F>g> +R0a0z0 +0#1F1 +1&2k2z2 +3$4b4 +5C5e5 +5U6j6 +9S9i9n9s9 +9::F:s: +=2=<=`=e=j=o=t=y=~= +1,2;2Z2p2 +4#4(4-42474<4A4F4K4R4W4\4a4f4k4p4 +455G5[5 +6/6E6Y6o6w6 +7 7%7*7/74797>7]7b7v7 +7n9v9 +:0:I:Z: +<(=a= +=7>n> +?(?2?c?o? +70[0 +1#1-1:1D1Q1[1m1 +222D2c2r2 +4?4U4 +4*5c5 +6I7Z7q7 +7%8:8[8e8k8 +:@;m;w; +< =F= +0<0u0 +0$1[1 +2>3Z3 +4L4V4 +5<5k5~5 +526~6 +758Q8f8 +8$9[9 +:A;U; +<4<>:>D>q> +>(?f?w? +060I0T0g0r0 +3J3X3f3t3 +4 4K4 +6K8{8 +:%:5:^: +:(;O;s; +081w1 +222B2l2 +404P4 +5=5p5 +969n9 +;1;R;s; +<9O>p> +?)??? +8-8;8O8]8q8 +:.:C:P:_:u: +;&;W; +<#0>D>T>d>p>~> +?%?*? +6!6J6 +8N9^9x9 +;0<;6L6^6w6 +6L8P8T8X8\8`8d8h8l8p8t8 +'>W>p> +e1u1 +2$2J2v2 +3+3C3Y3q3 +464l4 +5D5z5 +6R6o6v6 +6#7*757}7 +71888C8 +8?9F9Q9 +:f:r: +;(;8;M;U;`;r;}; +;*->E>j> +>!?9?I?_? +6+6B6G6L6\6h6|6 +7*7/7L7V7o7v7 +7*868b8{8 +9L9V9r9|9 +:.:O:_:j: +;";2;B;X;h;x; +/>]>m> +>6?F?M?X? +0\0l0s0~0 +0 10171B1 +2F2V2]2h2 +3/3:3D3q3 +424B4^4n4 +6#636I6^6u6 +6$747D7i7y7 +8(8-878L8e8 +9U9r9~9 +:+:V: +343P3Z3f3 +374K4}4 +5(5:5 +7,777J7`7k7x7 +8,8F8[8 +:.:C:X:g:|: +:<;H;c;h;m;r;w;|; +?Q?k? +0'030C0M0R051B1P1[1s1 +2$2R2\2g2n2 +3!3>3N3X3s3{3 +464<4P4 +646G6P6a6 +7.7V7a7k7 +9P9t9 +9=:a:r: +:*;N;_;o; +;J1?c?r? +4*454?4J4T4_4i4t4~4 +5$5*545>5H5R5\5g5q5|5 +6%6-656=6E6M6U6]6e6m6u6}6 +7%7-757=7E7M7U7]7e7m7u7}7 +8%8-858=8E8M8U8]8e8m8u8}8 +=&=.=S=[=a=x= +>)>8>E> +>8?|? +3)4m4 +495}5 +7%8i8 +859y9 +< =d= +=0>t> +021S1k1 +172{2 +4 5I5 +5R6{6 +6(7Q7 +9'9M9s9 +:1:]: +10161E1O1]1j1r1 +1L2Z2q2 +5'6k6 +9 :d: +:0;t; +>2?F? ++0o0 +2(3l3 +5M5w5)6 +617Z7 +7O8x8 +;&n> +>1?r? +50y0 +2!3e3 +314u4 +637w7 +8$9g9 +90:s: +=&>i> +3-4p4)5i5 +6/7r7 +7.8q8 +8:9}9 +<'=M=`= +=">c> +>#?c? +#0c0 +0#1c1 +1#2c2 +2#3c3 +3#4c4 +4#5c5 +6;6g6 +7E7q7 +858[8 +; ;G;O;U;k;u;{; +<)<4+>U> +>'?Q?{? +#0M0w0 +1I1s1 +2E2o2 +3A3k3 +4=4g4 +595c5 +656_6 +717[7 +;"H>r> +?D?n? +0@0j0 +1<1f1 +282b2 +343^3 +4E4q4 +4!5M5X5 +6>6j6 +7F7r7 +7"8N8z8 +8*9V9 +9(:R:|: +:$;N;z; +;(A>k> +?=?g? +090c0 +151_1 +212[2 +3-3W3~3 +4A4h4 +5+5R5y5 +6<6c6 +6&767M7t7 +7R8h8 +M;X; +;O<\< +>D>b> +$080j0 +0'1^1 +2G2t2 +313O3x3 +4"4T4 +516^6l6 +7<7M8 +;a:Y: +:J;o; +=b=v= +=9>D>b>r> +0<1h1x1 +3I4S4c4 +7I7W7u7 +7"8V8 +9L9}9 +=$=:=D=P=p= +)0W0\0f0 +191g1l1v1 +2I2w2|2 +3,3Y3 +818T8 +:I;{; +;(b> +2=3t3 +5U5l5c7 +8#8I8j8 +:):O: +;/;U;v; +;*h> +010M0e0o0 +181G1M1 +1=2^2 +3+333T3 +6&7M7\7d7 +9H9P9q9 +:2;G;l;p;t;x;|; +011I1 +495V6;7w7 +8<8r8 +899z:_; +;+<`< +1^2}2 +383n3 +686Y6z6 +;ED>J>d> +?'?;? +3)3l3 +7?7k7 +748`8 +:4:W: +=N>m> + 0X0 +1S1A2M2 +3U3~3 +4:4v4 +4:5k5 +506a6 +7E7v7 +7C8T8 +9Q9z9 +<6}> +041]1 +2S3|3 +4H4_4 +5"6x6 +6,7Q7 +748q8 +8,9U9 +:c:t: +V0{0 +3O3S3W3[3_3c3g3k3o3z3 +7*8S8r8 +9F9]9 +:3;j; +?L?u? +&0s0w0{0 +2>2U2 +5)5w5 +7L8}8 +:1;b; +<(=_= +> ?j? +0!1X1d1 +4O4i4 +5%5*515H5O5^5q5 +5F6d6 +7-727f7 +8(8=8E8J8_8i8{8 +9B9X9b9 +<"<)<8 >$>(>,>0>4>8><>@>D>H>d> +?$?4?D?L?P?T?X?\?`?d?h?l?p?t?x?|? +W0c0p0 +001<1@1P1X1\1`1d1h1l1p1t1x1|1 +2$2G2f2 +2_3k3x3 +4(4044484<4@4D4H4L4P4T4X4\4`4d4h4l4p4t4x4|4 +5*5P5X5t5|5 +63676;6\6 +7 7$7(7,70747T7t7|7 +8 8@8H8L8P8T8X8\8`8d8h8 +9M9l9 +:\:k:z: +90q091l1 +3-4=4"5?5 +7^8y8?9J9b9 +:?:M:n: +; h>l>w> +0 0$0(0,000@0R0l0~0 +1.1E1W1n1 +2$262 +5 5$5(5,5054585<5@5D5H5L5Z5b5x5 +6(6@6D6v6 +;S;g;l; +<,=k= +>;?G?N?`?r?{? +0/0;0C0H0R0W0a0f0p0u0 +0(24282H2P2T2X2\2`2d2h2l2p2t2x2|2 +3$343<3@3D3H3L3P3T3X3\3`3d3h3l3p3t3x3|3 +5 5$5(5,5054585<5@5D5H5L5P5T5X5\5`5d5h5l5p5 +6 6$6(6,6064686<6@6D6H6L6P6T6X6l6~6 +7 7$7(7,7074787L7^7b7x7 +8,8>8B8X8h8x8 +9"989X9`9d9h9l9p9t9x9|9 +;*;b; +1R2o2 +4[4c4 +:9;o; +;B<\< +0>3E3 +=%=.=:=C=O=X=d=m=y= +=\>h>l>|> +?"?*?2?:?B?J?R?Z?b?x? +090^0 +101V1 +2-2P2s2 +393[3|3 +5)5-5<5f5 +6B6W6 +9,9E9T9m9|9 +:8:G:`:o: +;%;4;N;];w; +>->M>m> +?8?_?u? +0;0a0 +6.6I6Z6i6 +8?8i8 +8!9.9E9 +<%<6%?S? +1#191 +3&313H3M3R3m3w3 +4*4A4o4 +4(5:5[5e5 +5#6A6V6i6y6 +:*:f: +<>=I=j={= +>3>H>M>R>W>\>~> +?,?O? +000N0\0n0 +1#131>1R1p1 +2+2I2 +3$3)3.333>3V3 +4]4h4}4 +555:5?5D5 +6t7~7 +8o8z8 +8(939H9 +;0;@;E;W;g;l;x; +<%<16R6k6~6 +7%767L7_7u7 +8'8/8<8H8N8T8Y8z8 +;/)>3>D>Q> +?=?G?T?h?w? +0 0,090_0k0{0 +021_1 +3=3O3\3 +7b7y7 +8+8Q8j8 +9v9\: +<';>t> +?)?.?C?M?_? +1$1Z1 +3<3W4c4j4|4 +:1:H:_:v: +;$;<;[;r; +<3">D>`>{> +?%?5?J?e?}? +030M0g0~0 +1#1'1+1/13171;1?1C1G1K1O1S1W1[1_1d1t1x1 +10262H2R2_2i2s2}2 +3-353?3Q3Z3e3j3w3 +4B4o4 +4 6*64696C6M6R6\6f6m6s6|6 +7-767|7 +7;8T8m8 +8,9E9 +:-:9:I:\: +;/;H; +;-,>J>T>\>f>n>x> +?"???O?Y?t?|? +0%060@0 +101R1 +2#3(3P3x3 +4=4T4Y4w4|4 +5;5E5J5O5Y5{5 +5"6.6e6 +>->W> +?"?&?*?.?2?6?:?>?I?Q?|? +0N0V0^0 +141E1R1`1 +5H7N7V7 +8\8a8f8 +:,:2:8:F:M: +;:>E> +0,0=0 +9 90959Q9j9 +:$;+;C; +;L=P=T=X=\=`=d=h=l=w= +?O?[?c?q?v? +0 0D0T0_0p0 +282G2T2d2n2z2 +3+3Y3l3v3}3 +4@4n4 +5K5r5 +7@7L7{7 +9 9?9e9s9 +9=:Q:l: +;:;A;W; +&>.>I>v> +>[?h? +0!060K0 +171A1K1Y1 +3,3>3C3H3 +4B4F5Y5_5d5m5z5 +6Q6V6^6 +6@7P7 +1%2.2 +2&8A8H8S8i8y8 +:J=|= +2E3j3 +5#5j5 +7.7u7 +889j9 +93:e: +:0;G;o; +;%E>w> +?B?Y? +070i0 +021l1{1 +1$2|2 +2$3k3 +4;4\4}4 +515W5}5 +6&6G6h6 +7=7c7 +848O8 +2]3h3y3 +5@5t5 +6J7_7t7 +9,9O9~9 +<&<;< +>0>p> +2)2)3]3 +6(7?7g7 +:7:L:a:v: +<<g> +Q1V1^1`2q2 +4m4x4 +;#;';+;/;3;7;;;?;C;U; +>L>]>b>z> +?6?G? +1I1U1 +2N2g2r2 +2-3F3O3t3 +797j7 +8*8B8c8 +8!9,9=9y9 +:*:>:S:}: +;!;%;); +<2(?>? +!0p0 +031I1m1x1 +2#393i3 +334I4 +5<6G6 +8 8,8P8 +9"979L9a9{9 +:8:@:M:S:[:a:g:m: +1I1S1^1f1r1 +2/272B2W2c2 +4A6Q839M9 +;4;;;R;H< +33348A8L8]8 +:*:B:[:s:z: +;*;>;R;f;q;x; +<4<=%>3>A>K>X>c>u> +?*?:?I?h?o? +0$0P0`0o0 +1(1:1H1^1 +2M4R4W4q4v4 +515B5h5 +6"6>6Z6v6 +7:7J7Z7 +9*90969B9G9Q9\9m9w9 +:%:A:]:y: +;!;=;Y;u; +=!=;=F=_=y= +=">4>F>S>b> +1S1Z1f1k1 +1h2{2]3>4G4j4 +6P6]6k6 +7(797J7 +8,8\8g8s8 +9#9-9?9H9C:H:P: +;-;P;o; +>(>A>[>_>c>g>k>o>z> +?-?>? +0 0^0 +1*1O1k1 +1 202 +3(343o3{3 +6(6n6 +787S7n7~7 +8&8.8D8I8N8S8X8t8 +939p9 +:j(>R>_>|> +?"?-?R?e?p?}? +090G0\0u0|0 +3'323K3a3 +5%5A5]5 +5"6?6H6f6{6 +8 8-8c8 +809F9^9h9r9 +:9'>4>J>T>j> +?1?H?n? +<0X0i0 +0Q1W1a1f1k1 +2!2=2h2w2 +3"333D3U3_3z3 +4#4?4O4S4W4[4_4c4t4 +4T5_5o5s5w5{5 +6#656N6e6 +:!:,:<:G:X:`:~: +;J;U;j;r; +G>p> +?=?f? +030>0M0Z0w0 +0$1R1{1 +2H2q2 +3>3g3 +444]4 +545]5M6Q6U6Y6]6a6e6i6m6q6u6y6}6 +y0}0 +0^1|1 +2.252I2]2q2 +3$3O3m3x3 +4 4+4G4N4V4r4z4 +5:5A5I5e5m5 +6-646<6X6`6|6 +7 7'7/7K7S7o7w7 +8.8B8V8j8~8 +8!9?9J9f9m9 +:7:U:`:|: +;";M;k;v; +<$<8">->I>P>d>x> +?,?W?u? +0(030O0V0j0~0 +111E1p1 +1#2A2L2h2o2 +3"363J3^3r3 +4%494d4 +555@5\5c5w5 +6%696d6 +7&7-7A7U7i7}7 +9>9S9 +;<!>9>F>V> +0/0:0L0 +1*171?1n1|1 +2!252d2 +5$565p5 +7!7,72787>7D7J7O7|7 +8 8'8,8N8U8_8c8g8q8w8 +; ;$;(;,;0;4;8;<;@;D;H;L;P;T;X;\;`;d;h;l;p;t;x;|; +0)0?0T0i0 +1,1J1N1R1V1Z1^1b1f1j1n1r1v1z1~1 +3)3A3Y3q3 +4"4:4R4j4 +555N5g5 +5]6t6 +777O7g7 +7F8^8v8 +8?9X9q9 +:":;:T:m: +;+;G; +J>b>z> +?5?e? +&0=0V0o0 +101H1`1 +1E2u2~2 +090U0 +1%2V2 +3$3=3G3L3 +4H5R5W5n5x5}5 +7!7L7 +738O8 +8c9}9 +:E:L:\:d:~: +;$;-;=;J;Z;c;s; +'>/>A>O>]>o> +?8?A?Q?n?{? +0#0+0;0A0G0N0w0}0 +1>1S1{1 +2,21262;2C2e2 +4#4/444@4E4{4 +5'575A5F5 +8F9v9 +:#:4:P:e:v:{: +:>;~< +="=1=>=K=`=y= +>#>2> +?M?S?Y?_?e?t?z? +0"0(0.03080I0N0Z0 +1=1Y1x1 +2*2<2J2X2j2{2 +3@3L3Z3~3 +5#5B5 +=;>w> +>K?p? +1 1(1,1014181<1@1D1H1L1P1T1X1\1`1d1h1l1p1 +2"2&282H2X2`2d2h2l2p2t2x2|2 +3 3$3(3,3034383<3@3D3H3L3\3l3p3 +4'4+4<4L4\4d4h4l4p4t4x4|4 +5 5$5(5,5054585<5@5D5H5L5P5d5v5z5 +686I6M6`6p6 +7!747D7T7\7`7d7h7l7p7t7x7|7 +8 8$8(8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8 +9 9$9(9,9094989<9@9`9~9 +: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p: +; ;$;(;,;0;4;8;<;@;D;\;r;v; +<$ >(>0>8>@>H>P>X>`>h>p>x> +0[0q0 +1.1H1|1,2d2 +2 3@3H3L3P3T3X3\3`3d3h3l3x3 +4 4'5L5k5 +5"6=6^6m6 +:$:D:L:P:T:X:\:`:d:h:l:p:t: +; ;$;(;,;0;4;8;<;@;\;|; +P0p0x0|0 +1(1H1P1T1X1\1`1d1h1l1p1t1x1|1 +2 2(2,2024282<2@2D2H2L2P2T2X2l2 +3 3$3(3,3D3d3l3p3t3x3|3 +T;t;|; +>U>i> +0K1[1 +4%5)5-5155595=5A5V5x5 +;.<{< +===t= +1/1A1^1 +3 3$3(3,3034383<3@3D3H3L3P3T3X3\3`3x3 +6#7W7 +8!8+8v8 +8B9Q9 +9<:L:\:d:h:l:p:t:x:|: +:=;c; +?,?k? +}1x2 +5H7d7h7p7t7x7|7 +7*888G8^8 +9(9H9P9T9X9\9`9d9h9l9p9t9x9|9 +; ;$;(;,;0;b;n= +>4><>@>D>H>L>P>T>X>\>`>d>h> +4@5Q5a5 +6?6R6v6 +6%7m7~7 +;T>m> +D0H1 +3D3<4L4Y4i4 +5-6y6J7o7 +728l8 +: ;G;e; +9E9T9c9r9B:L:V:[:x; +=>=a= +040<0@0D0H0L0P0T0X0\0`0d0h0l0 +6(7f7 +9+:W: + +5H5V5 +9 9F9 +9T:[: +5.6^6x6 +657\7~7 +7$8S8 +8(989V9 +9A:W; +$?W? +0#0J0 +0)1K1 2~2 +3>3N3 +3&4J4W4g4 +535M5 +6#6M6i6{6 +7>7z7 +8B9A:a: +;!,>4>A>P>c>h>m>z> +>8?R?r? +U3\3k3o3s3w3{3 +173@3O3X3g6p6 +7#8,898 +505F5n5(60: +;T<]< +<> +0R0g0n0 +0P1g1 +2%333`3k3v3 +0/13171;1?1C1G1K1O1S1W1[1_1c1g1 +5 5$5(5,5054585<5@5D5J5R5\5d5l5t5|5 +6$6,646<6D6L6T6\6d6l6t6|6 +7$7,747<7D7L7[7g7t7 +8"888X8`8d8h8l8p8t8x8|8 +D2P203<3O3[3 +606<617=7i9 +:":2:A:S:i: +;';2;?;L;j;u; +>9>D>Q>^>G? +0%070M0 +1#101N1Y1f1s1 +2F3u3 +4!4.4 +8)868C8 +8g9m9}9 +:?:J:W:d: +=M=|= +>Q?W?g?w? +)040A0N0s0~0 +3L6X6m6y6 +3E4\4h4~4 +939_= +2U2q2}2 +253?3Y3c3 +5 6$6(6,6064686<6@6D6H6L6P6T6 +7"777g7|7 +8/8Y8n8 +8#989`9 +:!;[; +$>5>9>L>X>\>l>t>x>|> +?4?E?I?\?l?|? +0 000A0E0X0h0x0 +1,1=1A1T1d1t1|1 +2(292=2P2\2`2p2x2|2 +3"383I3M3`3 +3;4M4d4F6 +1e1Y2~2$5 +5_658 +9)9-91959 +:*:1:?:C:G:K: +;,;U; +;S#>'> +?)?_? +#1'1+1/13171;1?1C1G1K1O1S1 +8#919 +; ;4;v; +D?R?q? +6'7$8 +1w2!3 +6#747 818 +9$979b9 +040J0 +2M394y4 +8P9~9_9B9x: +0]1}1 +6+7_8 +949I9 +9$:[: +<4=u= +0{0t4 +5/5}5 +676;6?6C6G6K6O6S6W6[6_6L7 +:^:l: +:#;e; +;'<\< +? ?$?(?,? +2H3P3X3`3h3 +5%6p7 +7_8m8 +:V;d; +<'=5= +>@>Y>d> +>$>(>,>0>4>8><>@>D>H>L>P>T>X>\>l> +? ?$?(?,?0?4?8?K> +5,5>5K5W5d5v5 +6 6$6(6,6064686<6@6D6H6L6P6T6X6\6`6d6h6l6p6t6x6|6 +'5D5e5i5m5q5u5y5}5 +8C8b8r8 +9<9W9v9}9 +9 :B:g:s: +;5;?;J;Q;n;w; +<5<=Y>w> +>0G1S1Z1e1w1 +2 2$2(2,2024282<2@2D2H2L2P2T2X2\2`2d2h2l2p2t2x2|2 +4%4<4T4j4 +5!585V5Z5^5b5f5j5n5r5v5z5~5 +6"6-636J6W6o6|6 +7&8g8 +949=9 +;!;);L;T;Y;s;{; +;$<0<;?\?l? +0 1V1c1|1 +2#333X3e3r3 +7t7y7 +7X8h8x8 +8;9L9 +: :y: +:M;^; +;!<2< +>k>|> +>??P? +0$0}0 +0Q1b1 +1%262 +4!525 +6\6m6 +607@7P7Y7 +7)8.8?8 +:j:x: +:;;L; +< @?S? +0/0=0L0X0 +222N2j2 +<8=R= += >:>W> +?1?:?C?L?U?[? +163A3K3V3\3 +344:4l4r4x4 +5&6Q6o6 +7K7T7]7f7n7 +7`8|8 +8D9_9n9 +9":(:.:=:w: +;@;n;t; +<+=h=A> +0*070J0\0`0d0h0l0p0t0x0|0 +1 1$1(1,1014181<1@1D1H1L1P1T1X1\1`1d1h1l1p1t1x1|1 +0 0$0(0,0004080@0H0P0X0`0h0p0x0 +1 1(10181@1H1P1X1`1h1p1x1 +2 2(20282@2H2P2X2`2h2p2x2 +3 3(30383@3H3P3X3`3h3p3x3 +5(5,585<5H5L5X5\5h5l5x5|5 +6(6,686<6H6L6X6\6h6l6x6|6 +7(7,787<7H7L7X7\7h7l7x7|7 +8 8$8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8t8t9x9|9 +: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|: +< <$<(<,<0<4<8<<<@ >$>(>0>4><>@>D>H>L>t>x> +?'T2') +Filtered +BOQ11.NSX +Boq11.dbf +TActionList +ActionList1 +TAction +Act_Find +ShortCut +OnExecute +Act_FindNext +Act_FindNextExecute +TFindDialog +FindDialog1 +frDown +frHideMatchCase +frHideWholeWord +frDisableMatchCase +frDisableWholeWord +OnFind +tb_Boq_Ref +wM_KanJub +OnCloseQuery +OnMouseWheel +OnResize +BevelInner +bvRaised +BevelOuter +bvLowered +TComboBox +Style +csDropDownList +clSkyBlue +clRed +ItemHeight +Text +mBtn_Print +RepeatInterval +RepeatStartInterval +)Version 4.01, Copyright ?2000-2001 by Min +wwwwwww +wwwwww +swws330 +3337 +73330 +s3330 +33337 +w33330 +33337wws333 +33333333333 +33330 +33333 +3337s? +w?33 +33s?w +p3773ws7 +77377 +3ws77 +37?w37s733 +ws?s330 +3337s +333337ww333 +ParentColor +clMoneyGreen +333wwwww333 +ww?sw7 +ws3? +3wwss7 +wwws? +w73w730 +37wss3? +33773 +ww33 +33ws +w3303 +3373wwws3 +33w?333 +7?33 +3w33 +&Q. +33wwwwws330wwwp3337s +3w33330 +333373 +7wwww +7wwww3 +wwwwwwws +TwCombo +EnableNull +ListOption.Color +ListOption.Font.Charset +ListOption.Font.Color +ListOption.Font.Height +ListOption.Font.Name +ListOption.Font.Style +ListOption.ShowTitle +ListOption.Titles + 10 + 100 + 1,000 + 10,000 + 100,000 + 1,000,000 +Values.Strings +OnValueChange +cBx_Chasu +mBtn_Rate +mBtn_P_Jab +TPageControl +ActivePage +TbSh_TA +alLeft +HotTrack +MultiLine +TabIndex +TabPosition +tpBottom +TTabSheet +TScrollBox +HorzScrollBar.Range +HorzScrollBar.Visible +VertScrollBar.Range +AutoScroll +clInfoBk +bvNone +TLabel +Label75 + ............................................................... +Label76 + ..................................................................... +Label13 +Label15 +) ................................................................... +LR16 +TwNumLabel +BorderStyle +mlbsLine +BorderWidth +Format +IsNull +Prefix +....................... +Suffix +lb_SAGUP_T +Disp_SAGUP2_T +Ed_R_KongSa_T +0.00# + ................................................................... + ......................................................................... +TRealGrid +tlTop +DataWidth +DataType +wdtFloat +bsNone +EndLines.HorzStyle +psClear +EndLines.VertStyle +Headers.Title.Layout +Indicators.Visible +Lines.HorzStyle +Lines.VertStyle +Lines.CellStyle +Lines.LevelStyle +ScrollBars +ssNone +SelTrans +MaxRowCount +TwNumEdit +Ed_C_KongSa_T +Popup_Add_AMT +AutoSelect +OnEnter +Ed_C_MBuga_T +ListOption.ItemCount + 10 + 100 + 1,000 + 10,000 + 100,000 + 1,000,000 + 10,000,000 +100,000,000 +Pn01_T +Label47 +)........................................................ +Label48 + .................................................................. +Label49 +Label50 + 1) + ......................................................... +Label51 + 2) +> ....................... +Label52 +Label53 + ....................................................... +Label54 + +lb_ANJUN_T +Label56 + + + > ..................................... +Label57 + 11) +> ............................... +tmBae +Label10 + 3) +lb_TBUGUM_T +> ........................ +Disp_DAMT_L_T +Disp_KANNO_T +Disp_DAMT_S_T +Disp_SANBO_T +Disp_KOBO_T +Disp_ANJUN_T +Disp_KITA_T +Disp_TBUGUM_T +lb_YUNBO_T +Label64 + 12) +- +Label65 + 13) +> ............... +Label66 + 14) +Disp_KUNBO_T +Disp_YUNBO_T +Disp_HADOSU_T +( 0.0) + ................. +Disp_KONGSU_T +Disp_HWAN_T +3333?y +3337swsw?33 +33s3733s +37337 +333w +37?7ww3733 +ws?s33; +w3333? + ~50, 50~100 +, 100~300, 300~ ( +SpeedButton15 +:1,000,000 + +:1,000,000) +<(4) +clMaroon +................. +mlbsSunken +Value +TwLabel +SpeedButton25 +Label187 + 15) +Disp_EQIPSU_T +; ; ; + +> ........................... +Action + 9) + 10) +Lbl_AnPum_T +( + ) +Lbl_DAMT_S_T + = 1,000,000 ) +Label201 + 16) + < +> ................. +Disp_BUDM_SM_T +Label202 + 17) +Disp_BUDM_IC_T +Ed_R_KanNo_T +MaxValue +Precision +Ed_R_SanBo_T +Ed_R_KoBo_T +Ed_R_AnJun_T +Ed_R_KiTa_T +Ed_R_TBuGum_T +Ed_R_Hwan_T +Ed_C_AnJun_G_T +Ed_C_AnJun_K_T +ListOption.TitleColor +Ed_R_EQIPSU_T +pn_Anjun_T +Label63 +Label67 + + > ............................... +Disp_ANJUN_T1 +Label70 +Label97 + = [( +) / + 100% +; ; +; ; +>......................... +Ed_R_BUDM_SM_T +Ed_R_BUDM_IC_T +pn02_T +Label58 +> ..................... +Label59 + < + + 5) +6) +15.00000 +>-........................................ +Disp_R_IYUN_C_T +#0.00000 +Label61 + ....................................................................... +Disp_SAGUP1_T +: ~50, 50~300, 300~1000, 1000~ ( +: ~5, 5~30, 30~300, 300~1000, 1000~ ( +: 1/10 + ~50, 50~300, 300~1000, 1000~ ( + %>.................. +(PS) ............................................................... +Ed_R_ILBan_T +Ed_R_Iyun_T +Ed_C_IYUN_M_T +Ed_C_K_MAT_T +Ed_C_IYUN_T +Microsoft IME 2003 + (PS +) < +>........................... + % + 1.4( +)>............................ + %>................................ + < +>........................................ + ............................................................. +) ......................................................... +Ed_C_DOGUP_T +Ed_C_DOGUP_Change +wEd_DOGUP_T + ........................................... + ............... +Disp_TOTAL_T +Spinner +OnChange +ImageIndex +) .................................................................. +Ed_C_MBuga_S +)......................................................... + .............................................................. + <( +) + + ) x +> ...................................... +> ...................... + 20) +> ................ +Disp_PUMJIL_B_S +Disp_SANBO_S +Disp_KOBO_S +Disp_ANJUN_S +Disp_ANJUN_B_S +Disp_TBUGUM_S +Disp_HWAN_S +Label38 + <( +> .................. +Label39 +Label40 +Label120 +Label122 +Label124 + <( +Label126 +Disp_SUDO_S +Disp_BOKRI_S +Disp_SOMO_S +Disp_TONGSIN_S +Disp_JIGUP_S +Disp_DOSEO_S +Disp_PEGI_S +Disp_SEGUM_S + 18) + 19) +SpeedButton16 +> .................... +Label6 + ) x 3.15 + ............................ +Label16 + ...................................... +Disp_ANJUN2_S +Disp_ANJUN1_S +lb_R_AnJun2_S +lb_C_AnJun2_G_S +lb_R_AnJun1_S +lb_C_AnJun1_G_S +lb_C_AnJun2_K_S +Label188 + 21) +Disp_EQIPSU_S +Lbl_AnPum_S +Label203 + 22) + <( +) +Disp_BUDM_SM_S +Label204 + 23) +Disp_BUDM_IC_S +Disp_Add01_S +Ed_R_EQIPSU_S +pn_Anjun_S +Label98 +Label104 +Disp_ANJUN_S1 +Label106 +Label107 +Ed_R_BUDM_SM_S +Ed_R_BUDM_IC_S + 5.500 +> - ................. + %>...................... +Ed_C_DOGUP_S +wEd_DOGUP_S + ............................................ + ............... +cBx_Tot_Add_S +> x ........................... +Disp_SIGONG_S +Ed_R_SIGONG_S +Ed_R_SIGONG_1_S +SclBx_TA +Pn03_TA +Label81 +Label82 +Label84 +Label85 +LR16A +Disp_KONGGUP_TA +Disp_KONGSA_TA +Disp_BUGA_TA +Disp_BUSAN_B_TA +lb_SAGUP_TA +Disp_SAGUP2_TA +Ed_R_KongSa_TA +Disp_Add03_TA +Ed_C_KongSa_TA +Ck_B_KongSa_TA +Ck_B_BUGA_UP_TA +Ed_C_MBuga_TA +> ......................... +> .......................... + ........................ +lb_R_RateDMDL_TA +lb_R_RateDML_TA + + +SpeedButton18 +lb_R_RateMxA_TA +lb_R_RateMxK_TA +Lbl_MxA_TA +Lbl_MxK_TA +lb_ANJUN2_TA +lb_ANJUN1_TA + ............... +Disp_ANJUN2_TA +Disp_ANJUN1_TA +lb_R_AnJun2_TA +lb_C_AnJun2_G_TA +lb_R_AnJun1_TA +lb_C_AnJun1_G_TA +lb_C_AnJun2_K_TA +SpeedButton26 +Label189 +Disp_EQIPSU_TA +Lbl_AnPum_TA +Label205 +Disp_BUDM_SM_TA +Label206 +Ed_R_RateDM_TA +Ed_R_RateDL_TA +Ed_R_RateL_TA +Ed_R_RateDMDL_TA +Ed_R_RateDML_TA +Disp_Add01_TA +Ed_R_KanNo_TA +Ed_R_SanBo_TA +Ed_R_KoBo_TA +Ed_R_AnJun_TA +Ed_R_KiTa_TA +Ed_R_TBuGum_TA +Ed_R_Hwan_TA +Ed_C_AnJun_G_TA +Ed_C_AnJun_K_TA +Ed_C_AnJun_B_TA +Ed_R_KUNBO_TA +Ed_R_YUNBO_TA +Ed_R_KONGSU_TA +Ed_R_HADOSU_TA +Ed_C_KONGSU_A_TA +Ed_C_LTYP_TA +ListOption.Width +Ed_R_RateMxA_TA +Ed_R_RateMxK_TA +Ed_C_RateMxA_TA +Ed_C_RateMxK_TA +......................... +Ed_R_EQIPSU_TA +pn_Anjun_TA +Label108 +Disp_ANJUN_TA1 +Ed_R_BUDM_SM_TA + + +4. +15.0000 +>- ........................... + %>................ +Disp_ANJUNP_TA +Disp_PSAMT_B_TA +Disp_EXCEPT_B_TA +Label193 +Ed_C_IYUN_TA +wEd_DOGUP_TA +cBx_Tot_Add_TA +Label196 +Disp_BUSAN_B_SA +Ed_C_KongSa_SA +Ck_B_KongSa_SA +Ck_B_BUGA_UP_SA +Ed_C_MBuga_SA +Pn01_SA +Label121 + ............................................................ +Label123 +Label125 +Label127 + 9) + + ) x +lb_TBUGUM_SA +Disp_DAMT_T_SA +Disp_KANNO_SA +Disp_PUMJIL_B_SA +Disp_SANBO_SA +Disp_KOBO_SA +Disp_ANJUN_SA +Disp_ANJUN_B_SA +Disp_TBUGUM_SA + <( + ) +<( + <( + <( +SpeedButton24 +lb_R_RateMxA_SA +lb_R_RateMxK_SA +Lbl_MxA_SA +Lbl_MxK_SA +<(5) +Label45 + .......................... +Label62 + ............................ +Disp_ANJUN2_SA +Label190 +Disp_EQIPSU_SA +Lbl_AnPum_SA +Disp_BUDM_IC_SA +Ed_R_RateDM_SA +Ed_R_RateDL_SA +Ed_R_RateL_SA +Ed_R_RateDMDL_SA +Ed_R_RateDML_SA +Disp_Add01_SA +Ed_R_KanNo_SA +Ed_R_SanBo_SA +Ed_R_KoBo_SA +Ed_R_AnJun_SA +Ed_R_TBuGum_SA +Ed_R_Hwan_SA +Ed_C_AnJun_G_SA +Ed_C_AnJun_K_SA +Ed_C_AnJun_B_SA +Ed_R_SUDO_SA +Ed_R_BOKRI_SA +Ed_R_TONGSIN_SA +Ed_R_SOMO_SA +Ed_R_JIGUP_SA +Ed_R_DOSEO_SA +Ed_R_SEGUM_SA +Ed_R_PEGI_SA +Ed_C_LTYP_SA +Ed_R_RateMxA_SA +Ed_R_RateMxK_SA +Ed_C_RateMxA_SA +Ed_C_RateMxK_SA +Ed_R_EQIPSU_SA +>- .............................. +Label170 +Disp_ANJUNP_SA +lb_C_AnJunP_K_SA +Label194 +Label195 +Disp_PSAMT_B_SA +Disp_EXCEPT_B_SA +Ed_R_AnJunP_SA +wEd_DOGUP_SA +cBx_Tot_Add_SA +wEd_TOTAL_SA +clBtnText +SizeGrip +UseSystemFont +lbl_Kobo_Type +Label4 +lbl_Kong_Type +Lbl_Kong_Kikan +14. +15. +16. + (1) + (2) + (3) + (4) + (5) + (6) + (7) + (8) + 10% + 10%) +(0) +(1) +(2) + = 1 : 1400 +, 2 : 900 +, 3 : 570 +, 4 : 370 +, 5 : 220 +, 6 : 140 +, 7 : 140 +, 2 : 800 +, 3 : 520 +, 4 : 340 +, 5 : 210 +, 6 : 130 +, 7 : 130 +DesignSize +TabHeight +OnChanging + : [ ] +: [ ] + ( +): [ ] +Ed_C_KWANGUP_D_d +Ed_C_JODAL_del +pnSet_Optn +Label175 + : +Label176 +Label68 +Label185 +Label200 +cmBx_ANJUN +cmBx_Buga1 +(3) +cmBx_Kwan_Sa1 +Ed_C_SANGSI +cBx_Dog_Jeol +pn_CH_BO +Label103 +cBx_CH_BO +cmBx_Anjun_DN +cmBx_AnPum +pnSet_Wonga +Label178 + : [ ] +Label179 +Label180 +Label181 +Label182 +Label69 +Label184 +Microsoft Office IME 2007 +Label183 +Label29 +:[ 5.000 ]% +Label173 +akLeft +akTop +akBottom +EditStyle +wesBoolean +wdtBool +EditColor +EditFormat +wesNumber +999999999999 +MinValue +#,# +wdtSmall +Headers.Title.Font.Charset +Headers.Title.Font.Color +Headers.Title.Font.Height +Headers.Title.Font.Name +Headers.Title.Font.Style +Headers.Title.Caption +FixedStyle.CellStyle +wcsNormal +FixedStyle.Color +FixedStyle.Options +wfxColumnColor +wfxEditing +wfxSelecting +wgoCancelOnExit +wgoEditing +RowCount +ssVertical +OnCellEnter +OnCellExit +OnRowChange +OnAfterPost +OnValueChanged +RGrid_Base2 +Ed_Y_KONGSU +Ed_R_KONGSA +cmBx_Kwan_Comb +TabVisible +pnSet_Etc_Amt_del +lb_ANJUN_del +lb_PEGI_del +lb_KOLJAE_del +akRight +wesPickList +False +True +Defaults +333333w +3337wsww +3337?3373333 +3333s +3s33330 +333337 +333337?7333333 +333333ss333333033333337 +3333330333333373333 +333033333337 +333333033333337?333333 +333333ss +33333737?3333 +3333s33s +3337w +ww33333 +333333ws333 +wdtLong +rGrd_Kan_AmtExit +wgoEnterToTab +TPopupMenu +AutoHotkeys +maManual +OnPopup +TMenuItem +mi_From_Nae +mi_From_List +mi_Recall +mi_From_Joong +tb_Rate_M +Rate_M.dbf +Rate_A.dbf +Rate_B.dbf +Rate_RA.dbf +Act_Call_Calc +AutoCheck +Act_Next_Tab +Act_Prev_Tab +wM_KanJub_K +bsSingle +ClientHeight +ClientWidth +crHandPoint + (&Q) +Label2 +(+=) +(+==) +(+===) +(+====) +(+=====) +Bevel +pbNone +pbRaised +clGradientInactiveCaption +clGradientActiveCaption +Title.Height +GroupMode +DEFAULT_CHARSET +0.##;;# +wesDataList +wdtWord +0.#####;;# +D_Typ +Headers.Visible +OnBeforePost +"(BDCODE1="T") .and. (BDCODE1>"T2") +wM_KAN_RATE +(&E) +33339 +3337w37w +937? +33ww33 +33w? +s339 +3337w37w33339 +(&S) +3333wwww3333 +3333w +3w3333 +w3333 +w7swwww +ww77ww +w7ww7w +?ww3 +swws3 +33333www33333 +(&P) +sBtn_Call +33333333333? +3337333 +w7w7303 +sw7739 +w7ww +3wwwws7 +3wwww +33wwwwww3339 +3333337w3333339 +3333337s333333033333337333333 +ListOption.Ctl3D +Tab_Rn +sc_Bx_R +Panel9 +TBevel +Bevel1 +Shape +bsTopLine +Bevel2 +rGrd_Rate_Kobo +Title.CellStyle +wcsUp +wdtShort +Lines.LevelColor +rGrd_Rate_Anjun +rGrd_Rate_R2 +rGrd_Rate_Hwan +rGrd_Rate_Bojng + ] * + 12345 +- 123 +) * 00.000 % +rGrd_Rate_Hado +00.000 % +Panel12 +Panel13 +alBottom +Bevel3 +Panel14 +Panel15 +wNumEdit272 +wNumEdit317 +wNumEdit318 +wNumEdit319 +wNumEdit320 +wNumEdit321 +wNumEdit324 +wNumEdit325 +wNumEdit326 +wNumEdit327 +wNumEdit328 +wNumEdit329 +wNumEdit366 +rGrd_Rate_Eqip +wNumEdit368 +wNumEdit369 +wNumEdit370 +wNumEdit371 +wNumEdit375 +wNumEdit376 +wNumEdit377 +wNumEdit378 +wNumEdit379 +wNumEdit367 +wNumEdit372 +wNumEdit373 +wNumEdit374 +wNumEdit427 +wNumEdit428 +wNumEdit430 +wNumEdit441 +wNumEdit442 +wNumEdit443 +wNumEdit444 +wNumEdit445 +wNumEdit446 + % + % +Panel10 +TImage +Image1 +Center +Picture.Data +TMetafilehd + EMF +EMF+ +EMF+"@ +EMF+*@ +Stretch +Panel8 +rGrd_Rate_R +rGrd_Rate_R1 +00.00# +wNumEdit128 +wNumEdit129 +wNumEdit130 +wNumEdit131 +wNumEdit140 +wNumEdit141 +wNumEdit142 +wNumEdit143 +wNumEdit144 +wNumEdit181 +wNumEdit182 +wNumEdit183 +wNumEdit184 +wNumEdit185 +wNumEdit186 +wNumEdit187 +wNumEdit188 +wNumEdit189 +wNumEdit190 +wNumEdit191 +wNumEdit192 +wNumEdit193 +wNumEdit194 +wNumEdit195 +wNumEdit196 +wNumEdit197 +wNumEdit198 +wNumEdit199 +wNumEdit200 +wNumEdit201 +wNumEdit202 +wNumEdit203 +wNumEdit204 +wNumEdit246 +wNumEdit247 +wNumEdit248 +wNumEdit249 +wNumEdit250 +wNumEdit251 +wNumEdit252 +wNumEdit253 +wNumEdit254 +wNumEdit255 +wNumEdit256 +wNumEdit257 +wNumEdit258 +wNumEdit259 +wNumEdit229 +wNumEdit260 +wNumEdit261 +wNumEdit262 +wNumEdit263 +wNumEdit264 +wNumEdit265 +wNumEdit266 +wNumEdit267 +wNumEdit268 +wNumEdit322 +wNumEdit323 +wNumEdit380 +wNumEdit381 +wNumEdit382 +wNumEdit383 +wNumEdit384 +wNumEdit385 +wNumEdit386 +Panel16 +wNumEdit447 +wNumEdit448 +wNumEdit449 +wNumEdit450 +wNumEdit451 +wNumEdit532 +wNumEdit533 +wNumEdit534 +wNumEdit536 +wNumEdit537 +wNumEdit538 +wNumEdit540 +wNumEdit541 +wNumEdit542 +wNumEdit544 +wNumEdit545 +wNumEdit546 +wNumEdit547 +wNumEdit548 +wNumEdit549 +wNumEdit550 +wNumEdit551 +wNumEdit552 +wNumEdit553 +wNumEdit554 +wNumEdit555 +wNumEdit556 +wNumEdit557 +Panel11 +wNumEdit484 +wNumEdit485 +wNumEdit486 +wNumEdit487 +wNumEdit488 +wNumEdit489 +wNumEdit490 +wNumEdit491 +wNumEdit492 +wNumEdit493 +wNumEdit494 +wNumEdit495 +wNumEdit496 +wNumEdit497 +wNumEdit498 +wNumEdit499 +wNumEdit500 +wNumEdit501 +wNumEdit502 +wNumEdit503 +wNumEdit504 +wNumEdit505 +wNumEdit506 +wNumEdit507 +NoColTitles +wNumEdit431 +wNumEdit432 +wNumEdit433 +wNumEdit435 +wNumEdit436 +wNumEdit437 +wNumEdit438 +wNumEdit440 +Tab_M +sc_Bx_M +~ 5 +5 ~ 30 +~ 6 +6 ~ 12 + : ( +> x %) + 50 + : %, 50 +~ 300 + : %, 300 + : % + 5 + : %, 5 +~ 30 + : %, 30 +rGrd_RateM +Me_0100 +Me_0101 +Me_0102 +Me_0103 +TShape + 6 ~12 + : %) +Brush.Color +clMenu +Me_1301 +Me_1302 +Me_1200 +Me_1201 +Me_1202 +Me_1100 +Me_1101 +Me_1102 +Me_1105 +Me_1106 +Me_1107 +Me_1205 +Me_1206 +Me_1207 +Me_1305 +Me_1306 +Me_1307 +Me_1500 +Me_1501 +Me_1502 +Me_1600 +Me_1601 +Me_1602 +Me_1700 +sc_Bx_B +rGrd_RateB +wNumEdit1 +wNumEdit2 +wNumEdit3 +wNumEdit4 +wNumEdit5 +wNumEdit6 +wNumEdit7 +wNumEdit8 +wNumEdit9 +wNumEdit10 +wNumEdit11 +wNumEdit12 +wNumEdit13 +wNumEdit14 +wNumEdit15 +wNumEdit16 +wNumEdit17 +wNumEdit18 +wNumEdit19 +wNumEdit21 +wNumEdit62 +wNumEdit63 +wNumEdit64 +wNumEdit65 +wNumEdit66 +wNumEdit67 +wNumEdit68 +wNumEdit69 +wNumEdit70 +wNumEdit71 +wNumEdit72 +wNumEdit73 +wNumEdit74 +wNumEdit75 +wNumEdit76 +wNumEdit77 +wNumEdit78 +wNumEdit79 +wNumEdit80 +wNumEdit81 +wNumEdit82 +wNumEdit83 +wNumEdit84 +wNumEdit85 + ~ 5 + 5 ~ 30 +30 ~ 50 +Panel5 +BevelWidth +wNumEdit127 +Rate.dbf +TOpenDialog +Dlg_Call_Def +DefaultExt +JB_1 +FileName +)\System\2004_ +.JB_1 +ofHideReadOnly +ofExtensionDifferent +ofEnableSizing +tb_Call_DEF +jjjjj +jjjj +Cjjj +DAGMINB +DAMINB +EXITGMINB +EXITMINB +GLUPIGMINB +GLUPIMINB +IGNOGMINB +IGNOMINB +IKSICGMINB +IKSICMINB +MINABOUT +NEGMINB +NEMINB +POMOCGMINB +POMOCMINB +RETRIGMINB +RETRIMINB +STRELA +SVEGMINB +SVEMINB +SYNEDITINTERNALIMAGES +SYNEDITWRAPPED +TMINBUTTON +DVCLAL +PACKAGEINFO +TWM_GETAMT +TWM_KANJUB +TWM_KANJUB_K +TWM_KAN_RATE +HANDMINB +MAINICON +Preparing... +Loading data... +Upsampling... +Transfering... +LZ77 decompression error.2JPEG decompression error. Unexpected end of input. +Improper JPEG strip/tile size. +Improper JPEG component count. +Improper JPEG data precision. +Improper JPEG sampling factors. +Bogus JPEG tables field.%Fractional JPEG scanline unsupported. +Warning +9Cannot load image. Invalid or unexpected %s image format. Invalid color format in %s file. +Stream read error in %s file.1Cannot load image. %s not supported for %s files..Cannot load image. CRC error found in %s file.6Cannot load image. Compression error found in %s file.:Cannot load image. Extra compressed data found in %s file.1Cannot load image. Palette in %s file is invalid.>Cannot load PNG image. Unexpected but critical chunk detected. +The compression scheme isJConversion between indexed and non-indexed pixel formats is not supported.8Color conversion failed. Could not find a proper method.AColor depth is invalid. Bits per sample must be 1, 2, 4, 8 or 16.ESample count per pixel does not correspond to the given color scheme.5Subsampling value is invalid. Allowed are 1, 2 and 4.CVertical subsampling value must be <= horizontal subsampling value. +SGI true color images +ZSoft Paintbrush images +Word 5.x screen capture images +Alias/Wavefront images SGI true color images with alpha +SGI black/white images +Photoshop images +Portable map images +Portable pixel map images +Portable gray map images +Portable bitmap images +Autodesk images +Kodak Photo-CD images +Dr. Halo images +Paintshop Pro images +Portable network graphic images +"Run length encoded Windows bitmaps"Device independant Windows bitmaps +Encapsulated Postscript images +Windows icons +Windows metafiles +Windows enhanced meta files +JPG images +JPEG images +JPE images +JFIF images +Truevision images +Tagged image file format images +Macintosh TIFF images +PC TIF images +GFI fax images +SGI images +'oversubscribed dynamic bit lengths tree#incomplete dynamic bit lengths tree"oversubscribed literal/length tree +incomplete literal/length tree empty distance tree with lengths +invalid block type +invalid stored block lengths#too many length or distance symbols +invalid bit length repeat +incorrect data check +unknown compression method +invalid window size +incorrect header check +need dictionary +Attempt to register %s twice. +Windows bitmaps +Saving... +Converting... +Rendering... +Copying... +Optimizing... +JPEG error #%d +stream end +file error +stream error +data error +insufficient memory +buffer error +incompatible version +invalid distance code +invalid literal/length code ++Image height too small for contained frames*Image width too small for contained frames Failed to store GIF on clipboard!Image exceeds Logical Screen size&No global or local color table defined +Invalid pixel coordinates +Unsupported PixelFormat +Invalid image dimensions +Image has no DIB +Invalid stream operation +Color not in color table +Color table is empty +Image is empty +Invalid reduction method +GIF Image +Loading... +Invalid color index +Unsupported GIF version +Invalid GIF signature7Invalid number of colors specified in Screen Descriptor6Invalid number of colors specified in Image Descriptor +Unknown extension type +Invalid extension introducer%Failed to allocate memory for GIF DIB +Decoder bit buffer under-run +Circular decoder table entry +Invalid Image trailerAInternal error: Extension Instance does not match Extension Label,Unsupported Application Extension block size +Unknown GIF block type'Object type not supported for operation +Invalid GIF data +QRequest rejected because the client program and identd report different user-ids. +Unknown socks error. +Socks server did not respond.$Invalid socks authentication method.%Authentication error to socks server. +General SOCKS server failure."Connection not allowed by ruleset. +Network unreachable. +Host unreachable. +Connection refused. +TTL expired. +Command not supported. +Address type not supported. +Winsock stack +Premature end of data +Color table overflow +!Software caused connection abort. +Connection reset by peer. +No buffer space available. +Socket is already connected. +Socket is not connected..Cannot send or receive after socket is closed.#Too many references, cannot splice. +Connection timed out. +Connection refused."Too many levels of symbolic links. +File name too long. +Host is down. +No route to host. +Directory not empty +Request rejected or failed.5Request rejected because SOCKS server cannot connect. +Operation already in progress. +Socket operation on non-socket. +Destination address required. +Message too long. +Protocol wrong type for socket. +Bad protocol option. +Protocol not supported. +Socket type not supported."Operation not supported on socket. +Protocol family not supported.0Address family not supported by protocol family. +Address already in use. Cannot assign requested address. +Network is down. +Network is unreachable. Net dropped connection or reset. +Connected. +Disconnecting from %s. +Not connected. +Coding table entry not found. +Chunk Started +%s is not a valid service. +Socket Error # %d +Interrupted system call. +Bad file number. +Access denied. +Bad address. +Invalid argument. +Too many open files. +Operation would block. +Operation now in progress. +Already connected. +Cannot allocate socket. +Connection Closed Gracefully.;Could not bind socket. Address and port are already in use.4Failed attempting to retrieve time zone information. +Not enough data in buffer. +Winsock Initialization Error. +%s could not be loaded. +Set Size Exceeded.1Only one TIdAntiFreeze can exist per application.=InterceptEnabled cannot be set to true when Intercept is nil. +Intercept value is not valid +Object type not supported. +No data to read. +Resolving hostname %s. +Connecting to %s. +- 0 +.. ) + "0%" + "20%" + / 10 + 7) +(2008 +) < ( +(2012 + "15%" +) - +) + + .. ) +(4) +(5) +(6) +(7) +(8) +) : + [16. + ( + " + (-) + [ 5.0 ] +(&D) +) * +] * + (< +> x ++ +.JB_1| +(A)|*_ +.JB_A| +(B)|*_ +.JB_B +VS_VERSION_INFO +StringFileInfo +041203B5 +1.0.1.0 +Edit Jabbi +Consultants for Project ManageMent CO.,LTD +LegalTrademarks +ST_Kanjub +By Mini +VarFileInfo +Translation +떲Pj@宛 +횏픓嶢 +횏픘뗭3픘hy +矣]횏픺- +떲S꺞韆 +矣]횏픺- 0M +떲U뗭3픘h) +矣]횏픺-$0M +떲U뗭3픘h9"@ +矣]횏픺-(0M +矣]횏픺-,0M +矣]횏픺-00M +홛뗭3픘h +矣]횏픺-40M +홛뗭3픘hI#@ +矣]횏픺-80M +矣]횏픺-<0M +矣]횏픺-@0M +떲U뗭3픘h +矣]횏픺-D0M +矣]횏픺-H0M +矣]횏픺-L0M +矣]횏픺-P0M +矣]횏픺-T0M +떲U뗭3픘h10@ +矣]횏픺-X0M +TMINCustomButton맖4@ +TMinButton먾5@ +ParentFont율^ +ParentBiDiMode떲U뗭QSV꾋t +up틏H@ +도움말(&H) +예(&Y) +아니오(&N) +닫기(&C) +재시도(&R) +무시(&I) +전체(&A) +뎊d3핃 +$3핃D$ +SHB딯$ +꺞 _^[횏핂멃 +3픘hHM@ +뛇澮쇓 +꽵t:꾗t +[횏픙뗱f긼 +꽵t&떿f씀 +뛇鋪逞 +儀_^YY]홙hXP@ +_^[횒@ +뛇澮矩 +꽵u+땽\ +ⅴⅴ꺞 +R P뛆$ +RP꽵ui +딼훺펨 +딼핆펨貶 +뛘펻췄贊 +딼펻펨뮈 +뛘툔췄되 +딼툔펨꺙 +뛘큾췄 +딼쵉펨毓 +뛘쮮췄暾 +딼쮮펨♥ +銀_^[뗥]횒@ +꺢AP뛽` +딢澮뿯 +딢鋪눕 +딢麟饒 +딢殲뮢 +應^[뗥]횒@ +_^[횖뗃늿 +R|횏픙뗱Jt +QD뗵띀 +_^[홆ANDMINb +뗚뗱꾗 +R|[횒@ +R|[홛뗭3픘haz@ +矣]횏픺-\0M +矣]횏픺-`0M +떲U뗭3픘he +矣]횏픺-d0M +矣]횏픺-l0M +矣]횏픺-p0M +TSynHighlighterListSV꾋t +뗚뗱딣 +U뗭3픘h +3웰x0M +矣]횒@ +矣]횏픺-|0M +홛뗭3픘h탞@ +횏픘뗭3픘h뜊@ +홛뗭3픘h흲@ +총합계 +총대계 +광역계 +광역총계 +광역대계 +StmaType_떲젎@ +StmaType_떲휁@ +뗁뗕딢澮: +3픘h쓾@ +U뗭3픘h뒞@ +EIdAlreadyConnected쩁@ +EIdConnClosedGracefullyU뗭SVW꾋t +꺞鳥쫟 +뗲뗚뗹딲 +U뗭SV꾋t +꺞鳥_s +뗚뗱덻 +矣]횏픺-,1M +矣]횏픺-01M +SVW꾋t +꺞鳥죓 +딢鋪Xo +딢澮뻩 +딼淸혂 +딢澮(o +떸딼澮뇆 +떸딼澮Jn +뛇澮픪 +SV뗳뗗뛅 +矣]횏픺-41M +뗈f딼打 +뗱뛇횾뛇薺 +뗹뛇픐뛇齊쑇@ +딼펻췄쩴 +붅^[횖SV뗚뗱떸뗕樂i +뗒믦=i +뛇澮nh +뛇淸픤 +SV3핃꿃 +]請2떇L +]좊'뜒D +U뗭QSVW뉾 +3픘h옱@ +뛇澮Ce +떲U뗭j +S뗗3픘h +덭錫覩@ +덭訝惜@ +덭甕彛@ +덭痢稗@ +뛇澮2d +덭見怡@ +덭龜覇@ +3픘h젼@ +P뗅딼禍 +뛇澮 b +3픘h臍@ +3픘h뺐@ +딢僚뇁 +딢怏hi +3픘h슧@ +딢澮귷 +뛇澮G` +矣]횏픘뗭j +3픘h㉡@ +s>뛇澮몸 +딼桓@1M +뛇澮9_ +떲U뗭3픘h슁@ +矣]횏픺-D1M +EIdMoreThanOneTIdAntiFreezeU뗭j +儀떾꾗t +뗚뗱3웰x +꽵t+죢 +R0Z[횖U뗭3픘h瓷@ +矣]횏픺-H1M +뛘責h&M +뛇淸dV +홛뗭3픘h籃@ +矣]횏픺-L1M +矣]횏픺-P1M +뗚뗱3픘h +鷹떾꾗t +뗚뗱“%M +鉥떾擾 +^[홛뗭j +SV뗲뗚3픘h +뛘澮9X +뛘鋪$X +뛇怏:O +3핃E足 +뗕떸熬 +떲R좱'M +SVWQ뗲뗻뗗떿碗N +Z_^[홙뗚떸빚 +뗊떸玉M +[횏픑R≪%M +勤U뗭딢 +PQR줈%M +뛇怏힜 +@~!뛘責t$M +儀_^[뗥]횖U뗭겺賃 +륶뗭딢 +勤떲U뗭딢 +떲R죆%M +勤륱죋%M +뛘靜L&M +儀떸_^[뗥]횒@ +3픘h註@ +勤륱좵'M +勤륶뗭j +SVW뗗3픘h搢@ +SV뗚뗱끱t +떾뗒矮F +^[횏펨쬑 +^[홙VW꾋t +뗚뗹뗲 +떿_^[횒@ +딢澮gF +뛇澮sE +딢鋪8M +뛇僚SC +떲U뗭3픘h턱@ +矣]횏픺-T1M +TIdStackVersion떲훰@ +EIdStackError떲 +Rl뗱딼 +B떿;0u +S`뗗껢 +u!뛘禍4$M +儀떸[Y]홛뗭j +SV뗳뗗3픘h¶@ +뛇澮?? +떿뗒腕> +뗒좹$M +뗒※%M +뗒좱%M +뗒죩&M +뗒좭'M +뗒좩'M +뗒※&M +뗒●$M +뗒좩$M +뗒죱%M +뗒∧%M +뗒좵&M +뗒좵$M +뗒「$M +뗒좩%M +뗒〃&M +뗒죭%M +뗒줁&M +뗒좿&M +應^[뗥]횖S뗗꺤 +꽵t$딢淸X +3픘h凉@ +矣]횏픺-X1M +TWorkMode떲 +TIdComponent샺@ +떾^[횖SV猥5 +Q뗗뗃뗊딠D +S@^[횒@ +L캰f긹: +딯캰Q뗗뗃뗊딠< +뗅뗕딣L +L푑_^[횏픘뗭3픘h +TIdSocketHandle떲 +TIdSocketHandle솨@ +SVW뗚뗱 +SV뗗딠 +^[횏픘뗭SQ딲 +U뗭SQ딲 +륶뗭SQ딲 +뛇鋪t0 +儀^[YY]횏픓VW뗺뗳뗗뛅 +u!뛘責\&M +tc죩'M +u{죩'M +^[뗥]횏픓VW뗳뗗떸溫- +뗹떾蜈- +뗕떸汪8 +딣 덪 _^[홙Q뛒 +StZ[횏픓Q뛒 +R뛒 R뛎$ +SpZ[횏픓뗗힏 +3핃C [횏픘뗭3픘h +矣]횏픺-`1M +矣]횏픺-d1M +홛뗭3픘h띴@ +矣]횏픺-h1M +홛뗭3픘h토@ +矣]횏픺-l1M +홛뗭3픘h歆@ +矣]횏픺-p1M +矣]횏픺-t1M +STmaFunc_떲 +조림인부 +특수비계공 +동발공(터널) +용접공(일반) +용접공(철도) +노즐공 +보링공(지질조사) +치장벽돌공 +샷시공 +창호목공 +함석공 +건설기계운전기사 +운전사(운반차) +운전사(기계) +중기운전사 +중기조장 +중기운전조수 +기계공 +기계설치공 +준설선기관장 +준설선전기사 +고급선원 +보통선원 +원자력배관공 +원자력제관공 +원자력특별인부 +원자력케이블전공 +원자력계장공 +원자력덕트공 +원자력보온공 +고급원자력비파괴시험공 +특급원자력비파괴시험공 +시험관련기사 +시험관련산업기사 +시험관련기능사 +보통인부 +조력공 +비계공 +형틀목공 +용접공 +콘크리트공 +보링공 +조적공 +창호공 +덕트공 +인력운반공 +건설기계운전사 +화물차운전사 +일반기계운전사 +건설기계조장 +건설기계운전조수 +기계설비공 +준설선기관사 +플랜트배관공 +플랜트제관공 +플랜트특별인부 +플랜트케이블전공 +플랜트계장공 +플랜트덕트공 +플랜트보온공 +비파괴시험공 +특급품질관리원 +고급품질관리원 +초급품질관리원 +불도우저 +불도우져 +로우더 +로울러 +모우터 +브레이카 +백호우 +크럿셔 +무한괴도 +청공기 +파워트로웰 +주철관절단기 +콤펙터 +모르터 +콘베이어 +마아카 +가솔린엔진 +디젤엔진 +리핑암 +(리핑) +발파암 +(발파) +머케덤 +크랏샤 +크라샤 +휘니셔 +디이젤 +페이퍼 +트렉터 +보오링 +뷰우터 +탑재형 +앵커바아지 +피이더 +플렌트 +리프트트럭 +크렘쉘 +사일로(SILO) +수동식더블 +수동식싱글 +자동식더블 +자동식싱글 +케이싱(CASING) +스킵버킷(SKIP BUCKET) +안정기(스테빌라이저) +페이버(피니셔) +취부기(녹생토 암절개면 보호식재용) +리더(LEADER +해머(전동식) +해머(유압식) +크레인(트럭) +크롤러드릴(공기식) +호안블럭 +트랜처 +(할증율:1.00) +할증율:1.00 +할증율:1.0 +(토사) +(무한궤도) +(무한궤도 +굴삭기 +불도저 +브레이커 +크러셔 +무한궤도 +천공기 +절단기 +콤팩터 +모르타르 +컨베이어 +가솔린 +(전석) +(암석) +머캐덤 +피니셔 +페이버 +트랙터 +탑제형 +앵커바지 +플랜트 +지게차 +크램쉘 +사일로 +수동더블드럼 +수동싱글드럼 +자동더블드럼 +자동싱글드럼 +케이싱 +스킵버킷 +스테이빌라이저(안정기) + 피니셔 +취부기 +크레인(타이어) +크롤러드릴 +호안블록 +트랜쳐 +굴착기 +nr(개소) +일반공종 +안전관리비 +품질관리비 +미확정설계공종(PS) +제요율적용제외공종 +제비율적용제외공종 +작업설 등 +매입세 +관급자재공종 +관급자재대(도급자) +관급자재대(관급자) +비과세자재대 +조달수수료 +딼澮r4 +3픘h犧@ +꺞諂<$썚U天뷐@ +떾딼澮 +t1죺&M +떸딼鋪~ +uT죺&M +u핈E曼 +딢큁퉀 +딢촒퉝 +딢짶뱅 +딲쐨E졋P +딲뵇E샋` +뛘뙅E淸u +딲뙇E맳p +뛘꼱E淸: +딲꼵E댖 +딶8뛿| +t"죺&M +應뗥]횒@ +뗊죺&M +딼淸l! +꽵uCh, +연결코드 검색중... +남은항목:【 +】연결코드 검색중... +澄뛿덢 +U뗭Q퉦 +P딼霽D +뗊뛇題 +P딼霽P +P딼霽\ +뛇淸Y詰 +딢澮[淆 +뗹죺&M +딢澮-淆 +떿+E經| +딼僚b畵 +뗒娃型 +딼淸A畵 +뗊뛇川 +뗒壅型 +뛇殲8型 +뗒翫航 +딼淸3型 +뗒鰲航 +P딼錫D +뗊뛇仙 +P딼錫P +뛇僚Z驃 +P딼錫\ +딢殲]驃 +뗕瑥鈑 +뗕玩託 +딼僚.鈑 +뗕屋託 +뛇鳥}託 +딼鳥b託 +뗕阮萃 +딼鳥8託 +뗕瓮萃 +딢鳥$萃 +딢怏>梢 +굴림체 +확 인 (&O) +파일열기에러 +계산코드 집계를 위한 파일을 열지 못했습니다. +코드들은 순환참조된 것으로 +해당 코드와 그것을 참조한 단가는 계산을 하지 않습니다. +순환참조목록표 +[순환참조에러 목록표] 아래 코드들을 확인하세요. +딹鳥|腫 +뗒燎靖 +뗒豌靖 +딹鳥w靖 +떿뷰$A +딢澮L靖 +뗒尿澱 +끐ue뛿旣 +끐uC뛿械 +뗒樂長 +끐u!뛿힝 +뗒頑長 +꽵u)뜊퀼 +뛇澮#長 +순환참조에러!!!( +덭暴E抛5 +斯嗇엜 +뛇峰p溜 +낔u-죺&M +P뗖뛿좤 +뛇僚u蕓 +끐~"뛿섮 +뛇僚b療 +뗖姚澳 + 코드 순환참조 검토중... + 체크중...U뗭j +3픘hL,A +3픘h/,A +CODE="M" .and. (AT("M%",UPPER(UNIT)) > 0) .and. ( SUBSTR(ALLTRIM(NAME), 1, 2)="잡" ) .and. ( AT(SUBSTR(ALLTRIM(NAME), 3, 2),"품유") > 0 ) .and. (AT("비",NAME) = 0) +꾗t9죺&M +儀[뗥]횒@ +澄_^떿= +t!뛿腫 +t#뛿卄 +U뗭Q믓 +3픘h캨A +꺜h瓮索 +딢澮!型 +뛇퇳荊 +딢澮X鈑 +딢澮1鈑 +붅P뛿섮 +딢澮Q託 +딢澮!託 +딢澮[萃 +딢澮+萃 +u_뛿夫 +딢澮D梢 +tD뛿숫 +ub뛿⅝ +딢澮x輯 +딢澮E輯 +딢澮P只 +딢澮1策 +딢澮s策 +딢澮>策 +꽵t묌3 +딢澮Y策 +딢澮m輯 +딢澮8腫 +딢澮W靖 +딢澮*靖 +꽵t0뛿뛀 +딢澮d澱 +딢澮4澱 +u_뛿豹 +딢澮:卄 +tD뛿緬 +ub뛿퀴 +딢澮n溜 +딢澮;溜 +딢澮g蕓 +딢澮r療 +딢澮?療 +딢澮n澳 +딢澮A澳 +딢澮x苒 +딢澮(額 +깬甕檢 +딢澮l沁 +깬燿龕 +딢澮=沁 +깬琓龕 +딢澮d廬 +뛇僚1혠 +릫E齊DVA +릫E罹TVA +릫E翁dVA +릫E雅tVA +릫E僊꼁A +嗇엞rhDVA +4릈쮄A +嗇엝;hDVA +떿搖肥 +릫E牘DVA +릫E克큋A +릫E遣TVA +릫E횐dVA +릫E캤DVA +딼훺험d婦 +릫E은큋A +딼핆험 +릫E성TVA +릫E맏dVA +릫E뉴DVA +딼큾험l癖 +릫E갰TVA +딼컠험;癖 +릫EШdVA +딼쵉험 +u1줎%M +릫E㉩큋A +꽵tr〈$M +uW줎%M +릫Eㅊ꼁A +딼쨱험 滅 +끐t1줎%M +릫E졋꼁A +딼젉험"潑 +嗇엝>뗿 +붅P뛇륯翁< +뛇먫:엎 +붅P뛿` +붅P뛿0 +^[]횒@ +딢煥$qA +뛇怏F빤 +뛇ㅸ 빤 +P뛇봒凹7 +뛘봛癰벗 +뛇ㅸa벗 +뮹P뛿羅 +뮹P뛿麵 +뮹P뛿面 +뮹P뛿섪 +뮹P뛿섩 +4괝y鉉 +t0뛇훘 +t,뛇쁦 +꺚스꾘A +뛇鳥V얔 +뛇麟'얔 +꺜썼)쒩 +꺞諂<$쏂e +꺞諂<$쏂/ +붅P뛿腋 +붅P뛿덤 +붅P뛿꾽 +4괝y鉉L +RYVW뗲띁瑾 +붅P뛿梟 +붅P뛿戒 +뛆쫑Pi +R^띁龜 +꺜곮3놝 +꽵u(죺&M +x괰uOi +u1h잖A +VW띁쳤 +뮹P뛿좜 +꽵ut″%M +嗇엝8j +꺞諂<$쏂h澱 +읋P뛿힉 +덨훾E퇠i +뮹P뛿惺 +4괝y鉉n愁 +꺞諂<$쏂a肥 +꺞諂<$쏂+肥 +붅P뛿姙 +붅P뛿숑 +붅P뛿뚹 +뮹P뛿橫 +꺞諂<$쏂:桃 +꺞諂<$쏂7茶 +꺞諂<$쏂o拉 +꺞諂<$쏂 +꺞諂<$쏂z旣 +꺞諂<$쏂2旣 +u)뛿흼 +tz뛿곯 +t?뛿⑭ +뮹P뛿덑 +꺞諂<$쏂-械 +뛗홌뛿ㆃ +꽵t(딢 +꽵t%딢 +꽵t#딢 +꺞諂<$쏂 층 +꺞諂<$쏂d층 +꺞諂<$쏂j짓 +꺞諂<$쏂f짓 +t)뛿흰 +tv뛿곪 +t;뛿⑫ +꺞諂<$쏂L웨 +꺞諂<$쏂W엎 +RYV뗲띁龜 +Du>뛿ㆂ +페이지 넘김 +(해당코드가 없음) +**삭제** +사용된 +4] 코드는 시간당 산출계수가 적용되지 않은 코드입니다. +U뗭Q퉂 +K끱u톱 +딼炅꽷( +딼涇는( +$쌻E홋 +uO죜'M +딻섪뛿夫 +ⅴfⅳ_^iE홋 +뛆쫑PiE홋 +RYVW뗲띁龜 +澄_^iE홋 +꽵u|뛿桂 +떸H끐~7뎲X +혢U훱|먟 +혢D샼iU홋 +I[뜑逵 +uQiE홋 +I[뜑契 +I[뜑龜 +I[뜑隙 +I[뜑瑾 +RVW뜶龜 +澄_^h뚻A +꺞諂<$쏂\욦 +(제외금액) +U뗭Q퉭 +u삆E댖 +澄_^떸= +YVW뗲띁짢 +嗇엞4″%M +뛆쫑P떸 +澄_^떸 +붅P뛿縱 +붅P뛿절 +붅P뛿멅 +斯嗇엟 +斯嗇엟t떸 +斯嗇엟X떸 +斯嗇엟<떸 +斯嗇엟 떸 +澄_^껢 +澄_떸= +W뛲쫑띁햯 +澄_W앤 +붅P뛿燿 +붅P뛿뫘 +붅P뛿덡 +붅P뛿憔 +금액과다 ! +코드번호를 기록후 확인(재계산) 하세요. +계산은 계속진행 합니다 +U뗭Q퉘 +꽵tuh,"B +떿Hf껇csA +s6뜊癩 +t5뛿퀸 +꽵tY뜊숫 +Du5뛿쒨 +VW쑬#B +P떿H뗊 +덭은$$B +뗖깬拗招 +XuT뛿技 +t4뛿ㆌ +덭펾긭 +덭툔E펻 +뛇峰7縱 +손료코드의 속성[ +] 에 적용되는 대상이 없습니다. +딢澮P醬 +澄^떸= +STmaFunc_륶뗭툮 +뛇曼@1B +3픘h40B +딢澮n游 +딢鳥G之 +뛷`죺&M +Wuk뒊; +Wu=뜃$ +딢怏F腋 +퐿X죺&M +乙죺&M +산출근거의 수량을 계산중입니다.. +】코드 수량계산중... +딢鋪)緖 +떿巍肛 +떿娃飄 +떿玩飄 +떿蘊飄 +떿燿辦 +딶8뛿퀸 +떿燿膵 +떿甕柵 +떿琬膵 +揖죺&M +딢鋪7緖 +딶\딢澮 +딼澮U霖 +t-죺&M +딶,죺&M +3픘h췑B +딢僚U攣 +딢鳥7夫 +뛛`죺&M +떿猥氈 +떿鈺氈 +떿莞入 +떿燿衣 +떿翁游 +up3핂귺 +꽵tih늇B +Wu=뛽$ +u&h쟕B +뛘訟=鑒 +둓省割 +꺚`P딢 +떸莞힛 +뗁″%M +뗒딢淸GF +딶8뛿¼ + * * * * * 아래의 코드와 내용을 확인하세요 * * * * * +위의 코드목록은 합계의 단가와 재/노/경의 합계가 다르게 기록된 일식단가입니다. +단가목록표에서 해당코드를 찾아 수정후 다시 계산하시기 바랍니다. +일식단가 합계오류 +자료를 집계중입니다. +금액을 계산중입니다. +】코드 계산중... + 코드는 존재하지 않는 코드입니다. +계산할 코드 없음 +파일을 적용중입니다. +3罰V딢 +딶桓훃B +3罰<딢 +딢鋪l숫 +딢淸d숫 +딢澮\숫 +3픘h휲B +떾딼澮`생 +U뗭Q묀 +澄Y뗲뗗뛿과 +3픘h>qB +떸椀搗 +떸頑多 +떸溫多 +떸了癩 +떸撓襤 +떸脘襤 +떸瑥襤 +떸甕旗 +떸瑤歸 +떸頑歸 +떸Y莞具 +떸Y曰果 +떸Y寥桂 +떸Y瘟桂 +3漏@덤 +떸燎果 +떸堯鑒 +떸宛鑒 +딹 떸琬힛 +떸宛혜 +딹 떸拗폿 +딹0떸玩폿 +딹@떸蜈폿 +th뛿먺 +t4뛿덒 +딹`떸鈺퀸 +떸寮찹 +떸訛찹 +떸了집 +떸雍집 +떸夭절 +떸臥절 +,Du}뛿 +꽵t-뛿締 +떸翁웡 +떸娃엌 +떸蘊엌 +떸頑쐬 +떸鈺쐬 +떾頑얓 +뗒獄얓 +H~0뛿械 +딢鳥L뫙 +딢淸7쒨 +딢麟j랖 +딢麟E랖 +딢麟<랖 +3픘hx똁 +tD죺&M +tY죺&M +3漏v끗 +3漏m끗 +뛊0″%M +뛊,″%M +뛊(″%M +뛊$″%M +3漏4뷐 +꽵uFh펿B +3픘h땭B +딢罹@뢆 +딢罹L뢆 +뮹P뛿拏 +딢罹|뢆 +uI죺&M +uG죺&M +陰죺&M +誾죺&M +뛇麟v낣 +잠시만 기다리세요... +수정분 +전체분 +전체 재계산중 .... +((CODE="B" .or. CODE="X") .and. UNIT="천원") .or. ( CODE="S" .and. (UNIT="$" .or. UNIT="$") ) +수정된 항목을 재계산중 .... +작업이 제대로 완료되지 못했습니다. +프로그램을 종료후 다시 실행하신후 전체재계산을 하시기 바랍니다. +계속해서 문제가 발생되면 +경영정보(주) + 로 문의하시기 바랍니다. +계산오류 +3픘h틨B +딢澮M숢 +딢澮-쒨 +딢澮z숢 +3픘h퓫B +컠U澮# +3핃C 덪$3핃C +嗇엞ph,욪 +嗇엝4h,욪 +뛅鋪심 +꽵u!죺&M +U뗭겺滅 +3픘hS좦 +VW푗좦 +s$떾H뎲滅 +3픘h|짟 +딢鳥]뗾 +3픘h옠B +儀딢澮q덢 +3픘hR짟 +딢澮c딚 +딢澮(덢 +끐~y딢澮 +딢澮6딚 +f끐u武 +딢澮"딚 +딢澮諱 +딢澮;뉭 +3픘hゥB +딼桓웹B +뗗딼桓怯B +U뗭겺涍 +뗻뗗땥 +3픘hg쭮 +뗊뛿涍 +3픘h1쳿 +u훖d쳿 +딢갰|쳿 +뛇쨳U矜 +3픘h脫B +뗊퉅츭 +을 메모리에 로드하는데 실패했습니다. +프로그램을 재실행하여 작업을 다시 시도하여 주시고, +그래도 메모리 로드에 실패할 때는 +로 연락바랍니다. +DLL로드에러 +3픘h&캛 +3픘h縕B +딢罹0쿍 +3픘h섭B +뛇雅釋B +3픘h羌B +뗱됹낔 +뗊믄퇑 +딼툖E移棅B +딡섪뛘僚 +딼甕痢B +뛇촒琬璧 +딼컢E僚 +딲뵅U甕 +u똦釋B +【 MINIMSG 】을 메모리에 로드하는데 실패했습니다. +원본메세지 : +3핅횄읍껟 +딢編쑟B +꺞諂<$쏂!聊 +4괝y鉉Z癩 +뛲쫑띁좨 +M픲」x +덭송E隍E +M픲뵅E淸 +3픘hY혾 +sC뜊嚆 +飮땯숫 +딼펹귖 +딢솨섋 +딼펹귭 +딼펒뎯R +ug뛿덓 +딼펯짹 +딢솥섋 +썘E펻먷 +嗇엞Z↑1M +딢펒꺒R +딢펾맩 +딢펻먷 +딼펒뎯 +딼펒뎯 +딼펒뎯" +딼펒뎯2 +딢펒꺒 +딢펒꺒" +딼펒뎯4 +t8뛿댕 +딼펯쫬 +uS딢펒꺒" +딼펯쬔 +딼펯쨩 +tr뛿덐 +꺞諂<$쏂T랖 +rV뜊흰 +꽵u$죺&M +딼펺믔 +꽵uA뛿 +嗇엞%j +嗇엝S붊 +嗇엝;j +붅P딢섰 +붅P뛿⑪ +썘E툔U툔 +딼澎澮 +ub딢펺@ +딼펯찌 +tn뛿곧 +t7뛿⑩ +u%뛿섔 +딼펻믞 +딼펯쯩 +딼펯쬐 +딢펾못 +uo딢펺@ + tW뛿誨 +딢솥쟚 +딢솥쟑 +딢솥쟰 +딢솥쟦 +딢솥쟄 +딢펱모 +딻쌋瑥 +Cu]뛿厓 +딻섪뛿冀 +3픘h껠B +정렬코드 재배열 +정렬코드 재배열중입니다[1/2] +정렬코드 재배열중입니다[2/2] +내역서 재계산 +내역서 계산중입니다.. +내역서에서 적용된 [ +] 공종은 직접공사비에 포함되지 않으며, +상위레벨의 공종에 포함되지 않는 최상위 공종으로만 설정 가능합니다. +해당공종의 공종구분은 일반공종으로 변경합니다. +공종구분은 최상위 공종의 레벨로 적용하시기 바랍니다. +공종구분오류 +코드를 찾을수 없습니다. +4괝y鉉d딚 +斯嗇엟j떸 +斯嗇엟H떸 +斯嗇엟&떸 +내역서의 금액이 과다하게 나왔습니다. +수량 또는 단가를 확인해 보세요! +딢麟?b +뗗″%M +딢$P딢 P딢 +4괝y鉉6낣 +딢$倭P +딢$窩c +덭삆E쁏j +광역계 이상공종 사용 +내역서에서 사용된 공종의 레벨이 7레벨(광역계)이상 사용되었으며, 조달손료의 계산방식이 "해당코드 상위의 해당레벨(하위레벨제외)"로 되어있습니다. +7레벨이상 사용된 내역에서는『해당코드 상위의 7레벨공종이하 내역전체』방식으로 설정하여야만 조달청포맷(TEXT,JDL) 변환이 가능합니다. +현재 자료가 조달청포맷(TEXT,JDL) 변환이 필요한 자료라면 공사목록표의 "등록정보수정" 을 통하여 조달손료형식을 변경하신후 재계산 하시기 바랍니다. +최상위레벨 밖의 단독코드 사용 +내역서에서 사용된 최상위공종 밖에 일반코드가 사용되었으며, 조달손료의 계산방식이 "해당코드 상위의 해당레벨(하위레벨제외)"로 되어있습니다. +조달손료의 계산방식이 "해당레벨" 일 경우 내역의 최상위 레벨 밖의 일반코드는 조달청포맷(TEXT,JDL) 변환이 되지 않습니다. +최상위 레벨밖에서 사용된 일반코드는 최상위 레벨 안에 입력하셔야만 조달청포맷(TEXT,JDL) 변환이 가능합니다. +7레벨(총대계)밖의 단독코드 사용 +내역서에서 사용된 7레벨(총대계)밖에 일반코드가 사용되었습니다. +7레벨(총대계)밖에 일반코드가 사용되면 조달청포맷(TEXT,JDL) 변환이 되지 않습니다. +7레벨(총대계)밖에서 사용된 일반코드는 7레벨(총대계) 안에 입력하셔야만 조달청포맷(TEXT,JDL) 변환이 가능합니다. +왈딢澮o +SOFTWARE\경영정보(주)\설계예산(STmate8x)\POS_DLL +딢麟k販 +뗗딠0끐t +뛇麟5飇 +딢흖s販 +노 무 비 +재 료 비 +경 비 +견적단가 +일위대가 +중 기 비 +단가산출 +그림코드 +수량코드 +실적단가 +뛏쑛4#C +u쐆D#C +u+죆$M +떸熬兄 +떸嵬飇 +떾보&C +떾뵤&C +떾뷕&C +떾빌&C +떾튒'C +떾튽'C +뛘펻펨 +뛇섋6贓 +뛇②n蟻 +뛇峰S蟻 +조 사 가 +당초 설계 +분할 설계 +굴착/복구 +변경 설계 +실행 예산 +계약 내역 +견적/할증 +할증 내역 +견적 내역 +사용 불가 +기성내역- +기성 내역 +설계변경- +설계 변경 +굴착 변경 +실적 공사 +공량 내역 +미 정 의 +0^[횏픘뗭겺滅 +3픘ha*C +덭忍E姻5t*C +퇠뛿筬 +뛘淸F燿 +떿汪錠 +딢澮[梧 +쁏뛿滅 +3픘h=/C +뛏雅|/C +떸拗稀 +떸曰稀 +떸莞稀 +떸鈺稀 +뛏성l/C +떸樂梟 +떸歪梟 +떸窪梟 +떸熬梟 +떾饔缸 +딢淸跌 +떾凹兄 +떾往缸 +떾邕販 +떾Y尿琢 +떾Y邕琢 +떾Y嵬悴 +떾Y鈺悴 +떾Z玉抄 +떾Z曜冊 +떾Z凹潗 +떾Z汪贈 +떾畏潗 +딢淸D臨 +딼淸^瞭 +딼奐澮l瞭 +딯쬐덺삄L쬡덺쐦 +딯쭌덺젉L쭝덺쨱 +딯쮜덺쮮L쯧덺쵉 +딯찐덺컠L찡덺큾 +딯쫑덺릩L쫠덺뵡 +떾Y拗賃 +떾Y擁賃 +떾Y往蟻 +계약단가 코드는 조사가가 "0"원 이므로 조사가 비율로 분배할수 없습니다. +해당코드의 [비목별/군별단가]를 확인/입력하십시요. + ※ 초기값메뉴의 "계약단가 재/노/경 입력"을 선택하시면 입력가능합니다. +연결코드 계산오류 + : 조사가 "0" +U뗭Q묻 +딢澮苞 +딢澮g鑑 +딢麟h藍 +딢鳥O藍 +딯쬐덺컠L쬡덺큾 +딯쭌덺툔L쭝덺펻 +딯쮜덺핆L쯧덺훺 +딯쫑덺쮮L쫠덺А +딶8뛿덝 +3픘hjYC +뛇澮a덟 +연결코드 배분을 위한 파일을 열지 못했습니다. +연결코드 계산중... +연결코드 계산중... [ +오류메세지.Txt + * * * * * 조사가가 "0"인 계약단가 코드 * * * * * +코드번호 명 칭 규 격 단위 +계약단가 코드(들)은 조사가가 "0"원 이므로 +계약단가 코드(들)은 조사가가 "0"원 이므로 조사가 비율로 분배할수 없습니다. +3핃C 덪$Nt +현재 선택하신 내용은 기능이 개선되어 + 이상의 프로그램에서 실행할수 있습니다. +최신버전으로 업그레이드 하신후 사용하시기 바랍니다. +프로그램 업그레이드 요망 +3픘hKhC +뛇僊릈C +뗱됹낔t%″%M +딢峰뷛 +뛇牘릈C +딢逗GD +뛇編,lC +뛇編HlC +뛇編dlC +기타 노임산출계수 +기타 노임산출계수-1 +기타 노임산출계수-2 +기타 노임산출계수-3 +기타 노임산출계수-4 +시간당 노임산출계수 +번째문자는 입력불가능한 문자 입니다. +숫자와 +,-,*,/ 기호만 입력 가능 합니다. +초기값의 해당계수를 옳바르게 수정하여 주십시요. +떲SVW뗗떸僚웠 +f끐v(떸汪웠 +뤘N낔| +뗊떸了웠 +3픘h%oC +딢澮t| +확 인(&O) +KEY 확인 필요 +KEY(서버 또는 클라이언트)가 확인되지 않았습니다. +현재 작업을 종료하신 후 다시 시도하여 주십시요. +3픘h쓫C +딹8碗∧ +붅P뛿 默 +뛒 £&M +뛲쫑띁毖余 +뜑毖余 +3핃꾙@殞 +땮丕樂 +뎱糞樂 +땮卑樂 +뎱雰樂 +뎱棚樂 +뎱卑樂 +뎱符樂 +3핃꾲4劈 +뛾퇴余 +뛾嬉余 +t#뛾嬉余 +P뛿L眠 +4릈\똂 +P뛿`眠 +淪죺&M +霹휟殞 +릫뀺林 +꺞諂<$썚빐林 +P뛿x林 +릫꿶林 +꺞諂<$썚븊林 +P뛿P林 +P뛿<林 +릫낁料 +릫뀶料 +꺞諂<$썚빊料 +P뛿|料 +P뛿<料 +嗇엝m줎%M +嗇엝d줎%M +뛇殲.멄 +릫낖轢 +꺞諂<$썚뺵轢 +뛇殲#륕 +릫낆轢 +릫끺轢 +꺞諂<$썚뺠轢 +꺞諂<$썚뺒轢 +릫끮轢 +嗇엝a줎%M +릫끦轢 +꺞諂<$썚뺅轢 +꺞諂<$썚빯轢 +릫끘轢 +嗇엝j줎%M +릫끉轢 +꺞諂<$썚빥轢 +꺞諂<$썚빐轢 +릫뀺轢 +嗇엝b줎%M +릫뀲轢 +꺞諂<$썚빃轢 +꺞諂<$썚븞轢 +꺞諂<$썚븘轢 +P뛿`轢 +P뛿p轢 +땾휟殞 +뛇殲D놚 +조사가( + 재 료 비 : + (비과세자재) + 노 무 비 : + 경 비 : + 합 계 : + 도급공사비 : + 총 공사비 : +적용율 적용후 공사비 예상금액 + 재 료 비 ≒ + 노 무 비 ≒ + 경 비 ≒ + 합 계 ≒ + 도급공사비 ≒ + (이윤보정없음) + 도급공사비 + 총 공사비 ≒ +확 인(&O) + 참고) 적용율 (재: +, 노: +, 경: + 건강보험, 연금보험, 노인장기요양보험료, + 퇴직공제부금비, 산업안전보건관리비 : 조사가금액 반영 + ※※ 미리계산에 사용된 비과세자재대는 내역의 금액(적용율에 의한)과 ※※ + 같지 않을 수 있으므로 반드시 확인하신 후 수정하시기 바랍니다. ※※ +직접공사비 미리계산 +뛇煥$뺺 +딢擅H뺺 +3픘h<뾅 +RP뛘天 +蔭_^[뗥]횏픘뗭Q퉅 +3픘h$잺 +뛇移<잺 +꽵u4뛿招 +딢麟f괐 +3픘h0숦 +꽵u)뜊入 +RP뛘甕 +딢編烏C +uf딢擅責C +3픘hU욫 +u$딢擅責C +SVW겺p +뗊떷횒@ +U뗭3픘h囊C +산재보험료 +고용보험료 +건강보험료 +노인장기요양보험료 +연금보험료 +퇴직공제부금비 +산업안전보건관리비 +기타경비 +수도광열비 +복리후생비 +소모품및 사무용품비 +여비, 교통비, 통신비 +세금, 공과금 +폐기물처리비 +도서인쇄비 +지급수수료 +공사이행보증수수료 +하도급대금지급보증수수료 +환경보전비 +건설기계대여금지급보증서수수료 +석면피해구제분담금 +임금채권부담금 += 추가금액 = 1번재 항목 += 추가금액 = 2번재 항목 += 추가금액 = 3번재 항목 += 추가금액 = 4번재 항목 += 추가금액 = 5번재 항목 += 추가금액 = 6번재 항목 += 추가금액 = 7번재 항목 += 추가금액 = 8번재 항목 += 추가금액 = 9번재 항목 += 추가금액 = 10번재 항목 +3픘h릎C +4괿惜C +~=줎%M +딢浦섁 +뛇늁뛿x +딢浦쁇 +딢浦쁏 +딢浦쁙 +딢浦쁥 +딢浦쁯 +딢浦삁 +딢浦삩 +딢浦샶 +딢浦섋 +딢浦섔 +딢浦섢 +딢浦쁷 +딢浦삉 +tF딢浦 +嗇엝2딢浦 +딢浦삓 +딢浦삝 +딢浦삹 +딢浦샇 +딢浦샓 +딢浦샠 +~n딢浦 +嗇엝Z딢浦 +嗇엞F딢浦 +嗇엞2딢浦 +嗇엞>딢浦 +딢泡쟰 +3픘h滉C +U뗭Q뭄 +~z줎%M +뛇껺뛿t +嗇엞K딢浦 +嗇엝+딢浦 +딢妾X 쌭j +딢妾X(쌭j +딢妾X0쌭j +딢妾X8쌭j +딢妾X@쌭j +딢妾XH쌭j +딢妾XP쌭j +딢妾XX쌭j +딢妾X`쌭j +딢妾Xh쌭j +딢妾Xp쌭j +딢妾Xx쌭j +딢妾삁 +딢妾삉 +딢妾삓 +딢妾삝 +딢妾삩 +딢妾삹 +딢妾샇 +딢妾샓 +딢妾샠 +딢妾샫 +딢妾샶 +딢妾섁 +딢妾섋 +딢妾섔 +딢妾섢 +썘E妾@X딢堞@h딢妾쁇 +딢妾쁏 +딢妾쁙 +붅P뛿鏃 +뮹P莞둂 +뗊뛿鳥 +u@딢浦 +嗇엟,j +뛇澮2焰 +U뗭Q뭔" +3픘h쁙D +4릈큍D +QL뛿h航 +P뛿 萃 +깬巍拔 +딢鳥\岫 +딢鳥t珹 +꺞諂<$썚빞梢 +딢鳥9筮 +P뛿p梢 +깬倭療 +깬縕療 +깬了仇 +깬邕仇 +깬娃寡 +깬姚悸 +깬臥悸 +깬畏儉 +깬翁儉 +깬倭邯 +깬縕邯 +깬縕혔 +딼뚩i웝 +딼먫B웝 +딼②X엉 +딼ц1엉 +딼잭n쐐 +딼쾌G쐐 +딼흖 쐐 +矣죺&M +U뗭꽿u +3픘hM퐻 +끨~/뛽) +3핃CH덪Lhl퐻 +쑡P뛿, +딼奐澮 +쑡P뛿婦 +쑡P뛿덣 +딼奐澮2얐 +붅P뛿飄 +붅P뛿섫 +堆擁좠 +꺞諂<$쏂U +堆僥얐 +꺞諂<$쏂s +堆琓쏕 +쑡P뛿豹 +꺞諂<$쏂& +붅P뛿덞 +붅P뛿剿 +붅P뛿꾶 +빥P뛿眄 +뛘훺췄琁 +뛇훺M캤缺D +빥P뛿料 +빥P뛿좚 +堆浣덠 +빥P뛿棉 +빥P뛿먻 +뛘훺췄棘 +빥P뛿撓 +붅P뛿좘 +덯|땭x +꺞諂<$쏂C瓣 +빥P뛿섙 +꺞諂<$쏂w證 +꺞諂<$쏂g終 +꺞諂<$쏂W鋌 +꺞諂<$쏂G栓 +붅P뛿壬 +꺞諂<$쏂c荏 +빥P뛿滯 +빥P뛿숌 +꺞諂<$쏂T晤 +붅P뛿쟈 +빥P뛿卒 +빥P뛿ㅾ +꺞諂<$쏂O粃 +슇솛솛솛 +낔~/뛽) +딲匯꾁 +딲黃꽾 +딲匯쑯 +뗕딢澮 +뛘컠E澮 +끟~S뛼0 +뛇졋먽D +뛇쟑뛇 +꺞諂<$썚꿯 +빥P뛇륯椀찰 +꺞諂<$썚꿟 +뛇쟑뛿H +뛇쟑뜒4 +꺞諂<$쏂S짊 +司꺞諂<$쏂Q적 +꺞諂<$쏂<빛 +嗇엝@j +꺞諂<$쏂h벎 +嗇엞Fj +뮹P뛿額 +뮹P뛿ㆎ +꺞諂<$쏂B덞 +꺞諂<$쏂n뇐 +뮹P뛿腋 +뮹P뛿ㆍ +붅P뛿咐 +붅P뛿臨 +붅P뛿힉 +붅P뛿뷋 +꺞諂<$쏂Z잳 +붅P뛿岐 +P딢匯꽼 +꺞諂<$쏂7뽿 +司駟꺞諂<$쏂6뷎 +뛘삄험촘 +뛘삄험싋 +嗇엢텟E襟8 +뛘삄험 +딢 딡곗둝 +딼立02M +u*죺&M +u릫E샋 +딢쁏뛿| +뗒딢怏⊃ +U뗭겺省 +SVW뗲띂省 +澄뗚뗱딢 +P뗒떾뜊省 +꺞諂<$쏂R껢 +꺞諂<$쏂F귴 +떾畏젊 +썘꿟詰 +揖_^[뗥]횒@ +3픘h/2E +P뛿H航 +빥P뛿X航 +P뛿(航 +붅P뛿x航 +P뛿d驃 +붅P뛿t驃 +붅P뛿4驃 +뛇澮D斅 +P뛿T鈑 +붅P뛿d鈑 +붅P뛿4鈑 +P뛿d託 +붅P뛿t託 +뛇澮S版 +붅P뛿4託 +P뛿d萃 +붅P뛿t萃 +붅P뛿4萃 +뛇澮b什 +P뛿4梢 +빥P뛿D梢 +붅P뛿d梢 +P뛿d策 +빥P뛿t策 +붅P뛿$策 +뛇澮g藏 +P뛿d輯 +빥P뛿t輯 +P뛿4輯 +빥P뛿D輯 +P뛿d只 +빥P뛿t只 +P뛿4只 +빥P뛿D只 +뛇澮x旿 +P뛿4腫 +빥P뛿D腫 +붅P뛿d腫 +P뛿d靖 +붅P뛿t靖 +뛇澮M掖 +붅P뛿4靖 +P뛿T澱 +붅P뛿d澱 +붅P뛿X航 +뛇澮X秘 +뛇澮4否 +P뛿4鈑 +붅P뛿D鈑 +뛇澮x淋 +P뛿D託 +P뛿$託 +뛇澮"靂 +P뛿D萃 +P뛿T萃 +P뛿$萃 +P뛿t梢 +P뛿$梢 +붅P뛿4梢 +붅P뛿T梢 +뛇澮6饋 +P뛿$策 +붅P뛿4策 +붅P뛿T策 +P뛿t輯 +뛇澮=桀 +P뛿$輯 +붅P뛿4輯 +붅P뛿T輯 +P뛿t只 +뛇澮X힐 +P뛿$只 +3漏?힐 +붅P뛿4只 +3漏5혓 +붅P뛿T只 +P뛿t腫 +3漏G폴 +P뛿$腫 +3漏j툽 +붅P뛿4腫 +3漏P퀭 +붅P뛿T腫 +P뛿t靖 +3漏b츨 +P뛿0靖 +딼澮u찮 +붅P뛿D靖 +3픘h뢙E +꺞諂<$썚뀲畵 +꺞諂<$썚뀪畵 +꺞諂<$썚뀡畵 +꺞諂<$썚뀗畵 +3픘h쯞E +껢xu,hpZE +떾蝸츨 +딼阪44M +뛇鋪k샙 +붅P뛿뫼 +) .and. ("조달"$NAME1) .and. +((BDCODE1="PR") .or. ("%"$UNIT1) .or. ("수수료"$NAME1)) ) .and. !BL_AMT +3픘h긝E +수수료 +VW겺省 +_^횖U뗭3픘hxcE +TIdHeaderList봡E +딼펻E鋪@덜 +2VW뛳핈}샊 +뛈0튦gE +뛇淸J끓 +3픘h줶E +딢澮껢 +뛇澮?¾ +儀떾_^[YY]횏픘뗭j +應_^[뗥]횒@ +U뗭3픘h쩷E +TIdConnectionIntercept릈nE +S덽0f긹: +뗗뗊딠< +S8[횖U뗭3픘h +떲SV꾋t +꺞鳥B∪ +떾^[횒@ +U뗭3픘hupE +UserID늩E +^[홙V꾋t +꺞鳥>욠 +떾^[횏픘뗭3픘h}sE +TIdBuffer떲TtE +OnWorkBegin켸@ +EIdTCPConnectionError떲8wE +EIdObjectTypeNotSupported떲쟷E +EIdInterceptPropIsNil떲lxE +V03픘h\yE +Q8췌/섨 +뛇鋪h섨 +t%꾗t!뛘阪\&M +덯p떾꾗t +RT꽵t%j +뗚뗱뛈p饔잲 +뛈x沃잲 +뛈l熬잲 +SVW뗺뗳뗗3픘h +儀_^[Y]홙VW뗳뗗떾溫뺳 +Q8딢澮x뺳 +Q8딢澮'뺳 +딢澮T뺳 +딢罹0~E +딢雅<~E +뛇澮S볷 +儀^[Y]횏픘뗭j +儀[Y]횒@ +Qx]_^[횏픘뗭j +V@덭幅 +R\딢澮좞 +$Z[홛뗭j +뛇齊펰E +뛇淸9멁 +S`뗕J딢 +SVW뗚뗱3픘h,긂 +儀_^[Y]횒@ +SVW뗻뗗떸脘쌇 +뗱떿셊P떸巍쌇 +떸饔쌇 +떾셊P떸鰲쌇 +딢鋪b쌇 +W03픘hN꿄 +뗉딢鋪?쌇 +Wp뗹딢鋪t숝 +RP딢鋪k숝 +딢鋪P숝 +뗉딢鋪Y숝 +Q8췌=뚾 +SV뗳뗗뗕딠p燿 +딠p瓦섨 +SVW뗙뗻뗱뗅뗖떾僚섨 +_^[횖뗃덳|끟u +뗊떶沃섨 +횖U뗭j +u%꾋t!뛘禍 +3픘hO놢 +P뛇澮A뗻 +儀[Y]횏픘뗭j +SD덭佾 +딢淸y뷍 +딢淸M뉪 +$뗗꽿t +Z[횏픘뗭j +VW뗻뗱3픘h{둉 +뗖僚뉪 +뛇澮f뉪 +뗒딢澮 +떾嶢믺 +P떾旺믺 +뗅딢澮 +뛇淸3륓 +뛇淸p낛 +떾外멁 +Sp[횒@ +SVW뗳뗗3픘hl랤 +떸妖륓 +뛇澮u껡 +TIdTCPClientL뢉 +UseNagle퇽E +SocksInfo륳멐 +EIdSocksError떲컩E +EIdSocksRequestFailed떲 +EIdSocksRequestServerFailed|묮 +EIdSocksRequestIdentFailed먧묮 +EIdSocksServerRespondError맧밇 +EIdSocksAuthError떲t봂 +EIdSocksServerGeneralError먟봂 +EIdSocksServerPermissionError떲H뷙 +!EIdSocksServerNetUnreachableError떲툞E +EIdSocksServerTTLExpiredError떲 +EIdSocksServerCommandError릔뾇 +EIdSocksServerAddressError륶뗭툾 +t'뜒腋 +Q4f뎲溜 +딢澮╉ +뗉딢澮 +u'뜒뫙 +딢澮㏅ +t'뜒괄 +뗈딢澮 +딢澮玄 +儀[Y]횏픓V꾋t +홛뗭3픘h鶯E +TIdCoder먅짥 +TIdCoderD짥 +TIdCoderItem0쩋 +뗚뗱딢 +횖SV꾋t +3핃F23핃F63핃F:3핃F>3핃FB3핃FF힓d +횏픘뗭j +S뗗3픘hh쭱 +儀[Y]횖U뗭j +S뗗3픘h與E +헠뛇鋪 +CP뛇鋪 +應_^[YY]횖SV뗳뗗힏^ +Q@^[횒@ +떾^[횏픓뗗 +횏픘뗭3픘he츲 +U뗭3픘h물E +si릍8N +TIdASCIICodert콳 +TId3To4Coder`쿐 +TIdBase64Encoder<퀲 +TIdBase64Decoder 킙 +TIdXXEncoder캠E +U뗭QS꾋t +떸[Y]횏픘뗭j +SV뗚뗱3픘h<틿 +u!뛘阪h'M +3픘h맶E +儀[Y]횖SV꾋t +뗚뗱뗒 +U뗭SVW뗱딢 +떲SVWU뗪뗹땧L쥘 +0딦T둜0 +;<$wU딣T둈8 +8딣T둜8 +;<$v쳦FP+ +P딣T둜8 +3핃FPZ]_^[횒@ +P딠T둈0 +0딠T둜0 +蔭_^[뗥]횖SV꾋t +S뗗3픘h堧E +SV뗗3픘h굽E +뗱뛇澮 +儀^[Y]횒@ +SV뗚뗱3픘h겶E +딢幌@~ +應^[뗥]횏픓V꾋t +u핈E擅 +u툖E큻U鳥 +u킀E擅 +SV뗗3픘h緡E +sX뛇煥 +3픘h늦E +應^[YY]횒@ +뛇編撤E +뗱뎤P낔 +뗁뗖딢鋪 +3핃CP勖 +딼핆5x$M +뗁뗕딢鋪 +뗱뛘펻E鋪 +딢擅жE +뗱뎤P낔v +U뗭3픘h割E +3納링E +3納x텲 +Expires릁E +HandleRedirects솨E +^[홙뗗뛅 +RD뛏齊 +뛏甁꾩E +뛏曼좎E +뛏牘쇱E +뛏克芚E +뛏編壹E +덯,뛇횾뛇澎 +u펾E캤 +s\뛇㉩ +딢쮰Uц뿌 +sd뛇쑛 +3픘h헹E +儀[Y]홛뗭j +SV뗗3픘h깜E +S3픘h숚E +St딼桓공E +딠$끐t +뛘靜|$M +Y끐~5j +Y꽵tt딢僚l +딢澮쵌 +뛇큁벗 +딼쵉E麟T +R4딲烹 +SRP / PDF 작성 +미리보기 화면 종료 후『 보고서 인쇄 』→『 지정인쇄 』화면에서 팝업메뉴 ː +『 보고서 저장파일 ∥ SRP ⇔ PDF【 Microsoft Print to PDF 】』의 체크에 따라 +보고서 파일의 유형을 SRP ⇔ PDF파일로 전환하여 저장할 수 있습니다. +STmate 보고서(* +덮어쓰기(&Y) +은(는) 이미 있습니다. +바꾸시겠습니까? +보고서 저장 +계약내역 +1차변경 +2차변경 +3차변경 +운 전 사 +조 수 +조 장 +선 장 +기 관 장 +기 관 사 +전 기 사 +선 원 +할 증 +뗗죺&M +뮹P뛿< +꽵tc3恬 +뗕죺&M +땛 ″%M +뗗〈$M +uQ죺&M +u)죺&M +딢鳥^板 +딢섋+볺 +倚뛇릩 +계표시 입력오류 +계표시 입력이 잘못되었습니다. +계표시가 잘못된곳을 수정하신후 다시 시도하십시요! +3픘hH'F +뛇鋪#琮 +딢鋪됢 +t<뛿쒩 +뛇鋪7釘 +딢怏i薔 +뛇鋪.悛 +딢鋪V蟲 +ts뛿只 +t%딢幌 +Q@딢幌 +굥U鋪F義 +U뗭퉞 +3픘h:,F +꺞諂<$썚빿淆 +3핃끐淆 +3핃끂淆 +보고서 저장이 완료되기를 기다리고 있습니다(최대 90초) +쪽 | +0.0 초경과 +뛇煥x/F +딿$떸溫余 +뛇齊x/F +보고서 파일 압축 +U뗭Q묘 +딢僚듏 +뛘怏)樂 +딢僚c駟 +읋P뛿埠 +빥P뛿뷏 +뛘볢[敖 +뛇怏r徒 +저장할 보고서가 없습니다. +선택된 인쇄옵션을 확인하시거나 인쇄할 코드가 존재하는지 확인하시기 바랍니다. +STmate_보고서_뷰어_다운로드.htm +선택된 항목을 보고서파일(* +)로 작성하였습니다. +』 로 시작 +』 파일로 압축 +※ 보고서파일(들)이 옳바르게 압축되었는지 확인하시기 바랍니다 ※ + PDF 프린터의 저장작업 완료 대기시간이 초과되어 압축이 취소되었습니다. + 저장작업이 완료된 후 보고서파일을 직접 압축 하세요. + PDF 프린터의 저장작업 완료 대기시간이 초과되어 파일을 열 수 없습니다. + 저장작업이 완료된 후 보고서파일을 직접 확인 하세요. + ※ 작업이 완료될 때까지 대기후 확인버튼 클릭하면 취소된 작업이 다시 진행됩니다. +선택항목 작성완료 +SVW뗺뗳뗗딢 +3픘hMJF +3픘h#JF +4릈tJF +4릈륥F +』 금액 불러오기 +』 관련항목만 보기 +끱t/땰 +꽵t 땰 +뗹뛏煥(OF +뛇鋪Q폰 +u쵋E쑛쏰F +뛘펅橈폰 +껇FtAH껇 +뛘뵡@BN +뛘맇@BN +u릈 PF +뛘뙜@BN +딢껺뛘 +("조달"$NAME1) .and. ( (BDCODE1="PR") .or. ("%"$UNIT1) .or. ("수수료"$NAME1) ) .or. ( (ITM_TYP=71) .and. (SUBSTR(BDCODE1,1,1)$"TEC") .and. (SUBSTR(BDCODE1,2,1)>=" +뛏翁늈F +뛏雅늈F +뗗봬UF +떾料飯 +떾頑飯 +떾完飯 +떾縕飯 +떾熬飯 +딲핈E캤lVF +딼훺펨t飯 +떾僚默 +떾曰默 +떾蛙默 +떾蘊默 +뛇澮~숟 +※ 계산 안됨 ※ + 잡비계산 안됨 +U뗭S뗗튒WF +떷妖퀘 +떾歪轢 +떾緩轢 +u쯄IBN +뛇껺뛿d +뛘ㅸz벋 +뛘꼵E붻 +꺞諂<$썚U샇$]F +떾猥尼 +떾癰尼 +껈0퇓]F +뗊떸Y猥季 +U뗭겺힝 +3픘hraF +p8h훍F +t|h훍F +딼鋪N軌 +딼鋪&軌 +딢殲W빙 +뛘棅JBN +|8뜒滅 +떾了季 +딼鋪_鞏 +딼鋪%鞏 +뛇鋪5곶 +뛇삆U붻P곶 +u삝IBN +딼펾E잭 +딢젌Uㅸ\덛 +뛇똏뛿l +떸臥쏸 +SV뗗땭 +S뗗3픘hwkF +t/h똩F +뛏編쁪F +뛏擅쁪F +뗊몰kF +딼阪LBN +픐hxmF +딼慫CX +끐uZh촰F +딼棅LBN +더이상 " +을(를) 찾을수 없습니다 +문자열 찾기 +SV뗗떝 +꽵t1떾凹 +u"퇜BN +딼禍LBN +픐h봮F +딼遞CX +뛏曼꼜F +뛇캤봲F +뛇횾뛇ㅊJBN +u뵠IBN +뛘큍了⊃ +뛇殲A좜 +S뗗떸脘樺 +륶뗭SVW뗺뗳뗗땭 +U뗭3픘h걎F +矣]횏픺-DBN +륶뗭SV뗃끟x +A떸뷕HO +hR먁A療∧ +sM죺&M +3漏y랏 +3漏c랏 +3漏M랏 +3漏7랏 +3漏!랏 +3漏q딩 +3漏[딩 +3漏E딩 +u펔腹F +뛏툔깂 +딶8£&M +뛇쁏죺&M +설계변경 내역서의 차수 입력이 잘못 되어 있습니다. +설계변경의 차수는 1차 ~ +차까지 가능 합니다. +내역서의 차수입력을 다시 조정하신 후 작업하세요. +!!..설계변경 내역서 차수입력 오류..!! +전체/금회 선택 + 전체분내역 + 금회분내역 +당초/변경 선택 + 당초설계내역 + 변경설계내역 +실행/계약 선택 + 계약내역 + 실행내역 +제잡비 선택 + 계역내역 +기성 선택 + 계약기성내역 + 전회기성내역 + 금회기성내역 +변경차수 선택 + 계약(당초) 내역 +차 변경내역 + 당초/변경(최종) 대비 +굴착북구 선택 + 굴착복구-시비 + 굴착복구-구비 +굴착변경 선택 + 당초내역-시비 + 당초내역-구비 + 변경내역-시비 + 변경내역-구비 + 설계/견적/할증/실적 +※ 위치변경은 +부분에 한해 가능합니다. +원가계산서를 인쇄 합니다. +총괄집계표를 인쇄 합니다. +< 제잡비 계산 > + [결과보기] + [사용자 개별요율 수정] +GS파워(일반) 형식 +원가계산 +3픘h받F +왖了쒤 +왖饔쒤 +3픘h屢F +U3핃E見猥F +덭龜會F +U3핃E見 +U3핃E見덃F +덭龜쒏F +덭毒會F +뛇雅경F +덭龜阻F +뗖鈺숛 +3漏{쀹 +3漏N쀹 +3漏!쀹 +전체금액 +금회금액 +시 금 액 +구 금 액 +당초금액 +변경금액 +계약금액 +실행금액 +금 액 +전회금액 +계약(당초) 금액 +차 변경금액 +당초시비 +당초구비 +변경시비 +변경구비 +뗗쒼FO +P뛇曼덏F +뛇쭾뛇꽯덏F +뛇쭾뛿d +뛇쭾뛿@ +뛇쭾뛿 +뛘쮮깦 +붅P뛿괆 +좌측의 비용추가/비용삭제 버튼을 클릭하여 +일반관리비 직전의 경비 항목을 추가/삭제 할 수 있습니다. +산출경비 +직접비 + ※ 주의 =『 +』 옵션이 【포함된금액】 일때 = ※ +직접공사비 +에 포함된 금액으로 경비금액에 계상되지 않음 + ② 기성내역서 등록시 삭제된후 등록됨 + ③ 공사원가 호환규정(XML)에 변환되지 않음 +골재사용료 +폐기물수수료 + 이윤 ~ 라)공급가액 + 관급자재 ~ 바)총공사비 +1. 계산/인쇄 설정 : 계산방식의 설정(기준선택)과 원가계산서의 인쇄내용을 설정합니다. +2. 수동/자동 금액 : 안전관리비, 품질관리비 ~ 관/사금자재대 금액을 입력합니다. + - 자동 : 내역서의 공종구분(제외금액)에 설정된 항목의 값을 자동입력. + - 수동 : 사용자가 직접 입력하거나 더블클릭으로 금액을 불러올 수 있음. +3. 일반관리비 직전 : 순공사원가(경비) 금액에 포함될 추가금액 입력. +4. 이윤~공급가액 : 공급가액에 포함될 추가금액 입력. +5. 도급공사비 직전 : 도급공사비에 포함될 추가금액 입력. +6. 관급자재~총공사비 : 총공사비에 포함될 추가금액 입력. + 이윤이후(공사원가에포함) + Ⅱ.사급자재비 이후 +4. 이윤이후 : 공사원가에 포함될 추가금액 입력. +6. 사급자재비 이후 : 총공사비에 포함될 추가금액 입력. +기준율적용(&Y) +취 소 (&N) +원가기준율 적용 +원가계산 기준율(제비율표)로 재계산하시겠읍니까? + [기준선택] +기준선택 +SV뗗앤HO +삭 제(&Y) +삭제하려는 항목은 [ +】등.. 다른시점에도 금액이 존재합니다. +삭제후 다른시점의 총공사비를 확인하시기 바랍니다. +] 항목을 삭제하시겠습니까 ? +다른시점 추가금액존재 +S뗗※HO +끐~(뗁I뗊※HO +[횖S뗗※HO +뗁A뗊※HO +tV떿Ht +뗔떾撓 +Qd뗔떾頑 +u$뗔떾訛 +Qd뗔떾烏 +Qd뗔떾撓 +뗔떾嵬 +Y꽵tKUj +Y꽵u)j +뗊딢澮+ +^[횏횏 +딢叭pHO +딢叭dHO +딢叭0HO +딢叭4HO +딢叭8HO +딢叭`HO +딢叭\HO +딢叭XHO +3웰lHO +뛇젉U淸F +뛘륺嶢 +뛇쟑뜊\ +뛘젌E淸l +전체 원가에 영향을 미치는 부분을 수정하였습니다. + 부분의 금액도 다시 계산합니다. +3픘hkhG +딶@꺜;땭 +딶@껉f땭 +딶@꺜;땭` +딶@껉l땭d +딶@꺜;땭h +뛇캤꼖G +u훾E뉴쁬G +뛇맳촰G +딼컠긚 +붅P뛿l +붅P뛿8 +꺞諂<$썘긑 +꺞諂<$썘긬 +꺞諂<$썘긹 +꺞諂<$썘긲 +꺞諂<$썘긚 +꺞諂<$썘꺒 +꺞諂<$썘꺃 +꺞諂<$썘꺉 +붅P뛿驃 +꺞諂<$썘꺮 +꺞諂<$썘꺶 +꺞諂<$썘껟 +꺞諂<$썘껂 +꺞諂<$썘껔 +꺞諂<$썘꺦 +꺞諂<$썘꺲 +꺞諂<$썘껇 +꺞諂<$썘껚 +꺞諂<$썘꺎 +꺞諂<$썘긨 +꺞諂<$썘긠 +꺞諂<$썘깶 +꺞諂<$썘꺞 +꺞諂<$썘꺢 +꺞諂<$썘깲 +꺞諂<$썘꺚 +꺞諂<$썘긖 +꺞諂<$썘꺖 +꺞諂<$썘껋 +꺞諂<$썘깘 +꺞諂<$썘깞 +꺞諂<$썘긌 +붅P뛿힝 +꺞諂<$썘깭 +꺞諂<$썘깒 +꺞諂<$썘깉 +꺞諂<$썘긤 +꺞諂<$썘깿 +꺞諂<$썘꺺 +꺞諂<$썘깦 +꺞諂<$썘껣 +꺞諂<$썘꺪 +뛇罹 의 1.2배 ..................... + (재료+직노 + 관급/1.1+사급재 -내역서안전관리비) x 3.15 % + 12,345 천원 ............. + <(재료+직노 -내역서안전관리비) x 3.15 % + 12,345 천원 > 의 1.2배 ...................... + 8) 산업안전보건관리비<(직.간재+직노+(관급+사급)/1.1 ) x ○○ % + 8) 산업안전보건관리비<(재+ 직노 + (관급+사급)/1.1 ) x ○○ % + (직.간재+직노+ 관급/1.1+사급재) x 3.15 % + 12,345 천원 ............................... + <(직.간재+직노) x 3.15 % + 12,345 천원 > 의 1.2배 ....................................... + (재료+직노 + 관급/1.1+사급재) x 3.15 % + 12,345 천원 ............................... + <(재료+직노) x 3.15 % + 12,345 천원 > 의 1.2배 ........................................ +직공x상한 +직 공 비 +직공비x상한 +직접공사비x상한비율 +직 접 공 사 비 +직공비x상한비율 +zD 센L +내역:#,0 +사급:#,0 + 당초금액 + 직노증감 + 당초금액 + 당초금액*증감비율 +ㄴ.1)직접노무비 + 4) 건강보험료< + 5) 장기요양보험료< +(4)건강보험료 × ○○ %> .. +당초금액 + 당초금액*증감비율>.. + 6) 연금보험료< +(직접노무비) +(4)건강보험료 × ○○ %> .. +당초금액 + 당초금액*증감비율 > .. + 5) 건강보험료< + 6) 장기요양보험료< +(5)건강보험료 × ○○ %> .. + 7) 연금보험료< +ㄴ.1)직접노무비 + 7) 퇴직공제부금비< +(직접노무비) + 8) 퇴직공제부금비< +도서할증:#,0 +( 산출경비 +u툖E㉩삈G +u댆A늼u +P뛇쁏寮 +뛘쁙瓦잯 +붅P뛿H +붅P뛿綜 +붅P뛿좢 +붅P뛿곽 +둇WP뛿 +딹L깬枉롾 +붅P뛿幾 +붅P뛿멁 +붅P뛿숟 +붅P뛿뚽 +딶L땰l +뮦澮d놕 +뛇殲K꾵 +"......................."#,#0원;"......................."-#,#0원;"......................."#,#0원 +명칭이 없습니다. XXXX 명칭을입력 또는 삭제해 주세요 XXXX ................... + 관급자재대 +(도급자설치) +3픘h룠G +tm벰숮 +딶H땭( +RP뗊땭$ +떸歪륐 +떸翫륐 +뗊떸瑥륐 +RP뗊땭 +떸渦랓 +떸瑥랓 +총괄내역서 +원가계산서 +3픘hd좬 +붅P뛇캰樂初 +붅P뛿p +嗇엜.딢 +嗇엜+딢 +嗇엜3딢 +嗇엞5땰 +덭璿냼 +3핃F@덯D3핃넀 +3핃Fp덯t3핃놆 +u킀Eㅊ +붅P뛇횾堯淋 +$@3핃꺒 +3핃Fh덯l3핃녩 +붅P뛿D +딢殲[괉 +3핃E孟 +3핃E請 +SVW뗳뗗염FO +딼棅0EO +딼挽4EO +딼毒8EO +딼龜껡 +딼핆넀 +u쐨E뙷 +딼닂넀 +공사규모에 따른 제비율변경 +공사규모에 따른 제비율변경으로 공사규모가 +계속적으로 변경되는 무한루프상태가 발생됩니다. +일반관리비, 이윤...등의 공사규모에 따른 제비율을 참고하여 사용자가 직접 수정하십시요. + 30일 미만 + 6개월미만 + 6개월 ~ 12개월미만 +12개월이상 + 6개월이하 + 7개월 ~ 12개월이하 +13개월 ~ 36개월이하 +37개월이상 +공사규모 : 추정가격 (행자부, + ~5천만, 5천만~3억, 3억~ (원) +을 기준으로적용 + ~5억, 5억~30억, 30억~ (원) +공사규모 : 추정가격 (국가.지방계약, + ~5억, 5억~30억, 30억~100억, 100억~ (원) + ~50억, 50억~300억, 300억~1000억, 1000억~ (원) +을 기준으로 적용 +G뛏罹L +딢큁hl +뛘쮮펨 +딼쐦E鳥c +꺞諂<$쏂c귱 +가져오기(&Y) +중기시간집계의 노무비 가져오기 +중기시간집계의 노임의 합계가 정확한 상시근로자 노임이 되지 않을수 있습니다. +그래도 작업을 진행하시겠습니까 ? +사용중기의 노임을 집계하고 있습니다. +ua죩HO +U뗭SV뗃끟x +뛇②p漂 +뉳툖꿫 +붅P뛿x +붅P뛿療 +뛇잭\迭 +뛇僚?迭 +공사명 : +S뗗졨HO +붋떸屋廬 +3픘h1$H +일반공사 +산업설비 +조경공사 +건축공사 +뛇煥 (H +뛇煥8(H +뛇甁L(H +뛇煥d(H +뛇煥x(H +u쐝=lHO +뛘뙇E澮+林 +관급자재대/1.1 +관급자재대 +사급자재대/1.1 +사급자재대 +관급/1.1+사급재 +관급재+사급/1.1 +관급재+사급재 +(관급+사급)/1.1 +떸了忠 +꽵tI뗕떸兀忠 +떲SVW뗳뗗염FO +둗W땭P +둗W땭h +RP뗊땭P +RP뗊땭l +RP뗊땭| +RP뗊땭` +RP뗊땭L +RP뗊땭\ +RP뗊땭d +RP뗊땭T +RP뗊땭D +RP뗊땭X +u]딦x뎴 +SVWU뗗염FO +껇7t/HtQ껇 +둗W豌棕 +둗W完棕 +둗W癰棕 +딢叭륣O +3웰륣O +딢叭hHO +떿蛙判 +뛇淸}鵡 +딼젌EㅸL返 +덭쐨E쏱j +뛇샋p:H +딢淸g寮 +U뗭QSVW덭環`BN +3픘h꿑H +주휴수당 +간접노무비 +장기요양보험료 +공사이행수수료 +하도대금수수료 +건설기계대여수수료 +일반관리비 +건설공사 안전점검비 +고용개선지원비(PS) +고용개선(건강,연금) +고용개선장려금 +공사보험료 +소모품및사무용품비 +여비,교통비,통신비 +세금,공과금 +시공도작성비 +3픘hCiH +딼天봃O +딼霽,FO +딼痢0FO +딼甕4FO +딼訝8FO +딼錫욳 +| 뛘片퇝I +XZRP3핅E +ZX~C뛘天hMI +應떸^[뗥]횒@ +3픘h뀬I +K끱|%C3핆U +뛘片픍I +딢鋪벽 +儀떸_^[YY]횒@ +SVW돂筬 +岱뎲驃 +倚_^[뗥]횖奎I +f+헶끐} +^[췄혠 +^[횏핓쬕 +TGIFStream륲VW꾋t +떿_^[횏픓f긹 +[횏픘뗭j +S3픘hk쭵 +S3픘h챔I +儀떸[Y]홺쯍 +TGIFWriter륲V꾋t +S뗗꺕 +H뉱 뛖 땵 +f岱H횖SV뗳뗗딠4끐~ +뎤0딠< +덽P딶X껉 +딶T;P |@ +딶T;P |( +딶T;P | +TRLEEncoderS뗗딠d뎰 +딠@덪<[횖V뗱힓8 +딣x;F|| +^홙뗗껢 +떸[횏첫 +SVW뗻뗗떸阮 +$딠x뗊 +딫t;Hlt +SVW뗗3픘hs콹 +풠FH덪d +뛘桓HNI +옰;Clt +옰;Clu +儀_^[Y]촌콹 +f딠bf;CD +f덪D힏8 +C<땣<껥 +f덪D^[횒@ +f딠Ff꺚 +f덪b[홛뗭j +뛘片HNI +@L뗴곫 +뛘天HNI +뗒죩CI +뛘痢쟋I +뛘甕쭻I +3핃G8떿꾗t +3핃C8떸擾 +SVW뗗땣 +끐u;딠 +R$_^[횖SVW뗳뗗딠 +_^[홛뗭j +S뗗3픘h炳I +뛘桓XNI +딢澮굷 +_^[횏픓뗗딠 +[횖S뗗딠 +[횏픓뗗딠 +[횖S뗗 +빥[횏픉t +딢澮崧 +딢澮龕 +렝P딢澮 +뗁3핅E上3 +腦뉳씌 +딢澮縊 +뛇촒뛘㉧뉿I +딢鳥捌 +딢澮勵 +딢澮퀭 +딢澮숝 +딢澮덝 +딢澮쉻 +딢澮赦 +S뗗딠 긹 +딠 [횏C +빥홙VW뗱딣 +헠Uf땣% +3픘hHI +f뎂)f뎤+꽵t +뛘桓 NI +儀떸_^[Y]횖U뗭j +SV뗳뗗3픘h㈘I +꽵u)떸蜈 +R f덪+딠 +R,f덪)뛘片 +뛘天쁌I +꽵u%딢 +R$뗊딢 +뛇쏱뛘샇 +딢쁏딢 +떷3漏껸 +렝H끐| +P딢鋪n +P딢鋪流 +儀뗥]횒@ +딢澮旬 +딢澮꿍 +둏D둛>딢淸 +딢澮삘 +3픘h듰I +딢澮뺕 +P딢 P딢 +P딢 PS딢 +뗁뗖딢澮 +ⅴⅴ뗲뗗딠 +렝H덬$ +E뗈딻$ +꾗u횏D$ +덬$ 땗$ +G%f딡$ +꺞$]_^[홛뗭딢 +쑡]횏E +딢鋪R +뛘핆E澮績 +딢澮聿 +딢鋪둡 +딢澮볆 +儀^[YY]횖 +TExtensionList륲V꾋t +뗚뗹땚 +뗲뗚뗹딳 +뛘片쭻I +딢鋪쓉 +儀떸[YY]횏픘뗭j +딢澮0d +儀^[Y]횏픓VW꾋t +^[챨荷먻@ +늂4꾋t +뛘桓hMI +^[횖SV꾋t +TAppExtensionList떲SV꾋t +뗱뗓뛈 +]_^[홙V꾋t +Q4_^[횒@ +SVW뗚뗱3픘h鳳I +鉥떾烏 +SVW뗳뗗뛖 +]_^[횏픓VWU뗪뗹딦 +딢淸쟚 +떾덪l끐t +f덪H힏i +덭標CH +딽t끨t +[횏픘뗭꺞훁VW땥 +딢哮@H +t4딢哮@H +빥P딢哮@I +Y딢幌@i +딢幌@h +3핃E佾 +딢幌@U +뛇횾瑥 +뛇횾僥 +딢幌@T +딢澮從 +@P딢哮@H +딢徨@P +홙뗗떸誤 +t#딠p끐t +덯83핃F4f“ +f덯<졃 +鷹딢澮E +鉥딢澮J +Q8[횖瓮 +뛇캰뛘Ц쁍I +뛇캰뛘㉧쁍I +뛇캰뛘ㅈ쁍I +뛘殲鍍 +뛘矜쓸 +뛇캰뛘졇쁍I +뛇캰뛘쑙쁍I +뛇캰뛘샇쁍I +꽵t)끱 +뛇캰뛘뵺쁍I +뛘맱`NI +뛇캰뛘뙵쁍I +딢鋪7巷 +딣,鼇w +P딣P蝸 +Q@떿_^[횖S뗗딠T끐t +딠P끐t +딠,딼澮늱 +뛇鋪-黜 +붅[횏핆@0 +딢幌@) +덭幅e딢澮z +뎤4꽵t +딢鋪U1 +FOu컠C0 +儀_^[YY]횖SV뗳뗗 +3픘h)#J +딣,擁o +淫딢澮잰 +딢淸j臧 +떿뗅瓦椅 +딢鋪p姙 +儀뛘靜 +딢鋪>杓 +뗗3픘h[&J +딢鋪U柔 +딢澮寨 +딢幌@( +딢哮@< +u7딢哮@< +빥P딢哮@= +t&딢哮@<@u +U딢澮嬉 +딢哮@<@u/딢澮댓 +|&뗒떾矮諪 +儀^[YY]홛뗭SVW뗙뗳뗹딢 +P뗅뗕딦L +矣]홛뗭j +P뛘桓hNI +뛘片hNI +딢鋪_艾 +뛘天8/J +뛇淸<醇 +S뗗3픙뗲덪 +횖릟型 +횖릱S뗗V딠 Ht +떾^[횖릱S뗗딠 +[홙뗗딠 +SVW뗹UQ땚 +딢H뗕P떿딯$ +떶H3菱s +뗒딢澮뛁 +3핈S0덪(떿 +딣H+횋FH딡$ +K끱}芝P +^[횖릱SVW뗱3핃F +_^[횖륲뗗VWQ꺕: +딷 돀R +頗떷끐u +떾덦H3老긘 +덦8딷4 +땩4判떷끐u +떿덦H땩<땭V +뗹떿껇 +;Spr톷횏릸 +3잼@딠 +3잼Z딠 +떾]_^[횖릱S뗗V뗳딠 +[홙긹H +땆$땲. +;K0w5딠 +;K0w2딠 +덦,꺛T;s |햲C(Ht +끐t?딽 +^[횖륲긹P +$3픺<$ +뎛$8딢 +뎆$$딫 +뎆$ 덹$ +뗈P딻$ +R뗖뛆$,沃 +뗊뗚딡$ +딯$(덳 +뎆$ 딫 +뎆$(딡$ +딞<덬$ +뛆$$뗅뗔穩 +뗕뗻딯$ +f袋딡$ +딯$$덳 +3잼g딻$ +꺞,_^[횖릱SVWU겺괆 +뗁待뗁꺢 +뎆$4딫 +뎆$<딡$ +덬$L딻$ +딡$(뛗껺뎆$0딯$ +덬$,딻$ +뛆$8뗅뗕婉 +딻$$떖귆 +U뛆$8뗅뗕宛 +u$f끐| +딯$ f딡$ +딻$ f딯$ +D$(귾$0 +딯$8덳 +]_^[횖SVW겺綿 +待뗃딻$ +끟뛾꺮 +桃뗉딼 +3잼!딼 +3핃V$덯 +뎆$0딫 +뎆$8딡$ +澄_^3핃D$ +t껵뎥똋딡$ +뎆$ 끨t ++\$ 딯$ +뎆$$끨t ++\$$딯$ +$딻$0뛲$L딞 +딯$4덳 +꺞\]_^[횖륲뗗떸V툵 +딠(P딲 +딺 뎇曹C$ +딲哮Al +딼哮Bl +뗗3핃왃 +칅t뎂(꺘* +륶뗭Sj +닂3A긂 +$딶t뎆$ +$딞\덬$ +_^[횖륶뗭떶S줘 +떶덬$,딻$ +뛌 덹$ 耀 +뗱3핃D$ +딻$,뗃덹$(딡$ +$딭t;L$ +뛒 뎆$ +뗖HFP뗈딡$ +꺞 _^[횖륲VWU땛 +$뗃덹$ +떶堆숗熙孟 +땖l뛈D +]_^[쳉릱릩 +횖륲뗗떸V퉊 +몛D$$;T$ +딡$$뗁덹$ ;\$ +~핦귾$$ +릧L$,;T$ +딡$,뗁덹$(;\$ +릧L$0;T$ +~틽;\$ +릧L$4;T$ +~팉;\$ +몛L$8;T$ +C꺛@;\$ +~i떾;D$ +몛L$<;T$ +~팆;D$ +R떷把뗋 +몛D$D;T$ +딡$D뗁덹$@;\$ +뗕딢鋪곽 +뗕딢鋪忌 +덬$,;L$ +딡$,뗊뎆$(;\$ +렝끐t1 +l$ 뗪쥔 +~섲귾$, +D$ 숗|$ +D$$숗|$ +꺞0]_^[홙VW뗹떿뗚U뗅땛 +뗒뗅줴 +]_^[홛뗭겺퀴 +륶뗭겺퀸 +RP뛿卄 +I딶 꺛 +릱륲VW범 +횖륲뗗떸VWU땛 +뗱3핃낼 +u"딮l떸 +$떸땽. +$딶 ;T$ +칇$떸땴. +덨H딡$ +]_^[횖S껉 +Q뛍4딢 +CL딺D껉 +딠4;CH +A덷4땰. +^[홙VW꺞핃T$ +뎆$$饒 +딻$$덽 +덬$8郵 +뎆$4딯$ +D$$딯$ +딻괝딡$ +덬$$뎆$ 殞 +덹$(딡$ +}U딻$(3 +3핆2덬$ +뗈RW딡$ +|쳝D$ +$딞 ;D$ +$딭 땛 +딞L끐u +_^[홙V겺療 +덹$@溶 +딡$@긹0 +딡$@딶 +뎆$ 딯$ +vU딡$@딶 +T$$딯$$Qj +딻$ 딻륣딡$ +S 덬$(딡$@딶 +딯$ 딻$ +덬$X딻$T +덹$\딡$T +뎆$d딯$T +텮 덬$l딻$T +덹$h딡$T +덹$D딡$ +딡$ H;D$ +덬$4딻$0 +덹$x덹$t덹$p딡$, +뎆$|딡$4뗳 +딡$,阮A +s3딻$0 +덹$x딡$, +딻$P땆 +츻$X줬 +딡$t딻$| +끟|2딡$h딻$h줘 +딻$H딡$ +T$L딻$t뎆$p딯$x덹$t땤$|땮$ +딡$@딶$ +딡$@딶$줴 +뗱3핃퇍 +뛈H덬$ +P떿딯$ +$꺝T딦 ; +뗁3핈V 뗗@쥐 +SV뗱껉 +QP떾딺 +뗗3핃옠 +P떾딳l +Z_^[횒@ +$딭D껈 +딯$ 딡$ +딯$ 딞(;D$ +딭L덹$ +딡$ 딻$ +덽(딯$ +땤$$짊 +@껟@|裡|딡$ +딶P3핃T$ +딻$(뗳딻$ +꺞0]_^[횖릱SV뗱W떾UQ퉅 +딠PP完| +$;V |햋]_^[횒@ +릱륶뗭딢 +S뗗떸VWU땛 +꺡T딡$ +]_^[홛뗭겺괆 +덭툔햲RPf딫 +딲큺떊 +딲큺떲 +딲큺뗠 +뎇컠M겟 +덳 덳@덳`뎵 +뗃덺핆H +뗙뗲딫 +륶뗭겺퀼 +덽 덽@덽`뎽 +뗃덺훺U훺 +U뗭겺X +릱U뗭V떚6 +3잼z딻$ +꺟T딡$ +낇u!딯$ +G낇u!딻$ +낇u!딻$ +둒$'덹$ +$u!딻$ +]_^[횖릱SVWU뗹겺羅 +낔u!딻$ +}:낔u!딻$ +뛆$0P딼 +딶XB꺿 +뗱3핃나 +S뗚뗁뛅 +뗒떾딫 +[횖릱S퉬 +矣]횏픺-l +SVW뗳뗗곥 +MZLib륲Vh +$뗗끱t +딣<뗅뗖 +$덨$딻$ +$뗳뗗딠 +딠 덬$ +딠4덬$ +딺0딡$ +덪4딡$ +PSV딡$(딫 +딺,뎆$ +딠,;D$ +u,딠0;C(t$딠(덬$ +$딠4덬$ +u/딠0;C(t'딠(덬$ +딠(덬$ +u1딠0;C(t)딠(덬$ +딠0;D$ +딠0+D$ +딠,+D$ +딮0딻$ +;C0t2딡$ +꺞 ]_^[횏픘뗭겺 +3핆U曹 +$뗗끟t +_^[YY]횏픘뗭딢 +3핃E贍 +;혊)딢嬖 +v)딢嬖 +岱뗁떸3漏딛 +儀떸[Y]횒@ +U뗭3픘hy +EColorConversionError떲 +홨透f琶횖SV꾋t +뗚뗱힓 +떾^[횖떷횖떷횖곣 +U뗭꺞캳V뗙끱x +덭션E맬 +덭션E퇗 +덭鎌E활 +덭컸E육 +덭컸E픛 +w섎b땥 +U뗭겺P +SVW뗙끱x +HCP뜔n +`良"劈~딝? +쎴m衿-XAK +쎴-뉯K +Z+쮜焚 +덭鄂E析 +t2낔v\둉 +낔w臀.낔v*둉 +뗖딢鳥Q찡 +腦H뉳車 +꽵tI딢標 +腦H뉳蹂 +낔vc둉 +U뗭꺞퍾VW뗙끱x +덭송E송-픡K +E菊볏캪夫? +덭송E송-piK +E휩-|iK +暴-늝K +덭송E송- nK +E휩-,nK +숮EC괎 +뛘禍T&M +SV뗚뗱3픘hmyK +뛘禍 &M +뛇澮t섙 +SV뗚뗱3픘hQzK +뛘禍l'M +P뗕뗉땭< +뛇澮y뽸 +떲U뗭겺퀴 +t*딢哮 +|AG뜚힘 +SVW겺豹 +뗚뗱뛆$ +f岱f덬$ +|]G3핈t$ +|7G3핈L$ +SV뗙끱x +뛘禍 %M +뛘阪 %M +GraphicEx떲T껳 +GraphicEx떲 +GraphicEx맟껳 +TGraphicExGraphic,꿐 +TSGIGraphicH낻 +TAutodeskGraphic`놩 +GraphicEx떲뙂K +TTIFFGraphic뙂K +TEPSGraphic0둏 +TEPSGraphic쨯K +TTargaGraphic떲0딮 +TTargaGraphic젇K +TPCXGraphic0똊 +TPCXGraphic쨱K +TPCDGraphic,뛍 +TPCDGraphic젋K +TPPMGraphic(랯 +TPPMGraphic쐨K +TCUTGraphic떲8뢐 +TCUTGraphic삇K +TRLAGraphic4륦 +TRLAGraphic쮲K +TPSDGraphic0멚 +TPSDGraphic쨶K +TPSPGraphic,묷 +TPSPGraphic젒K +TPNGGraphic떲<밙 +TPNGGraphic쐮K +儀Y]횒@ +U뗭QSV뗙 +3픘hq봌 +Ju稷릩 +@Ju胎떲됏那 +@Iu胎줴 +RP떾鼇놎 +붌꾗t$뛗$ +떸꺞 _^[횖U뗭겺곽 +뗖떿f엌 +$뛅D뗗뛗$ +몍8뛗$ +$꺞$_^[횏픓VW겺 +녱Hf껇 +떲U뗭겺덤 +딼僚곯 +딼僚됺 +3픘h룯K +SV겺涍 +ul졬쪲 +꾗t\f=MMu +녱f덬$ +XZRP딡$ +$뗻뗱힑$ +뗊J끟u +렝덭請 +w\뒕㎙K +딢殲愼 +딢僚껃 +딢淸뤵 +$뗳뗗뛎$ +뗊3잭拉 +딢澮襤 +딢큁먁풨 +덭젉E晩 +덭臀Zj +덭臀B뛘쑁 +뛇퍹뛘삞 +P뛘뵡d&M +굥U堺j<덭孟 +뗊딢澮 +딢똏먁풨 +_^[횏픘뗭겺ㆋ +|IG뜚拔 +COu귡O +홛뗭겺덞 +R,f뎲拔 +R f뎲咐 +u\뛿液 +R 뗗K끱|kC3 +R 뗗K끱|PC3 +泣_^[뗥]홙VW꺞 +_^[횏픘뗭겺飇 +Q8떸셊P딢 +Q8^[뗥]홛뗭겺 +3픘h먡K +꺚D뎲L +t;,홺7뜒, +딿@땯L +3픘h쎲K +낔w뇣꿖 +Pjd땯T +뗹W땯L +SVW겺| +둜$A늁 +GraphicEx륶뗭j +SVW뗳3픘h볙K +읙꾗tfh +뛇쟑딢핆H +岱딼핃B +덭컠E핆@ +덭큾E핆@ +딢캰딢핆H +딢큁딢핆H +딢퇠딢핆H +딼큃딢핆@ +뗁딼핆R +딼퇢딢핆@ +P뛘꽒d&M +Q@딢핆P +Q4딢핆@ +P딢핆@ +딢툍픱 +딢큶픱 +딢컚픱 +瀜_^[뗥]횖 +뛅D뗗h +헶덪b힒 +_^[횏먊 +$ZXu(뛘禍$$M +SV뗗3픘h毖K +儀떾^[Y]횖U뗭j +SVW뗳뗹3픘h +P뛘棹d&M +뗒떸f엌 +SV뗗3픘h딖K +SV뗳뗗3픘h衝K +U뗭겺剿 +Bf돂濯 +뤼N낔|OF뜚豹 +Q8^[뗥]횏픘뗭겺 +뗳3픘h +RP떾樂 +뛇픐딮 +P뛘샥d&M +뗊떾旺x +녱f뎰d +뗹떾蘊 +읙꾗tK뛘疫 +Q4뛘篇 +Q8뛘篇 +딢鋪쐣 +턗f把P뛇題 +뗖딢澮h +M훧↓p +뗖딢澮" +뗖딢澮C +덭훺E万 +뗖딢澮1 +뗖딢澮R +딢淸u宖 +U뗭S딢 +꾗tb딢 +딢鋪h坼 +딢淸p罷 +淫[뗥]횒@ +]홛뗭겺ㆊ +뛅D뎲H +딢꼮꿥 +딢닀꿟 +딢麟v洪 +딢麟_洪 +潤뜒ㆊ +딢麟m姮 +f딢쬯껇 +뗹떾夭罷 +RP떾腕罷 +떾歪罷 +$뗚뗁뗩곩 +뗊떶딲 +뗲뗗뗒떾딲 +덭繰E粗5 +꺞諂<$쏂~姮 +혟E繰E粗5 +꺞諂<$쏂>姮 +떸邕締 +딢澮ㆋ +딢澮柝 +딢澮騰 +딢澮쏓 +꽵u*딢哮 +뛘샥D&M +딢쇠뭚 +$뗖떸嶢h +뛱D뛗$ +떿樂艇 +빥뉶$둊 +꽵t뤖D$ +P홄IENDSVWUQ뗻뗨떺筽 +P뛘치d&M +뛇큁딢澮H塡 +딢澮-塡 +3핃E甕 +뗖딢澮 +딢澮寮 +딢澮깎 +$떸凹修 +뛇鋪H蕪 +끐uT3핃꺦 +끐tq뛘靜 +뗕떿汪> +떸瑥掩 +뗕떿婉< +떸倭身 +^[홙VW뗹딦 +뗒獒鳳 +낇t.딦 +뗔嵬蕪 +뗒玩犯 +$Z]_^[횏픘뗭딢 +딹鳥@捏 +뗒딢淸섮 +딢淸砬 +딼麟a礬 +~\뗒딣 +|?뗒딣 +떿浣蹶 +Z]_^[횏픘뗭S퍙 +3픘hLDL +딲擅,LL +딲罹8LL +P뛘沈|%M +딲雅DLL +뛘胥|%M +뛘棹,'M +딲克|LL +P뛘혤4&M +딲횐봍L +딢횾졜LL +딢퍹졜LL +뛘륫H&M +딢퇠졜LL +P뛘가P%M +P뛘Æp'M +딲㉩,ML +뛘ㄱ@'M +딲졋DML +뛘삞@'M +P뛘맇l%M +딲맳|ML +뛘뙜`&M +P뛘닡,&M +딲댖봎L +TTIFFLZWDecoder짵L +TPCXRLEDecoder릱PL +TCUTRLEDecoder릜QL +TPSPRLEDecoder먯QL +GraphicCompression륱L +TCCITTFax3Decoder떲봖L +TLZ77Decoder릪TL +3픘hCVL +떾뗖阮뱍 +C떿H끐| +v%C떿H끐| +$뗨3핃D$ +@YZ]_^[횒@ +끱}(껢 +뗖떾뗅誤농 +珦u($?뗱곫 +떿뗕雍농 +꺞鳥,댕 +횖U뗭QSVW +뗖떾뗅婉뀨 +꽵t=뗊 +뗖떾뗅鈺깖 +왓B떿翁깖 +뉶-떾碗 +뗱떾H껇 +s1떾(C, +腦H둏,腦딺( +뗸낔v# +Z*혞C, +$Z_^[횖 +떲SVW뗱j +껢@u瀯@ +떿뗒껉?줴 +U뗭SV땥 +륶뗭SVW꾋t +뗲뗚뗹뛉 +뉷4떿꾗t +딺0筽₄ +S뗗3픘h쯨L +뛇澮8ん +홛뗭겺0 +뗁뗗떶 +鷹[뗥]횖땺p +딢澮u⒀ +딢鋪_⒀ +應[YY]횒@ +[횖SVW꾋t +딢鳥ш +딢殲橋 +딢峰욇 +딢徨@( +3픘h+mL +SVW뗗3픘hXnL +뛘禍<&M +딢澮쭹 +횖U뗭꺺 +껇?tn껇@ +;혇!딢 +뗗딢펹 +딼穩 * +岱H討덨 +u贍%뗴煖 +딢훺D뀮덭흗\ +딢經;쏍 +륶뗭3픘h1uL +홛뗭3픘hiuL +홛뗭3픘h죝L +3픘h캌L +원가계산기준 +SVW뗹3픘h-숷 +뗒떿堯낐 +H껇2sL\&M +륶뗭3픘h뀣L +P뛇퇠죺&M +P뛇쁏죺&M +붅P宛締 +뗱“$M +U뗭3픘h|좱 +3픘hY쯐 +딢鋪86 +< 기성 제잡비 계산 > +원가계산(기성) +3픘h섐L +딼桓稻L +Hu{딼桓氏L +4삆E雅 +4쁥牌L +뛇煥ЛL +뛇編릎L +떾撓轎 +S뗗3픘h.췓 +꺞諂<$썚U桓丸L +嗇엞 j +뛘霽$캪 +꺞諂<$썚U痢$캪 +3픘h&퀽 +뛇雅ㅄL +뛇甁ㅄL +꺞諂<$썚U毒畇L +떸倭흴 +가나다라마바사아자차카타파하거너더러머버서어저처커터퍼허 +가. x +umUh샮L +YUh소L +꺞諂<$썚U캡妗L +딲훾E횐詵L +딲횐僉L +tjUh샯L +YUh임L +YUh꾎L +YUh먙L +YUh멀L +YUh겜L +u툖E은 +ujUh샮L +u쨳EШ +ujUh댶L +YUh다L +rjUh샮L +노무비 x +도서할증 +계약 제잡비율 +직접공사비 계 +(기성) +(별도내역) + 순공사원가 + 소 계 +이 윤 +고용개선지원비(건강 , 연금) +고용개선지원비(고용개선장려금) +공급가액 +공사손해보험료 +부가가치세 +도급공사비 +관급자재대(도급자설치) +관급자재대(관급자설치) +총공사비 +떸瓮잨 +꺞諂<$썚U片昧L +딢僚o쒞 +딢僚W쒞 +딢僚9쒞 +딢僚o쏍 +딢僚Q쏍 +딢僚=쏍 +딢僚%쏍 +$썚E鋪냠 +$썚E鳥먊 +적 용 (&Y) +계약제잡비율로 간접비 금액조정 +1.간접노무비 ~ 부가가치세이전(금회분) 까지의 금액을 +"가.직접공사비계(금회분) x 계약제잡비율 로 수정하시겠습니까 ? +떸獄섘 +떸琓쀳 +U뗭SV딢 +끐t7딢 +떸浣뺬 +떸鈺뺬 +딢陌k뷆 +딢陌Y볭 +딢陌A볭 +딢麟熔 +嗇엞8j +딢陌|륉 +계산안됨 +떲SV뗗땭 +횏픘뗭3픘h +87a89a떲 +NETSCAPE2.0ANIMEXTS1.0떲 +落j쉅쫋뻍쯫셖쩯뷫 +@휶웄BK +孵"",댺硼 +硼ぽ孵,댺 +缺솛솛솏缺 +솛솛솛솛 +솛솛솑 +硼j짦*F硼 +硼芬*찷硼 +띪硼硼 +硼硼硼;내뺙 +硼硼硼硼硼賁3뺙 +띪늵뛷 +뜄x띪x +硼w늿늳硼 +硼硼x띪硼 +弗늿늿늳 +硼硼崩"휭 +いJ첓おおDDJ젨 +S툂f`p +S툂ff` +S툂fff +S툂fff` +S툂k냚` +S툂k턥` +&=O8혗7몬$B +툮om_Nae +뾖tType_Kan +첯ynDBEdit +갨ysInit +쯘ynEditMiscClasses +헣ynRegExpr +큆ynEditWordWrap +칂ynEditKbdHandler +줚dAntiFreezeBase +랦raphicColor +쥸raphicStrings +핯raphicCompression +쩚rnFunc_ +툶dCoder3To4 +촇dMIMETypes +힖dHeaderList +뾋dTCPClient +폩_Kan_Rate +콻anJub +놱hareMem +돼翩譴) +由щ퉬 +(#,0 泥쒖썝 + +#,0 泥쒖썝 +졥艸Ю, +졠캐ㄽ캐艸Ю, +캐Η艸Ю, +졥㈉艸Ю + 7-12 媛쒖썡 +13-36 媛쒖썡 +痍⑥냼/醫낅즺(&Q) +댤돠황我. + - 蹂듭닔寃 +늿늿늿 +룒룒룒 +Ю㈕먉 +33妬옜 +&Q. 醫낅즺 +移섏꽭 ..................................................................... +칵걋갔確+ +먉冒淺 + + 泥쒖썝 > ..................................... +옜예읉엿 +嬅嬅숞洪 +w3333?옜333337ww333 + 異붿젙媛 +쉬걱斤譴 +由щ퉬 ....................................................... +컍h묓| +由щ퉬> ........................... +怨듭궗洹쒕え : 異붿젙媛 +異붿젙媛 + 怨좎슜媛쒖꽑吏 +Ю뚓淺莽( +縕칵斤 +칵걋斤譴 +칵걋堡뵴 +팍돠황我. +팍늚캐 +4. 怨듦툒媛 +뙾㉩댱 +5. 怨듦툒媛 +좼艸D푰 +칵걋堡 +먉冒칵걋 +흽К픁푰 +鐵좼艸 + (2) 議곌꼍怨듭궗 + (4) 嫄댁텞怨듭궗 +뙾瞥㉩㈕斫 + - 怨듦툒媛 +(0) 怨듦툒媛 +눗㈕斤 +졠캐ㄽ캐, +좇輔斤 +걋쑲斤 +칵걋分斤 +걋分斤 +획걱ㅒ +먉冒칵걋: +먉冒칵걋 +꽱섰里 +쉬걱斤뵴 +획作堡붏. +걋쑲分 +根눗斫 +(1) 怨듦툒媛 +異쒕젰(&P) +醫낅즺(&Q) +00.00 % + 12345 泥쒖썝 + ] * 怨듦린 +琁췿dv +붏뫥淺莽見 +쑱譴根 +붏(핼[ +걋쑲쉬D푃 + 誘몃쭔 +由щ퉬 +~ 6 媛쒖썡 +6 ~ 12媛쒖썡 +12媛쒖썡 ~ +由щ퉬> x %) +돼翩譴 + 6 ~12 誘몃쭔 \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/parse_dfm.py b/scratch/orca_artifacts/stmate_competitor_analysis/parse_dfm.py new file mode 100644 index 00000000..106fce3a --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/parse_dfm.py @@ -0,0 +1,137 @@ +import json +import struct +import sys +from pathlib import Path + + +class Reader: + def __init__(self, data: bytes): + self.data = data + self.pos = 0 + + def take(self, size: int) -> bytes: + value = self.data[self.pos : self.pos + size] + if len(value) != size: + raise EOFError(self.pos) + self.pos += size + return value + + def byte(self) -> int: + return self.take(1)[0] + + def short_string(self) -> str: + raw = self.take(self.byte()) + for encoding in ("cp949", "utf-8", "latin1"): + try: + return raw.decode(encoding) + except UnicodeDecodeError: + pass + return raw.hex() + + def integer(self) -> int: + kind = self.byte() + formats = {2: " dict: + props = {} + while True: + name = self.short_string() + if not name: + return props + props[name] = self.value() + + def component(self, root=False) -> dict: + flags = [] + child_pos = None + class_name = self.short_string() + name = self.short_string() + props = self.properties() + children = [] + while self.data[self.pos] != 0: + children.append(self.component()) + self.pos += 1 + return { + "class": class_name, + "name": name, + "flags": flags, + "child_pos": child_pos, + "properties": props, + "children": children, + } + + +def parse(path: Path) -> dict: + reader = Reader(path.read_bytes()) + assert reader.take(4) == b"TPF0" + result = reader.component(root=True) + assert reader.pos == len(reader.data), (reader.pos, len(reader.data)) + return result + + +if __name__ == "__main__": + for argument in sys.argv[1:]: + source = Path(argument) + output = source.with_suffix(".json") + output.write_text(json.dumps(parse(source), ensure_ascii=False, indent=2), encoding="utf-8") + print(output) diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/rate_grid_defs.py b/scratch/orca_artifacts/stmate_competitor_analysis/rate_grid_defs.py new file mode 100644 index 00000000..8bac45a4 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/rate_grid_defs.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +import json, sys, io, pathlib +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace") +BASE = pathlib.Path(r"D:\worktree\임도설계 및 견적자동화 프로그램 개발\CODEX\scratch\orca_artifacts\stmate_competitor_analysis") +d = json.load(open(BASE/"TWM_KAN_RATE.json", encoding="utf-8")) + +order = [] +def walk(n, parent=""): + if isinstance(n, dict): + if n.get("class") == "TRealGrid": order.append((n.get("name"), parent, n.get("properties") or {})) + for c in n.get("children",[]) or []: walk(c, n.get("name","")) +walk(d) + +print("폼 자식 순서대로 나열한 RATE 편집 그리드") +print("="*112) +tot = {} +for nm, parent, pr in order: + cols = pr.get("Columns") or [] + grps = pr.get("Groups") or [] + rc = pr.get("RowCount") + titles = [ (c.get("Title.Caption") or "").replace("\r"," / ").strip() for c in cols ] + gtit = [ (g.get("Title.Caption") or "").replace("\r"," / ").strip() for g in grps ] + tot.setdefault(parent, 0) + tot[parent] += rc or 0 + print("\n■ %-18s parent=%-10s RowCount=%-3s 열 %d개" % (nm, parent, rc, len(cols))) + for g in gtit: print(" [묶음] %s" % g) + print(" 열: " + " | ".join(t if t else "(무제목)" for t in titles)) +print("\n" + "="*112) +print("패널별 행수 합계:") +for k, v in tot.items(): print(" %-12s %d행" % (k, v)) diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/round_table.py b/scratch/orca_artifacts/stmate_competitor_analysis/round_table.py new file mode 100644 index 00000000..c3eed6d3 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/round_table.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +"""Delphi 6 Math.RoundTo 재현 vs Excel ROUND 비교표.""" +import sys, io, decimal +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace") +D = decimal.Decimal + +def delphi_intpower(base, e): + # Delphi Math.IntPower: 반복 제곱 후 음수 지수면 역수 + r = 1.0; n = abs(e); b = float(base) + while n: + if n & 1: r *= b + b *= b; n >>= 1 + return 1.0/r if e < 0 else r + +def delphi_roundto(v, adigit): + f = delphi_intpower(10.0, adigit) + # Delphi Round() = FPU 현재모드 = 기본 half-to-even (파이썬 round 와 같음) + return round(v / f) * f + +def excel_round(v, places): + q = D(1).scaleb(-places) + return float(D(repr(v)).quantize(q, rounding=decimal.ROUND_HALF_UP)) + +def excel_rounddown(v, places): + q = D(1).scaleb(-places) + return float(D(repr(v)).quantize(q, rounding=decimal.ROUND_DOWN)) + +CASES = [(2.44,1),(2.45,1),(2.46,1),(-2.44,1),(-2.45,1),(-2.46,1), + (0.5,0),(1.5,0),(2.5,0),(3.5,0),(-0.5,0),(-1.5,0),(-2.5,0),(-3.5,0), + (1250.0,-2),(1350.0,-2),(-1250.0,-2),(2500.0,-3),(3500.0,-3),(-2500.0,-3)] + +print("| 입력 | 자리 | STmate 내부 `ROUND`\n(Delphi `Math.RoundTo`) | Excel `ROUND`\n(STmate 출력 XLSX) | 일치 |") +print("|---:|---:|---:|---:|:--:|") +diff = 0 +for v, places in CASES: + adigit = -places # RoundTo 의 ADigit 는 10의 지수 + d = delphi_roundto(v, adigit) + x = excel_round(v, places) + ok = abs(d - x) < 1e-9 + if not ok: diff += 1 + print("| %s | %s | %s | %s | %s |" % ( + ("%g"%v), ("소수%d"%places if places>0 else ("원" if places==0 else "%d원"%(10**-places))), + ("%g"%d), ("%g"%x), "○" if ok else "**✗**")) +print("\n불일치 %d / %d" % (diff, len(CASES))) diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/rounding_callsites.py b/scratch/orca_artifacts/stmate_competitor_analysis/rounding_callsites.py new file mode 100644 index 00000000..c3f22224 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/rounding_callsites.py @@ -0,0 +1,109 @@ +# -*- coding: utf-8 -*- +"""STmate CPM 모듈에서 Math.RoundTo / Math.Floor 임포트 썽크의 실제 호출 자리를 센다.""" +import pathlib, struct, re, sys + +ROOT = pathlib.Path(r"C:\경영정보(주)\System") +TARGETS = ["ST_KanJub.CPM","ST_SanCal.CPM","ST_Boq.CPM","ST_EdiLWi.CPM","ST_P_Joong.CPM","ST_Prt.CPM"] +WANT = {b"@Math@RoundTo$qqrxdxzc":"RoundTo", b"@Math@Floor$qqrxg":"Floor", + b"@Math@Ceil$qqrxg":"Ceil", b"@Math@SimpleRoundTo$qqrxdxzc":"SimpleRoundTo", + b"@Math@SetRoundMode$qqrx21Math":"SetRoundMode"} + +def pe(b): + e = struct.unpack_from(" VA + thunk_va = None + for n,va,vsz,ptr,rsz in secs: + if ptr <= k < ptr+rsz: thunk_va = imgbase + va + (k-ptr); break + calls = 0 + for n,va,vsz,ptr,rsz in code: + for m in re.finditer(b"\xE8", b[ptr:ptr+rsz]): + o = ptr + m.start() + if o+5 > ptr+rsz: continue + rel = struct.unpack_from(" len(items): + print(" ▶ 화면에 없는 내부값: %s" % vals[len(items):]) diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/settings_axis_map.txt b/scratch/orca_artifacts/stmate_competitor_analysis/settings_axis_map.txt new file mode 100644 index 00000000..f904ea03 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/settings_axis_map.txt @@ -0,0 +1,565 @@ +### 원가계산 설정 — 형식별 선택축 + +==================================================================================================== +## 공통 선택축 29개 + + ■ Cmbx_PORD1_H (Panel1) 2개 + 0 당초 / 변경 대비인쇄 + 1 변 경 분 만 인 쇄 + + ■ cBx_K_JeolSa (Panel1) 7개 + 0 간접비 절사없음 + 1 간접비 10원미만 절사 + 2 간접비 100원미만 절사 + 3 간접비 1,000원미만 절사 + 4 간접비 10,000원미만 절사 + 5 간접비 100,000원미만 절사 + 6 간접비 1,000,000원미만 절사 + + ■ cBx_Chasu (Panel1) 4개 + 0 원설계 + 1 1차변경 + 2 2차변경 + 3 3차변경 + + ■ cBx_W_Type (Panel1) 2개 ※화면≠내부 + 0 제잡비 원가계산방식 + 1 제잡비 표준시장방식 → 내부 `제잡비 실적공사방식` + + ■ cmBx_Kobo_Type (Panel3) 8개 + 0 없음 + 1 1 등급 + 2 2 등급 + 3 3 등급 + 4 4 등급 + 5 5 등급 + 6 6 등급 + 7 7 등급이하 + + ■ cmBx_JAB_TYPE (Panel3) 6개 + 0 일반 형식 + 1 토지개발공사 형식 + 2 인천상수도 형식 + 3 수자원공사 형식 + 4 지역난방공사 형식 + 5 고용개선지원(서울) + + ■ cmBx_Kong_Type (Panel3) 8개 ※화면≠내부 + 0 (1) 일반(토목)공사 → 내부 `0` + 1 (2) 조경공사 → 내부 `2` + 2 (3) 산업설비(토목) → 내부 `4` + 3 (4) 건축공사 → 내부 `3` + 4 (5) 산업설비(건축) → 내부 `1` + 5 (6) 국가유산수리 → 내부 `5` + 6 (7) 폐기물처리 → 내부 `8` + 7 (8) 소규모용역 → 내부 `9` + + ■ cmBx_JeolSa (Panel3) 9개 + 0 총공사비에서 조정 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cmBx_Buga (Panel3) 5개 + 0 (0) 공급가액의 10% + 1 (1) 재료비의 10% + 2 (2) 없음 + 3 (3) 산림조합 형식 + 4 (4) 산림조합-면세품 + + ■ cmBx_TBugum (Panel3) 4개 + 0 토목공사 + 1 준설공사 + 2 건축공사 + 3 기타 + + ■ cmBx_Hwan (Panel3) 15개 + 0 ◈ 없음(전기, 정보통신, 소방시설, 국가유산수리) + 1 ◈ 도로(교량, 터널, 활주로) + 2 ◈ 플랜트(발전소, 쓰레기소각로) + 3 ◈ 지하철 + 4 ◈ 철도 + 5 ◈ 상하수도(폐수, 하수처리장, 정수장) + 6 ◈ 항만(오탁, 준설토, 방지막설치필요시(간척, 준설)) + 7 ◈ 항만(방지막설치불필요시(간척, 준설)) + 8 ◈ 댐 + 9 ◈ 택지개발 + 10 ◈ 주택(재개발, 재건축) + 11 ◈ 주택(신축) + 12 ◈ 주택(재개발, 재건축, 주택(신축))외 건축 + 13 ◈ 조경 + 14 ◈ 기타토목(하천등) + + ■ cmBx_AnJun_Type (Panel3) 4개 ※화면≠내부 + 0 건축공사 → 내부 `0` + 1 토목공사 → 내부 `1` + 2 중건설공사 → 내부 `3` + 3 특수건설공사 → 내부 `4` + + ■ cmBx_Kwan_Sa (Panel3) 8개 + 0 관급자재대/1.1 + 1 관급자재대 + 2 사급자재대/1.1 + 3 사급자재대 + 4 관급/1.1+사급재 + 5 관급재+사급/1.1 + 6 (관급+사급)/1.1 + 7 관급재+사급재 + + ■ cmBx_Pos_Sagup (Panel3) 4개 ※화면≠내부 + 0 재료비에 포함 → 내부 `3` + 1 이윤 다음 → 내부 `1` + 2 도급공사비 직전 → 내부 `2` + 3 관급자재대 다음 → 내부 `0` + + ■ cmBx_Kun_Type (Panel3) 7개 + 0 청사(11층이하) + 1 청사(12층이상) + 2 학교 + 3 국가유산 + 4 관람집회시설 + 5 전시시설 + 6 기타 + + ■ cmBx_KONGSU (Panel3) 2개 ※화면≠내부 + 0 일반계약 → 내부 `0` + 1 최저가,기술제안 → 내부 `1` + + ■ cmBx_Set_Base (Panel3) 3개 ※화면≠내부 + 0 일반(국가계약법) → 내부 `2` + 1 일반(지방계약법) → 내부 `0` + 2 행자부기준 → 내부 `1` + + ■ cmBx_Kong_Kikan (Panel3) 4개 ⚠개수불일치(선택지4/내부값5) ※화면≠내부 + 0 6개월이하 → 내부 `30일 미만` + 1 7개월 ~ 12개월이하 → 내부 `6개월이하` + 2 13개월 ~ 36개월이하 → 내부 `7개월 ~ 12개월이하` + 3 36개월이상 → 내부 `13개월 ~ 36개월이하` + ▶ 화면에 없는 내부값: ['37개월이상'] + + ■ cBx_iLBan (Panel3) 2개 + 0 (주)공사 + 1 전문공사 + + ■ cmBx_EQIP (Panel3) 7개 ※화면≠내부 + 0 ◈ 없음(국가유산수리공사) → 내부 `-1` + 1 ◈ 일반공사(토목,산업설비,조경,건축) → 내부 `0` + 2 ◈ 준설, 포장공사, 토공사, 비계·구조물해제 → 내부 `1` + 3 ◈ 상하수도설비, 보링·그라우팅, 수중공사 → 내부 `2` + 4 ◈ 석공사, 시설물유지관리, 철근·콘크리트, 가스시설공사(1종) → 내부 `3` + 5 ◈ 조경시설물설치, 조경식재, 철도궤도, 도장공사, 철강재설치공사 → 내부 `4` + 6 ◈ 기계설비공사업 및 그외 → 내부 `5` + + ■ cmBx_ANJUN (pnSet_Optn) 2개 ※화면≠내부 + 0 사용자 수동계산 → 내부 `0` + 1 제비율표자동계산 → 내부 `1` + + ■ cmBx_Buga1 (pnSet_Optn) 5개 ※화면≠내부 + 0 (0) 공급가액의 10% + 1 (1) 재료비의 10% + 2 (2) 없음 + 3 (3) 산림조합 형식 → 내부 `(3) 임 협 식` + 4 (4) 산림조합-면세품 + + ■ cmBx_Kwan_Sa1 (pnSet_Optn) 8개 + 0 관급자재대/1.1 + 1 관급자재대 + 2 사급자재대/1.1 + 3 사급자재대 + 4 관급/1.1+사급재 + 5 관급재+사급/1.1 + 6 (관급+사급)/1.1 + 7 관급재+사급재 + + ■ cBx_Dog_Jeol (pnSet_Optn) 9개 + 0 도급액 버림없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_CH_BO (pn_CH_BO) 3개 ※화면≠내부 + 0 직접노무비 x 요율 → 내부 `0` + 1 당초액 + 직노증감x요율 → 내부 `1` + 2 당초액 + 증감액(비율) → 내부 `2` + + ■ cmBx_Anjun_DN (pnSet_Optn) 2개 ※화면≠내부 + 0 소수 버림 후 1.2배 → 내부 `0` + 1 소수 버림 전 1.2배 → 내부 `1` + + ■ cmBx_AnJun_Type1 (pnSet_Optn) 4개 ※화면≠내부 + 0 건축공사 → 내부 `0` + 1 토목공사 → 내부 `1` + 2 중건설공사 → 내부 `3` + 3 특수건설공사 → 내부 `4` + + ■ cmBx_AnPum (pnSet_Optn) 2개 ※화면≠내부 + 0 산출경비로 포함 → 내부 `1` + 1 산출경비로 미포함 → 내부 `0` + + ■ cmBx_Kwan_Comb (tabAdd_BSC) 2개 ※화면≠내부 + 0 (0) 분리인쇄 → 내부 `0` + 1 (1) 통합인쇄 → 내부 `1` + +==================================================================================================== +## 일반 T 선택축 12개 + + ■ cBx_Jeol_T (Pn03_T) 9개 + 0 총공사비에서 조정 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ Ed_C_AnJun_K_T (Pn01_T) 3개 + 0 없음 + 1 관급/사급 내용 + 2 사급자재대 + + ■ Ed_C_AnJun_B_T (Pn01_T) 2개 + 0 + 1 의 1.2배 + + ■ Ed_C_KUNBO_T (Pn01_T) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_YUNBO_T (Pn01_T) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_IYUN_T (pn02_T) 2개 ※화면≠내부 + 0 이윤 → 내부 `0` + 1 수수료 → 내부 `1` + + ■ Ed_C_DOGUP_T (Pn04_T) 2개 ※화면≠내부 + 0 도급공사비 → 내부 `0` + 1 도급예정액 → 내부 `1` + + ■ cBx_KWN_Jeol_T (Pn04_T) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_UPDN_T (Pn04_T) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_KWN_K_Jeol_T (Pn04_T) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_K_UPDN_T (Pn04_T) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_Tot_Jeol_T (Pn05_T) 9개 + 0 이윤보정액 입력 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + +==================================================================================================== +## 수공 S 선택축 11개 + + ■ cBx_Jeol_S (Pn03_S) 9개 + 0 총공사비에서 조정 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ Ed_C_AnJun_K_S (Pn01_S) 2개 + 0 없음 + 1 관급/사급 내용 + + ■ Ed_C_AnJun_B_S (Pn01_S) 2개 + 0 + 1 의 1.2배 + + ■ Ed_C_KUNBO_S (Pn01_S) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_YUNBO_S (Pn01_S) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_DOGUP_S (Pn04_S) 2개 ※화면≠내부 + 0 도급공사비 → 내부 `0` + 1 도급예정액 → 내부 `1` + + ■ cBx_KWN_Jeol_S (Pn04_S) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_UPDN_S (Pn04_S) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_KWN_K_Jeol_S (Pn04_S) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_K_UPDN_S (Pn04_S) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_Tot_Jeol_S (Pn05_S) 9개 + 0 이윤보정액 입력 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + +==================================================================================================== +## 실적일반 TA 선택축 16개 + + ■ cBx_Jeol_TA (Pn03_TA) 9개 + 0 총공사비에서 조정 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ Ed_C_AnJun_K_TA (Pn01_TA) 3개 + 0 없음 + 1 관급/사급 내용 + 2 사급자재대 + + ■ Ed_C_AnJun_B_TA (Pn01_TA) 2개 + 0 + 1 의 1.2배 + + ■ Ed_C_KUNBO_TA (Pn01_TA) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_YUNBO_TA (Pn01_TA) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_LTYP_TA (Pn01_TA) 2개 + 0 노무비 = 직공비 x 조정계수 + 1 노무비 = 내역서 직접노무비 + + ■ Ed_C_RateMxA_TA (Pn01_TA) 3개 + 0 상한비 자동계산 + 1 상한비 강제적용 + 2 상한비 적용안함 + + ■ Ed_C_RateMxK_TA (Pn01_TA) 3개 + 0 상한비 자동계산 + 1 상한비 강제적용 + 2 상한비 적용안함 + + ■ Ed_C_MTYP_TA (Pn01_TA) 2개 ※화면≠내부 + 0 직접공사비 * 요율 방식 → 내부 `1` + 1 조정계수 입력방식 → 내부 `0` + + ■ Ed_C_IYUN_TA (pn02_TA) 2개 ※화면≠내부 + 0 이윤 → 내부 `0` + 1 수수료 → 내부 `1` + + ■ Ed_C_DOGUP_TA (Pn04_TA) 2개 ※화면≠내부 + 0 도급공사비 → 내부 `0` + 1 도급예정액 → 내부 `1` + + ■ cBx_KWN_Jeol_TA (Pn04_TA) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_UPDN_TA (Pn04_TA) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_KWN_K_Jeol_TA (Pn04_TA) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_K_UPDN_TA (Pn04_TA) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_Tot_Jeol_TA (Pn05_TA) 9개 + 0 이윤보정액 입력 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + +==================================================================================================== +## 실적수공 SA 선택축 15개 + + ■ cBx_Jeol_SA (Pn03_SA) 9개 + 0 총공사비에서 조정 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ Ed_C_AnJun_K_SA (Pn01_SA) 2개 + 0 없음 + 1 관급/사급 내용 + + ■ Ed_C_AnJun_B_SA (Pn01_SA) 2개 + 0 + 1 의 1.2배 + + ■ Ed_C_KUNBO_SA (Pn01_SA) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_YUNBO_SA (Pn01_SA) 2개 ※화면≠내부 + 0 ㄴ.1)직노 → 내부 `ㄴ.1)직접노무비` + 1 당해 상시근로자노무비 + + ■ Ed_C_LTYP_SA (Pn01_SA) 2개 + 0 노무비 = 직공비 x 조정계수 + 1 노무비 = 내역서 직접노무비 + + ■ Ed_C_RateMxA_SA (Pn01_SA) 3개 + 0 상한비 자동계산 + 1 상한비 강제적용 + 2 상한비 적용안함 + + ■ Ed_C_RateMxK_SA (Pn01_SA) 3개 + 0 상한비 자동계산 + 1 상한비 강제적용 + 2 상한비 적용안함 + + ■ Ed_C_MTYP_SA (Pn01_SA) 2개 ※화면≠내부 + 0 직접공사비 * 요율 방식 → 내부 `1` + 1 조정계수 입력방식 → 내부 `0` + + ■ Ed_C_DOGUP_SA (Pn04_SA) 2개 ※화면≠내부 + 0 도급공사비 → 내부 `0` + 1 도급예정액 → 내부 `1` + + ■ cBx_KWN_Jeol_SA (Pn04_SA) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_UPDN_SA (Pn04_SA) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_KWN_K_Jeol_SA (Pn04_SA) 9개 + 0 절상(절사) 없음 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 + + ■ cBx_KWN_K_UPDN_SA (Pn04_SA) 3개 + 0 절상 + 1 반올림 + 2 절사 + + ■ cBx_Tot_Jeol_SA (Pn05_SA) 9개 + 0 이윤보정액 입력 + 1 10원 미만 + 2 100원 미만 + 3 1,000원 미만 + 4 10,000원 미만 + 5 100,000원 미만 + 6 1,000,000원 미만 + 7 10,000,000원 미만 + 8 100,000,000원 미만 diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/stmate_strings.txt b/scratch/orca_artifacts/stmate_competitor_analysis/stmate_strings.txt new file mode 100644 index 00000000..46bcfa74 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/stmate_strings.txt @@ -0,0 +1,503 @@ +Call DeactivateFontsInfo before calling this. +Background +Foreground +Foreground@ +ctHalfBlock +eoHalfPageScroll +TBdQtyRecP +QTY1 +QTY2 +QTY3 +QTY4 +TAMT1 +LAMT1 +MAMT1 +SAMT1 +RATE +KWNGP +EQCODE +X_RATE +X_QTY1 +X_QTY2 +X_QTY3 +X_HAL1 +X_HAL2 +X_HAL3 +S_RATE +select +NAG_HAL +ST_MHAL +EQ_LHAL +EQ_MHAL +EQ_SHAL +BDQTY.DBF +LAMT +MAMT +SAMT +TAMT +RATE_L +X_QTY +X_HAL +IFORM +CODE="W" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2) +CODE="W" .and. TAMT1<>MAMT1+LAMT1+SAMT1 +TAMT2 +MAMT2 +LAMT2 +SAMT2 +(SUBSTR(CODE,1,1)$"LMS" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE="L" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE="M" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE="S" and (SAMT1<>TAMT1 or SAMT2<>TAMT2)) +(SUBSTR(CODE,1,1)$"LMS" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE="L" and LAMT1<>TAMT1) or (CODE="M" and MAMT1<>TAMT1) or (CODE="S" and SAMT1<>TAMT1) +BDQTY +S_ADJ +ADJ_L +ADJ_M +ADJ_S +COSTN.DBF +Find_BOQ + Find_BOQ +QTY1_B +QTY1_N +QTY1_H +Calc Boq +CON_USD*.DBF +CON_QTY*.DBF +.DBF +STmateQty8.CPM +ST_QTY +Free_Qty +EQSYNC.DBF +CPM_INFO.DBF +CPM_INFO.SMT +CPM_INFO_$.DBF +KBOQ +PRJLST.DBF +COSTA.DBF +SYSINFO.DBF +Select * from Win32_NetworkAdapterConfiguration Where IPEnabled=TRUE +Excel.Application +Microsoft Excel +Excel +;COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI; +GrdBoqBigo +C_PSAMT_B +B_PSAMT_B +I_NAG_RATE +ROUNDDOWN( [LAMT] * [RAT_1], +ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], +[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), +[C_TAMT_B] ++ROUNDDOWN( +(([LAMT][+LAB])- +[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], +ROUNDDOWN( +([LAMT][+LAB]) +ROUNDDOWN( [C_KUNBO] * [RAT_1], +ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], +[LAMT][+LAB] +([TAMT]) +([LAMT]+[M_AMT] +ROUNDDOWN( +*[TAMT],0) +IF(([LAMT]+[M_AMT])>ROUNDDOWN( +*[TAMT],0),ROUNDDOWN( +*[TAMT],0),([LAMT]+[M_AMT])) +ROUNDDOWN( ( +IF(([L_AMT]+[M_AMT])>ROUNDDOWN( +*[TAMT],0),([L_AMT]+[M_AMT])) +ROUNDDOWN( (( ++([TAMT] +ROUNDDOWN( ([TAMT] +ROUNDDOWN( ([T_AMT]+ +ROUNDDOWN( [T_AMT] * [RAT_1], +ROUNDDOWN( [T_AMT] * [RAT_1], 0 ) +ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 ) +ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), +ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT] +ROUNDDOWN([T_AMT] * [RAT_1], 0) +ROUNDDOWN([M_AMT] * [RAT_1], 0) +ROUNDDOWN(([TAMT]-[LAMT] +ROUND( [C_AD_AMT] , - +ROUNDDOWN( [C_AD_AMT] , - +ROUNDUP( [C_AD_AMT] , - +ROUNDDOWN([T_AMT] +halH +FormActivate +AddSeparateDirs +Please insert last disk in set +Please insert disk volume %.1d of %.1d +Please insert disk volume %.1d +TBackgroundLayout +BackgroundLayout +tb_BdQtyx +ds_BdQty +tb_BdQty_X +ds_BdQty_X +tb_BdQty_Im +tb_CostA +ds_CostA +Grd_Rate +gBx_Rate0 +Act_Set_RateP +cBx_SetARate +Grd_RateDrawCell +Grd_RateColumnTitleClick +Grd_RateDblClick +Grd_RateKeyDown +Grd_RateCellExit +Grd_RateExit +Grd_RateBeforePost +Grd_RateCellEnter +Grd_RateRowChange +Act_Set_RateExecute +Grd_RateEnter +cBx_SetARateClick +LAMT1_R +CODE="W" .and. (LEN(TRIM(BQCODE))>5 .or. LEN(TRIM(EQCODE))>5) +TwM_Xls_Comp +TwM_Xls_ComplpN +Xls_Comp +COMP_C.DBF +POS_D_XLS_COMP +MAMT1_O +PG_11_O +PG_21_O +PG_31_O +PG_41_O +PG_51_O +EQCODE_O +PG_1_O +PG_11 +PG_21 +PG_31 +PG_41 +PG_51 +PG_1 +LAMT1_O +SAMT1_O +TAMT1_O +PG_2 +PG_3 +PG_4 +PG_5 +ed_EQCODE, +"$UPPER(EQCODE)) +"$UPPER(JDCODE+NAME+SIZE+UNIT+GNCODE+PSCODE+EQCODE+ST_NAME) +wBx_MAMT +ed_Hal +Act_Set_Hal +ed_HalEnter +ed_HalKeyDown +Act_Set_HalExecute +*.STBSC +;NAME;SIZE;UNIT;BQCODE;EQCODE;EDT_DATE;JDCODE; +BSC_COSTN.DBF +BSC_BDQTY.DBF +BSC_COSTN.* +BSC_BDQTY.* +CostNavi +Act_FindBoq +sBtnLstEqCode +Act_LstEqCode +Act_Ed_Qty< +pn_LHal +pn_MHal +sBtnHaLmCost +Chk_Auto_Hal +pn_XHal +sBtnHaLKike +Pop_Rate_L +Pop_Rate_6 +mi_SetAmt6 +mi_Edt_Amt6_Rate +mi_HalLt +mi_Ed_HalDx +mi_Ed_HalL +mi_View_HalL +Act_FindBoqExecute +Act_Ed_QtyExecute +Rate_LClick +Chk_Auto_HalClick +mi_View_HalLClick +Auto_Hal +PRT.DBF +ADJ_ +"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE+EDT_DATE +Edt_Hal_Rate +Edt_Hal_Amt +.CSTA;*_ +.CSTA +CSTA +COSTA.CSTA +P_XLS.CPM +MAKE_XLS + MAKE_XLS +SHOW_XLS + SHOW_XLS +FREE_XLS + FREE_XLS +)= ROUNDDOWN( + = ROUNDDOWN( +tb_BdQtyh +ds_BdQtyx +tb_BdQty_X| +mBtn_EDBOQ$ +mBtn_EDBOQClick +.dbf +CostNaviP +sBtnLstEqCode| +ActFindBoq1 +Act_LstEqCodeExecute +"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE+EDT_DATE+CONTCODE +tb_BdQty` +tb_Qty +FormDeactivate +CON_QTY9 +CON_QTY +CONBD_USD_QTY +/select," +OnActivate@ +OnDeactivate +CostNavi| +tb_BdQty +Act_W2SMt +TwM_JajeXLS +JajeXLS +tb_Boq_ +rGrd_Boq +CBoxSetHalMLSW +CBoxSetHal_NBUGAM +rGrd_BoqCellEnter +rGrd_BoqDblClick +rGrd_BoqDrawCell +rGrd_BoqExit +rGrd_BoqKeyDown +rGrd_BoqRowChange +MK_CONT_BOQ_ +Conv Boq +ActNewBoq +ActMkBoq, +ActEditBoq< +mi_MkXLST +Act_CalBoq +Act_Mk_Boq10 +Mk_Xls2Boq +mi_DefXls_GS +Mk_DefXls +tb_BoqXXP +ds_BoqXXT +RDbGrid_Boq\ +mi_View_BOQp +sBtn_View_BOQt +Act_View_BOQ8 +MkBoq +CopyBoq +ActEditBoqExecute +ActMkBoqExecute +Act_CalBoqExecute +Mk_DefXlsExecute +Mk_Xls2BoqExecute +RDbGrid_BoqDrawCell +Act_View_BOQExecute +POS_F_PRJLST +(STmate8x)\BOQ_INFO +MAMT3 +LAMT3 +SAMT3 +TAMT3 +qty1 +BOQ.dbf +ST_Boq.CPM +Edit_Boq +.xls +ComP_CurBOQ +MK_BSCBOQ_EXL +BOQ.DBF +MK_EXL_BSCBOQ +BOQ_E.DBF +TAMT4 +update +UhalX +lbTax_Email +ed_Tax_Email +VAT_C +VAT_C5 +VAT_C10 +VAT_C15 +VAT_G +VAT_G5 +VAT_G10 +VAT_G15 +TAX_EMAIL +#,#(VAT) + ( Tax: +tb_PrjLst +img_Lst_PrjLst +List_PrjLst +:COSTN.DBF: +:COSTN.SMT: +:COSTA.DBF: +:BDQTY.DBF: +:PRJLST.DBF: +:PRJLST.SMT: +:SYSINFO.DBF: +PRJLST.SMT +:BOQ +.DBF: +COSTN.SMT +COSTN.NSX +COSTA.NSX +BDQTY.NSX +PRJLST.NSX +DOWN_LST.DBF +DOWN_LST.SMT +UPDATE +VAT_P +VAT_P5 +VAT_P10 +VAT_P15 +VAT_S +VAT_S1 +Act_PrjLst0 +Act_Halt +tb_Mrg_COSTN +mi_Sel_Xls +mi_UseExcel +Act_PrjLstExecute +Act_HaltExecute +Act_Use_Xls_Execute +mi_Sel_XlsClick +ST_CPM\ST_Boq +ST_CPM\ST_P_XLS +ST_PLIST.DBF +SET_REP.DBF +QCODE.DBF +STmate-Exec_Merge_ADD_BOQ +MRG_COSTN.DBF +MRG_BDQTY.DBF +MRG_IMG.DBF +MRG_COSTA.DBF +MRG_QCODE.DBF +MRG_BOQ.DBF +MRG_COSTN.* +MRG_COSTA.* +MRG_BDQTY.* +MRG_BOQ.* +(STmate8x)\BOQ_INFO\ +PRJ_DBF +PRJ_SMT +ST_PLIST.SMT +ST_PLIST_DBF +ST_PLIST_SMT +sAmTb +@System@@Halt0$qqrv +@System@@ROUND$qqrv +SetForegroundWindow +GetForegroundWindow +CreateHalftonePalette +@Forms@TCustomForm@WMActivate$qqrr20Messages@TWMActivate +@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect +@Classes@TBasicActionLink@Update$qqrv +@Classes@TStringList@Insert$qqrix17System@AnsiString +@Classes@TStringList@Delete$qqri +@Classes@TCollection@Delete$qqri +@Classes@TCollection@Update$qqrp23Classes@TCollectionItem +@Classes@TCollection@Insert$qqri +@Classes@TList@Insert$qqripv +@Classes@TList@Delete$qqri +@Math@RoundTo$qqrxdxzc +@Graphics@TCanvas@RoundRect$qqriiiiii +@Controls@TWinControl@Update$qqrv +@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect +@Controls@TControl@Update$qqrv +@Stdctrls@TCustomCombo@AdjustDropDown$qqrv +@Db@TDataSet@Insert$qqrv +@Comctrls@TListItem@Delete$qqrv +@Apodset@TApolloTable@Delete$qqrv +@Apodset@TApolloTable@DBFilter$qqrv +@Apodset@TApolloTable@DbfEncrypt$qqrv +@Apodset@TApolloTable@DbfDecrypt$qqrv +MROUNDUP +MROUNDUD +@Graphutil@ColorAdjustLuma$qqruiii +)JajeXLS +OnActivate +Delete selected tip += 360,000 + 36,000(VAT) +wM_Dm_1.ds_BdQty +wM_Dm_1.ds_BdQty_X +QTY0 +QTY5 +QTY6 +QTY7 +QTY8 +QTY9 +wM_Dm_1.ds_CostA +Act_Ed_Qty +mi_HalL +mi_Ed_HalD +Rate.dbf +PADL(TRIM(PG_11),12," ") +PADL(TRIM(PG_21),12," ") +PADL(TRIM(PG_31),12," ") +PADL(TRIM(PG_41),12," ") +PADL(TRIM(PG_51),12," ") +PG_12 +PADL(TRIM(PG_12),12," ") +PG_22 +PADL(TRIM(PG_22),12," ") +PG_32 +PADL(TRIM(PG_32),12," ") +PG_42 +PADL(TRIM(PG_42),12," ") +PG_52 +PADL(TRIM(PG_52),12," ") +gBx_Rate +Act_Set_Rate +o_Rate_L +GRASS.DBF +wM_Dm_2.ds_BdQty +LAMT4 +MAMT4 +SAMT4 +wM_Dm_2.ds_BdQty_X +wM_JajeXLS +ed_EQCODE +STBSC +|*.STBSC += 360,000 + 366,000(VAT) += 396,000 + 36,000(VAT) +mBtn_EDBOQ +Color Halftone Settings +|Vat +Act_PrjLst +Excel +DataPathAlias +Delete|Erases the selection +&Select All|Selects the entire document +wM_Xls_Comp +BOQ_C +sBtn_View_BOQ +Act_View_BOQ +RDbGrid_Boq +ds_BoqXX +ActEditBoq +ActMkBoq +Act_CalBoq +mi_MkXLS +mi_View_BOQ +tb_BoqXX +BOQ11.NSX +Boq11.dbf +TWM_JAJEXLS +TWM_XLS_COMP +Select a Date +Dr. Halo images +*_표준시장.CSTA;*_실적.CSTA +실적(표준시장)단가목록|*_표준시장.CSTA;*_실적.CSTA +북측노무비($/월)= ROUNDDOWN(기준단가 * +북측노무비($/일)= ROUNDDOWN(북측노무비($/월) / 25, 4) +북측 = ROUNDDOWN(기준단가 * 북측노무비($/일) * +남측 = ROUNDDOWN(기준단가 * +SOFTWARE\경영정보(주)\설계예산(STmate8x)\BOQ_INFO +자재수량집계표양식.xls +SOFTWARE\경영정보(주)\설계예산(STmate8x)\BOQ_INFO\ \ No newline at end of file diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/system_inventory.csv b/scratch/orca_artifacts/stmate_competitor_analysis/system_inventory.csv new file mode 100644 index 00000000..cda29324 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/system_inventory.csv @@ -0,0 +1,187 @@ +path,bytes,sha256,extension,format,analysis_level,core,detail_summary +Apollo5D6.bpl,339456,4364f64c43032e1595ba45ec1c2bc1dade5d68d80a74e4bac6ec3858e68b42a4,.bpl,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 54, ""exports"": 1302}" +BANTAM.DLL,101376,01c8fac9f5f519dfd0314ee7eb70da64afc53bf82f7831a9c16add63fde0b729,.DLL,PE,internal_structure_extracted,False,"{""sections"": 6, ""imports"": 2, ""exports"": 43}" +BDERTL60.BPL,222208,b56d3e643fb1eef7018aa120ddab53ae0402ef997e1441a1ad7ff4ce25f79658,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 25, ""exports"": 1036}" +BORLNDMM.DLL,22016,e7b3218d1ef0d16fe29674144dc2f887f281687476b5ba4625cbdd680c22a92a,.DLL,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 6, ""exports"": 12}" +CHARSET.CVB,144454,07cd1afc401f3ec6c913f319813810839f9f20123506b28381e179bf921f6b0c,.CVB,BTCV,internal_structure_extracted,False,"{""header"": ""BTCV##BaseCV\u0000\u0000\u0000\u0000\u0000\u0002�\f\u0000\u0000\u0000\u0000\u0000\u0000 \u0003�\u0000A""}" +CPMARC.CPM,132096,17d182e5d20dc1e4767d7e5e122566cbaa7e462eaadcf558de87c039f412a38a,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 3, ""exports"": 4}" +CPMUNA.CPM,117760,decb3ca906c76a44b2417b998d7abb07b7a39d17969b37831d819039326ee654,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 3, ""exports"": 4}" +DBRTL60.BPL,254464,6f7d8767276c74fbf80fce4df1e6e9fd470d80e37e7bc6f51095509af3054379,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 16, ""exports"": 1314}" +Dclhrp60.bpl,418816,6d96304c04aa11e9dae0163e99bbd0abe2a9dd4dd665aa8d201f7afb7b891ae7,.bpl,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 75, ""exports"": 1333}" +DELPHIMM.DLL,9216,7030bfa308e4b0916349bab32d7783e76f2d5c48dc36e7eda3535d80b3e540e7,.DLL,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 5, ""exports"": 10}" +designide60.bpl,701440,80df9d758d68e5d9e6b0536e102eb6e7744f70cfa95b9306694b93e1a55272a4,.bpl,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 58, ""exports"": 2837}" +DP_Common.CPM,436736,5f55d301c6b2139816ff8832e46becb852c4f0a0c9b5da199371156b6aaf30e0,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 15, ""exports"": 73}" +DP_MinMsg.CPM,82432,2059455faa4f92a8897754494a1e28daa9ecce42c3d79c6c9ac02c58dc631de7,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 51, ""exports"": 3}" +EQSYNC.DBF,2938,3d7dd1d1d1e5d015aaf2d60628368e65251a1a3a2f6c8f8c449b5566e472391f,.DBF,DBF-like,internal_structure_extracted,False,"{""version"": ""0xE6"", ""records"": 54, ""header_len"": 129, ""record_len"": 52}" +EQSYNC.SMT,12311,2537657ec0c036501afb7a9c98c4ef17024b578d537ec0cb59958c5d8c3f4248,.SMT,SIxMemo,internal_structure_extracted,False,"{""block_size"": 64, ""first_value"": 193}" +FAREAST.BTL,517810,27dc4e384c01d6fcadaa90973b018adb6f11be28750d2b97e831215ef22b72f5,.BTL,BTLF,internal_structure_extracted,False,"{""header"": ""BTLF01.001\u0000Chinese_TW:dBASE:ANSI""}" +FTS32.DLL,43520,05e98046789d7508b18dfcbe14c3724c49f06eb22688675e3646d9d790966b1d,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 1, ""exports"": 16}" +HRRES32.DLL,19456,4a7d8f8a58e0f82d8a5be2336a79e63a5aa42f6f32a82863c9c957513b25cc26,.DLL,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 5, ""exports"": 1}" +IDAPI32.DLL,589312,fc2faec98fd7167cf7d25fa773ec8ecead0dfc678ca1ffaf6b34f78bac91a91e,.DLL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 6, ""exports"": 754}" +IDDBAS32.DLL,454144,9955fcc1e214b15dce432a61d489d2de758169a70306d92a27f1c20ea6b45025,.DLL,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 4, ""exports"": 67}" +IDPDX32.DLL,255488,516741a7d632a458e1746137b184a1b050395e974c6b428fca1524ea3a166c6f,.DLL,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 3, ""exports"": 15}" +IDR20009.DLL,116736,b41e0f4c1b63d66f68c6e193742287d0481645fb1c7b95f6858b32435648b360,.DLL,PE,internal_structure_extracted,False,"{""sections"": 6, ""imports"": 2, ""exports"": 4}" +JDLCHK.Size.dll,1206784,da4d1755947d88336f81d1a6c5766a8df0fee71664e6485399cc3ac9bac8e5de,.dll,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 17, ""exports"": 4}" +JDLCHK.Tab.dll,1214976,d8e5d9733b14e18695a1f30ceb2aca7fe14894a040e068ed4a37490a26d105ae,.dll,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 15, ""exports"": 4}" +JDLCHK.Tab_33.dll,1229824,c5052736204cd4b956a3f59a6f7d41b36e298258846ce64fd7231407db8dd43f,.dll,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 15, ""exports"": 4}" +MINIEXTR.DLL,40960,4edc83a1b2d5037820e4ec66b6f172082aa663636b8f9c343dba79e6fb3ce935,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 2, ""exports"": 13}" +RAR.EXE,185212,fe079b67547706ce650f2755b16d9f7efb01a1e5ea07ba464bfe585ae9846003,.EXE,DOS-MZ,internal_structure_extracted,False,"{""magic"": ""4d5a7c016a01990840033903ffff282d""}" +RealGrid6.bpl,402944,d1efca11ace3f581e7f4f5408afef2b29d77ce5a4aeb73bc1fa2a94548832ea8,.bpl,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 55, ""exports"": 1630}" +RealGridDB6.bpl,111104,c4963618fdcea616b208d2f4891f870e91494e270db36becebfc66466e492d3b,.bpl,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 72, ""exports"": 272}" +RealGridEX6.bpl,71680,c8f5ec65c1e2af4f0a818e14d791e267b5e47d8d87cf491ecf17e346661aa231,.bpl,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 59, ""exports"": 142}" +RTL60.BPL,685056,aa4a46b7921f225910414422ec7ff5533cd5fad87e2fe2cca248f25eb9899480,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 16, ""exports"": 4698}" +SDE32.DLL,132096,b23ef38c5099fc74ffd1b5c72c5684e5cc64d598114637dd1bf2462222121260,.DLL,PE,internal_structure_extracted,False,"{""sections"": 6, ""imports"": 2, ""exports"": 179}" +SDE50.DLL,155648,3a8748c8823f2c2a7fd179d9ba045c9afd13734e06fa8450a74a8e509b2450fc,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 2, ""exports"": 179}" +SDECDX50.DLL,274502,2f09909441d8e4f0bb93463f5a7d6f28db329cc1f5f43e6dbbcbf229dacb1bbf,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 3, ""exports"": 81}" +SDENSX50.DLL,266240,6e0a5b4967a6d0cc6faee9b471659419540872d9703700fe60a0dc3045ba024c,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 3, ""exports"": 81}" +SDENTX50.DLL,258118,a1d5fccff1b5249de5000de1b548216d8c165b1a6f6162cf9f465f1a2a6cb31e,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 3, ""exports"": 81}" +ST_BdSN.CPM,122368,9b7320455bc15f5412f9dd11b40fee13fab44780990c4389c2c5f6beb5f6a395,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 118, ""exports"": 3}" +ST_BSC\2007_제비율.JB_M,3379,7139579616921b4e8ac6055d497722b64a2cb048c353861858a179dfa277fc7e,.JB_M,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 25, ""header_len"": 353, ""record_len"": 121}" +ST_BSC\2011(상_0112)_제비율.JB_1,5315,cc5f14790cc4f185f44b0b3e3f5be6c78e52df6a373903f14fcb99134c9b4551,.JB_1,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 41, ""header_len"": 353, ""record_len"": 121}" +"ST_BSC\2015(상_0301,실적)_제비율.JB_RA",12724,ba85cf902cf1846bcc38583c5f8173046404dc804cfa9b21a3a35a95991335e4,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2015(상_0309)_제비율.JB_R,12724,236ffcc157269a8438aac9993f18e4f6d699e4493e692fada8a16102cd68407c,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +"ST_BSC\2016(상_0301,실적)_제비율.JB_RA",12724,a34469eb1b823dc33e10d96985c7fed44428b93b90c53491edc219cb4b3d677d,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2016(상_0307)_제비율.JB_R,12724,b2e87dc37da04744197040ecd863b1b38563ad63ac975b77f3126bf412d13c97,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2017(상_0215)_제비율.JB_R,12724,dab9bf2fb5e62c41c65e9a01dbc6c7e08f06ff8d14a0d5ec90e24f2134c8e61a,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2018(상_0327)_제비율.JB_R,12724,6ec8ef38aaf747e54117451cb0e5ebcb6b4bbb084bc824163a5dc465ed23d8b3,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +"ST_BSC\2018(하_0701,표준시장)_제비율.JB_RA",12724,e771db1af3a0d4725289f5b01b97fbd4982eb5b89776c6130d87b9127857dbe8,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2018(하_0801)_제비율.JB_R,12724,608a7a9b61884dd8ee3557078db32ab94ad9b6e88341c010ce14643327171e4a,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +"ST_BSC\2019(상_0101,표준시장)_제비율.JB_RA",12724,e771db1af3a0d4725289f5b01b97fbd4982eb5b89776c6130d87b9127857dbe8,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2019(상_0107)_제비율.JB_R,12724,1462a445d32cea9d9a054bd3d114b66bdbc5693f1e464771deecd9797ac373fa,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2019(상_0417)_제비율.JB_R,12724,1c42ea998ca321ac9f8c19bc54736360ee38b8c7f4153e8a94e6c02892c42014,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2019(상_0628)_제비율.JB_R,12724,0401a772ef13213c8f49c8ff4f40b1f3b1960e87868b229a4119750829d51a85,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2020(상_0102)_제비율.JB_R,12724,e0069fa4687aabf12f0466a21bc80d064de4d0a391561cfe2cad47e4bb893680,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +"ST_BSC\2020(상_0102,표준시장)_제비율.JB_RA",12724,49610b1853c84922fc47092d32d01a1ab65844eecf95dfeaff48ac4db56b42a0,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2020(상_0527)_제비율.JB_R,22204,aa722b3c970616b2f402719baa199009cdbf7185f6e2ab04c1cbe48fc92dc508,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2021(상_0104)_제비율.JB_R,22204,b43e44c96edb0be4c3b50f46c015ed39eb87995f749f055b165d104d97c75b49,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2021(상_0421)_제비율.JB_R,22204,c267385aa0d65e4339223ee7d965e44f2bb7e6c351a4689e09ed3071e3d3565d,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2021(상_0520)_제비율.JB_R,22204,bbb678008ba42ac8e99ab874884c6219a41c8d474ec4497813b9887edcea0d28,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2021(하_0501,표준시장)_제비율.JB_RA",12724,b0d7975bb563191dfe2f765d30ccf9083feb9b7ff6cac45198499db86bd9b427,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2021(하_0701)_제비율.JB_R,22204,f73382e53a575ccd88222f18323caad6c24d6c1002567e55d11f3a6ac4c45847,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2022(상_0103)_제비율.JB_R,22204,45d132ad0de6fdd3b41f63743fadcf4ba4bb1db633ab773af850bc4a2c6cbd62,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2022(상_0103,표준시장)_제비율.JB_RA",12724,b0d7975bb563191dfe2f765d30ccf9083feb9b7ff6cac45198499db86bd9b427,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2022(상_0425)_제비율.JB_R,22204,82d7fdab0dbc6162d0fec4e0e99feb27d20d50031d1ff13ac0d6ce056db09977,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2022(하_0501,표준시장)_제비율.JB_RA",12724,95220f1fb9b4169143f9d0fe88cfc6f83dead1c4f464467003cd0ca755da7265,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2023(상_0102)_제비율.JB_R,22204,1aa1fca4090dc67e28c2820dead8b82daf50a73a20ff82dd1905040bb58f71b0,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2023(상_0102,표준시장)_제비율.JB_RA",12724,95220f1fb9b4169143f9d0fe88cfc6f83dead1c4f464467003cd0ca755da7265,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2023(상_0428)_제비율.JB_R,22204,2cf8869231d0a4b9dede802b6a5d3363e3e956db147c0c851370b06e4af9190f,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2024(상_0101)_제비율.JB_R,22204,e594487cc11755b486cf4bfe3b5876107ec044458313f5989f32e0713681bcac,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2024(상_0101,표준시장)_제비율.JB_RA",12724,39af7fa4ebc6a1d12e32cb298538bb24c6658a65249cec57541440044fe46191,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2024(상_0315)_제비율.JB_R,22204,4ed224783fb0d72c66d7c3def6c983f33129011782600d7d78a18cb46ee87a97,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2025(상_0101)_제비율.JB_R,22204,196ecc70fa0b3f1b17ed8f2d5ce5b0339ef92bd3e06dde625c87759707a0f2e4,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2025(상_0101,표준시장)_제비율.JB_RA",12724,49542b8fe77b734c6eefd5d4673a1841f00bcdde8205fc71b6289d1ea05c289b,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2025(상_0401)_제비율.JB_R,22204,dc678b3617b203fa88d6fffcb5e0e04a827da5c31545405a1d1c27c72e200839,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2025(상_0501)_제비율.JB_R,22204,3f978a6793fc131afc10e614dca9bc84b2064ab9faae71d29fee3a1b79440106,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2025(하_0501,표준시장)_제비율.JB_RA",12724,5f07b35b604129203be578323e260fd37a76ac90bd593a450ed728e407aac7c8,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2025(하_0809)_제비율.JB_R,22204,1463341b3da28f5ae7e24446c3003e9cfdc2177cf9962807f86c0ff14805f090,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2026(상_0101)_제비율.JB_R,22204,6fa9bb61555a54f2e6ee95583d76e0c5ab818534b6181783b24a5ed4fb3422e2,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2026(상_0101,표준시장)_제비율.JB_RA",12724,5f07b35b604129203be578323e260fd37a76ac90bd593a450ed728e407aac7c8,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\2026(상_0313)_제비율.JB_R,22204,af27255d84bc9cbdc1dc9ba6ea823d9649fd5f69f4121bba14864113917422d4,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +ST_BSC\2026(상_0413)_제비율.JB_R,22204,19b3fdea3aa891d3e7d37b89c43e7e57fe85dbf39f30c42a9d407f34475f7901,.JB_R,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 1153, ""record_len"": 421}" +"ST_BSC\2026(하_0508,표준시장)_제비율.JB_RA",12724,68778043bc15e24688d17ad8fc3fa775e61291897038b4a6e2824897314bc08f,.JB_RA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x03"", ""records"": 50, ""header_len"": 673, ""record_len"": 241}" +ST_BSC\GRPCOD_E.BSC,340484,2ab6eb0215184f6c442702f94cd82934acef43bc8b398e8227cee58e56cbe9c0,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 2539, ""header_len"": 257, ""record_len"": 134}" +ST_BSC\GRPCOD_Z.BSC,1625008,b6c58c548256fdf3d7be2780d0a4b8b23b34d85ba61c8899e5ab38f8e35eaa2c,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 12125, ""header_len"": 257, ""record_len"": 134}" +ST_BSC\JDCODE_L.BSC,156358,d967e15b87c6a2168251977119fe8263898bce84e3ef545eb09c78bdf6e465fd,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 460, ""header_len"": 417, ""record_len"": 339}" +ST_BSC\JDCODE_M.BSC,19520038,69073533ba84c01bd58ec4ea7cfddbd427e61ee62142a8654284d2bf6db272c7,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 57580, ""header_len"": 417, ""record_len"": 339}" +ST_BSC\JDCODE_S.BSC,288907,39a3e525399a842e0df1e27e8f2a76683db42e5c1fefa20c61eb3c74494f4df0,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 851, ""header_len"": 417, ""record_len"": 339}" +ST_BSC\JDCODE_X.BSC,282805,6304d8e0bb717efaaed72e9626a688cb4a955866a113b5a9c3e1a4d19bee9163,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 833, ""header_len"": 417, ""record_len"": 339}" +ST_BSC\JDCODE_Z.BSC,11501671,decbd6a76ebe98751020f78b74b190970cdeba834316409ebe9db3c3fb7cd10e,.BSC,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 33927, ""header_len"": 417, ""record_len"": 339}" +ST_BSC\Valid_Xml.vsl,58807,84f2e2a950139d00fbc96540b24d8883f5a733ba419c3369f8ecbed9f04b6290,.vsl,text,internal_structure_extracted,False,"{""encoding"": ""utf-8"", ""lines"": 1429}" +"ST_BSC\노임기계\2025(상_노임,기계경비).STBSC",103229,fc6f62bcff5ce69d83d50af61a7f7d415e17a2e0ec10f3321ae4fd8445fd513c,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +"ST_BSC\노임기계\2025(하_노임,기계경비).STBSC",103027,c99902383b569c5941c6bafe6707a0358beb9f81ec19c2dd486d96ea7a152025,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +"ST_BSC\노임기계\2026(상_노임,기계경비).STBSC",104166,74f886bb8cc1ae69e69fe1d92845d23e60c35ff0f06f75631368112a4ca3f1c3,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +"ST_BSC\노임기계\2026(하_노임,기계경비).STBSC",104284,48d7196fed12d887a94a2e391f98b212af7aa9040a8e51555bfdf895869c94bc,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(상,국교,해수부,조달청)_표준시장.CSTA",2427111,5c8d0d7bf9e9208e72e6acaafdf8544f88b972a46b7f74ec3b32acc0a3d458af,.CSTA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 4921, ""header_len"": 1057, ""record_len"": 493}" +"ST_BSC\실적단가\2025\2025(상_시장시공,조달청).STBSC",24865,79e534e050664f0248732c9923d9b131a52340bbe4a93c79730d17c285b0e367,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(상_표준시장,조달청).STBSC",234037,fa4e340e60845f38a3bfe44966e3415690da9e9eaa0a236d057ff4986a065694,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(상_표준시장[노임외 경비적용],국교,해수부).STBSC",168543,432f365195096b67a21f5ba2b804cde79fe24534697294e091858a17cf23bdc6,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(상_표준시장[노임외 재료비적용],국교,해수부).STBSC",167083,a66c9af574fba4a6a5d43bfb04de42c0c4b941091a1b2aba1ab2d659e4503f19,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(하,국교,해수부,조달청)_표준시장.CSTA",2427111,68cba31f353bfb2c78909a9633e96b8581276d21044ceecce21399f26fd030a4,.CSTA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 4921, ""header_len"": 1057, ""record_len"": 493}" +"ST_BSC\실적단가\2025\2025(하_시장시공,조달청).STBSC",25501,e1fb2b89d26cb19ee88ffa5b40a8401cedcc651de4b80f11b4520db88248cad2,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(하_표준시장,조달청).STBSC",234106,ca134e164233b9477ce9d34da9d8f36db902c693ce36e4325bc2319daea17cf2,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(하_표준시장[노임외 경비적용],국교,해수부).STBSC",168600,e2a4669ccf5ff3ede5457b1d00a463263303ce2467361d5dd4d5ff10983ab596,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2025\2025(하_표준시장[노임외 재료비적용],국교,해수부).STBSC",167122,cb139c7278f120a6aa6dcc3e1dde9bb5d0b67b8fd62aa728797e6a3d50c3dd0b,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +ST_BSC\실적단가\2025\COSTA.CSTA,2427111,68cba31f353bfb2c78909a9633e96b8581276d21044ceecce21399f26fd030a4,.CSTA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 4921, ""header_len"": 1057, ""record_len"": 493}" +ST_BSC\실적단가\2025\표준시장단가(2025_04_21).Info,206,d4a1fd8bb95b8715a423748f2ccfb516807cdace287a039d3a5a71ba148c805a,.Info,DBF-like,internal_structure_extracted,False,"{""version"": ""0x32"", ""records"": 3139494579, ""header_len"": 47603, ""record_len"": 45533}" +ST_BSC\실적단가\2025\표준시장단가(2025_08_04).Info,342,4b31c62515d0692aaee658adc19cb36cdc3e8963251154401918e7aa0c5b7f64,.Info,DBF-like,internal_structure_extracted,False,"{""version"": ""0x32"", ""records"": 3340821171, ""header_len"": 47567, ""record_len"": 45533}" +"ST_BSC\실적단가\2026\2026(상,국교,해수부,조달청)_표준시장.CSTA",2446831,3cf6ff7b7acb709a9faee154fbe2dbcfc718c6112e317d98868ac493dae666d5,.CSTA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 4961, ""header_len"": 1057, ""record_len"": 493}" +"ST_BSC\실적단가\2026\2026(상_시장시공,조달청).STBSC",25187,303abd1b10ef21a8c7e30f2af9845400346ff82f0f25bf7f9beb6277b43f696c,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2026\2026(상_표준시장,조달청).STBSC",236533,7f85e77265679b46807b2b22311b1fa07ffee463c50db67d6426ad38b5773f07,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2026\2026(상_표준시장[노임외 경비적용],국교,해수부).STBSC",170135,4f09af8780b54dcaeb1da7d268ac7cab253298c8402e15790749bf50ac47f482,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2026\2026(상_표준시장[노임외 재료비적용],국교,해수부).STBSC",168661,19c589ee1b564aa7593e87e556b0ab1855a7291ef0cf894df29a36a1e78170e2,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2026\2026(하,국교,해수부,조달청)_표준시장.CSTA",2446831,a5b26c95d44c47dc7dd7f5997a2e6be68edb1436003fc914fd1402588d68edfc,.CSTA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 4961, ""header_len"": 1057, ""record_len"": 493}" +"ST_BSC\실적단가\2026\2026(하_표준시장,조달청).STBSC",236961,cd3394de4e0ab08b6bab3c0db8cb5d439983ddaece5df5016243b0c32d6bece7,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2026\2026(하_표준시장[노임외 경비적용],국교,해수부).STBSC",170373,dfe6e5a1c922cad51fa49ad3682292857450f0bff5f84f7fa2762a61685aed44,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +"ST_BSC\실적단가\2026\2026(하_표준시장[노임외 재료비적용],국교,해수부).STBSC",168877,fffae2c8fd2ef78af32da16711dba26e952fc0858d25b73e643d2379e66174ad,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 4, ""encrypted"": 4, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""XDET.ST""]}" +ST_BSC\실적단가\2026\COSTA.CSTA,2446831,a5b26c95d44c47dc7dd7f5997a2e6be68edb1436003fc914fd1402588d68edfc,.CSTA,DBF-like,internal_structure_extracted,False,"{""version"": ""0x06"", ""records"": 4961, ""header_len"": 1057, ""record_len"": 493}" +ST_BSC\실적단가\2026\표준시장단가(2026_05_04).Info,224,64934740ee03e4f01fe112ec1ae9cddc01497da48b515f6cdbbb82487c7c75a7,.Info,DBF-like,internal_structure_extracted,False,"{""version"": ""0x32"", ""records"": 3139494579, ""header_len"": 47603, ""record_len"": 45533}" +ST_BSC\실적단가\2026\표준시장단가(2026_05_27).Info,206,207506f87c9c3da5ec86b8e16efab8a4f35570b0cb8934d7443c82502c5803e9,.Info,DBF-like,internal_structure_extracted,False,"{""version"": ""0x32"", ""records"": 3340821171, ""header_len"": 47567, ""record_len"": 45533}" +ST_BSC\일위대가\2026\2026(상_표준일위대가_건축).STBSC,107988,10c39a2e5d1e797b7d9f82f9ff1d099d74ad83a84e9a9c936e192bdbf4744f5a,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +ST_BSC\일위대가\2026\2026(상_표준일위대가_기계설비).STBSC,142723,ef64cde3312b77e99e3f0f9565bfcf8dc6e747a9a4b414d8921f2499a65d6663,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +ST_BSC\일위대가\2026\2026(상_표준일위대가_전기).STBSC,22104,08c88f23a731e05bd6c926e0686ed1565c3900318f2df5779db92b762e026614,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +ST_BSC\일위대가\2026\2026(상_표준일위대가_토목).STBSC,199599,42b6bbad12827b3a68991ee59a78d4a81d43928433043a2b025a77169abe4830,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +ST_BSC\일위대가\2026\2026(상_표준일위대가_통신).STBSC,52561,9bf846f887815e228f4122ca3b9dd6de4b6cd6b26b6f3e647dc7ad8055fc9352,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""MEM.ST"", ""XDET.ST""]}" +ST_BSC\일위대가\2026\표준일위대가(2026_03_17).Info,542,84b673e857218323d8eabb7a6cce309979a6bd65490a6311382f9f2af275b3db,.Info,text,internal_structure_extracted,False,"{""encoding"": ""cp949"", ""lines"": 11}" +ST_BSC\자재단가\시설공통자재\2025-상-시설공통자재.STBSC,184968,7ac21732736a8b83d732f21797dc1434a4376319cea1f8777f86fc37f209593a,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""info.ST"", ""XDET.ST"", ""Start.ST"", ""COST.ST"", ""CH_NAME.ST""]}" +ST_BSC\자재단가\시설공통자재\2025-하-시설공통자재.STBSC,178357,f7f7f884e7d0cfd83be9fd618c99d540c83ca621f26df1d1fa8db6de82afd4c1,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""Start.ST"", ""XDET.ST""]}" +ST_BSC\자재단가\시설공통자재\2026-상(06)-시설공통자재.STBSC,177153,cfcc27abb1759a916983b51737361c348d277ed540b18188da9976fe56cef034,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""Start.ST"", ""XDET.ST""]}" +ST_BSC\자재단가\시설공통자재\2026-상-시설공통자재.STBSC,176293,926f18edcf6390f34391bd9a26a6bf589d5e6b8e10128498a2cdb50341a70185,.STBSC,ZIP,internal_structure_extracted,False,"{""entries"": 5, ""encrypted"": 5, ""names"": [""CH_NAME.ST"", ""COST.ST"", ""info.ST"", ""Start.ST"", ""XDET.ST""]}" +ST_BSC\호환규정코드(2026_09_01),108,7f12adccd919919ef7739f3efce9439e1f183989980c8daeb170bb1e65fdcade,,text,internal_structure_extracted,False,"{""encoding"": ""cp949"", ""lines"": 3}" +ST_Com_V.CPM,648192,d66b620110244d0814513fb18fa3fca6611ad57ffa300e193c0b85af59b2f574,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 17, ""exports"": 10}" +ST_CPM\ST_Boq.CPM,2119168,180707d0423dd2dcb8403d89ba1dbaf2731c0db5c6bb332029479fd9d9923ab3,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 132, ""exports"": 4}" +ST_CPM\ST_EdiLWi.CPM,508928,9e83c2a450d31353953361c8bb460bae700cc76927605145a0ae406ca31702ca,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 128, ""exports"": 2}" +ST_CPM\ST_EdSan.CPM,628224,101d1f31adff9d46d30a46135ccd6398af41fcee9b2434a91dae5ee466e13753,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 128, ""exports"": 3}" +ST_CPM\ST_FindUse.CPM,436224,c0c2b770e805cfcb78ef091a4657185160f58408434dab09cbef20d982d59a9e,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 3}" +ST_CPM\ST_Jabpum.CPM,411136,d960f6e6b5ffa395c201eabf126cb4dcf8dbe026c2afaa804a7bfa6429164f51,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 126, ""exports"": 6}" +ST_CPM\ST_KanJub.CPM,1718272,ef8d55b259b37916496e80cab6a4a2ba46216e0bd7c5199083dbda632bd50d03,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 131, ""exports"": 5}" +ST_CPM\ST_P_Collect.CPM,570880,fd1b468d77398a72705537e28321c93a3736fbc1ea384997659eea2fe9b71737,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 125, ""exports"": 5}" +ST_CPM\ST_P_ConEst.CPM,735744,027c72cc019e46fdec78e6aebc68b621aa77c7fc1ac88362f04675f6dab69fab,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 125, ""exports"": 9}" +ST_CPM\ST_P_Excav.CPM,809472,62ea015c8fcb05c351d394a8bdb3214ea516d099fb986c25a7503358160fb0d0,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 15}" +ST_CPM\ST_P_iLWi.CPM,634880,1308680f806f9e0298f99ce68d08c5c3e80eb5d7e8cf86fb7a89d7678539ae32,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 3}" +ST_CPM\ST_P_Joong.CPM,797696,30c28a8ace160c06fa79948ea20678504aaeae2d20304daff719300e5f919ee7,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 125, ""exports"": 7}" +ST_CPM\ST_P_List.CPM,631808,e14d17b10ee1f82f5abc0f7c90f1b658516f9623452fe092450396eae9deb071,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 11}" +ST_CPM\ST_P_Nae.CPM,1398272,9ecb6a663c988f249548a06a6c7da66abc71d8c245baba141450c329391f1c47,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 30}" +ST_CPM\ST_P_San.CPM,570368,5d364a818883fd6f69839dd08c7e3243e0545fd23062454f5816b3cc0bae941c,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 3}" +ST_CPM\ST_P_XLS.CPM,2314752,1d3f7ed8702ee9e4ea2309126028f3600497617c576c1b91659b0c8c60083da0,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 127, ""exports"": 72}" +ST_CPM\ST_PList.CPM,1586176,638c8167ff5817f454633c9270b9b01b2ef72044339c58bd8d5190b1a8e4766c,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 143, ""exports"": 3}" +ST_CPM\ST_Prt.CPM,1170432,0698a6343ba04a5b379f297da60e68a9fc3f18d5ac0ad262570f70ca98dd3c19,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 130, ""exports"": 4}" +ST_CPM\ST_SanCal.CPM,270336,153967ee6429ba40285939af68a9b2b02daae9888e95440e95dc017acdf0ad54,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 120, ""exports"": 2}" +ST_CPM\ST_Sys.CPM,566784,e55845df186ecb2d0ea6de4408b299529cd0d697030da8c114a0a48b3ce0a81d,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 126, ""exports"": 2}" +ST_CPM\ST_U_ADL.CPM,189952,833af9af1263205f3e0e04162079114d451e6136c2e5271776f63532e19a4031,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 48, ""exports"": 6}" +ST_CPM\ST_U_Archive.CPM,473088,1d00333bca0277a3355826419d11c57996852ec9013b7bb508d16ac9ec6ed553,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 125, ""exports"": 16}" +ST_CPM\ST_U_ChgAmt.CPM,130560,37ca3715c216f68274eabd3dd944bcd7922404bd2721b1ba0b73c428e843e3d8,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 120, ""exports"": 2}" +ST_CPM\ST_U_ChgCode.CPM,656896,6fe80a7a21e1458852e940bb1efdf3eee618ae23d0090a4e7323c908efb9257d,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 124, ""exports"": 10}" +ST_CPM\ST_U_ConBD.CPM,196608,fb0351c1fa96be282b8da6be31ba97673e626e1a5d8e30acb83831f4c72e5d6e,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 121, ""exports"": 4}" +ST_CPM\ST_U_Convert.CPM,1825792,0166beb69d2692732eb3d5e897201a96aa1b2955026a67aa53989ffa28431649,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 133, ""exports"": 20}" +ST_CPM\ST_U_DelCode.CPM,544768,30cc2e234a67fd2adeb51629b00b3d3d60e2fa2026b1f0b1ff9af958a1b38f9c,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 123, ""exports"": 6}" +ST_CPM\ST_U_DelPrj.CPM,161280,2e47370f7ad85542f375f03e6b3a0aaf88252750d8f6ad1ce631ea02125c2a3d,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 121, ""exports"": 3}" +ST_CPM\ST_U_Indx.CPM,137728,cbe19214915433afe71b856c3f82a7eb4c106ea40df72cb726eb8fcf8e73f2c9,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 124, ""exports"": 2}" +ST_CPM\ST_U_Merge.CPM,718848,350085f3a498628703ec66486bfc4994683169fdf0c4f8e8cc7f9c842b81271a,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 124, ""exports"": 2}" +ST_CPM\STmateQty8.CPM,224768,f92ec517ff931328dac76154a1fedcee8e9cca5ffb64fddfc207af3887c19b37,.CPM,PE,internal_structure_extracted,True,"{""sections"": 7, ""imports"": 124, ""exports"": 4}" +ST_Func_C.CPM,657920,f2d4b2f6ebda2d57e47d343907071400cdb4b9f01fa5cc7756f34eb5f94e2ca6,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 19, ""exports"": 7}" +ST_JD_Lst.CPM,143370,64d6d0dd7629249dc2f3fbdcd7372a9e09a8422fe2ede94ea59a8fedd25f3497,.CPM,text,internal_structure_extracted,False,"{""encoding"": ""cp949"", ""lines"": 26}" +ST_log\ST_log.stlog,149,298b9c72ce903c0a06241dc04bd2f5cca0c525ae2822b09cdeccdda36f9df932,.stlog,obfuscated-log,internal_structure_extracted,False,"{""bytes"": 149}" +ST_Merge_Code.CPM,656896,c3bcc5851d680da5dc69e04b4d9e389baf36c45dc1c2203c5b88e039e6d56c63,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 133, ""exports"": 1}" +ST_Tips.dat,1636,f7de77c90911587bf98c2a75c58d6484bbc166d49b306feb04e895fdc93f4d6a,.dat,tips-data,internal_structure_extracted,False,"{""utf8_html"": true, ""bytes"": 1636}" +ST_U_APatch.CPM,172032,50b79f7c127ec681db22d2cff6814314c143eca73cc473f01d26c71197fb6ed5,.CPM,PE,internal_structure_extracted,False,"{""sections"": 6, ""imports"": 49, ""exports"": 0}" +ST_V_Info.CPM,49,671f6214ec519d846e5b489ffbd37d1a6036945a46169ae1d6294319eba10ce0,.CPM,text,internal_structure_extracted,False,"{""encoding"": ""utf-8"", ""lines"": 3}" +ST_Viewer.exe,1329664,2eeee446f9563a6d64e7a415f7f0373262132f7adfc672ac9b8b108a6e069df9,.exe,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 21, ""exports"": 0}" +ST_VSetup.EXE,1788882,d9e04e9fa0d7886c868d122a20a2143ac913f2ced8fec1c5127ca9fd38a14b81,.EXE,PE,internal_structure_extracted,False,"{""sections"": 4, ""imports"": 4, ""exports"": 2}" +ST_Wal.CPM,325632,da56d1a27a664b0ff7b6af60c8b891bd7c831ffdede9b104ee05d33cad80e82d,.CPM,PE,internal_structure_extracted,False,"{""sections"": 6, ""imports"": 121, ""exports"": 0}" +Stma.URL,48,de22235fba718eff232f134680d246ce485ff5e80178e7f654a1eb605878ce87,.URL,text,internal_structure_extracted,False,"{""encoding"": ""utf-8"", ""lines"": 2}" +STmate.Cpm,3525632,99d5c05675ba1399c51a71db8e26ebd5ff39fd78d02360147c7705deb399b5f5,.Cpm,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 144, ""exports"": 1}" +STmate8.Exe,145408,ee029ac9acf684e894a2ea4743a37288755439391f36107565f4aa87f3499b06,.Exe,PE,internal_structure_extracted,False,"{""sections"": 6, ""imports"": 52, ""exports"": 0}" +STmate_Ins.log,15958,9dd9f8e827f64c593afd6b9d15fe041a8d1139c61c189f02e70ed693c122efc3,.log,text,internal_structure_extracted,False,"{""encoding"": ""cp949"", ""lines"": 288}" +STmexe.Cpm,96256,5ff4005a52c8f56be88d7f263c9dcec782c7ea50618a3c1509e5dc2a06539a6e,.Cpm,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 37, ""exports"": 2}" +SX32W.CPM,4568352,ae0f65b43b5a04ccb1cc181db66cd5e69e7ab5254891c8c6c6810130ff9922de,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 3, ""exports"": 29}" +UNWISE.EXE,149504,49ef36bd01b8ebf38c7b807a5fb44cbaf47c9d4efa883b01c41494c61ae4a2e2,.EXE,PE,internal_structure_extracted,False,"{""sections"": 4, ""imports"": 6, ""exports"": 4}" +UNWISE.INI,51,d8848d6d476fcab45337043e90121cccc24e4090977a5c54d713c36e06e4ced7,.INI,text,internal_structure_extracted,False,"{""encoding"": ""cp949"", ""lines"": 3}" +USA.BTL,36458,4b9819331d4ad485dce6a16609dbe8ae6e18aa4085e8deb1c8f5333735c5e76e,.BTL,BTLF,internal_structure_extracted,False,"{""header"": ""BTLF01.001\u0000English_US:Paradox:OE""}" +VCL60.BPL,1326080,b1b14dfad40e71fec495316a901dffc14d1add020172f99a28b06f953238a885,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 41, ""exports"": 6339}" +VCLDB60.BPL,262656,ab75cf8adaf04dc782dab0272cf02e064700870ae962affeeb135e2f4561f788,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 58, ""exports"": 931}" +VCLJPG60.BPL,96256,fe1eaf525e2ac3161e57e36333af7eed2b92597fedb5814f0b8824a40b9917cd,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 16, ""exports"": 60}" +VCLSMP60.BPL,62464,ded7e1bbdada951183532d60e95a8ef6805118a1249b6c8ea885d8345b3195f3,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 38, ""exports"": 136}" +VCLX60.BPL,213504,741b8250412fe40fd3124de2814a506af94f65017e6c90ae2af27a9b54d81052,.BPL,PE,internal_structure_extracted,False,"{""sections"": 8, ""imports"": 51, ""exports"": 617}" +View_Old_San.CPM,667136,debe9a5cbeb477ca5c889269b9bcc69fa074989fe7074be2e347ab421260fd67,.CPM,PE,internal_structure_extracted,False,"{""sections"": 7, ""imports"": 15, ""exports"": 1}" +WLHA32.DLL,90624,96452faeed5affd7dcd88f3aa14930ab5e5709f5916262c87a10927d40838329,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 2, ""exports"": 5}" +WUNARJ32.DLL,44032,257b4812c9b4a127b2e7a04eff3bd19166ff8ca20cf03d85684b1ec890b804d5,.DLL,PE,internal_structure_extracted,False,"{""sections"": 5, ""imports"": 2, ""exports"": 2}" diff --git a/scratch/orca_artifacts/stmate_competitor_analysis/system_structures.json b/scratch/orca_artifacts/stmate_competitor_analysis/system_structures.json new file mode 100644 index 00000000..f7c08283 --- /dev/null +++ b/scratch/orca_artifacts/stmate_competitor_analysis/system_structures.json @@ -0,0 +1,54432 @@ +{ + "Apollo5D6.bpl": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 220012, + "raw_off": 1024, + "raw_size": 220160 + }, + { + "name": "DATA", + "va": 225280, + "vsize": 760, + "raw_off": 221184, + "raw_size": 1024 + }, + { + "name": "BSS", + "va": 229376, + "vsize": 825, + "raw_off": 222208, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 233472, + "vsize": 27938, + "raw_off": 222208, + "raw_size": 28160 + }, + { + "name": ".edata", + "va": 262144, + "vsize": 66218, + "raw_off": 250368, + "raw_size": 66560 + }, + { + "name": ".rdata", + "va": 331776, + "vsize": 15, + "raw_off": 316928, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 335872, + "vsize": 14104, + "raw_off": 317440, + "raw_size": 14336 + }, + { + "name": ".rsrc", + "va": 352256, + "vsize": 7680, + "raw_off": 331776, + "raw_size": 7680 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "wsock32.dll", + "vclx60.bpl", + "vcl60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "FTS32.DLL" + ], + "exports": [ + "@$xp$10Fts32@TFts", + "@$xp$12Apwin@TApSDE", + "@$xp$14Apollo@TApollo", + "@$xp$15Apodset@RecList", + "@$xp$15Fts32@EFTSError", + "@$xp$16Apsqlobj@TSQLObj", + "@$xp$16Apwin@TAPSDEBase", + "@$xp$17Apclass@TExecType", + "@$xp$17Apodset@TLockList", + "@$xp$17Apoenv@TApolloEnv", + "@$xp$17Fts32@TVerifyType", + "@$xp$18Apclass@apCLass__2", + "@$xp$18Apclass@apCLass__3", + "@$xp$18Apclass@apCLass__4", + "@$xp$18Apclass@apCLass__5", + "@$xp$18Apodset@ApoDSet__1", + "@$xp$18Apodset@TDbfStruct", + "@$xp$18Apodset@TEOFAction", + "@$xp$18Apodset@TFieldInfo", + "@$xp$18Apoqset@TFieldInfo", + "@$xp$18Apwin@TApSDEClient", + "@$xp$18Apwin@TApSDESocket", + "@$xp$19Apcommon@TDriveType", + "@$xp$19Apodset@TUpdateKind", + "@$xp$19Apwin@TSocksVersion", + "@$xp$20Apclass@TSessionData", + "@$xp$20Apglobal@APGLOBAL__1", + "@$xp$20Apodset@EApolloError", + "@$xp$20Apodset@TApolloTable", + "@$xp$20Apodset@TServerRecNo", + "@$xp$20Apoqset@TApolloQuery", + "@$xp$20Apoqset@TServerRecNo", + "@$xp$20Apwin@EApSDETimedOut", + "@$xp$20Apwin@TProgressEvent", + "@$xp$21Apclass@TAccessMethod", + "@$xp$21Apglobal@TStringEvent", + "@$xp$21Apodset@TApBlobStream", + "@$xp$21Apodset@TUpdateAction", + "@$xp$21Apodset@TUpdateStatus", + "@$xp$21Apoenv@TApolloApplyTo", + "@$xp$21Apoqset@TApolloTables", + "@$xp$21Apwin@EApSDEException", + "@$xp$22Apcommon@TAccessMethod", + "@$xp$22Apglobal@TReplaceFlags", + "@$xp$22Apodset@TApolloDataSet", + "@$xp$22Apoenv@TApolloDatabase", + "@$xp$22Apwin@EApSDEGetMessage", + "@$xp$22Apwin@EApSDENotWaiting", + "@$xp$22Apwin@TDebugWriteEvent", + "@$xp$23Apodset@TApolloRangeSet", + "@$xp$23Apodset@TSequencedCount", + "@$xp$23Apoenv@TApolloApplyType", + "@$xp$23Apwin@EApSDEInterrupted", + "@$xp$23Apwin@EApSDESocketError", + "@$xp$24Apcommon@TApolloDateFrmt", + "@$xp$24Apconn@TApolloConnection", + "@$xp$24Apoqset@TApolloTableItem", + "@$xp$24Apwin@EApSDEClosedSocket", + "@$xp$24Apwin@EApSDENotListening", + "@$xp$24Apwin@EApSilentException", + "@$xp$24Apwin@TReadProgressEvent", + "@$xp$25Apcommon@TApolloTableType", + "@$xp$25Apodset@TUpdateErrorEvent", + "@$xp$25Apoqset@EApolloQueryError", + "@$xp$25Apostor@EApolloStoredProc", + "@$xp$25Apostor@TApolloStoredProc", + "@$xp$25Apwin@EApSDEInvalidSocket", + "@$xp$25Apwin@EApSDEResponseError", + "@$xp$25Apwin@TWriteProgressEvent", + "@$xp$26Apodset@TUpdateRecordEvent", + "@$xp$26Apodset@TUpdateRecordTypes", + "@$xp$26Apodsreg@TDBStringProperty", + "@$xp$26Apodsreg@TProcNameProperty", + "@$xp$26Apwin@EApSDEConnectRefused", + "@$xp$26Apwin@TApGUIIntegratorBase", + "@$xp$26Apwin@TServerProgressEvent", + "@$xp$26Apwin@TSocksAuthentication", + "@$xp$26Winsockintf@TWinsockIntf11", + "@$xp$27Apodset@TApolloSearchObject", + "@$xp$27Apodsreg@TIndexNameProperty", + "@$xp$27Apodsreg@TTableNameProperty", + "@$xp$27Apwin@EApConnClosedGraceful", + "@$xp$28Apoqset@TApolloQuerySaveFlag", + "@$xp$28Apwin@EApSDEAlreadyConnected", + "@$xp$28Apwin@EApSDEAlreadyListening", + "@$xp$28Winsockintf@TWinsockIntfBase", + "@$xp$29Apoqset@TApolloQuerySaveFlags", + "@$xp$29Apwin@EApSDEAlreadyConnecting", + "@$xp$30Apodsreg@TDatabaseNameProperty", + "@$xp$30Apodsreg@TMasterFieldsProperty", + "@$xp$30Apoqset@TApolloQueryBlobStream", + "@$xp$30Apwin@EApSDEConnClosedGraceful", + "@$xp$32Apodsreg@TQueryTableNameProperty", + "@$xp$32Apodsreg@TStoredProcNameProperty", + "@$xp$34Apconn@TSocketConnectionErrorEvent", + "@$xp$34Apconn@TSocketConnectionLoginEvent", + "@$xp$35Apconn@TSocketConnectionLogoutEvent", + "@$xp$35Apodsreg@TQueryDatabaseNameProperty", + "@$xp$36Apodsreg@TStoredDatabaseNameProperty", + "@$xp$38Apconn@TSocketConnectionServerMsgEvent", + "@Adbsql@Finalization$qqrv", + "@Adbsql@LoadSQLDLL$qqrv", + "@Adbsql@SQLDLLLoaded", + "@Adbsql@dll_sql_CloseSQL", + "@Adbsql@dll_sql_ExecSQL", + "@Adbsql@dll_sql_GetRecord", + "@Adbsql@dll_sql_GetStructure", + "@Adbsql@dll_sql_OpenSQL", + "@Adbsql@dll_sql_Prepare", + "@Adbsql@dll_sql_ReadBlobData", + "@Adbsql@dll_sql_RecCount", + "@Adbsql@dll_sql_Refresh", + "@Adbsql@dll_sql_UnPrepareSQL", + "@Adbsql@initialization$qqrv", + "@Apclass@Finalization$qqrv", + "@Apclass@TSessionData@", + "@Apclass@TSessionData@$bctr$qqrp14System@TObject", + "@Apclass@TSessionData@$bdtr$qqrv", + "@Apclass@TSessionData@GetDataBaseName$qqri", + "@Apclass@TSessionData@GetPath$qqri", + "@Apclass@TSessionData@GetTableAlias$qqri", + "@Apclass@TSessionData@GetTableDriverType$qqri", + "@Apclass@TSessionData@GetTableName$qqri", + "@Apclass@TSessionData@GetWASelected$qqri", + "@Apclass@TSessionData@SetDatabaseName$qqri17System@AnsiString", + "@Apclass@TSessionData@SetPath$qqri17System@AnsiString", + "@Apclass@TSessionData@SetTableAlias$qqri17System@AnsiString", + "@Apclass@TSessionData@SetTableDriverType$qqris", + "@Apclass@TSessionData@SetTableName$qqri17System@AnsiString", + "@Apclass@TSessionData@SetWASelected$qqrii", + "@Apclass@initialization$qqrv", + "@Apcommon@Finalization$qqrv", + "@Apcommon@initialization$qqrv", + "@Apconn@Finalization$qqrv", + "@Apconn@TApolloConnection@", + "@Apconn@TApolloConnection@$bctr$qqrp18Classes@TComponent", + "@Apconn@TApolloConnection@$bdtr$qqrv", + "@Apconn@TApolloConnection@ClientError$qqrx17System@AnsiStringt1", + "@Apconn@TApolloConnection@ClientStreamReceive$qqrx17System@AnsiStringt1", + "@Apconn@TApolloConnection@ClientStreamSend$qqrx17System@AnsiString", + "@Apconn@TApolloConnection@ClientStreamSendReceive$qqrx17System@AnsiString", + "@Apconn@TApolloConnection@ClientXmit$qqrx17System@AnsiStringt1o", + "@Apconn@TApolloConnection@CloseDataSets$qqrv", + "@Apconn@TApolloConnection@Commit$qqrv", + "@Apconn@TApolloConnection@DeleteFile$qqr17System@AnsiStringt1", + "@Apconn@TApolloConnection@ExecProc$qqrv", + "@Apconn@TApolloConnection@FileExists$qqr17System@AnsiStringt1", + "@Apconn@TApolloConnection@FileLength$qqr17System@AnsiStringt1", + "@Apconn@TApolloConnection@FileReceive$qqr17System@AnsiStringt1t1", + "@Apconn@TApolloConnection@FileSend$qqr17System@AnsiStringt1t1", + "@Apconn@TApolloConnection@FillInBuff$qqrv", + "@Apconn@TApolloConnection@FillReadStream$qqro", + "@Apconn@TApolloConnection@FindDirectories$qqrx17System@AnsiString", + "@Apconn@TApolloConnection@FindDrives$qqrv", + "@Apconn@TApolloConnection@FindFiles$qqr17System@AnsiStringt1", + "@Apconn@TApolloConnection@FindSQL$qqri", + "@Apconn@TApolloConnection@FreeSQLs$qqrv", + "@Apconn@TApolloConnection@GetConnectionID$qqrv", + "@Apconn@TApolloConnection@GetDLLProcs$qqr17System@AnsiString", + "@Apconn@TApolloConnection@GetDataBaseNames$qqrv", + "@Apconn@TApolloConnection@GetDatabaseNamesList$qqrv", + "@Apconn@TApolloConnection@GetFiles$qqr17System@AnsiString", + "@Apconn@TApolloConnection@GetIndexNames$qqr17System@AnsiStrings", + "@Apconn@TApolloConnection@GetParams$qqr17System@AnsiString", + "@Apconn@TApolloConnection@GetProcParams$qqrv", + "@Apconn@TApolloConnection@GetProcedureNames$qqrv", + "@Apconn@TApolloConnection@GetServerDateTime$qqrv", + "@Apconn@TApolloConnection@GetTableNames$qqrv", + "@Apconn@TApolloConnection@GetTableNamesList$qqr17System@AnsiString", + "@Apconn@TApolloConnection@GetTriggers$qqrv", + "@Apconn@TApolloConnection@GetUserNames$qqrp19Classes@TStringList", + "@Apconn@TApolloConnection@GetUserNamesList$qqrv", + "@Apconn@TApolloConnection@InternalGetParams$qqrpv", + "@Apconn@TApolloConnection@Login$qqrv", + "@Apconn@TApolloConnection@Logout$qqrv", + "@Apconn@TApolloConnection@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Apconn@TApolloConnection@OpenDataSets$qqrv", + "@Apconn@TApolloConnection@PathFromAlias$qqrv", + "@Apconn@TApolloConnection@Ping$qqrv", + "@Apconn@TApolloConnection@RollBack$qqrv", + "@Apconn@TApolloConnection@ServerName$qqrv", + "@Apconn@TApolloConnection@ServiceIncoming$qqrp14System@TObject", + "@Apconn@TApolloConnection@SetActive$qqro", + "@Apconn@TApolloConnection@SetParams$qqr17System@AnsiStringp10Db@TParams", + "@Apconn@TApolloConnection@SetProcName$qqr17System@AnsiString", + "@Apconn@TApolloConnection@SetProcParams$qqrp10Db@TParams", + "@Apconn@TApolloConnection@SetTriggers$qqro", + "@Apconn@TApolloConnection@StartTransaction$qqrv", + "@Apconn@TApolloConnection@ap_Alias$qqrus", + "@Apconn@TApolloConnection@ap_Append$qqrv", + "@Apconn@TApolloConnection@ap_AppendBlank$qqrv", + "@Apconn@TApolloConnection@ap_AppendFrom$qqrpcst1", + "@Apconn@TApolloConnection@ap_BaseDate$qqrv", + "@Apconn@TApolloConnection@ap_BaseName$qqrv", + "@Apconn@TApolloConnection@ap_BlobToFile$qqrpct1i", + "@Apconn@TApolloConnection@ap_Bof$qqrv", + "@Apconn@TApolloConnection@ap_Close$qqrv", + "@Apconn@TApolloConnection@ap_CloseAll$qqrv", + "@Apconn@TApolloConnection@ap_CloseIndexes$qqrv", + "@Apconn@TApolloConnection@ap_Commit$qqrv", + "@Apconn@TApolloConnection@ap_CopyFile$qqrpc", + "@Apconn@TApolloConnection@ap_CopyFileText$qqrpcs", + "@Apconn@TApolloConnection@ap_CopyStructure$qqrpct1", + "@Apconn@TApolloConnection@ap_CopyStructureExtended$qqrpc", + "@Apconn@TApolloConnection@ap_Count$qqrv", + "@Apconn@TApolloConnection@ap_CreateExec$qqrv", + "@Apconn@TApolloConnection@ap_CreateField$qqrpct1ss", + "@Apconn@TApolloConnection@ap_CreateFrom$qqrpct1t1s", + "@Apconn@TApolloConnection@ap_CreateNew$qqrpct1ss", + "@Apconn@TApolloConnection@ap_DBFilter$qqrv", + "@Apconn@TApolloConnection@ap_DBRlockList$qqrpc", + "@Apconn@TApolloConnection@ap_DbfDecrypt$qqrv", + "@Apconn@TApolloConnection@ap_DbfEncrypt$qqrv", + "@Apconn@TApolloConnection@ap_Decrypt$qqrpct1i", + "@Apconn@TApolloConnection@ap_Delete$qqrv", + "@Apconn@TApolloConnection@ap_Deleted$qqrv", + "@Apconn@TApolloConnection@ap_Descend$qqrpc", + "@Apconn@TApolloConnection@ap_Empty$qqrpc", + "@Apconn@TApolloConnection@ap_Encrypt$qqrpct1i", + "@Apconn@TApolloConnection@ap_EnvSettings$qqriiiusususus", + "@Apconn@TApolloConnection@ap_Eof$qqrv", + "@Apconn@TApolloConnection@ap_ErrorLevel$qqri", + "@Apconn@TApolloConnection@ap_EvalLogical$qqrpc", + "@Apconn@TApolloConnection@ap_EvalNumeric$qqrpc", + "@Apconn@TApolloConnection@ap_EvalString$qqrpc", + "@Apconn@TApolloConnection@ap_EvalTest$qqrpc", + "@Apconn@TApolloConnection@ap_FieldCount$qqrv", + "@Apconn@TApolloConnection@ap_FieldDecimals$qqrpc", + "@Apconn@TApolloConnection@ap_FieldName$qqrus", + "@Apconn@TApolloConnection@ap_FieldNum$qqrpc", + "@Apconn@TApolloConnection@ap_FieldOffset$qqrpc", + "@Apconn@TApolloConnection@ap_FieldType$qqrpc", + "@Apconn@TApolloConnection@ap_FieldWidth$qqrpc", + "@Apconn@TApolloConnection@ap_FilterAlias$qqrpct1", + "@Apconn@TApolloConnection@ap_FilterDlg$qqruipct2us", + "@Apconn@TApolloConnection@ap_Flock$qqrv", + "@Apconn@TApolloConnection@ap_Found$qqrv", + "@Apconn@TApolloConnection@ap_GetBitMap$qqrpcui", + "@Apconn@TApolloConnection@ap_GetBlob$qqrpcpv", + "@Apconn@TApolloConnection@ap_GetBlobLength$qqrpc", + "@Apconn@TApolloConnection@ap_GetByte$qqrpc", + "@Apconn@TApolloConnection@ap_GetDateJulian$qqrpc", + "@Apconn@TApolloConnection@ap_GetDateString$qqrpc", + "@Apconn@TApolloConnection@ap_GetDouble$qqrpc", + "@Apconn@TApolloConnection@ap_GetFields$qqrv", + "@Apconn@TApolloConnection@ap_GetInteger$qqrpc", + "@Apconn@TApolloConnection@ap_GetLogical$qqrpc", + "@Apconn@TApolloConnection@ap_GetLong$qqrpc", + "@Apconn@TApolloConnection@ap_GetMemo$qqrpcus", + "@Apconn@TApolloConnection@ap_GetPage$qqri", + "@Apconn@TApolloConnection@ap_GetQueryBit$qqri", + "@Apconn@TApolloConnection@ap_GetRecord$qqrpci", + "@Apconn@TApolloConnection@ap_GetScope$qqrs", + "@Apconn@TApolloConnection@ap_GetString$qqrpc", + "@Apconn@TApolloConnection@ap_GetStructure$qqrv", + "@Apconn@TApolloConnection@ap_GetTrimString$qqrpc", + "@Apconn@TApolloConnection@ap_Go$qqri", + "@Apconn@TApolloConnection@ap_GoBottom$qqrv", + "@Apconn@TApolloConnection@ap_GoTop$qqrv", + "@Apconn@TApolloConnection@ap_Index$qqrpct1sust1", + "@Apconn@TApolloConnection@ap_IndexClose$qqrv", + "@Apconn@TApolloConnection@ap_IndexCondition$qqrv", + "@Apconn@TApolloConnection@ap_IndexCount$qqrv", + "@Apconn@TApolloConnection@ap_IndexDescending$qqrv", + "@Apconn@TApolloConnection@ap_IndexFlip$qqrv", + "@Apconn@TApolloConnection@ap_IndexKey$qqrv", + "@Apconn@TApolloConnection@ap_IndexKeyField$qqrv", + "@Apconn@TApolloConnection@ap_IndexName$qqrs", + "@Apconn@TApolloConnection@ap_IndexOpen$qqrpc", + "@Apconn@TApolloConnection@ap_IndexOrd$qqrv", + "@Apconn@TApolloConnection@ap_IndexTag$qqrpct1t1sust1", + "@Apconn@TApolloConnection@ap_IndexType$qqrv", + "@Apconn@TApolloConnection@ap_IsEncrypted$qqrs", + "@Apconn@TApolloConnection@ap_KeyAdd$qqrpc", + "@Apconn@TApolloConnection@ap_KeyData$qqrv", + "@Apconn@TApolloConnection@ap_KeyDrop$qqrpc", + "@Apconn@TApolloConnection@ap_Locate$qqrpcusus", + "@Apconn@TApolloConnection@ap_LockCount$qqrv", + "@Apconn@TApolloConnection@ap_Locked$qqri", + "@Apconn@TApolloConnection@ap_MemDealloc$qqrpv", + "@Apconn@TApolloConnection@ap_MultiTraverseTable$qqrriususi11Db@TGetModet5pciiirp13Classes@TList", + "@Apconn@TApolloConnection@ap_OpenMode$qqrv", + "@Apconn@TApolloConnection@ap_OrderPosGet$qqrv", + "@Apconn@TApolloConnection@ap_OrderPosSet$qqrd", + "@Apconn@TApolloConnection@ap_OrderRecNo$qqrv", + "@Apconn@TApolloConnection@ap_Pack$qqrv", + "@Apconn@TApolloConnection@ap_PutBlob$qqrpcpvi", + "@Apconn@TApolloConnection@ap_PutMemo$qqrpct1", + "@Apconn@TApolloConnection@ap_PutRecord$qqrpci", + "@Apconn@TApolloConnection@ap_Query$qqrpc", + "@Apconn@TApolloConnection@ap_QueryRecCount$qqrv", + "@Apconn@TApolloConnection@ap_QueryTest$qqrpc", + "@Apconn@TApolloConnection@ap_QuickUse$qqr17System@AnsiStringt1ssrit5t5rusr17System@AnsiStringust1iiiususususust1t5rp13Db@TIndexDefst5t9", + "@Apconn@TApolloConnection@ap_RYOFilterActivate$qqrss", + "@Apconn@TApolloConnection@ap_RYOFilterCopy$qqrv", + "@Apconn@TApolloConnection@ap_RYOFilterCreate$qqrv", + "@Apconn@TApolloConnection@ap_RYOFilterDestroy$qqrs", + "@Apconn@TApolloConnection@ap_RYOFilterGetBit$qqrsi", + "@Apconn@TApolloConnection@ap_RYOFilterRestore$qqrpc", + "@Apconn@TApolloConnection@ap_RYOFilterSave$qqrspc", + "@Apconn@TApolloConnection@ap_RYOFilterSetBit$qqrsis", + "@Apconn@TApolloConnection@ap_RYOKeyAdd$qqrpct1", + "@Apconn@TApolloConnection@ap_RYOKeyDrop$qqrpc", + "@Apconn@TApolloConnection@ap_RecCount$qqrv", + "@Apconn@TApolloConnection@ap_RecNo$qqrv", + "@Apconn@TApolloConnection@ap_RecSize$qqrv", + "@Apconn@TApolloConnection@ap_Recall$qqrv", + "@Apconn@TApolloConnection@ap_Reindex$qqrv", + "@Apconn@TApolloConnection@ap_Replace$qqrpcspv", + "@Apconn@TApolloConnection@ap_Rlock$qqri", + "@Apconn@TApolloConnection@ap_Seek$qqrpc", + "@Apconn@TApolloConnection@ap_SeekBin$qqrpcus", + "@Apconn@TApolloConnection@ap_Select$qqri", + "@Apconn@TApolloConnection@ap_SetCentury$qqrus", + "@Apconn@TApolloConnection@ap_SetDateFormat$qqrus", + "@Apconn@TApolloConnection@ap_SetDeleted$qqrus", + "@Apconn@TApolloConnection@ap_SetEpoch$qqrus", + "@Apconn@TApolloConnection@ap_SetErrorFunc$qqrii", + "@Apconn@TApolloConnection@ap_SetExact$qqrus", + "@Apconn@TApolloConnection@ap_SetFields$qqrpc", + "@Apconn@TApolloConnection@ap_SetFilter$qqrpc", + "@Apconn@TApolloConnection@ap_SetGaugeHook$qqrui", + "@Apconn@TApolloConnection@ap_SetLockTimeout$qqrs", + "@Apconn@TApolloConnection@ap_SetMemoBlockSize$qqrus", + "@Apconn@TApolloConnection@ap_SetOrder$qqrs", + "@Apconn@TApolloConnection@ap_SetPassword$qqrpc", + "@Apconn@TApolloConnection@ap_SetQueryBit$qqrius", + "@Apconn@TApolloConnection@ap_SetRelation$qqruspc", + "@Apconn@TApolloConnection@ap_SetScope$qqrpct1", + "@Apconn@TApolloConnection@ap_SetSoftSeek$qqrus", + "@Apconn@TApolloConnection@ap_SetStringType$qqrus", + "@Apconn@TApolloConnection@ap_SetTranslate$qqrus", + "@Apconn@TApolloConnection@ap_SetTurboRead$qqrus", + "@Apconn@TApolloConnection@ap_Skip$qqri", + "@Apconn@TApolloConnection@ap_SysProp$qqruspv", + "@Apconn@TApolloConnection@ap_TagArea$qqrpc", + "@Apconn@TApolloConnection@ap_TagName$qqrs", + "@Apconn@TApolloConnection@ap_TraverseTable$qqrususi11Db@TGetModeripcii", + "@Apconn@TApolloConnection@ap_Unlock$qqri", + "@Apconn@TApolloConnection@ap_Use$qqrpct1ss", + "@Apconn@TApolloConnection@ap_Version$qqrv", + "@Apconn@TApolloConnection@ap_WorkArea$qqrpc", + "@Apconn@TApolloConnection@ap_Zap$qqrv", + "@Apconn@TApolloConnection@ap_sql_CloseSQL$qqr22Apcommon@TAccessMethodus", + "@Apconn@TApolloConnection@ap_sql_ExecSQL$qqr22Apcommon@TAccessMethodus17System@AnsiStringrir17System@AnsiString", + "@Apconn@TApolloConnection@ap_sql_GetRecord$qqr22Apcommon@TAccessMethodusiii", + "@Apconn@TApolloConnection@ap_sql_GetStructure$qqr22Apcommon@TAccessMethodus", + "@Apconn@TApolloConnection@ap_sql_OpenSQL$qqr22Apcommon@TAccessMethodus17System@AnsiStringrit4t4t4r17System@AnsiString", + "@Apconn@TApolloConnection@ap_sql_Prepare$qqr22Apcommon@TAccessMethod17System@AnsiStringp19Classes@TCollectionusiusip10Db@TParamso25Apcommon@TApolloTableTypet2orir17System@AnsiString", + "@Apconn@TApolloConnection@ap_sql_ReadBlobData$qqr22Apcommon@TAccessMethodiii", + "@Apconn@TApolloConnection@ap_sql_RecCount$qqr22Apcommon@TAccessMethodus", + "@Apconn@TApolloConnection@ap_sql_Refresh$qqr22Apcommon@TAccessMethodus", + "@Apconn@TApolloConnection@ap_sql_UnPrepare$qqr22Apcommon@TAccessMethodus", + "@Apconn@TApolloConnection@ap_tps_BeginTransaction$qqrv", + "@Apconn@TApolloConnection@ap_tps_Commit$qqrv", + "@Apconn@TApolloConnection@ap_tps_RollBack$qqrv", + "@Apconn@initialization$qqrv", + "@Apglobal@Finalization$qqrv", + "@Apglobal@IsNumeric$qqrc", + "@Apglobal@NoAngleBrackets$qqrx17System@AnsiString", + "@Apglobal@OffsetFromUTC$qqrv", + "@Apglobal@Pad10$qqri", + "@Apglobal@PosInStrArray$qqrx17System@AnsiStringpx17System@AnsiStringxi", + "@Apglobal@RPos$qqrx17System@AnsiStringt1i", + "@Apglobal@StrToDay$qqrx17System@AnsiString", + "@Apglobal@StrToMonth$qqrx17System@AnsiString", + "@Apglobal@StreamEOF$qqrp15Classes@TStream", + "@Apglobal@StreamReadLn$qqrp15Classes@TStream", + "@Apglobal@StreamReadLongLn$qqrp15Classes@TStreamroi", + "@Apglobal@StreamReadShortLn$qqrp15Classes@TStream", + "@Apglobal@StreamReadXChars$qqrp15Classes@TStreamxi", + "@Apglobal@StreamWrite$qqrp15Classes@TStreamx17System@AnsiString", + "@Apglobal@StreamWriteLn$qqrp15Classes@TStreamx17System@AnsiString", + "@Apglobal@StringReplace$qqrx17System@AnsiStringt1t148System@%Set$t20Apglobal@APGLOBAL__1$iuc$0$iuc$1%", + "@Apglobal@TabPAD$qqr17System@AnsiString", + "@Apglobal@UpcaseFirst$qqr17System@AnsiString", + "@Apglobal@bVoid", + "@Apglobal@iiif$qqrxoxixi", + "@Apglobal@initialization$qqrv", + "@Apglobal@sVoid", + "@Apglobal@siif$qqrxox17System@AnsiStringt2", + "@Apodset@DTtoJulian$qqr16System@TDateTime", + "@Apodset@EApolloError@", + "@Apodset@Finalization$qqrv", + "@Apodset@GetApDsVer$qqrv", + "@Apodset@GetFieldsFromExpression$qqr17System@AnsiString", + "@Apodset@JulianDayYear$qqriii", + "@Apodset@JulianToDT$qqrd", + "@Apodset@MonthDay$qqriirit3", + "@Apodset@TApBlobStream@", + "@Apodset@TApBlobStream@$bctr$qqrp13Db@TBlobField18Db@TBlobStreamMode", + "@Apodset@TApBlobStream@$bdtr$qqrv", + "@Apodset@TApBlobStream@Write$qqrpxvi", + "@Apodset@TApolloDataSet@", + "@Apodset@TApolloSearchObject@", + "@Apodset@TApolloSearchObject@SearchComponent$qqrp17System@TMetaClass", + "@Apodset@TApolloSearchObject@SearchFirstComponent$qqrp17System@TMetaClass", + "@Apodset@TApolloSearchObject@SearchNextComponent$qqrp17System@TMetaClass", + "@Apodset@TApolloTable@", + "@Apodset@TApolloTable@$bctr$qqrp18Classes@TComponent", + "@Apodset@TApolloTable@$bdtr$qqrv", + "@Apodset@TApolloTable@ActivateIndexes$qqrv", + "@Apodset@TApolloTable@AddIndex$qqrx17System@AnsiStringt143System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Apodset@TApolloTable@Alias$qqrv", + "@Apodset@TApolloTable@AllocRecordBuffer$qqrv", + "@Apodset@TApolloTable@ApolloDelete$qqrv", + "@Apodset@TApolloTable@ApolloFieldCount$qqrv", + "@Apodset@TApolloTable@ApolloGetRecord$qqrpc", + "@Apodset@TApolloTable@ApolloLocate$qqr17System@AnsiStringusus", + "@Apodset@TApolloTable@ApolloLocateNext$qqrv", + "@Apodset@TApolloTable@ApolloTableType$qqr25Apcommon@TApolloTableType", + "@Apodset@TApolloTable@Append$qqrv", + "@Apodset@TApolloTable@AppendBlank$qqrv", + "@Apodset@TApolloTable@AppendFrom$qqr17System@AnsiStringst1", + "@Apodset@TApolloTable@ApplyRange$qqrv", + "@Apodset@TApolloTable@ApplyUpdates$qqrv", + "@Apodset@TApolloTable@BaseDate$qqrv", + "@Apodset@TApolloTable@BaseName$qqrv", + "@Apodset@TApolloTable@BeginScroll$qqrv", + "@Apodset@TApolloTable@BlobToFile$qqr17System@AnsiStringt1", + "@Apodset@TApolloTable@BookmarkValid$qqrpv", + "@Apodset@TApolloTable@CancelRange$qqrv", + "@Apodset@TApolloTable@CancelUpdates$qqrv", + "@Apodset@TApolloTable@CheckMasterRange$qqrv", + "@Apodset@TApolloTable@CheckTableType$qqrv", + "@Apodset@TApolloTable@ClearBuffers$qqrv", + "@Apodset@TApolloTable@ClearCachedItems$qqrv", + "@Apodset@TApolloTable@ClearCalcFields$qqrpc", + "@Apodset@TApolloTable@ClearFetchedItems$qqrv", + "@Apodset@TApolloTable@CloseIndexFile$qqrx17System@AnsiString", + "@Apodset@TApolloTable@CloseIndexes$qqrv", + "@Apodset@TApolloTable@Commit$qqrv", + "@Apodset@TApolloTable@CommitUpdates$qqrv", + "@Apodset@TApolloTable@CompareBookmarks$qqrpvt1", + "@Apodset@TApolloTable@CopyFile$qqr17System@AnsiString", + "@Apodset@TApolloTable@CopyFileText$qqr17System@AnsiStrings", + "@Apodset@TApolloTable@CopyStructure$qqr17System@AnsiString", + "@Apodset@TApolloTable@CopyStructureExtended$qqr17System@AnsiString", + "@Apodset@TApolloTable@Count$qqrv", + "@Apodset@TApolloTable@CreateBlobStream$qqrp9Db@TField18Db@TBlobStreamMode", + "@Apodset@TApolloTable@CreateExec$qqrv", + "@Apodset@TApolloTable@CreateField$qqr17System@AnsiStringt1ss", + "@Apodset@TApolloTable@CreateFields$qqrv", + "@Apodset@TApolloTable@CreateFrom$qqr17System@AnsiStringt1s", + "@Apodset@TApolloTable@CreateNew$qqr17System@AnsiStringss", + "@Apodset@TApolloTable@CreateTable$qqrv", + "@Apodset@TApolloTable@DBFilter$qqrv", + "@Apodset@TApolloTable@DbfDecrypt$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Apodset@TApolloTable@Decrypt$qqrpc17System@AnsiStringi", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DeleteIndex$qqrx17System@AnsiString", + "@Apodset@TApolloTable@DeleteTable$qqrv", + "@Apodset@TApolloTable@Descend$qqr17System@AnsiString", + "@Apodset@TApolloTable@DoAfterCancel$qqrv", + "@Apodset@TApolloTable@DoAfterInsert$qqrv", + "@Apodset@TApolloTable@DoAfterScroll$qqrv", + "@Apodset@TApolloTable@DoBeforeEdit$qqrv", + "@Apodset@TApolloTable@DoBeforeInsert$qqrv", + "@Apodset@TApolloTable@DoOnNewRecord$qqrv", + "@Apodset@TApolloTable@EditKey$qqrv", + "@Apodset@TApolloTable@EditRangeEnd$qqrv", + "@Apodset@TApolloTable@EditRangeStart$qqrv", + "@Apodset@TApolloTable@Empty$qqr17System@AnsiString", + "@Apodset@TApolloTable@EmptyTable$qqrv", + "@Apodset@TApolloTable@Encrypt$qqrpc17System@AnsiStringi", + "@Apodset@TApolloTable@EndScroll$qqrv", + "@Apodset@TApolloTable@EvalLogical$qqr17System@AnsiString", + "@Apodset@TApolloTable@EvalNumeric$qqr17System@AnsiString", + "@Apodset@TApolloTable@EvalString$qqr17System@AnsiString", + "@Apodset@TApolloTable@EvalTest$qqr17System@AnsiString", + "@Apodset@TApolloTable@ExtraIndexesChanged$qqrp14System@TObject", + "@Apodset@TApolloTable@FLock$qqrv", + "@Apodset@TApolloTable@FetchAll$qqrv", + "@Apodset@TApolloTable@FetchRecord$qqrususi11Db@TGetModeri", + "@Apodset@TApolloTable@FieldDecimals$qqr17System@AnsiString", + "@Apodset@TApolloTable@FieldName$qqri", + "@Apodset@TApolloTable@FieldNum$qqr17System@AnsiString", + "@Apodset@TApolloTable@FieldOffset$qqr17System@AnsiString", + "@Apodset@TApolloTable@FieldType$qqr17System@AnsiString", + "@Apodset@TApolloTable@FieldWidth$qqr17System@AnsiString", + "@Apodset@TApolloTable@FilterAlias$qqr17System@AnsiStringt1", + "@Apodset@TApolloTable@FilterDlg$qqrui17System@AnsiStringt2us", + "@Apodset@TApolloTable@FindKey$qqrpx14System@TVarRecxi", + "@Apodset@TApolloTable@FindNearest$qqrpx14System@TVarRecxi", + "@Apodset@TApolloTable@Found$qqrv", + "@Apodset@TApolloTable@FreeRecordBuffer$qqrrpc", + "@Apodset@TApolloTable@GetApVersion$qqrv", + "@Apodset@TApolloTable@GetApolloBOF$qqrv", + "@Apodset@TApolloTable@GetApolloEOF$qqrv", + "@Apodset@TApolloTable@GetBOF$qqrv", + "@Apodset@TApolloTable@GetBinary$qqr17System@AnsiStringrpc", + "@Apodset@TApolloTable@GetBlob$qqr17System@AnsiStringpv", + "@Apodset@TApolloTable@GetBlobData$qqrp9Db@TField", + "@Apodset@TApolloTable@GetBlobLength$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetBookmarkData$qqrpcpv", + "@Apodset@TApolloTable@GetBookmarkFlag$qqrpc", + "@Apodset@TApolloTable@GetByte$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetCachedItem$qqri", + "@Apodset@TApolloTable@GetCanModify$qqrv", + "@Apodset@TApolloTable@GetDataPath$qqrv", + "@Apodset@TApolloTable@GetDatabase$qqrv", + "@Apodset@TApolloTable@GetDate$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetDateJulian$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetDateString$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetDeleted$qqrv", + "@Apodset@TApolloTable@GetDouble$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetEOF$qqrv", + "@Apodset@TApolloTable@GetExists$qqrv", + "@Apodset@TApolloTable@GetFieldData$qqrp9Db@TFieldpv", + "@Apodset@TApolloTable@GetFullTableName$qqrv", + "@Apodset@TApolloTable@GetIndexExt$qqrv", + "@Apodset@TApolloTable@GetIndexFieldCount$qqrv", + "@Apodset@TApolloTable@GetIndexNames$qqrp16Classes@TStrings", + "@Apodset@TApolloTable@GetInteger$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetLockCount$qqrv", + "@Apodset@TApolloTable@GetLockList$qqri", + "@Apodset@TApolloTable@GetLogical$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetLong$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetMasterFields$qqrv", + "@Apodset@TApolloTable@GetMasterSource$qqrv", + "@Apodset@TApolloTable@GetMasterVal$qqrv", + "@Apodset@TApolloTable@GetMemo$qqr17System@AnsiStringi", + "@Apodset@TApolloTable@GetMemoExt$qqrv", + "@Apodset@TApolloTable@GetQueryBit$qqri", + "@Apodset@TApolloTable@GetRecNo$qqrv", + "@Apodset@TApolloTable@GetRecord$qqrpc11Db@TGetModeo", + "@Apodset@TApolloTable@GetRecordCount$qqrv", + "@Apodset@TApolloTable@GetRecordSize$qqrv", + "@Apodset@TApolloTable@GetSXRecCount$qqrv", + "@Apodset@TApolloTable@GetSXRecno$qqrv", + "@Apodset@TApolloTable@GetScope$qqri", + "@Apodset@TApolloTable@GetString$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetStringEx$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetTrimString$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetUniqueAliasName$qqr17System@AnsiString", + "@Apodset@TApolloTable@GetVersion$qqrv", + "@Apodset@TApolloTable@Go$qqri", + "@Apodset@TApolloTable@GoBottom$qqrv", + "@Apodset@TApolloTable@GoTop$qqrv", + "@Apodset@TApolloTable@GotoCurrent$qqrp20Apodset@TApolloTable", + "@Apodset@TApolloTable@GotoKey$qqrv", + "@Apodset@TApolloTable@GotoNearest$qqrv", + "@Apodset@TApolloTable@Index$qqr17System@AnsiStringt1sot1", + "@Apodset@TApolloTable@IndexClose$qqrv", + "@Apodset@TApolloTable@IndexCondition$qqrv", + "@Apodset@TApolloTable@IndexFileName$qqri", + "@Apodset@TApolloTable@IndexFlip$qqrv", + "@Apodset@TApolloTable@IndexKey$qqrv", + "@Apodset@TApolloTable@IndexKeyField$qqrv", + "@Apodset@TApolloTable@IndexOpen$qqr17System@AnsiString", + "@Apodset@TApolloTable@IndexOrd$qqrv", + "@Apodset@TApolloTable@IndexTag$qqr17System@AnsiStringt1t1sot1", + "@Apodset@TApolloTable@IndexType$qqrv", + "@Apodset@TApolloTable@InternalAddRecord$qqrpvo", + "@Apodset@TApolloTable@InternalClose$qqrv", + "@Apodset@TApolloTable@InternalDelete$qqrv", + "@Apodset@TApolloTable@InternalFirst$qqrv", + "@Apodset@TApolloTable@InternalGotoBookmark$qqrpv", + "@Apodset@TApolloTable@InternalHandleException$qqrv", + "@Apodset@TApolloTable@InternalInitFieldDefs$qqrv", + "@Apodset@TApolloTable@InternalInitRecord$qqrpc", + "@Apodset@TApolloTable@InternalLast$qqrv", + "@Apodset@TApolloTable@InternalOpen$qqrv", + "@Apodset@TApolloTable@InternalPost$qqrv", + "@Apodset@TApolloTable@InternalRefresh$qqrv", + "@Apodset@TApolloTable@InternalSetToRecord$qqrpc", + "@Apodset@TApolloTable@Invalidate$qqrv", + "@Apodset@TApolloTable@IsCursorOpen$qqrv", + "@Apodset@TApolloTable@IsEncrypted$qqri", + "@Apodset@TApolloTable@IsSequenced$qqrv", + "@Apodset@TApolloTable@KeyAdd$qqr17System@AnsiString", + "@Apodset@TApolloTable@KeyData$qqrv", + "@Apodset@TApolloTable@KeyDrop$qqr17System@AnsiString", + "@Apodset@TApolloTable@Loaded$qqrv", + "@Apodset@TApolloTable@Locate$qqrx17System@AnsiStringrx14System@Variant44System@%Set$t16Db@TLocateOption$iuc$0$iuc$1%", + "@Apodset@TApolloTable@Locked$qqri", + "@Apodset@TApolloTable@Lookup$qqrx17System@AnsiStringrx14System@Variantt1", + "@Apodset@TApolloTable@MasterChanged$qqrp14System@TObject", + "@Apodset@TApolloTable@MasterDisabled$qqrp14System@TObject", + "@Apodset@TApolloTable@MemDealloc$qqrpc", + "@Apodset@TApolloTable@MoveBy$qqri", + "@Apodset@TApolloTable@Next$qqrv", + "@Apodset@TApolloTable@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Apodset@TApolloTable@OpenIndexFile$qqrx17System@AnsiString", + "@Apodset@TApolloTable@OpenMode$qqrv", + "@Apodset@TApolloTable@OpenTable$qqrv", + "@Apodset@TApolloTable@OrderPosGet$qqrv", + "@Apodset@TApolloTable@OrderPosSet$qqrd", + "@Apodset@TApolloTable@OrderRecNo$qqrv", + "@Apodset@TApolloTable@Pack$qqrv", + "@Apodset@TApolloTable@PathFromAlias$qqrv", + "@Apodset@TApolloTable@Prior$qqrv", + "@Apodset@TApolloTable@PutBinary$qqr17System@AnsiStringpc", + "@Apodset@TApolloTable@PutBlob$qqr17System@AnsiStringpvi", + "@Apodset@TApolloTable@PutCachedItem$qqri21Apodset@TUpdateStatuspc", + "@Apodset@TApolloTable@PutRecord$qqrpc", + "@Apodset@TApolloTable@Query$qqrx17System@AnsiString", + "@Apodset@TApolloTable@QueryRecCount$qqrv", + "@Apodset@TApolloTable@QueryTest$qqr17System@AnsiString", + "@Apodset@TApolloTable@RLock$qqri", + "@Apodset@TApolloTable@RYOFilterActivate$qqrss", + "@Apodset@TApolloTable@RYOFilterCopy$qqrv", + "@Apodset@TApolloTable@RYOFilterCreate$qqrv", + "@Apodset@TApolloTable@RYOFilterDestroy$qqrs", + "@Apodset@TApolloTable@RYOFilterGetBit$qqrsi", + "@Apodset@TApolloTable@RYOFilterRestore$qqr17System@AnsiString", + "@Apodset@TApolloTable@RYOFilterSave$qqrs17System@AnsiString", + "@Apodset@TApolloTable@RYOFilterSetBit$qqrsius", + "@Apodset@TApolloTable@RYOKeyAdd$qqr17System@AnsiStringt1", + "@Apodset@TApolloTable@RYOKeyDrop$qqr17System@AnsiString", + "@Apodset@TApolloTable@ReadSDEToNative$qqrpc", + "@Apodset@TApolloTable@RecSize$qqrv", + "@Apodset@TApolloTable@Recall$qqrv", + "@Apodset@TApolloTable@RefreshCount$qqrv", + "@Apodset@TApolloTable@RefreshInternalCalcFields$qqrpc", + "@Apodset@TApolloTable@Reindex$qqrv", + "@Apodset@TApolloTable@Replace$qqr17System@AnsiStringspv", + "@Apodset@TApolloTable@Resync$qqr36System@%Set$t9Db@DB__06$iuc$0$iuc$1%", + "@Apodset@TApolloTable@RevertRecord$qqrv", + "@Apodset@TApolloTable@Seek$qqr17System@AnsiString", + "@Apodset@TApolloTable@SeekBin$qqr17System@AnsiStringi", + "@Apodset@TApolloTable@SelectForSxCall$qqrv", + "@Apodset@TApolloTable@SetAccessMethod$qqr22Apcommon@TAccessMethod", + "@Apodset@TApolloTable@SetApolloConnection$qqrp24Apconn@TApolloConnection", + "@Apodset@TApolloTable@SetBookmarkData$qqrpcpv", + "@Apodset@TApolloTable@SetBookmarkFlag$qqrpc16Db@TBookmarkFlag", + "@Apodset@TApolloTable@SetCachedUpdates$qqro", + "@Apodset@TApolloTable@SetDatabaseName$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetExclusive$qqrus", + "@Apodset@TApolloTable@SetExtraIndexes$qqrp19Classes@TStringList", + "@Apodset@TApolloTable@SetFetchCount$qqri", + "@Apodset@TApolloTable@SetFieldData$qqrp9Db@TFieldpv", + "@Apodset@TApolloTable@SetFilter$qqrrx14System@Variant", + "@Apodset@TApolloTable@SetFilterText$qqrx17System@AnsiString", + "@Apodset@TApolloTable@SetFiltered$qqro", + "@Apodset@TApolloTable@SetGaugeFunc$qqri", + "@Apodset@TApolloTable@SetGaugeHook$qqrui", + "@Apodset@TApolloTable@SetIndexName$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetKey$qqrv", + "@Apodset@TApolloTable@SetLenCachedItem$qqri", + "@Apodset@TApolloTable@SetMasterFields$qqrx17System@AnsiString", + "@Apodset@TApolloTable@SetMasterSource$qqrp14Db@TDataSource", + "@Apodset@TApolloTable@SetOrder$qqri", + "@Apodset@TApolloTable@SetPassword$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetQueryBit$qqrius", + "@Apodset@TApolloTable@SetRange$qqrpx14System@TVarRecxit1xi", + "@Apodset@TApolloTable@SetRangeEnd$qqrv", + "@Apodset@TApolloTable@SetRangeStart$qqrv", + "@Apodset@TApolloTable@SetReadOnly$qqrus", + "@Apodset@TApolloTable@SetRecNo$qqri", + "@Apodset@TApolloTable@SetRelation$qqri17System@AnsiString", + "@Apodset@TApolloTable@SetScope$qqr17System@AnsiStringt1", + "@Apodset@TApolloTable@SetScopeBegin$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetScopeEnd$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetScoped$qqro", + "@Apodset@TApolloTable@SetSequenced$qqro", + "@Apodset@TApolloTable@SetSpeedMode$qqrus", + "@Apodset@TApolloTable@SetSxQuery$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetTableName$qqr17System@AnsiString", + "@Apodset@TApolloTable@SetTableType$qqr25Apcommon@TApolloTableType", + "@Apodset@TApolloTable@SetToApolloEnv$qqrv", + "@Apodset@TApolloTable@SetTranslate$qqrus", + "@Apodset@TApolloTable@SetTurboRead$qqrxus", + "@Apodset@TApolloTable@SetWriteBlobHdr$qqrus", + "@Apodset@TApolloTable@Skip$qqri", + "@Apodset@TApolloTable@SysProp$qqruspv", + "@Apodset@TApolloTable@TagArea$qqr17System@AnsiString", + "@Apodset@TApolloTable@TagName$qqri", + "@Apodset@TApolloTable@Unlock$qqri", + "@Apodset@TApolloTable@UpdateFieldAndIndexDefs$qqrv", + "@Apodset@TApolloTable@UpdateIndexDefs$qqrv", + "@Apodset@TApolloTable@UpdateStatus$qqrv", + "@Apodset@TApolloTable@WriteNativeToSDE$qqrpc", + "@Apodset@TApolloTable@Zap$qqrv", + "@Apodset@TApolloTable@cs_Alias$qqrus", + "@Apodset@TApolloTable@cs_Append$qqrv", + "@Apodset@TApolloTable@cs_AppendBlank$qqrv", + "@Apodset@TApolloTable@cs_AppendFrom$qqrpcst1", + "@Apodset@TApolloTable@cs_BaseDate$qqrv", + "@Apodset@TApolloTable@cs_BaseName$qqrv", + "@Apodset@TApolloTable@cs_BlobToFile$qqrpct1", + "@Apodset@TApolloTable@cs_Bof$qqrv", + "@Apodset@TApolloTable@cs_Close$qqrv", + "@Apodset@TApolloTable@cs_CloseAll$qqrv", + "@Apodset@TApolloTable@cs_CloseIndexes$qqrv", + "@Apodset@TApolloTable@cs_Commit$qqrv", + "@Apodset@TApolloTable@cs_CopyFile$qqrpc", + "@Apodset@TApolloTable@cs_CopyFileText$qqrpcs", + "@Apodset@TApolloTable@cs_CopyStructure$qqrpct1", + "@Apodset@TApolloTable@cs_CopyStructureExtended$qqrpc", + "@Apodset@TApolloTable@cs_Count$qqrv", + "@Apodset@TApolloTable@cs_CreateExec$qqrv", + "@Apodset@TApolloTable@cs_CreateField$qqrpct1ss", + "@Apodset@TApolloTable@cs_CreateFrom$qqrpct1t1s", + "@Apodset@TApolloTable@cs_CreateNew$qqrpct1ss", + "@Apodset@TApolloTable@cs_DBFilter$qqrv", + "@Apodset@TApolloTable@cs_DBRLockList$qqrpc", + "@Apodset@TApolloTable@cs_DbfDecrypt$qqrv", + "@Apodset@TApolloTable@cs_DbfEncrypt$qqrv", + "@Apodset@TApolloTable@cs_Decrypt$qqrpct1i", + "@Apodset@TApolloTable@cs_Delete$qqrv", + "@Apodset@TApolloTable@cs_DeleteFile$qqr17System@AnsiString", + "@Apodset@TApolloTable@cs_Deleted$qqrv", + "@Apodset@TApolloTable@cs_Descend$qqrpc", + "@Apodset@TApolloTable@cs_Empty$qqrpc", + "@Apodset@TApolloTable@cs_Encrypt$qqrpct1i", + "@Apodset@TApolloTable@cs_Eof$qqrv", + "@Apodset@TApolloTable@cs_EvalLogical$qqrpc", + "@Apodset@TApolloTable@cs_EvalNumeric$qqr17System@AnsiString", + "@Apodset@TApolloTable@cs_EvalString$qqrpc", + "@Apodset@TApolloTable@cs_EvalTest$qqrpc", + "@Apodset@TApolloTable@cs_FieldCount$qqrv", + "@Apodset@TApolloTable@cs_FieldDecimals$qqrpc", + "@Apodset@TApolloTable@cs_FieldName$qqrus", + "@Apodset@TApolloTable@cs_FieldNum$qqrpc", + "@Apodset@TApolloTable@cs_FieldOffset$qqrpc", + "@Apodset@TApolloTable@cs_FieldType$qqrpc", + "@Apodset@TApolloTable@cs_FieldWidth$qqrpc", + "@Apodset@TApolloTable@cs_FileExists$qqr17System@AnsiString", + "@Apodset@TApolloTable@cs_FilterAlias$qqrpct1", + "@Apodset@TApolloTable@cs_FilterDlg$qqruipct2us", + "@Apodset@TApolloTable@cs_Flock$qqrv", + "@Apodset@TApolloTable@cs_Found$qqrv", + "@Apodset@TApolloTable@cs_GetBlob$qqrpcpv", + "@Apodset@TApolloTable@cs_GetBlobLength$qqrpc", + "@Apodset@TApolloTable@cs_GetByte$qqrpc", + "@Apodset@TApolloTable@cs_GetDateJulian$qqrpc", + "@Apodset@TApolloTable@cs_GetDateString$qqrpc", + "@Apodset@TApolloTable@cs_GetDouble$qqrpc", + "@Apodset@TApolloTable@cs_GetInteger$qqrpc", + "@Apodset@TApolloTable@cs_GetLogical$qqrpc", + "@Apodset@TApolloTable@cs_GetLong$qqrpc", + "@Apodset@TApolloTable@cs_GetMemo$qqrpcus", + "@Apodset@TApolloTable@cs_GetQueryBit$qqri", + "@Apodset@TApolloTable@cs_GetRecord$qqrpc", + "@Apodset@TApolloTable@cs_GetScope$qqrs", + "@Apodset@TApolloTable@cs_GetString$qqrpc", + "@Apodset@TApolloTable@cs_GetTrimString$qqrpc", + "@Apodset@TApolloTable@cs_Go$qqri", + "@Apodset@TApolloTable@cs_GoBottom$qqrv", + "@Apodset@TApolloTable@cs_GoTop$qqrv", + "@Apodset@TApolloTable@cs_Index$qqrpct1sot1", + "@Apodset@TApolloTable@cs_IndexClose$qqrv", + "@Apodset@TApolloTable@cs_IndexCondition$qqrv", + "@Apodset@TApolloTable@cs_IndexFlip$qqrv", + "@Apodset@TApolloTable@cs_IndexKey$qqrv", + "@Apodset@TApolloTable@cs_IndexKeyField$qqrv", + "@Apodset@TApolloTable@cs_IndexName$qqrs", + "@Apodset@TApolloTable@cs_IndexOpen$qqrpc", + "@Apodset@TApolloTable@cs_IndexOrd$qqrv", + "@Apodset@TApolloTable@cs_IndexTag$qqrpct1t1sot1", + "@Apodset@TApolloTable@cs_IndexType$qqrv", + "@Apodset@TApolloTable@cs_IsEncrypted$qqrs", + "@Apodset@TApolloTable@cs_KeyAdd$qqrpc", + "@Apodset@TApolloTable@cs_KeyData$qqrv", + "@Apodset@TApolloTable@cs_KeyDrop$qqrpc", + "@Apodset@TApolloTable@cs_Locate$qqrpcusus", + "@Apodset@TApolloTable@cs_LockCount$qqrv", + "@Apodset@TApolloTable@cs_Locked$qqri", + "@Apodset@TApolloTable@cs_MemDealloc$qqrpv", + "@Apodset@TApolloTable@cs_OpenMode$qqrv", + "@Apodset@TApolloTable@cs_OrderPosGet$qqrv", + "@Apodset@TApolloTable@cs_OrderPosSet$qqrd", + "@Apodset@TApolloTable@cs_OrderRecNo$qqrv", + "@Apodset@TApolloTable@cs_Pack$qqrv", + "@Apodset@TApolloTable@cs_PutBlob$qqrpcpvi", + "@Apodset@TApolloTable@cs_PutRecord$qqrpc", + "@Apodset@TApolloTable@cs_Query$qqrpc", + "@Apodset@TApolloTable@cs_QueryRecCount$qqrv", + "@Apodset@TApolloTable@cs_QueryTest$qqrpc", + "@Apodset@TApolloTable@cs_RYOFilterActivate$qqrss", + "@Apodset@TApolloTable@cs_RYOFilterCopy$qqrv", + "@Apodset@TApolloTable@cs_RYOFilterCreate$qqrv", + "@Apodset@TApolloTable@cs_RYOFilterDestroy$qqrs", + "@Apodset@TApolloTable@cs_RYOFilterGetBit$qqrsi", + "@Apodset@TApolloTable@cs_RYOFilterRestore$qqrpc", + "@Apodset@TApolloTable@cs_RYOFilterSave$qqrspc", + "@Apodset@TApolloTable@cs_RYOFilterSetBit$qqrsis", + "@Apodset@TApolloTable@cs_RYOKeyAdd$qqrpct1", + "@Apodset@TApolloTable@cs_RYOKeyDrop$qqrpc", + "@Apodset@TApolloTable@cs_RecCount$qqrv", + "@Apodset@TApolloTable@cs_RecNo$qqrv", + "@Apodset@TApolloTable@cs_RecSize$qqrv", + "@Apodset@TApolloTable@cs_Recall$qqrv", + "@Apodset@TApolloTable@cs_Reindex$qqrv", + "@Apodset@TApolloTable@cs_Replace$qqrpcspv", + "@Apodset@TApolloTable@cs_Rlock$qqri", + "@Apodset@TApolloTable@cs_Seek$qqrpc", + "@Apodset@TApolloTable@cs_SeekBin$qqrpcus", + "@Apodset@TApolloTable@cs_Select$qqrus", + "@Apodset@TApolloTable@cs_SetFilter$qqrpc", + "@Apodset@TApolloTable@cs_SetGaugeFunc$qqri", + "@Apodset@TApolloTable@cs_SetGaugeHook$qqrui", + "@Apodset@TApolloTable@cs_SetOrder$qqrs", + "@Apodset@TApolloTable@cs_SetPassword$qqrpc", + "@Apodset@TApolloTable@cs_SetQueryBit$qqrius", + "@Apodset@TApolloTable@cs_SetRelation$qqruspc", + "@Apodset@TApolloTable@cs_SetScope$qqrpct1", + "@Apodset@TApolloTable@cs_SetStringType$qqrus", + "@Apodset@TApolloTable@cs_SetTranslate$qqrus", + "@Apodset@TApolloTable@cs_SetTurboRead$qqrus", + "@Apodset@TApolloTable@cs_Skip$qqri", + "@Apodset@TApolloTable@cs_SysProp$qqruspv", + "@Apodset@TApolloTable@cs_TagArea$qqrpc", + "@Apodset@TApolloTable@cs_TagName$qqrs", + "@Apodset@TApolloTable@cs_Unlock$qqri", + "@Apodset@TApolloTable@cs_Use$qqrpct1ss", + "@Apodset@TApolloTable@cs_Version$qqrv", + "@Apodset@TApolloTable@cs_WorkArea$qqrpc", + "@Apodset@TApolloTable@cs_Zap$qqrv", + "@Apodset@TApolloTable@cu_FetchRecord$qqripc", + "@Apodset@TApolloTable@cu_Seek$qqrpc", + "@Apodset@TFieldInfo@", + "@Apodset@YearToJulian$qqri", + "@Apodset@iaMonthTot", + "@Apodset@initialization$qqrv", + "@Apodsreg@Finalization$qqrv", + "@Apodsreg@Register$qqrv", + "@Apodsreg@TDBStringProperty@", + "@Apodsreg@TDBStringProperty@GetAttributes$qqrv", + "@Apodsreg@TDBStringProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Apodsreg@TDatabaseNameProperty@", + "@Apodsreg@TDatabaseNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TIndexNameProperty@", + "@Apodsreg@TIndexNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TMasterFieldsProperty@", + "@Apodsreg@TMasterFieldsProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TProcNameProperty@", + "@Apodsreg@TProcNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TQueryDatabaseNameProperty@", + "@Apodsreg@TQueryDatabaseNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TQueryTableNameProperty@", + "@Apodsreg@TQueryTableNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TStoredDatabaseNameProperty@", + "@Apodsreg@TStoredDatabaseNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TStoredProcNameProperty@", + "@Apodsreg@TStoredProcNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@TTableNameProperty@", + "@Apodsreg@TTableNameProperty@GetValueList$qqrp16Classes@TStrings", + "@Apodsreg@initialization$qqrv", + "@Apoenv@Finalization$qqrv", + "@Apoenv@TApolloDatabase@", + "@Apoenv@TApolloDatabase@$bctr$qqrp18Classes@TComponent", + "@Apoenv@TApolloDatabase@$bdtr$qqrv", + "@Apoenv@TApolloDatabase@CloseDataSets$qqrv", + "@Apoenv@TApolloDatabase@OpenDataSets$qqrv", + "@Apoenv@TApolloDatabase@RefreshDataSets$qqrv", + "@Apoenv@TApolloEnv@", + "@Apoenv@TApolloEnv@$bctr$qqrp18Classes@TComponent", + "@Apoenv@TApolloEnv@$bdtr$qqrv", + "@Apoenv@TApolloEnv@CloseDataSets$qqrv", + "@Apoenv@TApolloEnv@ErrorLevel$qqrxi", + "@Apoenv@TApolloEnv@GetCentury$qqrv", + "@Apoenv@TApolloEnv@GetDateFormat$qqrv", + "@Apoenv@TApolloEnv@GetDeleted$qqrv", + "@Apoenv@TApolloEnv@GetEpoch$qqrv", + "@Apoenv@TApolloEnv@GetErrorLevel$qqrv", + "@Apoenv@TApolloEnv@GetExact$qqrv", + "@Apoenv@TApolloEnv@GetLockTimeout$qqrv", + "@Apoenv@TApolloEnv@GetMemoBlockSize$qqrv", + "@Apoenv@TApolloEnv@GetOptimisticBuffer$qqrv", + "@Apoenv@TApolloEnv@GetSoftSeek$qqrv", + "@Apoenv@TApolloEnv@Loaded$qqrv", + "@Apoenv@TApolloEnv@OpenDataSets$qqrv", + "@Apoenv@TApolloEnv@RefreshDataSets$qqrv", + "@Apoenv@TApolloEnv@SetCentury$qqrxus", + "@Apoenv@TApolloEnv@SetDateFormat$qqrx24Apcommon@TApolloDateFrmt", + "@Apoenv@TApolloEnv@SetDeleted$qqrxus", + "@Apoenv@TApolloEnv@SetEpoch$qqrxi", + "@Apoenv@TApolloEnv@SetErrorFunc$qqrxixi", + "@Apoenv@TApolloEnv@SetExact$qqrxus", + "@Apoenv@TApolloEnv@SetLockTimeOut$qqrxi", + "@Apoenv@TApolloEnv@SetMemoBlockSize$qqrxus", + "@Apoenv@TApolloEnv@SetOptimisticBuffer$qqrxus", + "@Apoenv@TApolloEnv@SetSoftSeek$qqrxus", + "@Apoenv@TApolloEnv@SysProp$qqruspv", + "@Apoenv@initialization$qqrv", + "@Apollo5d6@@GetPackageInfoTable$qqrv", + "@Apollo5d6@@PackageLoad$qqrv", + "@Apollo5d6@@PackageUnload$qqrv", + "@Apollo5d6@initialization$qqrv", + "@Apollo@Finalization$qqrv", + "@Apollo@TApollo@", + "@Apollo@TApollo@$bctr$qqrp18Classes@TComponent", + "@Apollo@TApollo@$bdtr$qqrv", + "@Apollo@initialization$qqrv", + "@Apoqset@EApolloQueryError@", + "@Apoqset@Finalization$qqrv", + "@Apoqset@TApolloQuery@", + "@Apoqset@TApolloQuery@$bctr$qqrp18Classes@TComponent", + "@Apoqset@TApolloQuery@$bdtr$qqrv", + "@Apoqset@TApolloQuery@AllocRecordBuffer$qqrv", + "@Apoqset@TApolloQuery@BookmarkValid$qqrpv", + "@Apoqset@TApolloQuery@BuildSqlTable$qqrv", + "@Apoqset@TApolloQuery@CompareBookmarks$qqrpvt1", + "@Apoqset@TApolloQuery@CreateBlobStream$qqrp9Db@TField18Db@TBlobStreamMode", + "@Apoqset@TApolloQuery@EmptyTable$qqrv", + "@Apoqset@TApolloQuery@ExecSQL$qqrv", + "@Apoqset@TApolloQuery@FetchAll$qqrv", + "@Apoqset@TApolloQuery@FetchRecord$qqri", + "@Apoqset@TApolloQuery@FilterRecord$qqrpc", + "@Apoqset@TApolloQuery@FindRecord$qqroo", + "@Apoqset@TApolloQuery@FreeRecordBuffer$qqrrpc", + "@Apoqset@TApolloQuery@GetBookmarkData$qqrpcpv", + "@Apoqset@TApolloQuery@GetBookmarkFlag$qqrpc", + "@Apoqset@TApolloQuery@GetCanModify$qqrv", + "@Apoqset@TApolloQuery@GetCommaText$qqrv", + "@Apoqset@TApolloQuery@GetDatabase$qqrv", + "@Apoqset@TApolloQuery@GetFieldData$qqrp9Db@TFieldpv", + "@Apoqset@TApolloQuery@GetPanels$qqrv", + "@Apoqset@TApolloQuery@GetRecCount$qqrv", + "@Apoqset@TApolloQuery@GetRecNo$qqrv", + "@Apoqset@TApolloQuery@GetRecord$qqrpc11Db@TGetModeo", + "@Apoqset@TApolloQuery@GetRecordCount$qqrv", + "@Apoqset@TApolloQuery@GetRecordSize$qqrv", + "@Apoqset@TApolloQuery@GetVersion$qqrv", + "@Apoqset@TApolloQuery@GotoBookmark$qqrpv", + "@Apoqset@TApolloQuery@InternalAddRecord$qqrpvo", + "@Apoqset@TApolloQuery@InternalClose$qqrv", + "@Apoqset@TApolloQuery@InternalDelete$qqrv", + "@Apoqset@TApolloQuery@InternalFirst$qqrv", + "@Apoqset@TApolloQuery@InternalGotoBookmark$qqrpv", + "@Apoqset@TApolloQuery@InternalHandleException$qqrv", + "@Apoqset@TApolloQuery@InternalInitFieldDefs$qqrv", + "@Apoqset@TApolloQuery@InternalInitRecord$qqrpc", + "@Apoqset@TApolloQuery@InternalLast$qqrv", + "@Apoqset@TApolloQuery@InternalOpen$qqrv", + "@Apoqset@TApolloQuery@InternalPost$qqrv", + "@Apoqset@TApolloQuery@InternalRefresh$qqrv", + "@Apoqset@TApolloQuery@InternalSetToRecord$qqrpc", + "@Apoqset@TApolloQuery@IsCursorOpen$qqrv", + "@Apoqset@TApolloQuery@LoadFromFile$qqrx17System@AnsiString", + "@Apoqset@TApolloQuery@LoadFromStream$qqrp15Classes@TStream", + "@Apoqset@TApolloQuery@Loaded$qqrv", + "@Apoqset@TApolloQuery@Locate$qqrx17System@AnsiStringrx14System@Variant44System@%Set$t16Db@TLocateOption$iuc$0$iuc$1%", + "@Apoqset@TApolloQuery@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Apoqset@TApolloQuery@OpenTable$qqrv", + "@Apoqset@TApolloQuery@ParamByName$qqrx17System@AnsiString", + "@Apoqset@TApolloQuery@PathFromAlias$qqrv", + "@Apoqset@TApolloQuery@Prepare$qqrv", + "@Apoqset@TApolloQuery@SaveToFile$qqrx17System@AnsiString56System@%Set$t28Apoqset@TApolloQuerySaveFlag$iuc$0$iuc$3%", + "@Apoqset@TApolloQuery@SaveToStream$qqrp15Classes@TStream56System@%Set$t28Apoqset@TApolloQuerySaveFlag$iuc$0$iuc$3%", + "@Apoqset@TApolloQuery@SetAccessMethod$qqr22Apcommon@TAccessMethod", + "@Apoqset@TApolloQuery@SetApolloConnection$qqrp24Apconn@TApolloConnection", + "@Apoqset@TApolloQuery@SetBookmarkData$qqrpcpv", + "@Apoqset@TApolloQuery@SetBookmarkFlag$qqrpc16Db@TBookmarkFlag", + "@Apoqset@TApolloQuery@SetCommaText$qqr17System@AnsiString", + "@Apoqset@TApolloQuery@SetDatabaseName$qqr17System@AnsiString", + "@Apoqset@TApolloQuery@SetFetchCount$qqri", + "@Apoqset@TApolloQuery@SetFieldData$qqrp9Db@TFieldpv", + "@Apoqset@TApolloQuery@SetPanels$qqrp21Apoqset@TApolloTables", + "@Apoqset@TApolloQuery@SetRecNo$qqri", + "@Apoqset@TApolloQuery@SetSQL$qqrp16Classes@TStrings", + "@Apoqset@TApolloQuery@SetTableType$qqr25Apcommon@TApolloTableType", + "@Apoqset@TApolloQuery@SetToApolloEnv$qqrv", + "@Apoqset@TApolloQuery@UnPrepare$qqrv", + "@Apoqset@TApolloQuery@_InternalAdd$qqrpv", + "@Apoqset@TApolloQuery@_InternalDelete$qqri", + "@Apoqset@TApolloQuery@_InternalEmpty$qqrv", + "@Apoqset@TApolloQuery@_InternalFirst$qqrv", + "@Apoqset@TApolloQuery@_InternalInsert$qqripv", + "@Apoqset@TApolloQuery@_InternalLast$qqrv", + "@Apoqset@TApolloQuery@_InternalNext$qqrv", + "@Apoqset@TApolloQuery@_InternalPrior$qqrv", + "@Apoqset@TApolloQueryBlobStream@", + "@Apoqset@TApolloQueryBlobStream@$bctr$qqr22Apcommon@TAccessMethodp24Apconn@TApolloConnectionip13Db@TBlobField18Db@TBlobStreamMode", + "@Apoqset@TApolloQueryBlobStream@ReadBlobData$qqrv", + "@Apoqset@TApolloTableItem@", + "@Apoqset@TApolloTableItem@$bctr$qqrp19Classes@TCollection", + "@Apoqset@TApolloTableItem@$bdtr$qqrv", + "@Apoqset@TApolloTableItem@Assign$qqrp19Classes@TPersistent", + "@Apoqset@TApolloTableItem@GetCaption$qqrv", + "@Apoqset@TApolloTableItem@GetDisplayName$qqrv", + "@Apoqset@TApolloTableItem@SetExtraIndexes$qqrp19Classes@TStringList", + "@Apoqset@TApolloTableItem@SetTableName$qqrx17System@AnsiString", + "@Apoqset@TApolloTables@", + "@Apoqset@TApolloTables@$bctr$qqrp20Apoqset@TApolloQuery", + "@Apoqset@TApolloTables@Add$qqrv", + "@Apoqset@TApolloTables@GetItem$qqri", + "@Apoqset@TApolloTables@GetOwner$qqrv", + "@Apoqset@TApolloTables@SetItem$qqrip24Apoqset@TApolloTableItem", + "@Apoqset@TFieldInfo@", + "@Apoqset@initialization$qqrv", + "@Apostor@EApolloStoredProc@", + "@Apostor@Finalization$qqrv", + "@Apostor@TApolloStoredProc@", + "@Apostor@TApolloStoredProc@$bctr$qqrp18Classes@TComponent", + "@Apostor@TApolloStoredProc@$bdtr$qqrv", + "@Apostor@TApolloStoredProc@ExecProc$qqrv", + "@Apostor@TApolloStoredProc@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Apostor@TApolloStoredProc@SetActive$qqrus", + "@Apostor@TApolloStoredProc@SetApolloConnection$qqrp24Apconn@TApolloConnection", + "@Apostor@TApolloStoredProc@SetDatabaseName$qqr17System@AnsiString", + "@Apostor@TApolloStoredProc@SetProcName$qqr17System@AnsiString", + "@Apostor@TApolloStoredProc@SetProcParams$qqrp10Db@TParams", + "@Apostor@initialization$qqrv", + "@Apsqlobj@Finalization$qqrv", + "@Apsqlobj@TSQLObj@", + "@Apsqlobj@TSQLObj@$bctr$qqrp14System@TObject", + "@Apsqlobj@TSQLObj@$bdtr$qqrv", + "@Apsqlobj@TSQLObj@FreeTables$qqrv", + "@Apsqlobj@initialization$qqrv", + "@Apwin@DateTimeToGmtOffSetStr$qqr16System@TDateTimeo", + "@Apwin@EApConnClosedGraceful@", + "@Apwin@EApSDEAlreadyConnected@", + "@Apwin@EApSDEAlreadyConnecting@", + "@Apwin@EApSDEAlreadyListening@", + "@Apwin@EApSDEClosedSocket@", + "@Apwin@EApSDEConnClosedGraceful@", + "@Apwin@EApSDEConnectRefused@", + "@Apwin@EApSDEException@", + "@Apwin@EApSDEGetMessage@", + "@Apwin@EApSDEInterrupted@", + "@Apwin@EApSDEInvalidSocket@", + "@Apwin@EApSDENotListening@", + "@Apwin@EApSDENotWaiting@", + "@Apwin@EApSDEResponseError@", + "@Apwin@EApSDESocketError@", + "@Apwin@EApSDESocketError@$bctr$qqrx17System@AnsiStringxixi", + "@Apwin@EApSDETimedOut@", + "@Apwin@EApSilentException@", + "@Apwin@Finalization$qqrv", + "@Apwin@GmtOffsetStrToDateTime$qqr17System@AnsiString", + "@Apwin@TAPSDEBase@", + "@Apwin@TAPSDEBase@CheckForSocketError$qqrp17System@TMetaClassxi", + "@Apwin@TAPSDEBase@CheckForSocketError2$qqrp17System@TMetaClassxipxixi", + "@Apwin@TAPSDEBase@DoProcess$qqrp17System@TMetaClass", + "@Apwin@TAPSDEBase@Raise_SocketError$qqrp17System@TMetaClassxi", + "@Apwin@TAPSDEBase@ResolveHost$qqrp17System@TMetaClassx17System@AnsiStringr17System@AnsiString", + "@Apwin@TAPSDEBase@ResolveIP$qqrp17System@TMetaClassx17System@AnsiString", + "@Apwin@TAPSDEBase@TInAddrToString$qqrp17System@TMetaClass7in_addr", + "@Apwin@TApGUIIntegratorBase@", + "@Apwin@TApGUIIntegratorBase@$bctr$qqrp18Classes@TComponent", + "@Apwin@TApGUIIntegratorBase@$bdtr$qqrv", + "@Apwin@TApGUIIntegratorBase@Process$qqrv", + "@Apwin@TApSDE@", + "@Apwin@TApSDE@$bctr$qqrp18Classes@TComponent", + "@Apwin@TApSDE@$bdtr$qqrv", + "@Apwin@TApSDE@AllocateSocket$qqrxi", + "@Apwin@TApSDE@Bind$qqrv", + "@Apwin@TApSDE@CloseSocket$qqrv", + "@Apwin@TApSDE@Connected$qqrv", + "@Apwin@TApSDE@Disconnect$qqrv", + "@Apwin@TApSDE@DoDebugOutput$qqrix17System@AnsiString", + "@Apwin@TApSDE@GetLocalAddress$qqrv", + "@Apwin@TApSDE@GetLocalAddresses$qqrv", + "@Apwin@TApSDE@GetLocalName$qqrv", + "@Apwin@TApSDE@Listen$qqrv", + "@Apwin@TApSDE@ListenNonDefault$qqrxi", + "@Apwin@TApSDE@PopulateLocalAddresses$qqrv", + "@Apwin@TApSDE@SetDebugMode$qqri", + "@Apwin@TApSDE@SetDebugReadFile$qqrx17System@AnsiString", + "@Apwin@TApSDE@SetDebugWriteFile$qqrx17System@AnsiString", + "@Apwin@TApSDE@SetVersion$qqrx17System@AnsiString", + "@Apwin@TApSDEClient@", + "@Apwin@TApSDEClient@$bdtr$qqrv", + "@Apwin@TApSDEClient@Connect$qqrv", + "@Apwin@TApSDEClient@Disconnect$qqrv", + "@Apwin@TApSDEClient@SetUser$qqr17System@AnsiString", + "@Apwin@TApSDESocket@", + "@Apwin@TApSDESocket@$bctr$qqrp18Classes@TComponent", + "@Apwin@TApSDESocket@$bdtr$qqrv", + "@Apwin@TApSDESocket@BeginWork$qqrxi", + "@Apwin@TApSDESocket@Capture$qqrp14System@TObjectpx17System@AnsiStringxi", + "@Apwin@TApSDESocket@CaptureHeader$qqrp16Classes@TStringsx17System@AnsiString", + "@Apwin@TApSDESocket@CaptureQuotedPrintable$qqrp14System@TObjectpx17System@AnsiStringxi", + "@Apwin@TApSDESocket@CheckForDisconnect$qqrv", + "@Apwin@TApSDESocket@Command$qqrx17System@AnsiStringxsxuct1", + "@Apwin@TApSDESocket@ConvertHeadersToValues$qqrp16Classes@TStrings", + "@Apwin@TApSDESocket@Disconnect$qqrv", + "@Apwin@TApSDESocket@DoDebugRead$qqrv", + "@Apwin@TApSDESocket@DoDebugWrite$qqr17System@AnsiStringi", + "@Apwin@TApSDESocket@DoStatus$qqrx17System@AnsiString", + "@Apwin@TApSDESocket@DoWork$qqri", + "@Apwin@TApSDESocket@EndWork$qqrv", + "@Apwin@TApSDESocket@ExtractXBytesFromBuffer$qqrxi", + "@Apwin@TApSDESocket@GetResponse$qqrv", + "@Apwin@TApSDESocket@Read$qqrxi", + "@Apwin@TApSDESocket@ReadBuffer$qqrv", + "@Apwin@TApSDESocket@ReadBufferSize$qqrv", + "@Apwin@TApSDESocket@ReadByte$qqrv", + "@Apwin@TApSDESocket@ReadFromWinsock$qqrv", + "@Apwin@TApSDESocket@ReadLn$qqrv", + "@Apwin@TApSDESocket@ReadLnAndEcho$qqrx17System@AnsiString", + "@Apwin@TApSDESocket@ReadLnWait$qqrv", + "@Apwin@TApSDESocket@ReadShortInt$qqrv", + "@Apwin@TApSDESocket@ReadToBuffer$qqrpvi", + "@Apwin@TApSDESocket@ReadToStream$qqrp15Classes@TStreamxi", + "@Apwin@TApSDESocket@Readable$qqrxi", + "@Apwin@TApSDESocket@SRaise$qqrp17System@TMetaClass", + "@Apwin@TApSDESocket@SetBufferChunk$qqrxi", + "@Apwin@TApSDESocket@Write$qqr17System@AnsiString", + "@Apwin@TApSDESocket@WriteFromBuffer$qqrpvi", + "@Apwin@TApSDESocket@WriteHeaders$qqrp16Classes@TStrings", + "@Apwin@TApSDESocket@WriteLn$qqrx17System@AnsiString", + "@Apwin@TApSDESocket@WriteTStrings$qqrp16Classes@TStrings", + "@Apwin@TApSDESocket@WriteToStream$qqrp15Classes@TStreamxo", + "@Apwin@initialization$qqrv", + "@Fts32@EFTSError@", + "@Fts32@Finalization$qqrv", + "@Fts32@TFts@", + "@Fts32@TFts@Add$qqrpc", + "@Fts32@TFts@Close$qqrv", + "@Fts32@TFts@CreateIndex$qqr17System@AnsiStringssos", + "@Fts32@TFts@Delete$qqri", + "@Fts32@TFts@IsDelete$qqri", + "@Fts32@TFts@NextRec$qqrv", + "@Fts32@TFts@NumRecs$qqrv", + "@Fts32@TFts@Open$qqr17System@AnsiStringss", + "@Fts32@TFts@Replace$qqrpci", + "@Fts32@TFts@Setup$qqrpc", + "@Fts32@TFts@UnDelete$qqri", + "@Fts32@TFts@Verify$qqrpct117Fts32@TVerifyType", + "@Fts32@TFts@Version$qqrv", + "@Fts32@initialization$qqrv", + "@GetPackageInfoTable", + "@Sde50@DLLLoaded", + "@Sde50@Finalization$qqrv", + "@Sde50@LoadDLL$qqrv", + "@Sde50@initialization$qqrv", + "@Sde50@sx_Alias", + "@Sde50@sx_Append", + "@Sde50@sx_AppendBlank", + "@Sde50@sx_AppendFrom", + "@Sde50@sx_BaseDate", + "@Sde50@sx_BaseName", + "@Sde50@sx_BlobToFile", + "@Sde50@sx_Bof", + "@Sde50@sx_Close", + "@Sde50@sx_CloseAll", + "@Sde50@sx_CloseIndexes", + "@Sde50@sx_Commit", + "@Sde50@sx_CopyFile", + "@Sde50@sx_CopyFileText", + "@Sde50@sx_CopyStructure", + "@Sde50@sx_CopyStructureExtended", + "@Sde50@sx_Count", + "@Sde50@sx_CreateExec", + "@Sde50@sx_CreateField", + "@Sde50@sx_CreateFrom", + "@Sde50@sx_CreateNew", + "@Sde50@sx_DBFilter", + "@Sde50@sx_DBRlockList", + "@Sde50@sx_DbfDecrypt", + "@Sde50@sx_DbfEncrypt", + "@Sde50@sx_Decrypt", + "@Sde50@sx_Delete", + "@Sde50@sx_Deleted", + "@Sde50@sx_Descend", + "@Sde50@sx_Empty", + "@Sde50@sx_Encrypt", + "@Sde50@sx_Eof", + "@Sde50@sx_ErrorLevel", + "@Sde50@sx_EvalLogical", + "@Sde50@sx_EvalNumeric", + "@Sde50@sx_EvalString", + "@Sde50@sx_EvalTest", + "@Sde50@sx_FieldCount", + "@Sde50@sx_FieldDecimals", + "@Sde50@sx_FieldName", + "@Sde50@sx_FieldNum", + "@Sde50@sx_FieldOffset", + "@Sde50@sx_FieldType", + "@Sde50@sx_FieldWidth", + "@Sde50@sx_FilterAlias", + "@Sde50@sx_FilterDlg", + "@Sde50@sx_FinalizeSession", + "@Sde50@sx_Flock", + "@Sde50@sx_Found", + "@Sde50@sx_GetBlob", + "@Sde50@sx_GetBlobLength", + "@Sde50@sx_GetByte", + "@Sde50@sx_GetDateJulian", + "@Sde50@sx_GetDateString", + "@Sde50@sx_GetDouble", + "@Sde50@sx_GetInteger", + "@Sde50@sx_GetLogical", + "@Sde50@sx_GetLong", + "@Sde50@sx_GetMemo", + "@Sde50@sx_GetQueryBit", + "@Sde50@sx_GetRecord", + "@Sde50@sx_GetScope", + "@Sde50@sx_GetString", + "@Sde50@sx_GetTrimString", + "@Sde50@sx_Go", + "@Sde50@sx_GoBottom", + "@Sde50@sx_GoTop", + "@Sde50@sx_Index", + "@Sde50@sx_IndexClose", + "@Sde50@sx_IndexCondition", + "@Sde50@sx_IndexFlip", + "@Sde50@sx_IndexKey", + "@Sde50@sx_IndexKeyField", + "@Sde50@sx_IndexName", + "@Sde50@sx_IndexOpen", + "@Sde50@sx_IndexOrd", + "@Sde50@sx_IndexTag", + "@Sde50@sx_IndexType", + "@Sde50@sx_IsEncrypted", + "@Sde50@sx_KeyAdd", + "@Sde50@sx_KeyData", + "@Sde50@sx_KeyDrop", + "@Sde50@sx_Locate", + "@Sde50@sx_LockCount", + "@Sde50@sx_Locked", + "@Sde50@sx_MemDealloc", + "@Sde50@sx_OpenMode", + "@Sde50@sx_OrderPosGet", + "@Sde50@sx_OrderPosSet", + "@Sde50@sx_OrderRecNo", + "@Sde50@sx_Pack", + "@Sde50@sx_PutBlob", + "@Sde50@sx_PutRecord", + "@Sde50@sx_Query", + "@Sde50@sx_QueryRecCount", + "@Sde50@sx_QuerySetExact", + "@Sde50@sx_QueryTest", + "@Sde50@sx_RYOFilterActivate", + "@Sde50@sx_RYOFilterCopy", + "@Sde50@sx_RYOFilterCreate", + "@Sde50@sx_RYOFilterDestroy", + "@Sde50@sx_RYOFilterGetBit", + "@Sde50@sx_RYOFilterRestore", + "@Sde50@sx_RYOFilterSave", + "@Sde50@sx_RYOFilterSetBit", + "@Sde50@sx_RYOKeyAdd", + "@Sde50@sx_RYOKeyDrop", + "@Sde50@sx_RecCount", + "@Sde50@sx_RecNo", + "@Sde50@sx_RecSize", + "@Sde50@sx_Recall", + "@Sde50@sx_Reindex", + "@Sde50@sx_Replace", + "@Sde50@sx_Rlock", + "@Sde50@sx_Seek", + "@Sde50@sx_SeekBin", + "@Sde50@sx_Select", + "@Sde50@sx_SetCentury", + "@Sde50@sx_SetDateFormat", + "@Sde50@sx_SetDeleted", + "@Sde50@sx_SetEpoch", + "@Sde50@sx_SetErrorFunc", + "@Sde50@sx_SetExact", + "@Sde50@sx_SetFilter", + "@Sde50@sx_SetGaugeFunc", + "@Sde50@sx_SetGaugeHook", + "@Sde50@sx_SetLockTimeout", + "@Sde50@sx_SetMemoBlockSize", + "@Sde50@sx_SetOrder", + "@Sde50@sx_SetPassword", + "@Sde50@sx_SetQueryBit", + "@Sde50@sx_SetRelation", + "@Sde50@sx_SetScope", + "@Sde50@sx_SetSoftSeek", + "@Sde50@sx_SetStringType", + "@Sde50@sx_SetTranslate", + "@Sde50@sx_SetTurboRead", + "@Sde50@sx_Skip", + "@Sde50@sx_SysProp", + "@Sde50@sx_TagArea", + "@Sde50@sx_TagDelete", + "@Sde50@sx_TagName", + "@Sde50@sx_Unlock", + "@Sde50@sx_Use", + "@Sde50@sx_Version", + "@Sde50@sx_WorkArea", + "@Sde50@sx_Zap", + "@Slang@Finalization$qqrv", + "@Slang@RestoreLang$qqrv", + "@Slang@SetLang$qqr17System@AnsiString", + "@Slang@initialization$qqrv", + "@Winsockintf@Finalization$qqrv", + "@Winsockintf@TWinsockIntf11@", + "@Winsockintf@TWinsockIntf11@$bctr$qqrv", + "@Winsockintf@TWinsockIntf11@GetHostByName$qqrpc", + "@Winsockintf@TWinsockIntf11@TranslateSocketErrorMsg$qqrxi", + "@Winsockintf@TWinsockIntf11@WSAGetLastError$qqrv", + "@Winsockintf@TWinsockIntf11@accept$qqrip11sockaddr_inpi", + "@Winsockintf@TWinsockIntf11@bind$qqrir11sockaddr_ini", + "@Winsockintf@TWinsockIntf11@closesocket$qqri", + "@Winsockintf@TWinsockIntf11@connect$qqrir11sockaddr_ini", + "@Winsockintf@TWinsockIntf11@gethostbyaddr$qqrpvii", + "@Winsockintf@TWinsockIntf11@gethostname$qqrpci", + "@Winsockintf@TWinsockIntf11@htons$qqrus", + "@Winsockintf@TWinsockIntf11@inet_addr$qqrpc", + "@Winsockintf@TWinsockIntf11@inet_ntoa$qqr7in_addr", + "@Winsockintf@TWinsockIntf11@listen$qqrii", + "@Winsockintf@TWinsockIntf11@ntohs$qqrus", + "@Winsockintf@TWinsockIntf11@recv$qqripvii", + "@Winsockintf@TWinsockIntf11@recvfrom$qqripviir11sockaddr_inri", + "@Winsockintf@TWinsockIntf11@select$qqrip14Winsock@TFDSett2t2p7timeval", + "@Winsockintf@TWinsockIntf11@send$qqripvii", + "@Winsockintf@TWinsockIntf11@sendto$qqripviir11sockaddr_ini", + "@Winsockintf@TWinsockIntf11@setsockopt$qqriiipci", + "@Winsockintf@TWinsockIntf11@socket$qqriii", + "@Winsockintf@TWinsockIntfBase@", + "@Winsockintf@TWinsockIntfBase@$bctr$qqrv", + "@Winsockintf@WinsockInterface", + "@Winsockintf@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5516, + "domain_strings": [ + "DbfDecrypt", + "ApolloConnection.DbfDecrypt", + "DbfEncrypt", + "ApolloConnection.DbfEncrypt", + "DBFilter", + "ApolloConnection.DBFilter", + "Delete", + "ApolloConnection.Delete", + "Select", + "ApolloConnection.Select", + "RYOFilterActivate", + "ApolloConnection.RYOFilterActivate", + "DataPathAlias", + "TDbfStruct", + ".DBF", + ".SMT", + "Data set must be in Edit or Insert mode to update", + "sx_DbfDecrypt", + "sx_DbfEncrypt", + "sx_DBFilter", + "sx_RYOFilterActivate", + ".dbf", + "*.dbf", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Db@TDataSet@ActivateBuffers$qqrv", + "select", + "@Designeditors@TPropertyEditor@Activate$qqrv", + "@$xp$18Apodset@TDbfStruct", + "@Apconn@TApolloConnection@ap_DBFilter$qqrv", + "@Apconn@TApolloConnection@ap_DbfDecrypt$qqrv", + "@Apconn@TApolloConnection@ap_DbfEncrypt$qqrv", + "@Apconn@TApolloConnection@ap_RYOFilterActivate$qqrss", + "@Apodset@TApolloTable@ActivateIndexes$qqrv", + "@Apodset@TApolloTable@DBFilter$qqrv", + "@Apodset@TApolloTable@DbfDecrypt$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@FetchAll$qqrv", + "@Apodset@TApolloTable@RYOFilterActivate$qqrss", + "@Apodset@TApolloTable@cs_DBFilter$qqrv", + "@Apodset@TApolloTable@cs_DbfDecrypt$qqrv", + "@Apodset@TApolloTable@cs_DbfEncrypt$qqrv", + "@Apodset@TApolloTable@cs_RYOFilterActivate$qqrss", + "@Apoqset@TApolloQuery@FetchAll$qqrv", + "@Fts32@TFts@Delete$qqri", + "@Sde50@sx_DBFilter", + "@Sde50@sx_DbfDecrypt", + "@Sde50@sx_DbfEncrypt", + "@Sde50@sx_RYOFilterActivate", + "@Winsockintf@TWinsockIntf11@select$qqrip14Winsock@TFDSett2t2p7timeval", + "DataPathAlias륲V꾋t" + ] + }, + "BANTAM.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 57344, + "raw_off": 1536, + "raw_size": 55296 + }, + { + "name": "DATA", + "va": 61440, + "vsize": 53248, + "raw_off": 56832, + "raw_size": 38400 + }, + { + "name": ".idata", + "va": 114688, + "vsize": 4096, + "raw_off": 95232, + "raw_size": 1536 + }, + { + "name": ".edata", + "va": 118784, + "vsize": 4096, + "raw_off": 96768, + "raw_size": 1536 + }, + { + "name": ".reloc", + "va": 122880, + "vsize": 4096, + "raw_off": 98304, + "raw_size": 2048 + }, + { + "name": ".rsrc", + "va": 126976, + "vsize": 4096, + "raw_off": 100352, + "raw_size": 1024 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "@__lockDebuggerData$qv", + "@__unlockDebuggerData$qv", + "BT_BufferCollate", + "BT_BufferMatch", + "BT_ByteCount", + "BT_CharacterCount", + "BT_ClientToNative", + "BT_CloseLocale", + "BT_Ctype", + "BT_Exit", + "BT_FuzzyBufferComp", + "BT_FuzzyStrComp", + "BT_GetFoxSortKey", + "BT_GetIndexKey", + "BT_GetLastError", + "BT_GetLocaleInfo", + "BT_GetLocaleList", + "BT_GetMinMaxCollChar", + "BT_GetOwner", + "BT_Init", + "BT_IsLeadByte", + "BT_IsTrailByte", + "BT_NativeToClient", + "BT_OpenLocale", + "BT_SetLocaleToClient", + "BT_SetLocaleToNative", + "BT_SetLocaleToUnicode", + "BT_StrCollate", + "BT_StrLower", + "BT_StrMatch", + "BT_StrTransform", + "BT_StrUpper", + "BT_ToLower", + "BT_ToSoundex", + "BT_ToUpper", + "_OSLD_GetLdInfoFromBTID", + "_OSLD_GetLdInfoFromCodeSet", + "_OSLD_GetLdInfoFromID", + "_OSLD_GetLdInfoFromINDEX", + "_OSLD_GetLdInfoFromLCID", + "_OSLD_GetLdInfoFromName", + "_OSLD_IsLdAvailable", + "__DebuggerHookData" + ], + "timestamp": 2111972644, + "characteristics": "0xA18E" + }, + "strings_total": 1080, + "domain_strings": [] + }, + "BDERTL60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 114916, + "raw_off": 1024, + "raw_size": 115200 + }, + { + "name": "DATA", + "va": 122880, + "vsize": 3724, + "raw_off": 116224, + "raw_size": 4096 + }, + { + "name": "BSS", + "va": 126976, + "vsize": 169, + "raw_off": 120320, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 131072, + "vsize": 26004, + "raw_off": 120320, + "raw_size": 26112 + }, + { + "name": ".edata", + "va": 159744, + "vsize": 56134, + "raw_off": 146432, + "raw_size": 56320 + }, + { + "name": ".rdata", + "va": 217088, + "vsize": 32, + "raw_off": 202752, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 221184, + "vsize": 11732, + "raw_off": 203264, + "raw_size": 11776 + }, + { + "name": ".rsrc", + "va": 233472, + "vsize": 7168, + "raw_off": 215040, + "raw_size": 7168 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "advapi32.dll", + "rtl60.bpl", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl" + ], + "exports": [ + "@$xp$10Bde@CBType", + "@$xp$10Bde@DRVCat", + "@$xp$10Bde@OPType", + "@$xp$11Bde@CBRType", + "@$xp$11Bde@CFGMode", + "@$xp$11Bde@EXPType", + "@$xp$11Bde@FLDVchk", + "@$xp$11Bde@FMLType", + "@$xp$11Bde@SQLType", + "@$xp$11Bde@XLTMode", + "@$xp$11Bde@eXState", + "@$xp$12Bde@CBSCType", + "@$xp$12Bde@CFGMode2", + "@$xp$12Bde@CROpType", + "@$xp$12Bde@LIVENESS", + "@$xp$12Bde@LKUPType", + "@$xp$12Bde@RINTQual", + "@$xp$12Bde@RINTType", + "@$xp$12Bde@eBATMode", + "@$xp$12Bde@eXILType", + "@$xp$13Bde@CBInputId", + "@$xp$13Bde@CFGUpdate", + "@$xp$13Bde@CHECKType", + "@$xp$13Bde@DsInfoReq", + "@$xp$13Bde@FLDRights", + "@$xp$13Bde@NODEClass", + "@$xp$13Bde@PROPValid", + "@$xp$13Bde@SORTOrder", + "@$xp$14Bde@DBIOBJType", + "@$xp$14Bde@DBIQryLang", + "@$xp$14Bde@DBIQryType", + "@$xp$15Bde@CBYieldStep", + "@$xp$15Bde@DBIFUNCOpts", + "@$xp$15Bde@DBILockType", + "@$xp$15Bde@DBIOpenMode", + "@$xp$15Bde@DBISTDFuncs", + "@$xp$15Bde@QryEvalMode", + "@$xp$15Bde@UPDLockMode", + "@$xp$15Dbtables@TQuery", + "@$xp$15Dbtables@TTable", + "@$xp$16Bde@DBIShareMode", + "@$xp$16Bde@eRELCategory", + "@$xp$16Smintf@ISMClient", + "@$xp$17Bde@DBISearchCond", + "@$xp$17Bde@STMTParamType", + "@$xp$17Dbtables@TDBError", + "@$xp$17Dbtables@TSession", + "@$xp$18Bde@RESTErrObjType", + "@$xp$18Bde@eRELConstraint", + "@$xp$18Dbtables@TDatabase", + "@$xp$18Dbtables@TKeyIndex", + "@$xp$18Dbtables@TLockType", + "@$xp$19Bde@STMTParamFormat", + "@$xp$19Dbtables@TBatchMode", + "@$xp$19Dbtables@TBatchMove", + "@$xp$19Dbtables@TDBDataSet", + "@$xp$19Dbtables@TIndexName", + "@$xp$19Dbtables@TParamList", + "@$xp$19Dbtables@TTableType", + "@$xp$19Dbtables@TTraceFlag", + "@$xp$19Dbtables@TUpdateSQL", + "@$xp$20Bde@DBIDelayedUpdCmd", + "@$xp$20Dbtables@TBDEDataSet", + "@$xp$20Dbtables@TBlobStream", + "@$xp$20Dbtables@TConfigMode", + "@$xp$20Dbtables@TIndexFiles", + "@$xp$20Dbtables@TStoredProc", + "@$xp$20Dbtables@TTraceFlags", + "@$xp$21Bde@DelayUpdErrOpType", + "@$xp$21Dbtables@DBTables__81", + "@$xp$21Dbtables@ENoResultSet", + "@$xp$21Dbtables@TBDECallback", + "@$xp$21Dbtables@TConfigModes", + "@$xp$21Dbtables@TNestedTable", + "@$xp$21Dbtables@TRecNoStatus", + "@$xp$21Dbtables@TSessionList", + "@$xp$22Dbtables@TValCheckList", + "@$xp$23Dbtables@EDBEngineError", + "@$xp$23Dbtables@TBlobDataArray", + "@$xp$23Dbtables@TDatabaseEvent", + "@$xp$23Dbtables@TFieldDescList", + "@$xp$23Dbtables@TIndexDescList", + "@$xp$23Dbtables@TParamBindMode", + "@$xp$23Dbtables@TPasswordEvent", + "@$xp$24Dbtables@TServerDescList", + "@$xp$24Dbtables@TTransIsolation", + "@$xp$25Bde@TEXACTRECCNTExpensive", + "@$xp$25Dbtables@TSPParamDescList", + "@$xp$25Dbtables@TSQLUpdateObject", + "@$xp$26Dbtables@TBDECallbackEvent", + "@$xp$28Dbtables@TDatabaseLoginEvent", + "@$xp$29Dbtables@TDataSetUpdateObject", + "@$xp$29Dbtables@TDatabaseNotifyEvent", + "@$xp$9Bde@CANOp", + "@$xp$9Bde@SQLOp", + "@$xp$9Bde@eXEnd", + "@Bde@DbiAcqPersistTableLock$qqsp12Bde@_hDBIObjpct2", + "@Bde@DbiAcqTableLock$qqsp12Bde@_hDBIObj15Bde@DBILockType", + "@Bde@DbiActivateFilter$qqsp12Bde@_hDBIObjt1", + "@Bde@DbiAddAlias$qqsp12Bde@_hDBIObjpct2t2i", + "@Bde@DbiAddDriver$qqsp12Bde@_hDBIObjpct2i", + "@Bde@DbiAddFilter$qqsp12Bde@_hDBIObjiusip11Bde@CANExprpqqsipvi$srp12Bde@_hDBIObj", + "@Bde@DbiAddIndex$qqsp12Bde@_hDBIObjt1pct3r11Bde@IDXDesct3", + "@Bde@DbiAddPassword$qqspc", + "@Bde@DbiAnsiToNative$qqspvpct2iri", + "@Bde@DbiAppendRecord$qqsp12Bde@_hDBIObjpv", + "@Bde@DbiApplyDelayedUpdates$qqsp12Bde@_hDBIObj20Bde@DBIDelayedUpdCmd", + "@Bde@DbiBatchMove$qqsp14Bde@BATTblDescp12Bde@_hDBIObjt1t212Bde@eBATModeuspuspct8ust8t8t8piteteiirii", + "@Bde@DbiBcdFromFloat$qqsrdususr10Bde@FMTBcd", + "@Bde@DbiBcdToFloat$qqsr10Bde@FMTBcdrd", + "@Bde@DbiBeginConstraintLayer$qqsp12Bde@_hDBIObjrp12Bde@_hDBIObjpqqsi13Bde@DsInfoReqp15Bde@DataSources$usi", + "@Bde@DbiBeginDelayedUpdates$qqsrp12Bde@_hDBIObj", + "@Bde@DbiBeginLinkMode$qqsrp12Bde@_hDBIObj", + "@Bde@DbiBeginTran$qqsp12Bde@_hDBIObj12Bde@eXILTyperp12Bde@_hDBIObj", + "@Bde@DbiCfgAddRecord$qqsp12Bde@_hDBIObjpcusp11Bde@FLDDescpv", + "@Bde@DbiCfgBuildPath$qqsp12Bde@_hDBIObjpct2t2t2", + "@Bde@DbiCfgDropRecord$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiCfgGetHelp$qqsp12Bde@_hDBIObjpct2t2", + "@Bde@DbiCfgGetNextNode$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiCfgGetRecord$qqsp12Bde@_hDBIObjpcrusp11Bde@FLDDescpv", + "@Bde@DbiCfgMerge$qqsp12Bde@_hDBIObjt1pc", + "@Bde@DbiCfgModifyRecord$qqsp12Bde@_hDBIObjpcusp11Bde@FLDDescpv", + "@Bde@DbiCfgPosition$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiCfgSave$qqsp12Bde@_hDBIObjpci", + "@Bde@DbiCfgTranslate$qqsp12Bde@_hDBIObjpct2usp11Bde@FLDDescpv", + "@Bde@DbiCheckRefresh$qqsv", + "@Bde@DbiCheckSQLExpression$qqsp12Bde@_hDBIObjpct211Bde@EXPTypepqqsi13Bde@DsInfoReqp15Bde@DataSources$usi", + "@Bde@DbiCloneCursor$qqsp12Bde@_hDBIObjiirp12Bde@_hDBIObj", + "@Bde@DbiCloseConfigFile$qqsrp12Bde@_hDBIObjiii", + "@Bde@DbiCloseCursor$qqsrp12Bde@_hDBIObj", + "@Bde@DbiCloseDatabase$qqsrp12Bde@_hDBIObj", + "@Bde@DbiCloseFieldXlt$qqsp12Bde@_hDBIObj", + "@Bde@DbiCloseIndex$qqsp12Bde@_hDBIObjpcus", + "@Bde@DbiCloseSession$qqsp12Bde@_hDBIObj", + "@Bde@DbiCompareBookMarks$qqsp12Bde@_hDBIObjpvt2ri", + "@Bde@DbiCompareKeys$qqsp12Bde@_hDBIObjpvt2ususrs", + "@Bde@DbiCopyTable$qqsp12Bde@_hDBIObjipct3t3", + "@Bde@DbiCreateInMemTable$qqsp12Bde@_hDBIObjpcusp11Bde@FLDDescrp12Bde@_hDBIObj", + "@Bde@DbiCreateTable$qqsp12Bde@_hDBIObjir13Bde@CRTblDesc", + "@Bde@DbiCreateTempTable$qqsp12Bde@_hDBIObjr13Bde@CRTblDescrp12Bde@_hDBIObj", + "@Bde@DbiDLLExit$qqsv", + "@Bde@DbiDRAdd$qqsp10Bde@DRDesc", + "@Bde@DbiDRAddAttr$qqsp12Bde@_hDBIObjpcusp14Bde@DRATTRDesc", + "@Bde@DbiDRClose$qqspp12Bde@_hDBIObj", + "@Bde@DbiDRCreate$qqsp10Bde@DRDescpp12Bde@_hDBIObj", + "@Bde@DbiDRCreateEnumAttrDomain$qqsp12Bde@_hDBIObjp20Bde@DREnumAttrDomain", + "@Bde@DbiDRCreateObjectType$qqsp12Bde@_hDBIObjp13Bde@DROBJTypep14Bde@DRATTRDesc", + "@Bde@DbiDRCreateRelationType$qqsp12Bde@_hDBIObjp13Bde@DRRELTypep14Bde@DRATTRDesc", + "@Bde@DbiDRDelete$qqspc", + "@Bde@DbiDRDeleteEnumAttrDomain$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiDRDeleteObjectType$qqsp12Bde@_hDBIObjpci", + "@Bde@DbiDRDeleteRelationType$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiDRDrop$qqspc", + "@Bde@DbiDRDropAttr$qqsp12Bde@_hDBIObjpcusp14Bde@DRATTRDesc", + "@Bde@DbiDRExportToFile$qqsp12Bde@_hDBIObjip16Bde@DRExportDescpc", + "@Bde@DbiDRGetAttrDescs$qqsp12Bde@_hDBIObjpcusp14Bde@DRATTRDesc", + "@Bde@DbiDRGetDesc$qqspcp10Bde@DRDesc", + "@Bde@DbiDRGetEnumAttrDomain$qqsp12Bde@_hDBIObjusp20Bde@DREnumAttrDomain", + "@Bde@DbiDRGetObjID$qqsp12Bde@_hDBIObjp12Bde@DRObject", + "@Bde@DbiDRGetObjTypeInfo$qqsp12Bde@_hDBIObjpcp13Bde@DROBJType", + "@Bde@DbiDRGetRelTypeInfo$qqsp12Bde@_hDBIObjpcp13Bde@DRRELType", + "@Bde@DbiDRGetRelatedObject$qqsp12Bde@_hDBIObjp12Bde@DRObjectpct2", + "@Bde@DbiDRImportFromFile$qqsp12Bde@_hDBIObjip16Bde@DRExportDescpc", + "@Bde@DbiDRLoadDBObject$qqsp12Bde@_hDBIObjt1pciip13Bde@DROBJDesc", + "@Bde@DbiDRModifyEnumAttrDomain$qqsp12Bde@_hDBIObjp20Bde@DREnumAttrDomain", + "@Bde@DbiDROpen$qqspcpp12Bde@_hDBIObj", + "@Bde@DbiDROpenAttrTypeList$qqsp12Bde@_hDBIObjpcrp12Bde@_hDBIObj", + "@Bde@DbiDROpenObjSet$qqsp12Bde@_hDBIObjpcp12Bde@DRObjectt2t2rp12Bde@_hDBIObj", + "@Bde@DbiDROpenObjectTypeList$qqsp12Bde@_hDBIObjrp12Bde@_hDBIObj", + "@Bde@DbiDROpenRelSet$qqsp12Bde@_hDBIObjpcp12Bde@DRObjectt3t2rp12Bde@_hDBIObj", + "@Bde@DbiDROpenRelTypeList$qqsp12Bde@_hDBIObjpcrp12Bde@_hDBIObj", + "@Bde@DbiDRSetToObjID$qqsp12Bde@_hDBIObjp12Bde@DRObject", + "@Bde@DbiDRSetToObjName$qqsp12Bde@_hDBIObjpci", + "@Bde@DbiDatabaseFlush$qqrp12Bde@_hDBIObj", + "@Bde@DbiDateDecode$qqsirust2rs", + "@Bde@DbiDateEncode$qqsusussri", + "@Bde@DbiDeactivateFilter$qqsp12Bde@_hDBIObjt1", + "@Bde@DbiDebugLayerOptions$qqsuspc", + "@Bde@DbiDeleteAlias$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiDeleteDriver$qqsp12Bde@_hDBIObjpci", + "@Bde@DbiDeleteIndex$qqsp12Bde@_hDBIObjt1pct3t3t3us", + "@Bde@DbiDeleteRecord$qqsp12Bde@_hDBIObjpv", + "@Bde@DbiDeleteTable$qqsp12Bde@_hDBIObjpct2", + "@Bde@DbiDoRestructure$qqsp12Bde@_hDBIObjusp13Bde@CRTblDescpct4t4i", + "@Bde@DbiDropFilter$qqsp12Bde@_hDBIObjt1", + "@Bde@DbiDropPassword$qqspc", + "@Bde@DbiEmptyTable$qqsp12Bde@_hDBIObjt1pct3", + "@Bde@DbiEndConstraintLayer$qqsrp12Bde@_hDBIObj", + "@Bde@DbiEndDelayedUpdates$qqsrp12Bde@_hDBIObj", + "@Bde@DbiEndLinkMode$qqsrp12Bde@_hDBIObj", + "@Bde@DbiEndTran$qqsp12Bde@_hDBIObjt19Bde@eXEnd", + "@Bde@DbiExit$qqsv", + "@Bde@DbiExtractKey$qqsp12Bde@_hDBIObjpvt2", + "@Bde@DbiForceRecordReread$qqsp12Bde@_hDBIObjpv", + "@Bde@DbiForceReread$qqsp12Bde@_hDBIObj", + "@Bde@DbiFormFullName$qqsp12Bde@_hDBIObjpct2t2", + "@Bde@DbiFreeBlob$qqsp12Bde@_hDBIObjpvus", + "@Bde@DbiFreeSQLRequest$qqsp15Bde@TSQLRequest", + "@Bde@DbiGetBlob$qqsp12Bde@_hDBIObjpvusiit2ri", + "@Bde@DbiGetBlobHeading$qqsp12Bde@_hDBIObjuspvt3", + "@Bde@DbiGetBlobSize$qqsp12Bde@_hDBIObjpvusri", + "@Bde@DbiGetBookMark$qqsp12Bde@_hDBIObjpv", + "@Bde@DbiGetCallBack$qqsp12Bde@_hDBIObj10Bde@CBTypepipuspvrpqqs10Bde@CBTypeipv$11Bde@CBRType", + "@Bde@DbiGetClientInfo$qqsr14Bde@CLIENTInfo", + "@Bde@DbiGetCurrSession$qqsrp12Bde@_hDBIObj", + "@Bde@DbiGetCursorForTable$qqsp12Bde@_hDBIObjpct2rp12Bde@_hDBIObj", + "@Bde@DbiGetCursorProps$qqsp12Bde@_hDBIObjr12Bde@CURProps", + "@Bde@DbiGetDatabaseDesc$qqspcp10Bde@DBDesc", + "@Bde@DbiGetDateFormat$qqsr11Bde@FMTDate", + "@Bde@DbiGetDefaultRepository$qqspc", + "@Bde@DbiGetDirectory$qqsp12Bde@_hDBIObjipc", + "@Bde@DbiGetDriverDesc$qqspcr11Bde@DRVType", + "@Bde@DbiGetErrorContext$qqsspc", + "@Bde@DbiGetErrorEntry$qqsusripc", + "@Bde@DbiGetErrorInfo$qqsir14Bde@DBIErrInfo", + "@Bde@DbiGetErrorString$qqsuspc", + "@Bde@DbiGetExactRecordCount$qqsp12Bde@_hDBIObjri", + "@Bde@DbiGetField$qqsp12Bde@_hDBIObjuspvt3ri", + "@Bde@DbiGetFieldDescs$qqsp12Bde@_hDBIObjp11Bde@FLDDesc", + "@Bde@DbiGetFieldTypeDesc$qqspct1t1r11Bde@FLDType", + "@Bde@DbiGetFilterInfo$qqsp12Bde@_hDBIObjt1ususr14Bde@FILTERInfo", + "@Bde@DbiGetIndexDesc$qqsp12Bde@_hDBIObjusr11Bde@IDXDesc", + "@Bde@DbiGetIndexDescs$qqsp12Bde@_hDBIObjp11Bde@IDXDesc", + "@Bde@DbiGetIndexForField$qqsp12Bde@_hDBIObjusir11Bde@IDXDesc", + "@Bde@DbiGetIndexSeqNo$qqsp12Bde@_hDBIObjpct2usrus", + "@Bde@DbiGetIndexTypeDesc$qqspct1r11Bde@IDXType", + "@Bde@DbiGetLdName$qqspct1t1", + "@Bde@DbiGetLdNameFromDb$qqsp12Bde@_hDBIObjpct2", + "@Bde@DbiGetLdObj$qqsp12Bde@_hDBIObjrpv", + "@Bde@DbiGetLinkStatus$qqsp12Bde@_hDBIObjrp12Bde@_hDBIObjt2t2", + "@Bde@DbiGetNetUserName$qqspc", + "@Bde@DbiGetNextRecord$qqsp12Bde@_hDBIObj15Bde@DBILockTypepvp12Bde@RECProps", + "@Bde@DbiGetNumberFormat$qqsr13Bde@FMTNumber", + "@Bde@DbiGetObjFromName$qqs14Bde@DBIOBJTypepcrp12Bde@_hDBIObj", + "@Bde@DbiGetObjFromObj$qqsp12Bde@_hDBIObj14Bde@DBIOBJTyperp12Bde@_hDBIObj", + "@Bde@DbiGetPriorRecord$qqsp12Bde@_hDBIObj15Bde@DBILockTypepvp12Bde@RECProps", + "@Bde@DbiGetProp$qqsp12Bde@_hDBIObjipvusrus", + "@Bde@DbiGetRecord$qqsp12Bde@_hDBIObj15Bde@DBILockTypepvp12Bde@RECProps", + "@Bde@DbiGetRecordCount$qqsp12Bde@_hDBIObjri", + "@Bde@DbiGetRecordForKey$qqsp12Bde@_hDBIObjiususpvt5", + "@Bde@DbiGetRelativeRecord$qqsp12Bde@_hDBIObji15Bde@DBILockTypepvp12Bde@RECProps", + "@Bde@DbiGetRintDesc$qqsp12Bde@_hDBIObjusp12Bde@RINTDesc", + "@Bde@DbiGetSQLRequest$qqsp12Bde@_hDBIObjpucrorp15Bde@TSQLRequest", + "@Bde@DbiGetSeqNo$qqsp12Bde@_hDBIObjri", + "@Bde@DbiGetSesInfo$qqsr11Bde@SESInfo", + "@Bde@DbiGetSysConfig$qqsr13Bde@SYSConfig", + "@Bde@DbiGetSysInfo$qqsr11Bde@SYSInfo", + "@Bde@DbiGetSysVersion$qqsr14Bde@SYSVersion", + "@Bde@DbiGetTableOpenCount$qqsp12Bde@_hDBIObjpct2rus", + "@Bde@DbiGetTableTypeDesc$qqspct1r11Bde@TBLType", + "@Bde@DbiGetTimeFormat$qqsr11Bde@FMTTime", + "@Bde@DbiGetTranInfo$qqsp12Bde@_hDBIObjt1p9Bde@XInfo", + "@Bde@DbiGetVchkDesc$qqsp12Bde@_hDBIObjusp12Bde@VCHKDesc", + "@Bde@DbiImportODBC$qqsp12Bde@_hDBIObji", + "@Bde@DbiInit$qqsp10Bde@DBIEnv", + "@Bde@DbiInitFn$qqsusp10Bde@DBIEnv", + "@Bde@DbiInitRecord$qqsp12Bde@_hDBIObjpv", + "@Bde@DbiInsertRecord$qqsp12Bde@_hDBIObj15Bde@DBILockTypepv", + "@Bde@DbiIsRecordLocked$qqsp12Bde@_hDBIObjri", + "@Bde@DbiIsTableLocked$qqsp12Bde@_hDBIObj15Bde@DBILockTyperus", + "@Bde@DbiIsTableShared$qqsp12Bde@_hDBIObjri", + "@Bde@DbiLinkDetail$qqsp12Bde@_hDBIObjt1uspust4", + "@Bde@DbiLinkDetailToExp$qqsp12Bde@_hDBIObjt1uspc", + "@Bde@DbiLoadDriver$qqspc", + "@Bde@DbiMakePermanent$qqsp12Bde@_hDBIObjpci", + "@Bde@DbiModifyRecord$qqsp12Bde@_hDBIObjpvi", + "@Bde@DbiNativeToAnsi$qqspvpct2iri", + "@Bde@DbiOpenBlob$qqsp12Bde@_hDBIObjpvus15Bde@DBIOpenMode", + "@Bde@DbiOpenCfgInfoList$qqsp12Bde@_hDBIObj15Bde@DBIOpenMode11Bde@CFGModepcrp12Bde@_hDBIObj", + "@Bde@DbiOpenConfigFile$qqspcirp12Bde@_hDBIObj", + "@Bde@DbiOpenDatabase$qqspct115Bde@DBIOpenMode16Bde@DBIShareModet1usp11Bde@FLDDescpvrp12Bde@_hDBIObj", + "@Bde@DbiOpenDatabaseList$qqsrp12Bde@_hDBIObj", + "@Bde@DbiOpenDriverList$qqsrp12Bde@_hDBIObj", + "@Bde@DbiOpenFamilyList$qqsp12Bde@_hDBIObjpct2rp12Bde@_hDBIObj", + "@Bde@DbiOpenFieldList$qqsp12Bde@_hDBIObjpct2irp12Bde@_hDBIObj", + "@Bde@DbiOpenFieldTypesList$qqspct1rp12Bde@_hDBIObj", + "@Bde@DbiOpenFieldXlt$qqspct1p11Bde@FLDDesct1t1t3rirp12Bde@_hDBIObj", + "@Bde@DbiOpenFileList$qqsp12Bde@_hDBIObjpcrp12Bde@_hDBIObj", + "@Bde@DbiOpenFunctionArgList$qqsp12Bde@_hDBIObjpcuspp12Bde@_hDBIObj", + "@Bde@DbiOpenFunctionList$qqsp12Bde@_hDBIObj15Bde@DBIFUNCOptspp12Bde@_hDBIObj", + "@Bde@DbiOpenIndex$qqsp12Bde@_hDBIObjpcus", + "@Bde@DbiOpenIndexList$qqsp12Bde@_hDBIObjpct2rp12Bde@_hDBIObj", + "@Bde@DbiOpenIndexTypesList$qqspcrp12Bde@_hDBIObj", + "@Bde@DbiOpenLdList$qqsrp12Bde@_hDBIObj", + "@Bde@DbiOpenLockList$qqsp12Bde@_hDBIObjiirp12Bde@_hDBIObj", + "@Bde@DbiOpenNestedTable$qqsp12Bde@_hDBIObjusiirp12Bde@_hDBIObj", + "@Bde@DbiOpenRef$qqsp12Bde@_hDBIObjusiirp12Bde@_hDBIObj", + "@Bde@DbiOpenRepositoryList$qqsrp12Bde@_hDBIObj", + "@Bde@DbiOpenRintList$qqsp12Bde@_hDBIObjpct2rp12Bde@_hDBIObj", + "@Bde@DbiOpenSPList$qqsp12Bde@_hDBIObjiipcrp12Bde@_hDBIObj", + "@Bde@DbiOpenSPParamList$qqsp12Bde@_hDBIObjpciusrp12Bde@_hDBIObj", + "@Bde@DbiOpenSecurityList$qqsp12Bde@_hDBIObjpct2rp12Bde@_hDBIObj", + "@Bde@DbiOpenSessionRepository$qqsp12Bde@_hDBIObjrp12Bde@_hDBIObj", + "@Bde@DbiOpenTable$qqsp12Bde@_hDBIObjpct2t2t2us15Bde@DBIOpenMode16Bde@DBIShareMode11Bde@XLTModeipvrp12Bde@_hDBIObj", + "@Bde@DbiOpenTableList$qqsp12Bde@_hDBIObjiipcrp12Bde@_hDBIObj", + "@Bde@DbiOpenTableTypesList$qqspcrp12Bde@_hDBIObj", + "@Bde@DbiOpenUserList$qqsrp12Bde@_hDBIObj", + "@Bde@DbiOpenVchkList$qqsp12Bde@_hDBIObjpct2rp12Bde@_hDBIObj", + "@Bde@DbiPackTable$qqsp12Bde@_hDBIObjt1pct3i", + "@Bde@DbiPutBlob$qqsp12Bde@_hDBIObjpvusiit2", + "@Bde@DbiPutField$qqsp12Bde@_hDBIObjuspvt3", + "@Bde@DbiQAlloc$qqsp12Bde@_hDBIObj14Bde@DBIQryLangrp12Bde@_hDBIObj", + "@Bde@DbiQExec$qqsp12Bde@_hDBIObjpp12Bde@_hDBIObj", + "@Bde@DbiQExecDirect$qqsp12Bde@_hDBIObj14Bde@DBIQryLangpcpp12Bde@_hDBIObj", + "@Bde@DbiQExecProcDirect$qqsp12Bde@_hDBIObjpcusp15Bde@SPParamDescpvrp12Bde@_hDBIObj", + "@Bde@DbiQFree$qqsrp12Bde@_hDBIObj", + "@Bde@DbiQGetBaseDescs$qqsp12Bde@_hDBIObjrp12Bde@_hDBIObj", + "@Bde@DbiQInstantiateAnswer$qqsp12Bde@_hDBIObjt1pct3ipp12Bde@_hDBIObj", + "@Bde@DbiQPrepare$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiQPrepareExt$qqsp12Bde@_hDBIObj14Bde@DBIQryLangpcusrp12Bde@_hDBIObj", + "@Bde@DbiQPrepareProc$qqsp12Bde@_hDBIObjpcusp15Bde@SPParamDescpvrp12Bde@_hDBIObj", + "@Bde@DbiQSetParams$qqsp12Bde@_hDBIObjusp11Bde@FLDDescpv", + "@Bde@DbiQSetProcParams$qqsp12Bde@_hDBIObjusp15Bde@SPParamDescpv", + "@Bde@DbiReadBlock$qqsp12Bde@_hDBIObjripv", + "@Bde@DbiRegenIndex$qqsp12Bde@_hDBIObjt1pct3t3t3us", + "@Bde@DbiRegenIndexes$qqsp12Bde@_hDBIObj", + "@Bde@DbiRegisterCallBack$qqsp12Bde@_hDBIObj10Bde@CBTypeiuspvpqqs10Bde@CBTypeipv$11Bde@CBRType", + "@Bde@DbiRelPersistTableLock$qqsp12Bde@_hDBIObjpct2", + "@Bde@DbiRelRecordLock$qqsp12Bde@_hDBIObji", + "@Bde@DbiRelTableLock$qqsp12Bde@_hDBIObji15Bde@DBILockType", + "@Bde@DbiRenameTable$qqsp12Bde@_hDBIObjpct2t2", + "@Bde@DbiResetRange$qqsp12Bde@_hDBIObj", + "@Bde@DbiSQLTextToCanEx$qqsp12Bde@_hDBIObjpcusp11Bde@FLDDesc11Bde@EXPTypet2t2ruspuc", + "@Bde@DbiSaveChanges$qqsp12Bde@_hDBIObj", + "@Bde@DbiSchemaCacheFlush$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiSetCurrSession$qqsp12Bde@_hDBIObj", + "@Bde@DbiSetDateFormat$qqsr11Bde@FMTDate", + "@Bde@DbiSetDefaultRepository$qqspc", + "@Bde@DbiSetDirectory$qqsp12Bde@_hDBIObjpc", + "@Bde@DbiSetFieldMap$qqsp12Bde@_hDBIObjusp11Bde@FLDDesc", + "@Bde@DbiSetLockRetry$qqss", + "@Bde@DbiSetNumberFormat$qqsr13Bde@FMTNumber", + "@Bde@DbiSetPrivateDir$qqspc", + "@Bde@DbiSetProp$qqsp12Bde@_hDBIObjii", + "@Bde@DbiSetRange$qqsp12Bde@_hDBIObjiususpviusust5i", + "@Bde@DbiSetTimeFormat$qqsr11Bde@FMTTime", + "@Bde@DbiSetToBegin$qqsp12Bde@_hDBIObj", + "@Bde@DbiSetToBookMark$qqsp12Bde@_hDBIObjpv", + "@Bde@DbiSetToCursor$qqsp12Bde@_hDBIObjt1", + "@Bde@DbiSetToEnd$qqsp12Bde@_hDBIObj", + "@Bde@DbiSetToKey$qqsp12Bde@_hDBIObj17Bde@DBISearchCondiususpv", + "@Bde@DbiSetToRecordNo$qqsp12Bde@_hDBIObji", + "@Bde@DbiSetToSeqNo$qqsp12Bde@_hDBIObji", + "@Bde@DbiSortTable$qqsp12Bde@_hDBIObjpct2t1t2pp12Bde@_hDBIObjt1uspuspip13Bde@SORTOrderppqqrrpvt1t1s$sit1ri", + "@Bde@DbiStartSession$qqspcrp12Bde@_hDBIObjt1", + "@Bde@DbiSwitchToIndex$qqsrp12Bde@_hDBIObjpct2usi", + "@Bde@DbiTimeDecode$qqsirust2t2", + "@Bde@DbiTimeEncode$qqsusususri", + "@Bde@DbiTimeStampDecode$qqsdrit2", + "@Bde@DbiTimeStampEncode$qqsiird", + "@Bde@DbiTranslateField$qqsp12Bde@_hDBIObjpvt2", + "@Bde@DbiTranslateRecordStructure$qqspcusp11Bde@FLDDesct1t1t3i", + "@Bde@DbiTruncateBlob$qqsp12Bde@_hDBIObjpvusi", + "@Bde@DbiUndeleteRecord$qqsp12Bde@_hDBIObj", + "@Bde@DbiUnlinkDetail$qqsp12Bde@_hDBIObj", + "@Bde@DbiUseIdleTime$qqsv", + "@Bde@DbiValidateProp$qqsp12Bde@_hDBIObjii", + "@Bde@DbiVerifyField$qqsp12Bde@_hDBIObjuspvri", + "@Bde@DbiWriteBlock$qqsp12Bde@_hDBIObjripv", + "@Bde@DsProviderGetDataPacket$qqsp12Bde@_hDBIObjipvipirp16System@TVarArrayri", + "@Bde@DsResolver$qqsipa4$p16System@TVarArrayp12Bde@_hDBIObjpct4t4pa4$pct7pipa4$pvtait9t2", + "@Bde@ErrCat$qqrus", + "@Bde@ErrCode$qqrus", + "@Bde@Finalization$qqrv", + "@Bde@OsLdAnsiCharToOem$qqspvuc", + "@Bde@OsLdAnsiToOem$qqspvpct2usri", + "@Bde@OsLdBuildCharSetXform$qqspcpvt2ri", + "@Bde@OsLdCharToLower$qqspvuc", + "@Bde@OsLdCharToUpper$qqspvuc", + "@Bde@OsLdExStrCmp$qqspvpuczct2zci", + "@Bde@OsLdExit$qqsv", + "@Bde@OsLdGetCodePage$qqspvrs", + "@Bde@OsLdGetDefaultObj$qqsrpv", + "@Bde@OsLdGetDescName$qqspvpuc", + "@Bde@OsLdGetDriverId$qqspvrus", + "@Bde@OsLdGetFName$qqspvpc", + "@Bde@OsLdGetFuncAddrLdStrnCmpi_$qqsrpv", + "@Bde@OsLdGetFuncAddrLdStrnColl_$qqsrpv", + "@Bde@OsLdGetFuncAddrLdStrnColli_$qqsrpv", + "@Bde@OsLdGetMinMax$qqspvpct2", + "@Bde@OsLdGetProductID$qqspvpus", + "@Bde@OsLdGetSortsig$qqspvrs", + "@Bde@OsLdGetSymbName$qqspvpuc", + "@Bde@OsLdInit$qqspct1", + "@Bde@OsLdIsAlpha$qqspvuc", + "@Bde@OsLdIsAnsiCharInOemCp$qqspvc", + "@Bde@OsLdIsDigit$qqspvuc", + "@Bde@OsLdIsOemCharInAnsiCp$qqspvc", + "@Bde@OsLdLoadByDriverId$qqsusrpv", + "@Bde@OsLdLoadByFName$qqspcrpv", + "@Bde@OsLdLoadByLCID$qqrirpv", + "@Bde@OsLdLoadBySortSig$qqsususrpv", + "@Bde@OsLdLoadBySymbName$qqspcrpv", + "@Bde@OsLdOemCharToAnsi$qqspvuc", + "@Bde@OsLdOemToAnsi$qqspvpct2usri", + "@Bde@OsLdSearchEnd$qqspv", + "@Bde@OsLdSearchInit$qqsrpv", + "@Bde@OsLdSearchNext$qqspvrpv", + "@Bde@OsLdSetConvChars$qqrzczc", + "@Bde@OsLdStrCmp$qqspvpct2", + "@Bde@OsLdStrCmpi$qqspvpct2", + "@Bde@OsLdStrToLower$qqspvpuc", + "@Bde@OsLdStrToUpper$qqspvpuc", + "@Bde@OsLdStrnCmp$qqspvpct2us", + "@Bde@OsLdStrnCmpi$qqspvpct2us", + "@Bde@OsLdStrnColl$qqspvpuct2us", + "@Bde@OsLdStrnColli$qqspvpct2us", + "@Bde@OsLdStrnToLower$qqspvpucus", + "@Bde@OsLdStrnToUpper$qqspvpucus", + "@Bde@OsLdUnloadObj$qqsrpv", + "@Bde@initialization$qqrv", + "@Bdeconst@Finalization$qqrv", + "@Bdeconst@_SAutoSessionActive", + "@Bdeconst@_SAutoSessionExclusive", + "@Bdeconst@_SAutoSessionExists", + "@Bdeconst@_SBDEError", + "@Bdeconst@_SBatchExecute", + "@Bdeconst@_SBindVerb", + "@Bdeconst@_SCompositeIndexError", + "@Bdeconst@_SDBCaption", + "@Bdeconst@_SDataTypes", + "@Bdeconst@_SDatabaseClosed", + "@Bdeconst@_SDatabaseEditor", + "@Bdeconst@_SDatabaseHandleSet", + "@Bdeconst@_SDatabaseNameMissing", + "@Bdeconst@_SDatabaseOpen", + "@Bdeconst@_SDisconnectDatabase", + "@Bdeconst@_SDuplicateDatabaseName", + "@Bdeconst@_SDuplicateSessionName", + "@Bdeconst@_SEmptySQLStatement", + "@Bdeconst@_SExplore", + "@Bdeconst@_SFieldAssignError", + "@Bdeconst@_SGQEVerb", + "@Bdeconst@_SHandleError", + "@Bdeconst@_SIDAPILangID", + "@Bdeconst@_SIndexDoesNotExist", + "@Bdeconst@_SIndexFilesEditor", + "@Bdeconst@_SInitError", + "@Bdeconst@_SInvalidAliasName", + "@Bdeconst@_SInvalidBatchMove", + "@Bdeconst@_SInvalidFloatField", + "@Bdeconst@_SInvalidIntegerField", + "@Bdeconst@_SInvalidParamFieldType", + "@Bdeconst@_SInvalidSessionName", + "@Bdeconst@_SLinkDetail", + "@Bdeconst@_SLinkMaster", + "@Bdeconst@_SLinkMasterSource", + "@Bdeconst@_SLocalTransDirty", + "@Bdeconst@_SLoginError", + "@Bdeconst@_SLookupIndexError", + "@Bdeconst@_SLookupSourceError", + "@Bdeconst@_SLookupTableError", + "@Bdeconst@_SMissingDataSet", + "@Bdeconst@_SNoCachedUpdates", + "@Bdeconst@_SNoDataSet", + "@Bdeconst@_SNoDataSetField", + "@Bdeconst@_SNoFieldAccess", + "@Bdeconst@_SNoIndexFiles", + "@Bdeconst@_SNoParameterType", + "@Bdeconst@_SNoParameterValue", + "@Bdeconst@_SNoProvider", + "@Bdeconst@_SNoReferenceTableName", + "@Bdeconst@_SNoTableName", + "@Bdeconst@_SNotAQuery", + "@Bdeconst@_SParamEditor", + "@Bdeconst@_SParameterTypes", + "@Bdeconst@_SResultName", + "@Bdeconst@_SSQLDataSetOpen", + "@Bdeconst@_SSQLGenSelect", + "@Bdeconst@_SSQLNotGenerated", + "@Bdeconst@_SSessionActive", + "@Bdeconst@_SSessionNameMissing", + "@Bdeconst@_STableMismatch", + "@Bdeconst@_STruncationError", + "@Bdeconst@_SUntitled", + "@Bdeconst@_SUpdateFailed", + "@Bdeconst@_SUpdateSQLEditor", + "@Bdeconst@_SUpdateWrongDB", + "@Bdeconst@initialization$qqrv", + "@Bdertl@@GetPackageInfoTable$qqrv", + "@Bdertl@@PackageLoad$qqrv", + "@Bdertl@@PackageUnload$qqrv", + "@Bdertl@initialization$qqrv", + "@Dbtables@AnsiToNative$qqrpvx17System@AnsiStringpci", + "@Dbtables@AnsiToNativeBuf$qqrpvpct2i", + "@Dbtables@BlobTypeMap", + "@Dbtables@Check$qqrus", + "@Dbtables@DataTypeMap", + "@Dbtables@DbiError$qqrus", + "@Dbtables@EDBEngineError@", + "@Dbtables@EDBEngineError@$bctr$qqrus", + "@Dbtables@EDBEngineError@$bdtr$qqrv", + "@Dbtables@EDBEngineError@GetError$qqri", + "@Dbtables@EDBEngineError@GetErrorCount$qqrv", + "@Dbtables@ENoResultSet@", + "@Dbtables@Finalization$qqrv", + "@Dbtables@FldSubTypeMap", + "@Dbtables@FldTypeMap", + "@Dbtables@GetFieldSource$qqrp11Db@TDataSetr15Bde@DataSources", + "@Dbtables@GetObjectContextProc", + "@Dbtables@NativeCompareStr$qqrpvx17System@AnsiStringt2i", + "@Dbtables@NativeCompareStrBuf$qqrpvpxct2i", + "@Dbtables@NativeCompareText$qqrpvx17System@AnsiStringt2i", + "@Dbtables@NativeCompareTextBuf$qqrpvpxct2i", + "@Dbtables@NativeToAnsi$qqrpvpcr17System@AnsiString", + "@Dbtables@NativeToAnsiBuf$qqrpvpct2i", + "@Dbtables@RegisterBDEInitProc$qqrxpqqrp17Dbtables@TSession$v", + "@Dbtables@Session", + "@Dbtables@Sessions", + "@Dbtables@TBDECallback@", + "@Dbtables@TBDECallback@$bctr$qqrp14System@TObjectp12Bde@_hDBIObj10Bde@CBTypepviynpqqrpv$11Bde@CBRTypeo", + "@Dbtables@TBDECallback@$bdtr$qqrv", + "@Dbtables@TBDECallback@Invoke$qqr10Bde@CBTypepv", + "@Dbtables@TBDEDataSet@", + "@Dbtables@TBDEDataSet@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TBDEDataSet@$bdtr$qqrv", + "@Dbtables@TBDEDataSet@ActivateFilters$qqrv", + "@Dbtables@TBDEDataSet@AddFieldDesc$qqr36System@%DynamicArray$t11Bde@FLDDesc%rit2p13Classes@TBitsp13Db@TFieldDefs", + "@Dbtables@TBDEDataSet@AllocCachedUpdateBuffers$qqro", + "@Dbtables@TBDEDataSet@AllocKeyBuffers$qqrv", + "@Dbtables@TBDEDataSet@AllocRecordBuffer$qqrv", + "@Dbtables@TBDEDataSet@ApplyUpdates$qqrv", + "@Dbtables@TBDEDataSet@BlockReadNext$qqrv", + "@Dbtables@TBDEDataSet@BookmarkValid$qqrpv", + "@Dbtables@TBDEDataSet@CachedUpdateCallBack$qqrpv", + "@Dbtables@TBDEDataSet@Cancel$qqrv", + "@Dbtables@TBDEDataSet@CancelUpdates$qqrv", + "@Dbtables@TBDEDataSet@CheckCachedUpdateMode$qqrv", + "@Dbtables@TBDEDataSet@CheckSetKeyMode$qqrv", + "@Dbtables@TBDEDataSet@ClearBlobCache$qqrpc", + "@Dbtables@TBDEDataSet@ClearCalcFields$qqrpc", + "@Dbtables@TBDEDataSet@CloseBlob$qqrp9Db@TField", + "@Dbtables@TBDEDataSet@CloseCursor$qqrv", + "@Dbtables@TBDEDataSet@CommitUpdates$qqrv", + "@Dbtables@TBDEDataSet@CompareBookmarks$qqrpvt1", + "@Dbtables@TBDEDataSet@ConstraintCallBack$qqs13Bde@DsInfoReqr15Bde@DataSources", + "@Dbtables@TBDEDataSet@ConstraintsDisabled$qqrv", + "@Dbtables@TBDEDataSet@CreateBlobStream$qqrp9Db@TField18Db@TBlobStreamMode", + "@Dbtables@TBDEDataSet@CreateExprFilter$qqrx17System@AnsiString44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%i", + "@Dbtables@TBDEDataSet@CreateFuncFilter$qqrpvi", + "@Dbtables@TBDEDataSet@CreateHandle$qqrv", + "@Dbtables@TBDEDataSet@CreateLookupFilter$qqrp13Classes@TListrx14System@Variant44System@%Set$t16Db@TLocateOption$iuc$0$iuc$1%i", + "@Dbtables@TBDEDataSet@DataEvent$qqr13Db@TDataEventi", + "@Dbtables@TBDEDataSet@DeactivateFilters$qqrv", + "@Dbtables@TBDEDataSet@DestroyHandle$qqrv", + "@Dbtables@TBDEDataSet@DestroyLookupCursor$qqrv", + "@Dbtables@TBDEDataSet@DisableConstraints$qqrv", + "@Dbtables@TBDEDataSet@EnableConstraints$qqrv", + "@Dbtables@TBDEDataSet@FetchAll$qqrv", + "@Dbtables@TBDEDataSet@FindRecord$qqroo", + "@Dbtables@TBDEDataSet@FlushBuffers$qqrv", + "@Dbtables@TBDEDataSet@ForceUpdateCallback$qqrv", + "@Dbtables@TBDEDataSet@FreeKeyBuffers$qqrv", + "@Dbtables@TBDEDataSet@FreeRecordBuffer$qqrrpc", + "@Dbtables@TBDEDataSet@GetActiveRecBuf$qqrrpc", + "@Dbtables@TBDEDataSet@GetBlobData$qqrp9Db@TFieldpc", + "@Dbtables@TBDEDataSet@GetBlobFieldData$qqrir25System@%DynamicArray$tuc%", + "@Dbtables@TBDEDataSet@GetBookmarkData$qqrpcpv", + "@Dbtables@TBDEDataSet@GetBookmarkFlag$qqrpc", + "@Dbtables@TBDEDataSet@GetCanModify$qqrv", + "@Dbtables@TBDEDataSet@GetCurrentRecord$qqrpc", + "@Dbtables@TBDEDataSet@GetFieldData$qqripv", + "@Dbtables@TBDEDataSet@GetFieldData$qqrp9Db@TFieldpv", + "@Dbtables@TBDEDataSet@GetFieldFullName$qqrp9Db@TField", + "@Dbtables@TBDEDataSet@GetHandle$qqrv", + "@Dbtables@TBDEDataSet@GetIndexField$qqri", + "@Dbtables@TBDEDataSet@GetIndexFieldCount$qqrv", + "@Dbtables@TBDEDataSet@GetIndexInfo$qqrv", + "@Dbtables@TBDEDataSet@GetIsIndexField$qqrp9Db@TField", + "@Dbtables@TBDEDataSet@GetKeyBuffer$qqr18Dbtables@TKeyIndex", + "@Dbtables@TBDEDataSet@GetKeyExclusive$qqrv", + "@Dbtables@TBDEDataSet@GetKeyFieldCount$qqrv", + "@Dbtables@TBDEDataSet@GetLookupCursor$qqrx17System@AnsiStringo", + "@Dbtables@TBDEDataSet@GetObjectTypeNames$qqrp10Db@TFields", + "@Dbtables@TBDEDataSet@GetOldRecord$qqrv", + "@Dbtables@TBDEDataSet@GetRecNo$qqrv", + "@Dbtables@TBDEDataSet@GetRecord$qqrpc11Db@TGetModeo", + "@Dbtables@TBDEDataSet@GetRecordCount$qqrv", + "@Dbtables@TBDEDataSet@GetRecordSize$qqrv", + "@Dbtables@TBDEDataSet@GetStateFieldValue$qqr16Db@TDataSetStatep9Db@TField", + "@Dbtables@TBDEDataSet@GetUpdateRecordSet$qqrv", + "@Dbtables@TBDEDataSet@GetUpdatesPending$qqrv", + "@Dbtables@TBDEDataSet@HasConstraints$qqrv", + "@Dbtables@TBDEDataSet@InitBufferPointers$qqro", + "@Dbtables@TBDEDataSet@InitKeyBuffer$qqrp19Dbtables@TKeyBuffer", + "@Dbtables@TBDEDataSet@InitRecord$qqrpc", + "@Dbtables@TBDEDataSet@InternalAddRecord$qqrpvo", + "@Dbtables@TBDEDataSet@InternalCancel$qqrv", + "@Dbtables@TBDEDataSet@InternalClose$qqrv", + "@Dbtables@TBDEDataSet@InternalDelete$qqrv", + "@Dbtables@TBDEDataSet@InternalEdit$qqrv", + "@Dbtables@TBDEDataSet@InternalFirst$qqrv", + "@Dbtables@TBDEDataSet@InternalGotoBookmark$qqrpv", + "@Dbtables@TBDEDataSet@InternalHandleException$qqrv", + "@Dbtables@TBDEDataSet@InternalInitFieldDefs$qqrv", + "@Dbtables@TBDEDataSet@InternalInitRecord$qqrpc", + "@Dbtables@TBDEDataSet@InternalInsert$qqrv", + "@Dbtables@TBDEDataSet@InternalLast$qqrv", + "@Dbtables@TBDEDataSet@InternalOpen$qqrv", + "@Dbtables@TBDEDataSet@InternalPost$qqrv", + "@Dbtables@TBDEDataSet@InternalRefresh$qqrv", + "@Dbtables@TBDEDataSet@InternalSetToRecord$qqrpc", + "@Dbtables@TBDEDataSet@IsCursorOpen$qqrv", + "@Dbtables@TBDEDataSet@IsSequenced$qqrv", + "@Dbtables@TBDEDataSet@Locate$qqrx17System@AnsiStringrx14System@Variant44System@%Set$t16Db@TLocateOption$iuc$0$iuc$1%", + "@Dbtables@TBDEDataSet@LocateRecord$qqrx17System@AnsiStringrx14System@Variant44System@%Set$t16Db@TLocateOption$iuc$0$iuc$1%o", + "@Dbtables@TBDEDataSet@Lookup$qqrx17System@AnsiStringrx14System@Variantt1", + "@Dbtables@TBDEDataSet@MapsToIndex$qqrp13Classes@TListo", + "@Dbtables@TBDEDataSet@OpenCursor$qqro", + "@Dbtables@TBDEDataSet@PSGetUpdateException$qqrp18Sysutils@Exceptionp15Db@EUpdateError", + "@Dbtables@TBDEDataSet@PSIsSQLSupported$qqrv", + "@Dbtables@TBDEDataSet@PSReset$qqrv", + "@Dbtables@TBDEDataSet@PSUpdateRecord$qqr14Db@TUpdateKindp11Db@TDataSet", + "@Dbtables@TBDEDataSet@Post$qqrv", + "@Dbtables@TBDEDataSet@PostKeyBuffer$qqro", + "@Dbtables@TBDEDataSet@PrepareCursor$qqrv", + "@Dbtables@TBDEDataSet@ProcessUpdates$qqr20Bde@DBIDelayedUpdCmd", + "@Dbtables@TBDEDataSet@RecordFilter$qqspvi", + "@Dbtables@TBDEDataSet@ResetCursorRange$qqrv", + "@Dbtables@TBDEDataSet@RevertRecord$qqrv", + "@Dbtables@TBDEDataSet@SetBlobData$qqrp9Db@TFieldpc17System@AnsiString", + "@Dbtables@TBDEDataSet@SetBlockReadSize$qqri", + "@Dbtables@TBDEDataSet@SetBookmarkData$qqrpcpv", + "@Dbtables@TBDEDataSet@SetBookmarkFlag$qqrpc16Db@TBookmarkFlag", + "@Dbtables@TBDEDataSet@SetCachedUpdates$qqro", + "@Dbtables@TBDEDataSet@SetCursorRange$qqrv", + "@Dbtables@TBDEDataSet@SetFieldData$qqrp9Db@TFieldpv", + "@Dbtables@TBDEDataSet@SetFilterData$qqrx17System@AnsiString44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%", + "@Dbtables@TBDEDataSet@SetFilterHandle$qqrrp12Bde@_hDBIObjp12Bde@_hDBIObj", + "@Dbtables@TBDEDataSet@SetFilterOptions$qqr44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%", + "@Dbtables@TBDEDataSet@SetFilterText$qqrx17System@AnsiString", + "@Dbtables@TBDEDataSet@SetFiltered$qqro", + "@Dbtables@TBDEDataSet@SetIndexField$qqrip9Db@TField", + "@Dbtables@TBDEDataSet@SetKeyBuffer$qqr18Dbtables@TKeyIndexo", + "@Dbtables@TBDEDataSet@SetKeyExclusive$qqro", + "@Dbtables@TBDEDataSet@SetKeyFieldCount$qqri", + "@Dbtables@TBDEDataSet@SetKeyFields$qqr18Dbtables@TKeyIndexpx14System@TVarRecxi", + "@Dbtables@TBDEDataSet@SetLinkRanges$qqrp13Classes@TList", + "@Dbtables@TBDEDataSet@SetLocale$qqrpv", + "@Dbtables@TBDEDataSet@SetOnFilterRecord$qqrxynpqqrp11Db@TDataSetro$v", + "@Dbtables@TBDEDataSet@SetOnUpdateError$qqrynpqqrp11Db@TDataSetp17Db@EDatabaseError14Db@TUpdateKindr16Db@TUpdateAction$v", + "@Dbtables@TBDEDataSet@SetRecNo$qqri", + "@Dbtables@TBDEDataSet@SetStateFieldValue$qqr16Db@TDataSetStatep9Db@TFieldrx14System@Variant", + "@Dbtables@TBDEDataSet@SetUpdateObject$qqrp29Dbtables@TDataSetUpdateObject", + "@Dbtables@TBDEDataSet@SetUpdateRecordSet$qqr35System@%Set$t8Db@DB__3$iuc$0$iuc$3%", + "@Dbtables@TBDEDataSet@SetupCallBack$qqro", + "@Dbtables@TBDEDataSet@SwitchToIndex$qqrx17System@AnsiStringt1", + "@Dbtables@TBDEDataSet@Translate$qqrpct1o", + "@Dbtables@TBDEDataSet@UpdateCallbackRequired$qqrv", + "@Dbtables@TBDEDataSet@UpdateStatus$qqrv", + "@Dbtables@TBatchMove@", + "@Dbtables@TBatchMove@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TBatchMove@$bdtr$qqrv", + "@Dbtables@TBatchMove@ConvertName$qqrx17System@AnsiStringpc", + "@Dbtables@TBatchMove@Execute$qqrv", + "@Dbtables@TBatchMove@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbtables@TBatchMove@SetMappings$qqrp16Classes@TStrings", + "@Dbtables@TBatchMove@SetSource$qqrp20Dbtables@TBDEDataSet", + "@Dbtables@TBlobStream@", + "@Dbtables@TBlobStream@$bctr$qqrp13Db@TBlobField18Db@TBlobStreamMode", + "@Dbtables@TBlobStream@$bdtr$qqrv", + "@Dbtables@TBlobStream@GetBlobSize$qqrv", + "@Dbtables@TBlobStream@Read$qqrpvi", + "@Dbtables@TBlobStream@Seek$qqrius", + "@Dbtables@TBlobStream@Truncate$qqrv", + "@Dbtables@TBlobStream@Write$qqrpxvi", + "@Dbtables@TDBDataSet@", + "@Dbtables@TDBDataSet@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TDBDataSet@CheckDBSessionName$qqrv", + "@Dbtables@TDBDataSet@CheckOpen$qqrus", + "@Dbtables@TDBDataSet@CloseCursor$qqrv", + "@Dbtables@TDBDataSet@CloseDatabase$qqrp18Dbtables@TDatabase", + "@Dbtables@TDBDataSet@ConstraintsStored$qqrv", + "@Dbtables@TDBDataSet@Disconnect$qqrv", + "@Dbtables@TDBDataSet@GetDBHandle$qqrv", + "@Dbtables@TDBDataSet@GetDBLocale$qqrv", + "@Dbtables@TDBDataSet@GetDBSession$qqrv", + "@Dbtables@TDBDataSet@OpenCursor$qqro", + "@Dbtables@TDBDataSet@OpenDatabase$qqrv", + "@Dbtables@TDBDataSet@PSEndTransaction$qqro", + "@Dbtables@TDBDataSet@PSExecuteStatement$qqrx17System@AnsiStringp10Db@TParamspv", + "@Dbtables@TDBDataSet@PSGetAttributes$qqrp13Classes@TList", + "@Dbtables@TDBDataSet@PSGetQuoteChar$qqrv", + "@Dbtables@TDBDataSet@PSInTransaction$qqrv", + "@Dbtables@TDBDataSet@PSIsSQLBased$qqrv", + "@Dbtables@TDBDataSet@PSStartTransaction$qqrv", + "@Dbtables@TDBDataSet@PSUpdateRecord$qqr14Db@TUpdateKindp11Db@TDataSet", + "@Dbtables@TDBDataSet@SetAutoRefresh$qqrxo", + "@Dbtables@TDBDataSet@SetDBFlag$qqrio", + "@Dbtables@TDBDataSet@SetDatabaseName$qqrx17System@AnsiString", + "@Dbtables@TDBDataSet@SetHandle$qqrp12Bde@_hDBIObj", + "@Dbtables@TDBDataSet@SetSessionName$qqrx17System@AnsiString", + "@Dbtables@TDBDataSet@SetUpdateMode$qqrx14Db@TUpdateMode", + "@Dbtables@TDBDataSet@SetupAutoRefresh$qqrv", + "@Dbtables@TDBError@", + "@Dbtables@TDBError@$bctr$qqrp23Dbtables@EDBEngineErrorusipc", + "@Dbtables@TDBError@GetCategory$qqrv", + "@Dbtables@TDBError@GetSubCode$qqrv", + "@Dbtables@TDataSetUpdateObject@", + "@Dbtables@TDatabase@", + "@Dbtables@TDatabase@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TDatabase@$bdtr$qqrv", + "@Dbtables@TDatabase@ApplyUpdates$qqrppx19Dbtables@TDBDataSetxi", + "@Dbtables@TDatabase@CheckActive$qqrv", + "@Dbtables@TDatabase@CheckDatabaseAlias$qqrr17System@AnsiString", + "@Dbtables@TDatabase@CheckDatabaseName$qqrv", + "@Dbtables@TDatabase@CheckInactive$qqrv", + "@Dbtables@TDatabase@CheckSessionName$qqro", + "@Dbtables@TDatabase@ClearStatements$qqrv", + "@Dbtables@TDatabase@CloseDataSets$qqrv", + "@Dbtables@TDatabase@Commit$qqrv", + "@Dbtables@TDatabase@DoConnect$qqrv", + "@Dbtables@TDatabase@DoDisconnect$qqrv", + "@Dbtables@TDatabase@EndTransaction$qqr9Bde@eXEnd", + "@Dbtables@TDatabase@Execute$qqrx17System@AnsiStringp10Db@TParamsopp12Bde@_hDBIObj", + "@Dbtables@TDatabase@FlushSchemaCache$qqrx17System@AnsiString", + "@Dbtables@TDatabase@GetAliasName$qqrv", + "@Dbtables@TDatabase@GetConnected$qqrv", + "@Dbtables@TDatabase@GetDataSet$qqri", + "@Dbtables@TDatabase@GetDirectory$qqrv", + "@Dbtables@TDatabase@GetDriverName$qqrv", + "@Dbtables@TDatabase@GetFieldNames$qqrx17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TDatabase@GetInTransaction$qqrv", + "@Dbtables@TDatabase@GetObjectContext$qqrv", + "@Dbtables@TDatabase@GetTableNames$qqrp16Classes@TStringso", + "@Dbtables@TDatabase@GetTraceFlags$qqrv", + "@Dbtables@TDatabase@LoadLocale$qqrv", + "@Dbtables@TDatabase@Loaded$qqrv", + "@Dbtables@TDatabase@Login$qqrp16Classes@TStrings", + "@Dbtables@TDatabase@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbtables@TDatabase@OpenFromExistingDB$qqrv", + "@Dbtables@TDatabase@ParamsChanging$qqrp14System@TObject", + "@Dbtables@TDatabase@Rollback$qqrv", + "@Dbtables@TDatabase@SetAliasName$qqrx17System@AnsiString", + "@Dbtables@TDatabase@SetDatabaseFlags$qqrv", + "@Dbtables@TDatabase@SetDatabaseName$qqrx17System@AnsiString", + "@Dbtables@TDatabase@SetDatabaseType$qqrx17System@AnsiStringo", + "@Dbtables@TDatabase@SetDirectory$qqrx17System@AnsiString", + "@Dbtables@TDatabase@SetDriverName$qqrx17System@AnsiString", + "@Dbtables@TDatabase@SetExclusive$qqro", + "@Dbtables@TDatabase@SetHandle$qqrp12Bde@_hDBIObj", + "@Dbtables@TDatabase@SetKeepConnection$qqro", + "@Dbtables@TDatabase@SetParams$qqrp16Classes@TStrings", + "@Dbtables@TDatabase@SetReadOnly$qqro", + "@Dbtables@TDatabase@SetSessionName$qqrx17System@AnsiString", + "@Dbtables@TDatabase@SetTraceFlags$qqr48System@%Set$t19Dbtables@TTraceFlag$iuc$0$iuc$10%", + "@Dbtables@TDatabase@StartTransaction$qqrv", + "@Dbtables@TDatabase@ValidateName$qqrx17System@AnsiString", + "@Dbtables@TIndexFiles@", + "@Dbtables@TIndexFiles@$bctr$qqrp15Dbtables@TTable", + "@Dbtables@TIndexFiles@Add$qqrx17System@AnsiString", + "@Dbtables@TIndexFiles@Clear$qqrv", + "@Dbtables@TIndexFiles@Delete$qqri", + "@Dbtables@TIndexFiles@Insert$qqrix17System@AnsiString", + "@Dbtables@TNestedTable@", + "@Dbtables@TNestedTable@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TNestedTable@CreateHandle$qqrv", + "@Dbtables@TNestedTable@DoAfterPost$qqrv", + "@Dbtables@TNestedTable@DoBeforeInsert$qqrv", + "@Dbtables@TNestedTable@InternalPost$qqrv", + "@Dbtables@TParamList@", + "@Dbtables@TParamList@$bctr$qqrp16Classes@TStrings", + "@Dbtables@TParamList@$bdtr$qqrv", + "@Dbtables@TQuery@", + "@Dbtables@TQuery@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TQuery@$bdtr$qqrv", + "@Dbtables@TQuery@CreateCursor$qqro", + "@Dbtables@TQuery@CreateHandle$qqrv", + "@Dbtables@TQuery@DefineProperties$qqrp14Classes@TFiler", + "@Dbtables@TQuery@Disconnect$qqrv", + "@Dbtables@TQuery@ExecSQL$qqrv", + "@Dbtables@TQuery@FreeStatement$qqrv", + "@Dbtables@TQuery@GetDataSource$qqrv", + "@Dbtables@TQuery@GetDetailLinkFields$qqrp13Classes@TListt1", + "@Dbtables@TQuery@GetParamsCount$qqrv", + "@Dbtables@TQuery@GetQueryCursor$qqro", + "@Dbtables@TQuery@GetRowsAffected$qqrv", + "@Dbtables@TQuery@GetStatementHandle$qqrpc", + "@Dbtables@TQuery@PSExecute$qqrv", + "@Dbtables@TQuery@PSGetDefaultOrder$qqrv", + "@Dbtables@TQuery@PSGetParams$qqrv", + "@Dbtables@TQuery@PSGetTableName$qqrv", + "@Dbtables@TQuery@PSSetCommandText$qqrx17System@AnsiString", + "@Dbtables@TQuery@PSSetParams$qqrp10Db@TParams", + "@Dbtables@TQuery@ParamByName$qqrx17System@AnsiString", + "@Dbtables@TQuery@Prepare$qqrv", + "@Dbtables@TQuery@PrepareSQL$qqrpc", + "@Dbtables@TQuery@QueryChanged$qqrp14System@TObject", + "@Dbtables@TQuery@ReadBinaryData$qqrp15Classes@TStream", + "@Dbtables@TQuery@ReadParamData$qqrp15Classes@TReader", + "@Dbtables@TQuery@RefreshParams$qqrv", + "@Dbtables@TQuery@SetDBFlag$qqrio", + "@Dbtables@TQuery@SetDataSource$qqrp14Db@TDataSource", + "@Dbtables@TQuery@SetParamsFromCursor$qqrv", + "@Dbtables@TQuery@SetParamsList$qqrp10Db@TParams", + "@Dbtables@TQuery@SetPrepare$qqro", + "@Dbtables@TQuery@SetPrepared$qqro", + "@Dbtables@TQuery@SetQuery$qqrp16Classes@TStrings", + "@Dbtables@TQuery@UnPrepare$qqrv", + "@Dbtables@TQuery@WriteBinaryData$qqrp15Classes@TStream", + "@Dbtables@TQuery@WriteParamData$qqrp15Classes@TWriter", + "@Dbtables@TSQLUpdateObject@", + "@Dbtables@TSession@", + "@Dbtables@TSession@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TSession@$bdtr$qqrv", + "@Dbtables@TSession@AddAlias$qqrx17System@AnsiStringt1p16Classes@TStrings", + "@Dbtables@TSession@AddDatabase$qqrp18Dbtables@TDatabase", + "@Dbtables@TSession@AddDriver$qqrx17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TSession@AddPassword$qqrx17System@AnsiString", + "@Dbtables@TSession@AddStandardAlias$qqrx17System@AnsiStringt1t1", + "@Dbtables@TSession@CallBDEInitProcs$qqrv", + "@Dbtables@TSession@CheckConfigMode$qqr49System@%Set$t21Dbtables@TConfigModes$iuc$0$iuc$2%", + "@Dbtables@TSession@CheckInactive$qqrv", + "@Dbtables@TSession@Close$qqrv", + "@Dbtables@TSession@CloseDatabase$qqrp18Dbtables@TDatabase", + "@Dbtables@TSession@CloseDatabaseHandle$qqrp18Dbtables@TDatabase", + "@Dbtables@TSession@DBLoginCallback$qqrpv", + "@Dbtables@TSession@DBNotification$qqr23Dbtables@TDatabaseEventpxv", + "@Dbtables@TSession@DeleteAlias$qqrx17System@AnsiString", + "@Dbtables@TSession@DeleteConfigPath$qqrx17System@AnsiStringt1", + "@Dbtables@TSession@DeleteDriver$qqrx17System@AnsiString", + "@Dbtables@TSession@DoFindDatabase$qqrx17System@AnsiStringp18Classes@TComponent", + "@Dbtables@TSession@DoOpenDatabase$qqrx17System@AnsiStringp18Classes@TComponent", + "@Dbtables@TSession@DropConnections$qqrv", + "@Dbtables@TSession@FindDatabase$qqrx17System@AnsiString", + "@Dbtables@TSession@FindDatabaseHandle$qqrx17System@AnsiString", + "@Dbtables@TSession@GetActive$qqrv", + "@Dbtables@TSession@GetAliasDriverName$qqrx17System@AnsiString", + "@Dbtables@TSession@GetAliasNames$qqrp16Classes@TStrings", + "@Dbtables@TSession@GetAliasParams$qqrx17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TSession@GetConfigMode$qqrv", + "@Dbtables@TSession@GetConfigParams$qqrx17System@AnsiStringt1p16Classes@TStrings", + "@Dbtables@TSession@GetDatabase$qqri", + "@Dbtables@TSession@GetDatabaseCount$qqrv", + "@Dbtables@TSession@GetDatabaseNames$qqrp16Classes@TStrings", + "@Dbtables@TSession@GetDriverNames$qqrp16Classes@TStrings", + "@Dbtables@TSession@GetDriverParams$qqrx17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TSession@GetFieldNames$qqrx17System@AnsiStringt1p16Classes@TStrings", + "@Dbtables@TSession@GetHandle$qqrv", + "@Dbtables@TSession@GetNetFileDir$qqrv", + "@Dbtables@TSession@GetPassword$qqrv", + "@Dbtables@TSession@GetPrivateDir$qqrv", + "@Dbtables@TSession@GetStoredProcNames$qqrx17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TSession@GetTableNames$qqrx17System@AnsiStringt1oop16Classes@TStrings", + "@Dbtables@TSession@InitializeBDE$qqrv", + "@Dbtables@TSession@InternalAddAlias$qqrx17System@AnsiStringt1p16Classes@TStrings49System@%Set$t21Dbtables@TConfigModes$iuc$0$iuc$2%o", + "@Dbtables@TSession@InternalDeleteAlias$qqrx17System@AnsiString49System@%Set$t21Dbtables@TConfigModes$iuc$0$iuc$2%o", + "@Dbtables@TSession@IsAlias$qqrx17System@AnsiString", + "@Dbtables@TSession@LoadSMClient$qqro", + "@Dbtables@TSession@Loaded$qqrv", + "@Dbtables@TSession@LockSession$qqrv", + "@Dbtables@TSession@MakeCurrent$qqrv", + "@Dbtables@TSession@ModifyAlias$qqr17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TSession@ModifyConfigParams$qqrx17System@AnsiStringt1p16Classes@TStrings", + "@Dbtables@TSession@ModifyDriver$qqr17System@AnsiStringp16Classes@TStrings", + "@Dbtables@TSession@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbtables@TSession@Open$qqrv", + "@Dbtables@TSession@OpenDatabase$qqrx17System@AnsiString", + "@Dbtables@TSession@RegisterCallbacks$qqro", + "@Dbtables@TSession@RemoveAllPasswords$qqrv", + "@Dbtables@TSession@RemoveDatabase$qqrp18Dbtables@TDatabase", + "@Dbtables@TSession@RemovePassword$qqrx17System@AnsiString", + "@Dbtables@TSession@SMClientSignal$qqrp14System@TObjecti", + "@Dbtables@TSession@SaveConfigFile$qqrv", + "@Dbtables@TSession@ServerCallback$qqrpv", + "@Dbtables@TSession@SessionNameStored$qqrv", + "@Dbtables@TSession@SetActive$qqro", + "@Dbtables@TSession@SetAutoSessionName$qqro", + "@Dbtables@TSession@SetConfigMode$qqr49System@%Set$t21Dbtables@TConfigModes$iuc$0$iuc$2%", + "@Dbtables@TSession@SetConfigParams$qqrx17System@AnsiStringt1p16Classes@TStrings", + "@Dbtables@TSession@SetName$qqrx17System@AnsiString", + "@Dbtables@TSession@SetNetFileDir$qqrx17System@AnsiString", + "@Dbtables@TSession@SetPrivateDir$qqrx17System@AnsiString", + "@Dbtables@TSession@SetSessionName$qqrx17System@AnsiString", + "@Dbtables@TSession@SetSessionNames$qqrv", + "@Dbtables@TSession@SetTraceFlags$qqr48System@%Set$t19Dbtables@TTraceFlag$iuc$0$iuc$10%", + "@Dbtables@TSession@SqlTraceCallback$qqrpv", + "@Dbtables@TSession@StartSession$qqro", + "@Dbtables@TSession@UnlockSession$qqrv", + "@Dbtables@TSession@UpdateAutoSessionName$qqrv", + "@Dbtables@TSession@ValidateAutoSession$qqrp18Classes@TComponento", + "@Dbtables@TSessionList@", + "@Dbtables@TSessionList@$bctr$qqrv", + "@Dbtables@TSessionList@$bdtr$qqrv", + "@Dbtables@TSessionList@AddSession$qqrp17Dbtables@TSession", + "@Dbtables@TSessionList@CloseAll$qqrv", + "@Dbtables@TSessionList@FindSession$qqrx17System@AnsiString", + "@Dbtables@TSessionList@GetCount$qqrv", + "@Dbtables@TSessionList@GetCurrentSession$qqrv", + "@Dbtables@TSessionList@GetSession$qqri", + "@Dbtables@TSessionList@GetSessionByName$qqrx17System@AnsiString", + "@Dbtables@TSessionList@GetSessionNames$qqrp16Classes@TStrings", + "@Dbtables@TSessionList@OpenSession$qqrx17System@AnsiString", + "@Dbtables@TSessionList@SetCurrentSession$qqrp17Dbtables@TSession", + "@Dbtables@TStoredProc@", + "@Dbtables@TStoredProc@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TStoredProc@$bdtr$qqrv", + "@Dbtables@TStoredProc@BindParams$qqrv", + "@Dbtables@TStoredProc@CheckServerParams$qqrv", + "@Dbtables@TStoredProc@CopyParams$qqrp10Db@TParams", + "@Dbtables@TStoredProc@CreateCursor$qqro", + "@Dbtables@TStoredProc@CreateHandle$qqrv", + "@Dbtables@TStoredProc@CreateParamDesc$qqrv", + "@Dbtables@TStoredProc@DefineProperties$qqrp14Classes@TFiler", + "@Dbtables@TStoredProc@DescriptionsAvailable$qqrv", + "@Dbtables@TStoredProc@Disconnect$qqrv", + "@Dbtables@TStoredProc@ExecProc$qqrv", + "@Dbtables@TStoredProc@FreeStatement$qqrv", + "@Dbtables@TStoredProc@GetCursor$qqro", + "@Dbtables@TStoredProc@GetParamsCount$qqrv", + "@Dbtables@TStoredProc@GetResults$qqrv", + "@Dbtables@TStoredProc@PSExecute$qqrv", + "@Dbtables@TStoredProc@PSGetParams$qqrv", + "@Dbtables@TStoredProc@PSGetTableName$qqrv", + "@Dbtables@TStoredProc@PSSetCommandText$qqrx17System@AnsiString", + "@Dbtables@TStoredProc@PSSetParams$qqrp10Db@TParams", + "@Dbtables@TStoredProc@ParamByName$qqrx17System@AnsiString", + "@Dbtables@TStoredProc@Prepare$qqrv", + "@Dbtables@TStoredProc@PrepareProc$qqrv", + "@Dbtables@TStoredProc@ReadParamData$qqrp15Classes@TReader", + "@Dbtables@TStoredProc@SetDBFlag$qqrio", + "@Dbtables@TStoredProc@SetOverLoad$qqrus", + "@Dbtables@TStoredProc@SetParamsList$qqrp10Db@TParams", + "@Dbtables@TStoredProc@SetPrepare$qqro", + "@Dbtables@TStoredProc@SetPrepared$qqro", + "@Dbtables@TStoredProc@SetProcName$qqrx17System@AnsiString", + "@Dbtables@TStoredProc@SetServerParams$qqrv", + "@Dbtables@TStoredProc@UnPrepare$qqrv", + "@Dbtables@TStoredProc@WriteParamData$qqrp15Classes@TWriter", + "@Dbtables@TTable@", + "@Dbtables@TTable@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TTable@$bdtr$qqrv", + "@Dbtables@TTable@AddIndex$qqrx17System@AnsiStringt143System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%t1", + "@Dbtables@TTable@ApplyRange$qqrv", + "@Dbtables@TTable@BatchMove$qqrp20Dbtables@TBDEDataSet19Dbtables@TBatchMode", + "@Dbtables@TTable@CancelRange$qqrv", + "@Dbtables@TTable@CheckMasterRange$qqrv", + "@Dbtables@TTable@CloseIndexFile$qqrx17System@AnsiString", + "@Dbtables@TTable@CreateHandle$qqrv", + "@Dbtables@TTable@CreateTable$qqrv", + "@Dbtables@TTable@DataEvent$qqr13Db@TDataEventi", + "@Dbtables@TTable@DecodeIndexDesc$qqrrx11Bde@IDXDescr17System@AnsiStringt2t2t2r43System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Dbtables@TTable@DefChanged$qqrp14System@TObject", + "@Dbtables@TTable@DeleteIndex$qqrx17System@AnsiString", + "@Dbtables@TTable@DeleteTable$qqrv", + "@Dbtables@TTable@DestroyHandle$qqrv", + "@Dbtables@TTable@DestroyLookupCursor$qqrv", + "@Dbtables@TTable@DoOnNewRecord$qqrv", + "@Dbtables@TTable@EditKey$qqrv", + "@Dbtables@TTable@EditRangeEnd$qqrv", + "@Dbtables@TTable@EditRangeStart$qqrv", + "@Dbtables@TTable@EmptyTable$qqrv", + "@Dbtables@TTable@EncodeFieldDesc$qqrr11Bde@FLDDescx17System@AnsiString13Db@TFieldTypeii", + "@Dbtables@TTable@EncodeIndexDesc$qqrr11Bde@IDXDescx17System@AnsiStringt243System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%t2", + "@Dbtables@TTable@FieldDefsStored$qqrv", + "@Dbtables@TTable@FindKey$qqrpx14System@TVarRecxi", + "@Dbtables@TTable@FindNearest$qqrpx14System@TVarRecxi", + "@Dbtables@TTable@GetCanModify$qqrv", + "@Dbtables@TTable@GetDataSource$qqrv", + "@Dbtables@TTable@GetDetailLinkFields$qqrp13Classes@TListt1", + "@Dbtables@TTable@GetDriverTypeName$qqrpc", + "@Dbtables@TTable@GetExists$qqrv", + "@Dbtables@TTable@GetFileName$qqrv", + "@Dbtables@TTable@GetHandle$qqrx17System@AnsiStringt1", + "@Dbtables@TTable@GetIndexFieldNames$qqrv", + "@Dbtables@TTable@GetIndexName$qqrv", + "@Dbtables@TTable@GetIndexNames$qqrp16Classes@TStrings", + "@Dbtables@TTable@GetIndexParams$qqrx17System@AnsiStringor17System@AnsiStringt3", + "@Dbtables@TTable@GetLanguageDriverName$qqrv", + "@Dbtables@TTable@GetLookupCursor$qqrx17System@AnsiStringo", + "@Dbtables@TTable@GetMasterFields$qqrv", + "@Dbtables@TTable@GetTableLevel$qqrv", + "@Dbtables@TTable@GetTableType$qqrv", + "@Dbtables@TTable@GetTableTypeName$qqrv", + "@Dbtables@TTable@GotoCurrent$qqrp15Dbtables@TTable", + "@Dbtables@TTable@GotoKey$qqrv", + "@Dbtables@TTable@GotoNearest$qqrv", + "@Dbtables@TTable@IndexDefsStored$qqrv", + "@Dbtables@TTable@InitFieldDefs$qqrv", + "@Dbtables@TTable@IsProductionIndex$qqrx17System@AnsiString", + "@Dbtables@TTable@IsXBaseTable$qqrv", + "@Dbtables@TTable@LockTable$qqr18Dbtables@TLockType", + "@Dbtables@TTable@MasterChanged$qqrp14System@TObject", + "@Dbtables@TTable@MasterDisabled$qqrp14System@TObject", + "@Dbtables@TTable@NativeTableName$qqrv", + "@Dbtables@TTable@OpenIndexFile$qqrx17System@AnsiString", + "@Dbtables@TTable@PSGetDefaultOrder$qqrv", + "@Dbtables@TTable@PSGetIndexDefs$qqr43System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Dbtables@TTable@PSGetKeyFields$qqrv", + "@Dbtables@TTable@PSGetTableName$qqrv", + "@Dbtables@TTable@PSSetCommandText$qqrx17System@AnsiString", + "@Dbtables@TTable@PSSetParams$qqrp10Db@TParams", + "@Dbtables@TTable@PrepareCursor$qqrv", + "@Dbtables@TTable@RenameTable$qqrx17System@AnsiString", + "@Dbtables@TTable@RestoreLocale$qqrpv", + "@Dbtables@TTable@SetDataSource$qqrp14Db@TDataSource", + "@Dbtables@TTable@SetExclusive$qqro", + "@Dbtables@TTable@SetIndex$qqrx17System@AnsiStringo", + "@Dbtables@TTable@SetIndexDefs$qqrp13Db@TIndexDefs", + "@Dbtables@TTable@SetIndexFieldNames$qqrx17System@AnsiString", + "@Dbtables@TTable@SetIndexFiles$qqrp16Classes@TStrings", + "@Dbtables@TTable@SetIndexName$qqrx17System@AnsiString", + "@Dbtables@TTable@SetKey$qqrv", + "@Dbtables@TTable@SetMasterFields$qqrx17System@AnsiString", + "@Dbtables@TTable@SetRange$qqrpx14System@TVarRecxit1xi", + "@Dbtables@TTable@SetRangeEnd$qqrv", + "@Dbtables@TTable@SetRangeStart$qqrv", + "@Dbtables@TTable@SetReadOnly$qqro", + "@Dbtables@TTable@SetTableLock$qqr18Dbtables@TLockTypeo", + "@Dbtables@TTable@SetTableName$qqrx17System@AnsiString", + "@Dbtables@TTable@SetTableType$qqr19Dbtables@TTableType", + "@Dbtables@TTable@SetTempLocale$qqro", + "@Dbtables@TTable@UnlockTable$qqr18Dbtables@TLockType", + "@Dbtables@TTable@UpdateIndexDefs$qqrv", + "@Dbtables@TTable@UpdateRange$qqrv", + "@Dbtables@TUpdateSQL@", + "@Dbtables@TUpdateSQL@$bctr$qqrp18Classes@TComponent", + "@Dbtables@TUpdateSQL@$bdtr$qqrv", + "@Dbtables@TUpdateSQL@Apply$qqr14Db@TUpdateKind", + "@Dbtables@TUpdateSQL@ExecSQL$qqr14Db@TUpdateKind", + "@Dbtables@TUpdateSQL@GetDataSet$qqrv", + "@Dbtables@TUpdateSQL@GetQuery$qqr14Db@TUpdateKind", + "@Dbtables@TUpdateSQL@GetSQL$qqr14Db@TUpdateKind", + "@Dbtables@TUpdateSQL@GetSQLIndex$qqri", + "@Dbtables@TUpdateSQL@SQLChanged$qqrp14System@TObject", + "@Dbtables@TUpdateSQL@SetDataSet$qqrp11Db@TDataSet", + "@Dbtables@TUpdateSQL@SetParams$qqr14Db@TUpdateKind", + "@Dbtables@TUpdateSQL@SetSQL$qqr14Db@TUpdateKindp16Classes@TStrings", + "@Dbtables@TUpdateSQL@SetSQLIndex$qqrip16Classes@TStrings", + "@Dbtables@initialization$qqrv", + "@GetPackageInfoTable", + "@Smintf@Class_SMClient", + "@Smintf@Finalization$qqrv", + "@Smintf@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 990562289, + "characteristics": "0xA18E" + }, + "strings_total": 3841, + "domain_strings": [ + "lkupPRIVATE", + "fnROUND", + "PrivateDirT", + "Transliterate", + ".DBF", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Db@TDataSet@ActivateBuffers$qqrv", + "@Db@TIndexDefs@Update$qqrv", + "@Db@TFieldDefs@Update$qqrv", + "@Bde@DbiActivateFilter$qqsp12Bde@_hDBIObjt1", + "@Bde@DbiDeactivateFilter$qqsp12Bde@_hDBIObjt1", + "@Bde@DbiFormFullName$qqsp12Bde@_hDBIObjpct2t2", + "@Bde@DbiSetPrivateDir$qqspc", + "@Bdeconst@_SSQLNotGenerated", + "@Dbtables@TBDEDataSet@ActivateFilters$qqrv", + "@Dbtables@TBDEDataSet@DeactivateFilters$qqrv", + "@Dbtables@TBDEDataSet@FetchAll$qqrv", + "@Dbtables@TDBDataSet@SetDBFlag$qqrio", + "@Dbtables@TIndexFiles@Delete$qqri", + "@Dbtables@TIndexFiles@Insert$qqrix17System@AnsiString", + "@Dbtables@TQuery@SetDBFlag$qqrio", + "@Dbtables@TSession@GetPrivateDir$qqrv", + "@Dbtables@TSession@SetPrivateDir$qqrx17System@AnsiString", + "@Dbtables@TStoredProc@SetDBFlag$qqrio", + "Not in cached update mode", + "Untitled Application$Cannot update, %s is not owned by %s", + "Update failed7Must select at least one key field and one update field1Update SQL statements not generated, exit anyway?&Unable to determine field names for %sFThe transaction isolation level must be dirty read for local databases" + ] + }, + "BORLNDMM.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 14880, + "raw_off": 1024, + "raw_size": 15360 + }, + { + "name": "DATA", + "va": 20480, + "vsize": 188, + "raw_off": 16384, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 24576, + "vsize": 1937, + "raw_off": 16896, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 28672, + "vsize": 1114, + "raw_off": 16896, + "raw_size": 1536 + }, + { + "name": ".edata", + "va": 32768, + "vsize": 402, + "raw_off": 18432, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 36864, + "vsize": 1196, + "raw_off": 18944, + "raw_size": 1536 + }, + { + "name": ".rsrc", + "va": 40960, + "vsize": 1536, + "raw_off": 20480, + "raw_size": 1536 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "kernel32.dll", + "kernel32.dll", + "kernel32.dll" + ], + "exports": [ + "@Borlndmm@HeapAddRef$qqrv", + "@Borlndmm@HeapRelease$qqrv", + "@Borlndmm@SysFreeMem$qqrpv", + "@Borlndmm@SysGetMem$qqri", + "@Borlndmm@SysReallocMem$qqrpvi", + "DumpBlocks", + "FreeMemory", + "GetAllocMemCount", + "GetAllocMemSize", + "GetHeapStatus", + "GetMemory", + "ReallocMemory" + ], + "timestamp": 990562287, + "characteristics": "0xA18E" + }, + "strings_total": 249, + "domain_strings": [] + }, + "CHARSET.CVB": { + "format": "BTCV", + "detail": { + "header": "BTCV##BaseCV\u0000\u0000\u0000\u0000\u0000\u0002�\f\u0000\u0000\u0000\u0000\u0000\u0000 \u0003�\u0000A" + }, + "strings": [ + "BTCV##BaseCV", + "L0K0N0M0P0O0R0Q0T0S0V0U0X0W0Z0Y0\\0[0^0]0`0_0b0a0e0d0g0f0i0h0p0o0q0o0s0r0t0r0v0u0w0u0y0x0z0x0|0{0}0{0", + "0BTCVD0437", + "%$%a%b%V%U%c%Q%W%]%\\%[%", + "%4%,%", + "%<%^%_%Z%T%i%f%`%P%l%g%h%d%e%Y%X%R%S%k%j%", + ")\"a\"", + "e\"d\" #!#", + "BTCVD0437", + "BTCVD1737", + "e\"d\"", + "BTCVOG708", + "V%U%c%Q%W%]%", + "\\%[%", + "4%,%", + "%<%^%_%Z%T%i%", + "%`%P%l%g%h%d%e%Y%", + "X%R%S%", + "BTCVOH720", + "BTCVO0850", + "c%Q%W%]%", + "Z%T%i%f%`%P%l%", + "BTCVO2852", + "c%Q%W%]%{", + "BTCVO5855", + "%$%E", + "c%Q%W%]%9", + "%<%:", + "BTCVO7857", + "BTCVOA860", + "BTCVOB861", + "BTCVOC862", + "BTCVOD863", + "BTCVOF865", + "BTCVD2866", + "BTCVD3867", + "BTCVD4868", + "BTCVDA874", + "BTCVDB895", + "BTCVI188591", + "BTCVI288592", + "BTCVI388593", + "BTCVI488594", + "BTCVI588595", + "BTCVI688596", + "BTCVI788597", + "BTCVI888598", + "BTCVI988599", + "BTCVR0ROMAN8", + "5 '\"", + "BTCVW01250", + " & ! ", + "BTCVW11251", + "BTCVW21252", + "BTCVW31253", + "BTCVW41254", + "BTCVW51255", + "BTCVW61256", + "BTCVW71257", + "BTCVWA932", + "BTCVWB936", + "BTCVWC938", + "BTCVWD949", + "BTCVWE950", + " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}", + "진4%,%", + "착측퀑툴폭혐j%", + " 뽼BTCVW51255", + " 숚BTCVW61256" + ] + }, + "CPMARC.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 102400, + "raw_off": 1536, + "raw_size": 101888 + }, + { + "name": ".data", + "va": 106496, + "vsize": 36864, + "raw_off": 103424, + "raw_size": 18944 + }, + { + "name": ".tls", + "va": 143360, + "vsize": 4096, + "raw_off": 122368, + "raw_size": 512 + }, + { + "name": ".idata", + "va": 147456, + "vsize": 4096, + "raw_off": 122880, + "raw_size": 3072 + }, + { + "name": ".edata", + "va": 151552, + "vsize": 4096, + "raw_off": 125952, + "raw_size": 512 + }, + { + "name": ".rsrc", + "va": 155648, + "vsize": 4096, + "raw_off": 126464, + "raw_size": 1536 + }, + { + "name": ".reloc", + "va": 159744, + "vsize": 4096, + "raw_off": 128000, + "raw_size": 4096 + } + ], + "imports": [ + "KERNEL32.DLL", + "SHELL32.DLL", + "USER32.DLL" + ], + "exports": [ + "GetZipDllPrivVersion", + "GetZipDllVersion", + "ZipDllExec", + "___CPPdebugHook" + ], + "timestamp": 972094194, + "characteristics": "0xA38E" + }, + "strings_total": 1511, + "domain_strings": [ + "Please get an update", + "action = UPDATE", + "Can't adjust class address (no base class entry found)", + "!\"Can't adjust class address (no base class entry found)\"", + "PrivateBuild" + ] + }, + "CPMUNA.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 86016, + "raw_off": 1536, + "raw_size": 84992 + }, + { + "name": ".data", + "va": 90112, + "vsize": 36864, + "raw_off": 86528, + "raw_size": 21504 + }, + { + "name": ".tls", + "va": 126976, + "vsize": 4096, + "raw_off": 108032, + "raw_size": 512 + }, + { + "name": ".idata", + "va": 131072, + "vsize": 4096, + "raw_off": 108544, + "raw_size": 2560 + }, + { + "name": ".edata", + "va": 135168, + "vsize": 4096, + "raw_off": 111104, + "raw_size": 512 + }, + { + "name": ".rsrc", + "va": 139264, + "vsize": 4096, + "raw_off": 111616, + "raw_size": 2560 + }, + { + "name": ".reloc", + "va": 143360, + "vsize": 4096, + "raw_off": 114176, + "raw_size": 3584 + } + ], + "imports": [ + "KERNEL32.DLL", + "SHELL32.DLL", + "USER32.DLL" + ], + "exports": [ + "GetUnzDllPrivVersion", + "GetUnzDllVersion", + "UnzDllExec", + "___CPPdebugHook" + ], + "timestamp": 977328050, + "characteristics": "0xA38E" + }, + "strings_total": 1392, + "domain_strings": [ + "Please get an update", + "Can't adjust class address (no base class entry found)", + "!\"Can't adjust class address (no base class entry found)\"", + "PrivateBuild" + ] + }, + "DBRTL60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 145820, + "raw_off": 1024, + "raw_size": 145920 + }, + { + "name": "DATA", + "va": 151552, + "vsize": 1216, + "raw_off": 146944, + "raw_size": 1536 + }, + { + "name": "BSS", + "va": 155648, + "vsize": 81, + "raw_off": 148480, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 159744, + "vsize": 20608, + "raw_off": 148480, + "raw_size": 20992 + }, + { + "name": ".edata", + "va": 184320, + "vsize": 63393, + "raw_off": 169472, + "raw_size": 63488 + }, + { + "name": ".rdata", + "va": 249856, + "vsize": 33, + "raw_off": 232960, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 253952, + "vsize": 12680, + "raw_off": 233472, + "raw_size": 12800 + }, + { + "name": ".rsrc", + "va": 270336, + "vsize": 8192, + "raw_off": 246272, + "raw_size": 8192 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl" + ], + "exports": [ + "@$xp$10Db@TFields", + "@$xp$10Db@TParams", + "@$xp$11Db@TDataSet", + "@$xp$11Db@TGetMode", + "@$xp$12Db@IDBScreen", + "@$xp$12Db@TADTField", + "@$xp$12Db@TBCDField", + "@$xp$12Db@TBlobType", + "@$xp$12Db@TDataLink", + "@$xp$12Db@TFieldDef", + "@$xp$12Db@TFlatList", + "@$xp$12Db@TIndexDef", + "@$xp$13Db@IDBSession", + "@$xp$13Db@TBlobField", + "@$xp$13Db@TDataEvent", + "@$xp$13Db@TDateField", + "@$xp$13Db@TFieldDefs", + "@$xp$13Db@TFieldKind", + "@$xp$13Db@TFieldList", + "@$xp$13Db@TFieldType", + "@$xp$13Db@TGetResult", + "@$xp$13Db@TGuidField", + "@$xp$13Db@TIndexDefs", + "@$xp$13Db@TMemoField", + "@$xp$13Db@TNamedItem", + "@$xp$13Db@TParamType", + "@$xp$13Db@TTimeField", + "@$xp$13Db@TWordField", + "@$xp$14Db@TArrayField", + "@$xp$14Db@TBufferList", + "@$xp$14Db@TBytesField", + "@$xp$14Db@TDataAction", + "@$xp$14Db@TDataSource", + "@$xp$14Db@TFieldChars", + "@$xp$14Db@TFieldKinds", + "@$xp$14Db@TFloatField", + "@$xp$14Db@TLoginEvent", + "@$xp$14Db@TLookupList", + "@$xp$14Db@TParamTypes", + "@$xp$14Db@TResyncMode", + "@$xp$14Db@TUpdateKind", + "@$xp$14Db@TUpdateMode", + "@$xp$15Db@EUpdateError", + "@$xp$15Db@TBinaryField", + "@$xp$15Db@TFMTBCDField", + "@$xp$15Db@TGroupPosInd", + "@$xp$15Db@TIndexOption", + "@$xp$15Db@TObjectField", + "@$xp$15Db@TStringField", + "@$xp$16Db@TAutoIncField", + "@$xp$16Db@TBlobByteData", + "@$xp$16Db@TBookmarkFlag", + "@$xp$16Db@TBooleanField", + "@$xp$16Db@TDataSetField", + "@$xp$16Db@TDataSetState", + "@$xp$16Db@TFieldDefList", + "@$xp$16Db@TFilterOption", + "@$xp$16Db@TGraphicField", + "@$xp$16Db@TGroupPosInds", + "@$xp$16Db@TIndexOptions", + "@$xp$16Db@TIntegerField", + "@$xp$16Db@TLocateOption", + "@$xp$16Db@TNumericField", + "@$xp$16Db@TProviderFlag", + "@$xp$16Db@TUpdateAction", + "@$xp$16Db@TUpdateStatus", + "@$xp$16Db@TVariantField", + "@$xp$17Db@EDatabaseError", + "@$xp$17Db@IDBApplication", + "@$xp$17Db@TCurrencyField", + "@$xp$17Db@TDataOperation", + "@$xp$17Db@TDateTimeAlias", + "@$xp$17Db@TDateTimeField", + "@$xp$17Db@TDefCollection", + "@$xp$17Db@TFilterOptions", + "@$xp$17Db@TLargeintField", + "@$xp$17Db@TLocateOptions", + "@$xp$17Db@TProviderFlags", + "@$xp$17Db@TSmallintField", + "@$xp$17Db@TVarBytesField", + "@$xp$18Db@TAggregateField", + "@$xp$18Db@TBlobStreamMode", + "@$xp$18Db@TDBScreenCursor", + "@$xp$18Db@TDetailDataLink", + "@$xp$18Db@TFieldAttribute", + "@$xp$18Db@TIDispatchField", + "@$xp$18Db@TInterfaceField", + "@$xp$18Db@TMasterDataLink", + "@$xp$18Db@TReferenceField", + "@$xp$18Dbcommon@NODEClass", + "@$xp$18Dbcommon@TExprData", + "@$xp$18Dbcommon@TExprNode", + "@$xp$18Dbcommon@TSQLToken", + "@$xp$19Db@IProviderSupport", + "@$xp$19Db@TAutoRefreshFlag", + "@$xp$19Db@TCheckConstraint", + "@$xp$19Db@TDataChangeEvent", + "@$xp$19Db@TDataSetDesigner", + "@$xp$19Db@TDefUpdateMethod", + "@$xp$19Db@TFieldAttributes", + "@$xp$19Db@TLookupListEntry", + "@$xp$19Db@TPacketAttribute", + "@$xp$19Db@TUpdateStatusSet", + "@$xp$19Db@TWideStringField", + "@$xp$19Dbcommon@TExprToken", + "@$xp$19Dbcommon@TFieldInfo", + "@$xp$20Db@TCheckConstraints", + "@$xp$20Db@TCustomConnection", + "@$xp$20Db@TFieldNotifyEvent", + "@$xp$20Db@TUpdateErrorEvent", + "@$xp$20Dbcommon@TExprParser", + "@$xp$20Dbcommon@TFilterExpr", + "@$xp$20Fmtbcd@EBcdException", + "@$xp$21Db@TDataSetErrorEvent", + "@$xp$21Db@TFieldGetTextEvent", + "@$xp$21Db@TFieldSetTextEvent", + "@$xp$21Db@TFilterRecordEvent", + "@$xp$21Db@TSQLTimeStampField", + "@$xp$21Db@TUpdateRecordEvent", + "@$xp$21Db@TUpdateRecordTypes", + "@$xp$21Dbcommon@TCANOperator", + "@$xp$22Db@TConnectChangeEvent", + "@$xp$22Db@TDataSetNotifyEvent", + "@$xp$22Dbcommon@TExprNodeKind", + "@$xp$22Dbcommon@TParserOption", + "@$xp$23Dbcommon@TExprScopeKind", + "@$xp$23Dbcommon@TParserOptions", + "@$xp$28Fmtbcd@EBcdOverflowException", + "@$xp$8Db@DB__3", + "@$xp$9Db@DB__06", + "@$xp$9Db@DB__26", + "@$xp$9Db@DB__82", + "@$xp$9Db@TField", + "@$xp$9Db@TParam", + "@Db@BuffersEqual$qqrpvt1i", + "@Db@DBApplication", + "@Db@DBScreen", + "@Db@DatabaseError$qqrx17System@AnsiStringp18Classes@TComponent", + "@Db@DatabaseErrorFmt$qqrx17System@AnsiStringpx14System@TVarRecxip18Classes@TComponent", + "@Db@DefaultFieldClasses", + "@Db@DisposeMem$qqrpvi", + "@Db@EDatabaseError@", + "@Db@EUpdateError@", + "@Db@EUpdateError@$bctr$qqr17System@AnsiStringt1iip18Sysutils@Exception", + "@Db@EUpdateError@$bdtr$qqrv", + "@Db@ExtractFieldName$qqrx17System@AnsiStringri", + "@Db@FieldTypeNames", + "@Db@FieldTypeVarMap", + "@Db@Finalization$qqrv", + "@Db@GetFieldProperty$qqrp11Db@TDataSetp18Classes@TComponentx17System@AnsiString", + "@Db@LoginDialogExProc", + "@Db@LoginDialogProc", + "@Db@PasswordDialog", + "@Db@RegisterFields$qqrpp17System@TMetaClassxi", + "@Db@RegisterFieldsProc", + "@Db@RemoteLoginDialogProc", + "@Db@ScreenCursorProc", + "@Db@TADTField@", + "@Db@TADTField@$bctr$qqrp18Classes@TComponent", + "@Db@TADTField@FieldsChanged$qqrp14System@TObject", + "@Db@TADTField@GetSize$qqrv", + "@Db@TAggregateField@", + "@Db@TAggregateField@$bctr$qqrp18Classes@TComponent", + "@Db@TAggregateField@GetAsString$qqrv", + "@Db@TAggregateField@GetAsVariant$qqrv", + "@Db@TAggregateField@GetHandle$qqrv", + "@Db@TAggregateField@GetText$qqrr17System@AnsiStringo", + "@Db@TAggregateField@Reset$qqrv", + "@Db@TAggregateField@SetActive$qqro", + "@Db@TAggregateField@SetCurrency$qqro", + "@Db@TAggregateField@SetDisplayFormat$qqrx17System@AnsiString", + "@Db@TAggregateField@SetExpression$qqr17System@AnsiString", + "@Db@TAggregateField@SetGroupingLevel$qqri", + "@Db@TAggregateField@SetHandle$qqrpv", + "@Db@TAggregateField@SetIndexName$qqr17System@AnsiString", + "@Db@TAggregateField@SetPrecision$qqri", + "@Db@TArrayField@", + "@Db@TArrayField@$bctr$qqrp18Classes@TComponent", + "@Db@TArrayField@Bind$qqro", + "@Db@TArrayField@SetSize$qqri", + "@Db@TAutoIncField@", + "@Db@TAutoIncField@$bctr$qqrp18Classes@TComponent", + "@Db@TBCDField@", + "@Db@TBCDField@$bctr$qqrp18Classes@TComponent", + "@Db@TBCDField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TBCDField@CopyData$qqrpvt1", + "@Db@TBCDField@GetAsBCD$qqrv", + "@Db@TBCDField@GetAsCurrency$qqrv", + "@Db@TBCDField@GetAsFloat$qqrv", + "@Db@TBCDField@GetAsInteger$qqrv", + "@Db@TBCDField@GetAsString$qqrv", + "@Db@TBCDField@GetAsVariant$qqrv", + "@Db@TBCDField@GetDataSize$qqrv", + "@Db@TBCDField@GetDefaultWidth$qqrv", + "@Db@TBCDField@GetText$qqrr17System@AnsiStringo", + "@Db@TBCDField@GetValue$qqrr15System@Currency", + "@Db@TBCDField@SetAsBCD$qqrrx11Fmtbcd@TBcd", + "@Db@TBCDField@SetAsCurrency$qqr15System@Currency", + "@Db@TBCDField@SetAsFloat$qqrd", + "@Db@TBCDField@SetAsInteger$qqri", + "@Db@TBCDField@SetAsString$qqrx17System@AnsiString", + "@Db@TBCDField@SetCurrency$qqro", + "@Db@TBCDField@SetMaxValue$qqr15System@Currency", + "@Db@TBCDField@SetMinValue$qqr15System@Currency", + "@Db@TBCDField@SetPrecision$qqri", + "@Db@TBCDField@SetVarValue$qqrrx14System@Variant", + "@Db@TBCDField@UpdateCheckRange$qqrv", + "@Db@TBinaryField@", + "@Db@TBinaryField@$bctr$qqrp18Classes@TComponent", + "@Db@TBinaryField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TBinaryField@CopyData$qqrpvt1", + "@Db@TBinaryField@GetAsString$qqrv", + "@Db@TBinaryField@GetAsVariant$qqrv", + "@Db@TBinaryField@GetText$qqrr17System@AnsiStringo", + "@Db@TBinaryField@SetAsString$qqrx17System@AnsiString", + "@Db@TBinaryField@SetText$qqrx17System@AnsiString", + "@Db@TBinaryField@SetVarValue$qqrrx14System@Variant", + "@Db@TBlobField@", + "@Db@TBlobField@$bctr$qqrp18Classes@TComponent", + "@Db@TBlobField@Assign$qqrp19Classes@TPersistent", + "@Db@TBlobField@AssignTo$qqrp19Classes@TPersistent", + "@Db@TBlobField@Clear$qqrv", + "@Db@TBlobField@FreeBuffers$qqrv", + "@Db@TBlobField@GetAsString$qqrv", + "@Db@TBlobField@GetAsVariant$qqrv", + "@Db@TBlobField@GetBlobSize$qqrv", + "@Db@TBlobField@GetBlobType$qqrv", + "@Db@TBlobField@GetClassDesc$qqrv", + "@Db@TBlobField@GetIsNull$qqrv", + "@Db@TBlobField@GetModified$qqrv", + "@Db@TBlobField@GetText$qqrr17System@AnsiStringo", + "@Db@TBlobField@IsBlob$qqrp17System@TMetaClass", + "@Db@TBlobField@LoadFromBlob$qqrp13Db@TBlobField", + "@Db@TBlobField@LoadFromFile$qqrx17System@AnsiString", + "@Db@TBlobField@LoadFromStream$qqrp15Classes@TStream", + "@Db@TBlobField@LoadFromStreamPersist$qqr50System@%DelphiInterface$t22Classes@IStreamPersist%", + "@Db@TBlobField@LoadFromStrings$qqrp16Classes@TStrings", + "@Db@TBlobField@SaveToFile$qqrx17System@AnsiString", + "@Db@TBlobField@SaveToStream$qqrp15Classes@TStream", + "@Db@TBlobField@SaveToStreamPersist$qqr50System@%DelphiInterface$t22Classes@IStreamPersist%", + "@Db@TBlobField@SaveToStrings$qqrp16Classes@TStrings", + "@Db@TBlobField@SetAsString$qqrx17System@AnsiString", + "@Db@TBlobField@SetBlobType$qqr13Db@TFieldType", + "@Db@TBlobField@SetFieldType$qqr13Db@TFieldType", + "@Db@TBlobField@SetModified$qqro", + "@Db@TBlobField@SetText$qqrx17System@AnsiString", + "@Db@TBlobField@SetVarValue$qqrrx14System@Variant", + "@Db@TBlobField@SupportsStreamPersist$qqrpx19Classes@TPersistentr50System@%DelphiInterface$t22Classes@IStreamPersist%", + "@Db@TBooleanField@", + "@Db@TBooleanField@$bctr$qqrp18Classes@TComponent", + "@Db@TBooleanField@GetAsBoolean$qqrv", + "@Db@TBooleanField@GetAsString$qqrv", + "@Db@TBooleanField@GetAsVariant$qqrv", + "@Db@TBooleanField@GetDataSize$qqrv", + "@Db@TBooleanField@GetDefaultWidth$qqrv", + "@Db@TBooleanField@LoadTextValues$qqrv", + "@Db@TBooleanField@SetAsBoolean$qqro", + "@Db@TBooleanField@SetAsString$qqrx17System@AnsiString", + "@Db@TBooleanField@SetDisplayValues$qqrx17System@AnsiString", + "@Db@TBooleanField@SetVarValue$qqrrx14System@Variant", + "@Db@TBytesField@", + "@Db@TBytesField@$bctr$qqrp18Classes@TComponent", + "@Db@TBytesField@GetDataSize$qqrv", + "@Db@TCheckConstraint@", + "@Db@TCheckConstraint@Assign$qqrp19Classes@TPersistent", + "@Db@TCheckConstraint@GetDisplayName$qqrv", + "@Db@TCheckConstraint@SetCustomConstraint$qqrx17System@AnsiString", + "@Db@TCheckConstraint@SetErrorMessage$qqrx17System@AnsiString", + "@Db@TCheckConstraint@SetImportedConstraint$qqrx17System@AnsiString", + "@Db@TCheckConstraints@", + "@Db@TCheckConstraints@$bctr$qqrp19Classes@TPersistent", + "@Db@TCheckConstraints@Add$qqrv", + "@Db@TCheckConstraints@GetItem$qqri", + "@Db@TCheckConstraints@GetOwner$qqrv", + "@Db@TCheckConstraints@SetItem$qqrip19Db@TCheckConstraint", + "@Db@TCurrencyField@", + "@Db@TCurrencyField@$bctr$qqrp18Classes@TComponent", + "@Db@TCustomConnection@", + "@Db@TCustomConnection@$bctr$qqrp18Classes@TComponent", + "@Db@TCustomConnection@$bdtr$qqrv", + "@Db@TCustomConnection@Close$qqrv", + "@Db@TCustomConnection@DoConnect$qqrv", + "@Db@TCustomConnection@DoDisconnect$qqrv", + "@Db@TCustomConnection@GetConnected$qqrv", + "@Db@TCustomConnection@GetDataSet$qqri", + "@Db@TCustomConnection@GetDataSetCount$qqrv", + "@Db@TCustomConnection@Loaded$qqrv", + "@Db@TCustomConnection@Open$qqrv", + "@Db@TCustomConnection@RegisterClient$qqrp14System@TObjectynpqqrp14System@TObjecto$v", + "@Db@TCustomConnection@SendConnectEvent$qqro", + "@Db@TCustomConnection@SetConnected$qqro", + "@Db@TCustomConnection@UnRegisterClient$qqrp14System@TObject", + "@Db@TDataLink@", + "@Db@TDataLink@$bctr$qqrv", + "@Db@TDataLink@$bdtr$qqrv", + "@Db@TDataLink@ActiveChanged$qqrv", + "@Db@TDataLink@CheckBrowseMode$qqrv", + "@Db@TDataLink@DataEvent$qqr13Db@TDataEventi", + "@Db@TDataLink@DataSetChanged$qqrv", + "@Db@TDataLink@DataSetScrolled$qqri", + "@Db@TDataLink@Edit$qqrv", + "@Db@TDataLink@EditingChanged$qqrv", + "@Db@TDataLink@ExecuteAction$qqrp20Classes@TBasicAction", + "@Db@TDataLink@FocusControl$qqrpp9Db@TField", + "@Db@TDataLink@GetActiveRecord$qqrv", + "@Db@TDataLink@GetBOF$qqrv", + "@Db@TDataLink@GetBufferCount$qqrv", + "@Db@TDataLink@GetDataSet$qqrv", + "@Db@TDataLink@GetEOF$qqrv", + "@Db@TDataLink@GetRecordCount$qqrv", + "@Db@TDataLink@LayoutChanged$qqrv", + "@Db@TDataLink@MoveBy$qqri", + "@Db@TDataLink@RecordChanged$qqrp9Db@TField", + "@Db@TDataLink@SetActive$qqro", + "@Db@TDataLink@SetActiveRecord$qqri", + "@Db@TDataLink@SetBufferCount$qqri", + "@Db@TDataLink@SetDataSource$qqrp14Db@TDataSource", + "@Db@TDataLink@SetEditing$qqro", + "@Db@TDataLink@SetReadOnly$qqro", + "@Db@TDataLink@UpdateAction$qqrp20Classes@TBasicAction", + "@Db@TDataLink@UpdateData$qqrv", + "@Db@TDataLink@UpdateRange$qqrv", + "@Db@TDataLink@UpdateRecord$qqrv", + "@Db@TDataLink@UpdateState$qqrv", + "@Db@TDataSet@", + "@Db@TDataSet@$bctr$qqrp18Classes@TComponent", + "@Db@TDataSet@$bdtr$qqrv", + "@Db@TDataSet@ActivateBuffers$qqrv", + "@Db@TDataSet@ActiveBuffer$qqrv", + "@Db@TDataSet@AddDataSource$qqrp14Db@TDataSource", + "@Db@TDataSet@AddRecord$qqrpx14System@TVarRecxio", + "@Db@TDataSet@AllocRecordBuffer$qqrv", + "@Db@TDataSet@Append$qqrv", + "@Db@TDataSet@AppendRecord$qqrpx14System@TVarRecxi", + "@Db@TDataSet@BeginInsertAppend$qqrv", + "@Db@TDataSet@BindFields$qqro", + "@Db@TDataSet@BlockReadNext$qqrv", + "@Db@TDataSet@BookmarkAvailable$qqrv", + "@Db@TDataSet@BookmarkValid$qqrpv", + "@Db@TDataSet@CalculateFields$qqrpc", + "@Db@TDataSet@Cancel$qqrv", + "@Db@TDataSet@CheckActive$qqrv", + "@Db@TDataSet@CheckBiDirectional$qqrv", + "@Db@TDataSet@CheckBrowseMode$qqrv", + "@Db@TDataSet@CheckCanModify$qqrv", + "@Db@TDataSet@CheckFieldCompatibility$qqrp9Db@TFieldp12Db@TFieldDef", + "@Db@TDataSet@CheckInactive$qqrv", + "@Db@TDataSet@CheckOperation$qqrynpqqrv$vynpqqrp11Db@TDataSetp17Db@EDatabaseErrorr14Db@TDataAction$v", + "@Db@TDataSet@CheckParentState$qqrv", + "@Db@TDataSet@CheckRequiredFields$qqrv", + "@Db@TDataSet@ClearBuffers$qqrv", + "@Db@TDataSet@ClearCalcFields$qqrpc", + "@Db@TDataSet@ClearFields$qqrv", + "@Db@TDataSet@Close$qqrv", + "@Db@TDataSet@CloseBlob$qqrp9Db@TField", + "@Db@TDataSet@CloseCursor$qqrv", + "@Db@TDataSet@CompareBookmarks$qqrpvt1", + "@Db@TDataSet@ControlsDisabled$qqrv", + "@Db@TDataSet@CreateBlobStream$qqrp9Db@TField18Db@TBlobStreamMode", + "@Db@TDataSet@CreateFields$qqrv", + "@Db@TDataSet@CreateNestedDataSet$qqrp16Db@TDataSetField", + "@Db@TDataSet@CursorPosChanged$qqrv", + "@Db@TDataSet@DataConvert$qqrp9Db@TFieldpvt2o", + "@Db@TDataSet@DataEvent$qqr13Db@TDataEventi", + "@Db@TDataSet@DefChanged$qqrp14System@TObject", + "@Db@TDataSet@Delete$qqrv", + "@Db@TDataSet@DestroyFields$qqrv", + "@Db@TDataSet@DisableControls$qqrv", + "@Db@TDataSet@DoAfterCancel$qqrv", + "@Db@TDataSet@DoAfterClose$qqrv", + "@Db@TDataSet@DoAfterDelete$qqrv", + "@Db@TDataSet@DoAfterEdit$qqrv", + "@Db@TDataSet@DoAfterInsert$qqrv", + "@Db@TDataSet@DoAfterOpen$qqrv", + "@Db@TDataSet@DoAfterPost$qqrv", + "@Db@TDataSet@DoAfterRefresh$qqrv", + "@Db@TDataSet@DoAfterScroll$qqrv", + "@Db@TDataSet@DoBeforeCancel$qqrv", + "@Db@TDataSet@DoBeforeClose$qqrv", + "@Db@TDataSet@DoBeforeDelete$qqrv", + "@Db@TDataSet@DoBeforeEdit$qqrv", + "@Db@TDataSet@DoBeforeInsert$qqrv", + "@Db@TDataSet@DoBeforeOpen$qqrv", + "@Db@TDataSet@DoBeforePost$qqrv", + "@Db@TDataSet@DoBeforeRefresh$qqrv", + "@Db@TDataSet@DoBeforeScroll$qqrv", + "@Db@TDataSet@DoInternalOpen$qqrv", + "@Db@TDataSet@DoOnCalcFields$qqrv", + "@Db@TDataSet@DoOnNewRecord$qqrv", + "@Db@TDataSet@Edit$qqrv", + "@Db@TDataSet@EnableControls$qqrv", + "@Db@TDataSet@EndInsertAppend$qqrv", + "@Db@TDataSet@FieldByName$qqrx17System@AnsiString", + "@Db@TDataSet@FieldByNumber$qqri", + "@Db@TDataSet@FindField$qqrx17System@AnsiString", + "@Db@TDataSet@FindFirst$qqrv", + "@Db@TDataSet@FindLast$qqrv", + "@Db@TDataSet@FindNext$qqrv", + "@Db@TDataSet@FindPrior$qqrv", + "@Db@TDataSet@FindRecord$qqroo", + "@Db@TDataSet@First$qqrv", + "@Db@TDataSet@FreeBookmark$qqrpv", + "@Db@TDataSet@FreeFieldBuffers$qqrv", + "@Db@TDataSet@FreeRecordBuffer$qqrrpc", + "@Db@TDataSet@GetActive$qqrv", + "@Db@TDataSet@GetAggRecordCount$qqr15Db@TGroupPosInd", + "@Db@TDataSet@GetAggregateValue$qqrp9Db@TField", + "@Db@TDataSet@GetBlobFieldData$qqrir25System@%DynamicArray$tuc%", + "@Db@TDataSet@GetBookmark$qqrv", + "@Db@TDataSet@GetBookmarkData$qqrpcpv", + "@Db@TDataSet@GetBookmarkFlag$qqrpc", + "@Db@TDataSet@GetBookmarkStr$qqrv", + "@Db@TDataSet@GetBuffer$qqri", + "@Db@TDataSet@GetCalcFields$qqrpc", + "@Db@TDataSet@GetCanModify$qqrv", + "@Db@TDataSet@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Db@TDataSet@GetCurrentRecord$qqrpc", + "@Db@TDataSet@GetDataSource$qqrv", + "@Db@TDataSet@GetDetailDataSets$qqrp13Classes@TList", + "@Db@TDataSet@GetDetailLinkFields$qqrp13Classes@TListt1", + "@Db@TDataSet@GetFieldClass$qqr13Db@TFieldType", + "@Db@TDataSet@GetFieldCount$qqrv", + "@Db@TDataSet@GetFieldData$qqripv", + "@Db@TDataSet@GetFieldData$qqrp9Db@TFieldpv", + "@Db@TDataSet@GetFieldData$qqrp9Db@TFieldpvo", + "@Db@TDataSet@GetFieldFullName$qqrp9Db@TField", + "@Db@TDataSet@GetFieldList$qqrp13Classes@TListx17System@AnsiString", + "@Db@TDataSet@GetFieldNames$qqrp16Classes@TStrings", + "@Db@TDataSet@GetFieldValue$qqrx17System@AnsiString", + "@Db@TDataSet@GetFound$qqrv", + "@Db@TDataSet@GetIndexDefs$qqrp13Db@TIndexDefs43System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Db@TDataSet@GetIsIndexField$qqrp9Db@TField", + "@Db@TDataSet@GetNestedDataSets$qqrv", + "@Db@TDataSet@GetNextRecord$qqrv", + "@Db@TDataSet@GetNextRecords$qqrv", + "@Db@TDataSet@GetPriorRecord$qqrv", + "@Db@TDataSet@GetPriorRecords$qqrv", + "@Db@TDataSet@GetRecNo$qqrv", + "@Db@TDataSet@GetRecordCount$qqrv", + "@Db@TDataSet@GetRecordSize$qqrv", + "@Db@TDataSet@GetStateFieldValue$qqr16Db@TDataSetStatep9Db@TField", + "@Db@TDataSet@GotoBookmark$qqrpv", + "@Db@TDataSet@InitFieldDefs$qqrv", + "@Db@TDataSet@InitFieldDefsFromFields$qqrv", + "@Db@TDataSet@InitRecord$qqrpc", + "@Db@TDataSet@Insert$qqrv", + "@Db@TDataSet@InsertRecord$qqrpx14System@TVarRecxi", + "@Db@TDataSet@InternalAddRecord$qqrpvo", + "@Db@TDataSet@InternalCancel$qqrv", + "@Db@TDataSet@InternalDelete$qqrv", + "@Db@TDataSet@InternalEdit$qqrv", + "@Db@TDataSet@InternalFirst$qqrv", + "@Db@TDataSet@InternalGotoBookmark$qqrpv", + "@Db@TDataSet@InternalInitRecord$qqrpc", + "@Db@TDataSet@InternalInsert$qqrv", + "@Db@TDataSet@InternalLast$qqrv", + "@Db@TDataSet@InternalPost$qqrv", + "@Db@TDataSet@InternalRefresh$qqrv", + "@Db@TDataSet@InternalSetToRecord$qqrpc", + "@Db@TDataSet@IsEmpty$qqrv", + "@Db@TDataSet@IsLinkedTo$qqrp14Db@TDataSource", + "@Db@TDataSet@IsSequenced$qqrv", + "@Db@TDataSet@Last$qqrv", + "@Db@TDataSet@Loaded$qqrv", + "@Db@TDataSet@Locate$qqrx17System@AnsiStringrx14System@Variant44System@%Set$t16Db@TLocateOption$iuc$0$iuc$1%", + "@Db@TDataSet@Lookup$qqrx17System@AnsiStringrx14System@Variantt1", + "@Db@TDataSet@MoveBuffer$qqrii", + "@Db@TDataSet@MoveBy$qqri", + "@Db@TDataSet@Next$qqrv", + "@Db@TDataSet@Open$qqrv", + "@Db@TDataSet@OpenCursor$qqro", + "@Db@TDataSet@OpenCursorComplete$qqrv", + "@Db@TDataSet@OpenParentDataSet$qqrp11Db@TDataSet", + "@Db@TDataSet@PSEndTransaction$qqro", + "@Db@TDataSet@PSExecute$qqrv", + "@Db@TDataSet@PSExecuteStatement$qqrx17System@AnsiStringp10Db@TParamspv", + "@Db@TDataSet@PSGetAttributes$qqrp13Classes@TList", + "@Db@TDataSet@PSGetDefaultOrder$qqrv", + "@Db@TDataSet@PSGetIndexDefs$qqr43System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Db@TDataSet@PSGetKeyFields$qqrv", + "@Db@TDataSet@PSGetParams$qqrv", + "@Db@TDataSet@PSGetQuoteChar$qqrv", + "@Db@TDataSet@PSGetTableName$qqrv", + "@Db@TDataSet@PSGetUpdateException$qqrp18Sysutils@Exceptionp15Db@EUpdateError", + "@Db@TDataSet@PSInTransaction$qqrv", + "@Db@TDataSet@PSIsSQLBased$qqrv", + "@Db@TDataSet@PSIsSQLSupported$qqrv", + "@Db@TDataSet@PSReset$qqrv", + "@Db@TDataSet@PSSetCommandText$qqrx17System@AnsiString", + "@Db@TDataSet@PSSetParams$qqrp10Db@TParams", + "@Db@TDataSet@PSStartTransaction$qqrv", + "@Db@TDataSet@PSUpdateRecord$qqr14Db@TUpdateKindp11Db@TDataSet", + "@Db@TDataSet@Post$qqrv", + "@Db@TDataSet@Prior$qqrv", + "@Db@TDataSet@Refresh$qqrv", + "@Db@TDataSet@RefreshInternalCalcFields$qqrpc", + "@Db@TDataSet@RemoveDataSource$qqrp14Db@TDataSource", + "@Db@TDataSet@ResetAggField$qqrp9Db@TField", + "@Db@TDataSet@RestoreState$qqrx16Db@TDataSetState", + "@Db@TDataSet@Resync$qqr36System@%Set$t9Db@DB__06$iuc$0$iuc$1%", + "@Db@TDataSet@SetActive$qqro", + "@Db@TDataSet@SetBlockReadSize$qqri", + "@Db@TDataSet@SetBookmarkData$qqrpcpv", + "@Db@TDataSet@SetBookmarkFlag$qqrpc16Db@TBookmarkFlag", + "@Db@TDataSet@SetBookmarkStr$qqrx17System@AnsiString", + "@Db@TDataSet@SetBufListSize$qqri", + "@Db@TDataSet@SetBufferCount$qqri", + "@Db@TDataSet@SetChildOrder$qqrp18Classes@TComponenti", + "@Db@TDataSet@SetConstraints$qqrp20Db@TCheckConstraints", + "@Db@TDataSet@SetCurrentRecord$qqri", + "@Db@TDataSet@SetDataSetField$qqrpx16Db@TDataSetField", + "@Db@TDataSet@SetDefaultFields$qqrxo", + "@Db@TDataSet@SetFieldData$qqrp9Db@TFieldpv", + "@Db@TDataSet@SetFieldData$qqrp9Db@TFieldpvo", + "@Db@TDataSet@SetFieldDefs$qqrp13Db@TFieldDefs", + "@Db@TDataSet@SetFieldValue$qqrx17System@AnsiStringrx14System@Variant", + "@Db@TDataSet@SetFields$qqrpx14System@TVarRecxi", + "@Db@TDataSet@SetFilterOptions$qqr44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%", + "@Db@TDataSet@SetFilterText$qqrx17System@AnsiString", + "@Db@TDataSet@SetFiltered$qqro", + "@Db@TDataSet@SetFound$qqrxo", + "@Db@TDataSet@SetModified$qqro", + "@Db@TDataSet@SetName$qqrx17System@AnsiString", + "@Db@TDataSet@SetObjectView$qqrxo", + "@Db@TDataSet@SetOnFilterRecord$qqrxynpqqrp11Db@TDataSetro$v", + "@Db@TDataSet@SetRecNo$qqri", + "@Db@TDataSet@SetSparseArrays$qqro", + "@Db@TDataSet@SetState$qqr16Db@TDataSetState", + "@Db@TDataSet@SetStateFieldValue$qqr16Db@TDataSetStatep9Db@TFieldrx14System@Variant", + "@Db@TDataSet@SetTempState$qqrx16Db@TDataSetState", + "@Db@TDataSet@SetUniDirectional$qqrxo", + "@Db@TDataSet@TempBuffer$qqrv", + "@Db@TDataSet@Translate$qqrpct1o", + "@Db@TDataSet@UpdateBufferCount$qqrv", + "@Db@TDataSet@UpdateCursorPos$qqrv", + "@Db@TDataSet@UpdateIndexDefs$qqrv", + "@Db@TDataSet@UpdateRecord$qqrv", + "@Db@TDataSet@UpdateStatus$qqrv", + "@Db@TDataSetDesigner@", + "@Db@TDataSetDesigner@$bctr$qqrp11Db@TDataSet", + "@Db@TDataSetDesigner@$bdtr$qqrv", + "@Db@TDataSetDesigner@BeginDesign$qqrv", + "@Db@TDataSetDesigner@DataEvent$qqr13Db@TDataEventi", + "@Db@TDataSetDesigner@EndDesign$qqrv", + "@Db@TDataSetField@", + "@Db@TDataSetField@$bctr$qqrp18Classes@TComponent", + "@Db@TDataSetField@$bdtr$qqrv", + "@Db@TDataSetField@AssignNestedDataSet$qqrp11Db@TDataSet", + "@Db@TDataSetField@Bind$qqro", + "@Db@TDataSetField@GetCanModify$qqrv", + "@Db@TDataSetField@GetFields$qqrv", + "@Db@TDataSetField@GetNestedDataSet$qqrv", + "@Db@TDataSetField@SetIncludeObjectField$qqro", + "@Db@TDataSource@", + "@Db@TDataSource@$bctr$qqrp18Classes@TComponent", + "@Db@TDataSource@$bdtr$qqrv", + "@Db@TDataSource@AddDataLink$qqrp12Db@TDataLink", + "@Db@TDataSource@DataEvent$qqr13Db@TDataEventi", + "@Db@TDataSource@Edit$qqrv", + "@Db@TDataSource@IsLinkedTo$qqrp11Db@TDataSet", + "@Db@TDataSource@NotifyDataLinks$qqr13Db@TDataEventi", + "@Db@TDataSource@NotifyLinkTypes$qqr13Db@TDataEventio", + "@Db@TDataSource@RemoveDataLink$qqrp12Db@TDataLink", + "@Db@TDataSource@SetDataSet$qqrp11Db@TDataSet", + "@Db@TDataSource@SetEnabled$qqro", + "@Db@TDataSource@SetState$qqr16Db@TDataSetState", + "@Db@TDataSource@UpdateState$qqrv", + "@Db@TDateField@", + "@Db@TDateField@$bctr$qqrp18Classes@TComponent", + "@Db@TDateField@GetDataSize$qqrv", + "@Db@TDateTimeField@", + "@Db@TDateTimeField@$bctr$qqrp18Classes@TComponent", + "@Db@TDateTimeField@CopyData$qqrpvt1", + "@Db@TDateTimeField@GetAsDateTime$qqrv", + "@Db@TDateTimeField@GetAsFloat$qqrv", + "@Db@TDateTimeField@GetAsString$qqrv", + "@Db@TDateTimeField@GetAsVariant$qqrv", + "@Db@TDateTimeField@GetDataSize$qqrv", + "@Db@TDateTimeField@GetDefaultWidth$qqrv", + "@Db@TDateTimeField@GetText$qqrr17System@AnsiStringo", + "@Db@TDateTimeField@GetValue$qqrr16System@TDateTime", + "@Db@TDateTimeField@SetAsDateTime$qqr16System@TDateTime", + "@Db@TDateTimeField@SetAsFloat$qqrd", + "@Db@TDateTimeField@SetAsString$qqrx17System@AnsiString", + "@Db@TDateTimeField@SetDisplayFormat$qqrx17System@AnsiString", + "@Db@TDateTimeField@SetVarValue$qqrrx14System@Variant", + "@Db@TDefCollection@", + "@Db@TDefCollection@$bctr$qqrp11Db@TDataSetp19Classes@TPersistentp17System@TMetaClass", + "@Db@TDefCollection@DoUpdate$qqrp14System@TObject", + "@Db@TDefCollection@Find$qqrx17System@AnsiString", + "@Db@TDefCollection@GetItemNames$qqrp16Classes@TStrings", + "@Db@TDefCollection@IndexOf$qqrx17System@AnsiString", + "@Db@TDefCollection@SetItemName$qqrp23Classes@TCollectionItem", + "@Db@TDefCollection@Update$qqrp23Classes@TCollectionItem", + "@Db@TDefCollection@UpdateDefs$qqrynpqqrv$v", + "@Db@TDetailDataLink@", + "@Db@TDetailDataLink@GetDetailDataSet$qqrv", + "@Db@TFMTBCDField@", + "@Db@TFMTBCDField@$bctr$qqrp18Classes@TComponent", + "@Db@TFMTBCDField@BcdRangeError$qqrrx14System@Variant17System@AnsiStringt2", + "@Db@TFMTBCDField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TFMTBCDField@CopyData$qqrpvt1", + "@Db@TFMTBCDField@GetAsBCD$qqrv", + "@Db@TFMTBCDField@GetAsCurrency$qqrv", + "@Db@TFMTBCDField@GetAsFloat$qqrv", + "@Db@TFMTBCDField@GetAsInteger$qqrv", + "@Db@TFMTBCDField@GetAsString$qqrv", + "@Db@TFMTBCDField@GetAsVariant$qqrv", + "@Db@TFMTBCDField@GetDataSize$qqrv", + "@Db@TFMTBCDField@GetDefaultWidth$qqrv", + "@Db@TFMTBCDField@GetText$qqrr17System@AnsiStringo", + "@Db@TFMTBCDField@GetValue$qqrr11Fmtbcd@TBcd", + "@Db@TFMTBCDField@SetAsBCD$qqrrx11Fmtbcd@TBcd", + "@Db@TFMTBCDField@SetAsCurrency$qqr15System@Currency", + "@Db@TFMTBCDField@SetAsFloat$qqrd", + "@Db@TFMTBCDField@SetAsInteger$qqri", + "@Db@TFMTBCDField@SetAsString$qqrx17System@AnsiString", + "@Db@TFMTBCDField@SetCurrency$qqro", + "@Db@TFMTBCDField@SetMaxValue$qqr17System@AnsiString", + "@Db@TFMTBCDField@SetMinValue$qqr17System@AnsiString", + "@Db@TFMTBCDField@SetPrecision$qqri", + "@Db@TFMTBCDField@SetVarValue$qqrrx14System@Variant", + "@Db@TFMTBCDField@UpdateCheckRange$qqrv", + "@Db@TField@", + "@Db@TField@$bctr$qqrp18Classes@TComponent", + "@Db@TField@$bdtr$qqrv", + "@Db@TField@AccessError$qqrx17System@AnsiString", + "@Db@TField@Assign$qqrp19Classes@TPersistent", + "@Db@TField@AssignValue$qqrrx14System@TVarRec", + "@Db@TField@Bind$qqro", + "@Db@TField@CalcLookupValue$qqrv", + "@Db@TField@Change$qqrv", + "@Db@TField@CheckInactive$qqrv", + "@Db@TField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TField@Clear$qqrv", + "@Db@TField@CopyData$qqrpvt1", + "@Db@TField@DataChanged$qqrv", + "@Db@TField@DefineProperties$qqrp14Classes@TFiler", + "@Db@TField@FocusControl$qqrv", + "@Db@TField@FreeBuffers$qqrv", + "@Db@TField@GetAsBCD$qqrv", + "@Db@TField@GetAsBoolean$qqrv", + "@Db@TField@GetAsByteArray$qqrv", + "@Db@TField@GetAsCurrency$qqrv", + "@Db@TField@GetAsDateTime$qqrv", + "@Db@TField@GetAsFloat$qqrv", + "@Db@TField@GetAsInteger$qqrv", + "@Db@TField@GetAsSqlTimeStamp$qqrv", + "@Db@TField@GetAsString$qqrv", + "@Db@TField@GetAsVariant$qqrv", + "@Db@TField@GetCalculated$qqrv", + "@Db@TField@GetCanModify$qqrv", + "@Db@TField@GetClassDesc$qqrv", + "@Db@TField@GetCurValue$qqrv", + "@Db@TField@GetData$qqrpvo", + "@Db@TField@GetDataSize$qqrv", + "@Db@TField@GetDefaultWidth$qqrv", + "@Db@TField@GetDisplayLabel$qqrv", + "@Db@TField@GetDisplayName$qqrv", + "@Db@TField@GetDisplayText$qqrv", + "@Db@TField@GetDisplayWidth$qqrv", + "@Db@TField@GetEditText$qqrv", + "@Db@TField@GetFieldNo$qqrv", + "@Db@TField@GetFullName$qqrv", + "@Db@TField@GetHasConstraints$qqrv", + "@Db@TField@GetIndex$qqrv", + "@Db@TField@GetIsIndexField$qqrv", + "@Db@TField@GetIsNull$qqrv", + "@Db@TField@GetLookup$qqrv", + "@Db@TField@GetLookupList$qqrv", + "@Db@TField@GetNewValue$qqrv", + "@Db@TField@GetOldValue$qqrv", + "@Db@TField@GetParentComponent$qqrv", + "@Db@TField@GetSize$qqrv", + "@Db@TField@GetText$qqrr17System@AnsiStringo", + "@Db@TField@HasParent$qqrv", + "@Db@TField@IsBlob$qqrp17System@TMetaClass", + "@Db@TField@IsDisplayLabelStored$qqrv", + "@Db@TField@IsDisplayWidthStored$qqrv", + "@Db@TField@IsValidChar$qqrc", + "@Db@TField@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Db@TField@PropertyChanged$qqro", + "@Db@TField@ReadAttributeSet$qqrp15Classes@TReader", + "@Db@TField@ReadCalculated$qqrp15Classes@TReader", + "@Db@TField@ReadLookup$qqrp15Classes@TReader", + "@Db@TField@ReadState$qqrp15Classes@TReader", + "@Db@TField@RefreshLookupList$qqrv", + "@Db@TField@SetAlignment$qqr18Classes@TAlignment", + "@Db@TField@SetAsBCD$qqrrx11Fmtbcd@TBcd", + "@Db@TField@SetAsBoolean$qqro", + "@Db@TField@SetAsByteArray$qqrrx14System@Variant", + "@Db@TField@SetAsCurrency$qqr15System@Currency", + "@Db@TField@SetAsDateTime$qqr16System@TDateTime", + "@Db@TField@SetAsFloat$qqrd", + "@Db@TField@SetAsInteger$qqri", + "@Db@TField@SetAsSQLTimeStamp$qqrrx22Sqltimst@TSQLTimeStamp", + "@Db@TField@SetAsString$qqrx17System@AnsiString", + "@Db@TField@SetAsVariant$qqrrx14System@Variant", + "@Db@TField@SetAutoGenerateValue$qqrx19Db@TAutoRefreshFlag", + "@Db@TField@SetCalculated$qqro", + "@Db@TField@SetData$qqrpvo", + "@Db@TField@SetDataSet$qqrp11Db@TDataSet", + "@Db@TField@SetDataType$qqr13Db@TFieldType", + "@Db@TField@SetDisplayLabel$qqr17System@AnsiString", + "@Db@TField@SetDisplayWidth$qqri", + "@Db@TField@SetEditMask$qqrx17System@AnsiString", + "@Db@TField@SetEditText$qqrx17System@AnsiString", + "@Db@TField@SetFieldKind$qqr13Db@TFieldKind", + "@Db@TField@SetFieldName$qqrx17System@AnsiString", + "@Db@TField@SetFieldType$qqr13Db@TFieldType", + "@Db@TField@SetIndex$qqri", + "@Db@TField@SetKeyFields$qqrx17System@AnsiString", + "@Db@TField@SetLookup$qqro", + "@Db@TField@SetLookupCache$qqrxo", + "@Db@TField@SetLookupDataSet$qqrp11Db@TDataSet", + "@Db@TField@SetLookupKeyFields$qqrx17System@AnsiString", + "@Db@TField@SetLookupResultField$qqrx17System@AnsiString", + "@Db@TField@SetNewValue$qqrrx14System@Variant", + "@Db@TField@SetParentComponent$qqrp18Classes@TComponent", + "@Db@TField@SetParentField$qqrp15Db@TObjectField", + "@Db@TField@SetReadOnly$qqrxo", + "@Db@TField@SetSize$qqri", + "@Db@TField@SetText$qqrx17System@AnsiString", + "@Db@TField@SetVarValue$qqrrx14System@Variant", + "@Db@TField@SetVisible$qqro", + "@Db@TField@Validate$qqrpv", + "@Db@TField@ValidateLookupInfo$qqro", + "@Db@TField@WriteAttributeSet$qqrp15Classes@TWriter", + "@Db@TField@WriteCalculated$qqrp15Classes@TWriter", + "@Db@TField@WriteLookup$qqrp15Classes@TWriter", + "@Db@TFieldDef@", + "@Db@TFieldDef@$bctr$qqrp13Db@TFieldDefsx17System@AnsiString13Db@TFieldTypeioi", + "@Db@TFieldDef@$bdtr$qqrv", + "@Db@TFieldDef@AddChild$qqrv", + "@Db@TFieldDef@Assign$qqrp19Classes@TPersistent", + "@Db@TFieldDef@CreateField$qqrp18Classes@TComponentp15Db@TObjectFieldx17System@AnsiStringo", + "@Db@TFieldDef@CreateFieldComponent$qqrp18Classes@TComponentp15Db@TObjectField17System@AnsiString", + "@Db@TFieldDef@DefineProperties$qqrp14Classes@TFiler", + "@Db@TFieldDef@GetChildDefs$qqrv", + "@Db@TFieldDef@GetFieldClass$qqrv", + "@Db@TFieldDef@GetFieldNo$qqrv", + "@Db@TFieldDef@GetParentDef$qqrv", + "@Db@TFieldDef@GetRequired$qqrv", + "@Db@TFieldDef@GetSize$qqrv", + "@Db@TFieldDef@HasChildDefs$qqrv", + "@Db@TFieldDef@ReadRequired$qqrp15Classes@TReader", + "@Db@TFieldDef@SetAttributes$qqr46System@%Set$t18Db@TFieldAttribute$iuc$0$iuc$5%", + "@Db@TFieldDef@SetChildDefs$qqrp13Db@TFieldDefs", + "@Db@TFieldDef@SetDataType$qqr13Db@TFieldType", + "@Db@TFieldDef@SetPrecision$qqri", + "@Db@TFieldDef@SetRequired$qqro", + "@Db@TFieldDef@SetSize$qqri", + "@Db@TFieldDefList@", + "@Db@TFieldDefList@FieldByName$qqrx17System@AnsiString", + "@Db@TFieldDefList@Find$qqrx17System@AnsiString", + "@Db@TFieldDefList@GetFieldDef$qqri", + "@Db@TFieldDefList@GetUpdated$qqrv", + "@Db@TFieldDefList@UpdateList$qqrv", + "@Db@TFieldDefs@", + "@Db@TFieldDefs@$bctr$qqrp19Classes@TPersistent", + "@Db@TFieldDefs@Add$qqrx17System@AnsiString13Db@TFieldTypeio", + "@Db@TFieldDefs@AddFieldDef$qqrv", + "@Db@TFieldDefs@ChildDefUpdate$qqrp14System@TObject", + "@Db@TFieldDefs@FieldDefUpdate$qqrp14System@TObject", + "@Db@TFieldDefs@Find$qqrx17System@AnsiString", + "@Db@TFieldDefs@GetFieldDef$qqri", + "@Db@TFieldDefs@SetFieldDef$qqrip12Db@TFieldDef", + "@Db@TFieldDefs@SetHiddenFields$qqro", + "@Db@TFieldDefs@SetItemName$qqrp23Classes@TCollectionItem", + "@Db@TFieldDefs@Update$qqrv", + "@Db@TFieldList@", + "@Db@TFieldList@FieldByName$qqrx17System@AnsiString", + "@Db@TFieldList@Find$qqrx17System@AnsiString", + "@Db@TFieldList@GetField$qqri", + "@Db@TFieldList@UpdateList$qqrv", + "@Db@TFields@", + "@Db@TFields@$bctr$qqrp11Db@TDataSet", + "@Db@TFields@$bdtr$qqrv", + "@Db@TFields@Add$qqrp9Db@TField", + "@Db@TFields@Changed$qqrv", + "@Db@TFields@CheckFieldKind$qqr13Db@TFieldKindp9Db@TField", + "@Db@TFields@CheckFieldName$qqrx17System@AnsiString", + "@Db@TFields@CheckFieldNames$qqrx17System@AnsiString", + "@Db@TFields@Clear$qqrv", + "@Db@TFields@FieldByName$qqrx17System@AnsiString", + "@Db@TFields@FieldByNumber$qqri", + "@Db@TFields@FindField$qqrx17System@AnsiString", + "@Db@TFields@GetCount$qqrv", + "@Db@TFields@GetField$qqri", + "@Db@TFields@GetFieldNames$qqrp16Classes@TStrings", + "@Db@TFields@IndexOf$qqrp9Db@TField", + "@Db@TFields@Remove$qqrp9Db@TField", + "@Db@TFields@SetField$qqrip9Db@TField", + "@Db@TFields@SetFieldIndex$qqrp9Db@TFieldi", + "@Db@TFlatList@", + "@Db@TFlatList@$bctr$qqrp11Db@TDataSet", + "@Db@TFlatList@FindItem$qqrx17System@AnsiStringo", + "@Db@TFlatList@GetCount$qqrv", + "@Db@TFlatList@GetUpdated$qqrv", + "@Db@TFlatList@ListChanging$qqrp14System@TObject", + "@Db@TFlatList@Update$qqrv", + "@Db@TFloatField@", + "@Db@TFloatField@$bctr$qqrp18Classes@TComponent", + "@Db@TFloatField@GetAsFloat$qqrv", + "@Db@TFloatField@GetAsInteger$qqrv", + "@Db@TFloatField@GetAsString$qqrv", + "@Db@TFloatField@GetAsVariant$qqrv", + "@Db@TFloatField@GetDataSize$qqrv", + "@Db@TFloatField@GetText$qqrr17System@AnsiStringo", + "@Db@TFloatField@SetAsFloat$qqrd", + "@Db@TFloatField@SetAsInteger$qqri", + "@Db@TFloatField@SetAsString$qqrx17System@AnsiString", + "@Db@TFloatField@SetCurrency$qqro", + "@Db@TFloatField@SetMaxValue$qqrd", + "@Db@TFloatField@SetMinValue$qqrd", + "@Db@TFloatField@SetPrecision$qqri", + "@Db@TFloatField@SetVarValue$qqrrx14System@Variant", + "@Db@TFloatField@UpdateCheckRange$qqrv", + "@Db@TGraphicField@", + "@Db@TGraphicField@$bctr$qqrp18Classes@TComponent", + "@Db@TGuidField@", + "@Db@TGuidField@$bctr$qqrp18Classes@TComponent", + "@Db@TGuidField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TGuidField@GetAsGuid$qqrv", + "@Db@TGuidField@GetDefaultWidth$qqrv", + "@Db@TGuidField@SetAsGuid$qqrrx5_GUID", + "@Db@TIDispatchField@", + "@Db@TIDispatchField@$bctr$qqrp18Classes@TComponent", + "@Db@TIDispatchField@GetValue$qqrv", + "@Db@TIDispatchField@SetValue$qqrx36System@%DelphiInterface$t9IDispatch%", + "@Db@TIndexDef@", + "@Db@TIndexDef@$bctr$qqrp13Db@TIndexDefsx17System@AnsiStringt243System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Db@TIndexDef@Assign$qqrp19Classes@TPersistent", + "@Db@TIndexDef@GetDisplayName$qqrv", + "@Db@TIndexDef@GetExpression$qqrv", + "@Db@TIndexDef@GetFields$qqrv", + "@Db@TIndexDef@SetCaseInsFields$qqrx17System@AnsiString", + "@Db@TIndexDef@SetDescFields$qqrx17System@AnsiString", + "@Db@TIndexDef@SetExpression$qqrx17System@AnsiString", + "@Db@TIndexDef@SetFields$qqrx17System@AnsiString", + "@Db@TIndexDef@SetOptions$qqr43System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Db@TIndexDef@SetSource$qqrx17System@AnsiString", + "@Db@TIndexDefs@", + "@Db@TIndexDefs@$bctr$qqrp11Db@TDataSet", + "@Db@TIndexDefs@Add$qqrx17System@AnsiStringt143System@%Set$t15Db@TIndexOption$iuc$0$iuc$5%", + "@Db@TIndexDefs@AddIndexDef$qqrv", + "@Db@TIndexDefs@Find$qqrx17System@AnsiString", + "@Db@TIndexDefs@FindIndexForFields$qqrx17System@AnsiString", + "@Db@TIndexDefs@GetIndexDef$qqri", + "@Db@TIndexDefs@GetIndexForFields$qqrx17System@AnsiStringo", + "@Db@TIndexDefs@SetIndexDef$qqrip12Db@TIndexDef", + "@Db@TIndexDefs@Update$qqrv", + "@Db@TIntegerField@", + "@Db@TIntegerField@$bctr$qqrp18Classes@TComponent", + "@Db@TIntegerField@CheckRange$qqriii", + "@Db@TIntegerField@GetAsFloat$qqrv", + "@Db@TIntegerField@GetAsInteger$qqrv", + "@Db@TIntegerField@GetAsString$qqrv", + "@Db@TIntegerField@GetAsVariant$qqrv", + "@Db@TIntegerField@GetDataSize$qqrv", + "@Db@TIntegerField@GetText$qqrr17System@AnsiStringo", + "@Db@TIntegerField@GetValue$qqrri", + "@Db@TIntegerField@SetAsFloat$qqrd", + "@Db@TIntegerField@SetAsInteger$qqri", + "@Db@TIntegerField@SetAsString$qqrx17System@AnsiString", + "@Db@TIntegerField@SetMaxValue$qqri", + "@Db@TIntegerField@SetMinValue$qqri", + "@Db@TIntegerField@SetVarValue$qqrrx14System@Variant", + "@Db@TInterfaceField@", + "@Db@TInterfaceField@$bctr$qqrp18Classes@TComponent", + "@Db@TInterfaceField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TInterfaceField@GetAsVariant$qqrv", + "@Db@TInterfaceField@GetValue$qqrv", + "@Db@TInterfaceField@SetValue$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Db@TInterfaceField@SetVarValue$qqrrx14System@Variant", + "@Db@TLargeintField@", + "@Db@TLargeintField@$bctr$qqrp18Classes@TComponent", + "@Db@TLargeintField@CheckRange$qqrjjj", + "@Db@TLargeintField@GetAsFloat$qqrv", + "@Db@TLargeintField@GetAsInteger$qqrv", + "@Db@TLargeintField@GetAsLargeint$qqrv", + "@Db@TLargeintField@GetAsString$qqrv", + "@Db@TLargeintField@GetAsVariant$qqrv", + "@Db@TLargeintField@GetDataSize$qqrv", + "@Db@TLargeintField@GetDefaultWidth$qqrv", + "@Db@TLargeintField@GetText$qqrr17System@AnsiStringo", + "@Db@TLargeintField@GetValue$qqrrj", + "@Db@TLargeintField@SetAsFloat$qqrd", + "@Db@TLargeintField@SetAsInteger$qqri", + "@Db@TLargeintField@SetAsLargeint$qqrj", + "@Db@TLargeintField@SetAsString$qqrx17System@AnsiString", + "@Db@TLargeintField@SetVarValue$qqrrx14System@Variant", + "@Db@TLookupList@", + "@Db@TLookupList@$bctr$qqrv", + "@Db@TLookupList@$bdtr$qqrv", + "@Db@TLookupList@Add$qqrrx14System@Variantt1", + "@Db@TLookupList@Clear$qqrv", + "@Db@TLookupList@ValueOfKey$qqrrx14System@Variant", + "@Db@TMasterDataLink@", + "@Db@TMasterDataLink@$bctr$qqrp11Db@TDataSet", + "@Db@TMasterDataLink@$bdtr$qqrv", + "@Db@TMasterDataLink@ActiveChanged$qqrv", + "@Db@TMasterDataLink@CheckBrowseMode$qqrv", + "@Db@TMasterDataLink@GetDetailDataSet$qqrv", + "@Db@TMasterDataLink@LayoutChanged$qqrv", + "@Db@TMasterDataLink@RecordChanged$qqrp9Db@TField", + "@Db@TMasterDataLink@SetFieldNames$qqrx17System@AnsiString", + "@Db@TMemoField@", + "@Db@TMemoField@$bctr$qqrp18Classes@TComponent", + "@Db@TNamedItem@", + "@Db@TNamedItem@GetDisplayName$qqrv", + "@Db@TNamedItem@SetDisplayName$qqrx17System@AnsiString", + "@Db@TNumericField@", + "@Db@TNumericField@$bctr$qqrp18Classes@TComponent", + "@Db@TNumericField@RangeError$qqrggg", + "@Db@TNumericField@SetDisplayFormat$qqrx17System@AnsiString", + "@Db@TNumericField@SetEditFormat$qqrx17System@AnsiString", + "@Db@TObjectField@", + "@Db@TObjectField@$bctr$qqrp18Classes@TComponent", + "@Db@TObjectField@$bdtr$qqrv", + "@Db@TObjectField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TObjectField@DataSetChanged$qqrv", + "@Db@TObjectField@DefineProperties$qqrp14Classes@TFiler", + "@Db@TObjectField@FreeBuffers$qqrv", + "@Db@TObjectField@GetAsString$qqrv", + "@Db@TObjectField@GetAsVariant$qqrv", + "@Db@TObjectField@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Db@TObjectField@GetDefaultWidth$qqrv", + "@Db@TObjectField@GetFieldCount$qqrv", + "@Db@TObjectField@GetFieldValue$qqri", + "@Db@TObjectField@GetFields$qqrv", + "@Db@TObjectField@GetHasConstraints$qqrv", + "@Db@TObjectField@ReadUnNamed$qqrp15Classes@TReader", + "@Db@TObjectField@SetChildOrder$qqrp18Classes@TComponenti", + "@Db@TObjectField@SetDataSet$qqrp11Db@TDataSet", + "@Db@TObjectField@SetFieldKind$qqr13Db@TFieldKind", + "@Db@TObjectField@SetFieldValue$qqrirx14System@Variant", + "@Db@TObjectField@SetParentField$qqrp15Db@TObjectField", + "@Db@TObjectField@SetUnNamed$qqro", + "@Db@TObjectField@SetVarValue$qqrrx14System@Variant", + "@Db@TObjectField@WriteUnNamed$qqrp15Classes@TWriter", + "@Db@TParam@", + "@Db@TParam@$bctr$qqrp10Db@TParams13Db@TParamType", + "@Db@TParam@$bctr$qqrp19Classes@TCollection", + "@Db@TParam@Assign$qqrp19Classes@TPersistent", + "@Db@TParam@AssignField$qqrp9Db@TField", + "@Db@TParam@AssignFieldValue$qqrp9Db@TFieldrx14System@Variant", + "@Db@TParam@AssignParam$qqrp9Db@TParam", + "@Db@TParam@AssignTo$qqrp19Classes@TPersistent", + "@Db@TParam@Clear$qqrv", + "@Db@TParam@GetAsBCD$qqrv", + "@Db@TParam@GetAsBoolean$qqrv", + "@Db@TParam@GetAsCurrency$qqrv", + "@Db@TParam@GetAsDateTime$qqrv", + "@Db@TParam@GetAsFMTBCD$qqrv", + "@Db@TParam@GetAsFloat$qqrv", + "@Db@TParam@GetAsInteger$qqrv", + "@Db@TParam@GetAsMemo$qqrv", + "@Db@TParam@GetAsSQLTimeStamp$qqrv", + "@Db@TParam@GetAsString$qqrv", + "@Db@TParam@GetAsVariant$qqrv", + "@Db@TParam@GetData$qqrpv", + "@Db@TParam@GetDataSet$qqrv", + "@Db@TParam@GetDataSize$qqrv", + "@Db@TParam@GetDataType$qqrv", + "@Db@TParam@GetDisplayName$qqrv", + "@Db@TParam@GetIsNull$qqrv", + "@Db@TParam@GetParamType$qqrv", + "@Db@TParam@IsEqual$qqrp9Db@TParam", + "@Db@TParam@IsParamStored$qqrv", + "@Db@TParam@LoadFromFile$qqrx17System@AnsiString13Db@TFieldType", + "@Db@TParam@LoadFromStream$qqrp15Classes@TStream13Db@TFieldType", + "@Db@TParam@ParamRef$qqrv", + "@Db@TParam@SetAsBCD$qqrx15System@Currency", + "@Db@TParam@SetAsBlob$qqrx17System@AnsiString", + "@Db@TParam@SetAsBoolean$qqro", + "@Db@TParam@SetAsCurrency$qqrx15System@Currency", + "@Db@TParam@SetAsDate$qqrx16System@TDateTime", + "@Db@TParam@SetAsDateTime$qqrx16System@TDateTime", + "@Db@TParam@SetAsFMTBCD$qqrrx11Fmtbcd@TBcd", + "@Db@TParam@SetAsFloat$qqrxd", + "@Db@TParam@SetAsInteger$qqri", + "@Db@TParam@SetAsMemo$qqrx17System@AnsiString", + "@Db@TParam@SetAsSQLTimeStamp$qqrrx22Sqltimst@TSQLTimeStamp", + "@Db@TParam@SetAsSmallInt$qqri", + "@Db@TParam@SetAsString$qqrx17System@AnsiString", + "@Db@TParam@SetAsTime$qqrx16System@TDateTime", + "@Db@TParam@SetAsVariant$qqrrx14System@Variant", + "@Db@TParam@SetAsWord$qqri", + "@Db@TParam@SetBlobData$qqrpvi", + "@Db@TParam@SetData$qqrpv", + "@Db@TParam@SetDataType$qqr13Db@TFieldType", + "@Db@TParam@SetParamType$qqr13Db@TParamType", + "@Db@TParam@SetText$qqrx17System@AnsiString", + "@Db@TParams@", + "@Db@TParams@$bctr$qqrp19Classes@TPersistent", + "@Db@TParams@$bctr$qqrv", + "@Db@TParams@AddParam$qqrp9Db@TParam", + "@Db@TParams@AssignTo$qqrp19Classes@TPersistent", + "@Db@TParams@AssignValues$qqrp10Db@TParams", + "@Db@TParams@CreateParam$qqr13Db@TFieldTypex17System@AnsiString13Db@TParamType", + "@Db@TParams@DefineProperties$qqrp14Classes@TFiler", + "@Db@TParams@FindParam$qqrx17System@AnsiString", + "@Db@TParams@GetDataSet$qqrv", + "@Db@TParams@GetItem$qqri", + "@Db@TParams@GetOwner$qqrv", + "@Db@TParams@GetParamList$qqrp13Classes@TListx17System@AnsiString", + "@Db@TParams@GetParamValue$qqrx17System@AnsiString", + "@Db@TParams@IsEqual$qqrp10Db@TParams", + "@Db@TParams@ParamByName$qqrx17System@AnsiString", + "@Db@TParams@ParseSQL$qqr17System@AnsiStringo", + "@Db@TParams@ReadBinaryData$qqrp15Classes@TStream", + "@Db@TParams@RemoveParam$qqrp9Db@TParam", + "@Db@TParams@SetItem$qqrip9Db@TParam", + "@Db@TParams@SetParamValue$qqrx17System@AnsiStringrx14System@Variant", + "@Db@TParams@Update$qqrp23Classes@TCollectionItem", + "@Db@TReferenceField@", + "@Db@TReferenceField@$bctr$qqrp18Classes@TComponent", + "@Db@TReferenceField@Assign$qqrp19Classes@TPersistent", + "@Db@TReferenceField@GetAsVariant$qqrv", + "@Db@TReferenceField@GetDataSize$qqrv", + "@Db@TReferenceField@SetVarValue$qqrrx14System@Variant", + "@Db@TSQLTimeStampField@", + "@Db@TSQLTimeStampField@$bctr$qqrp18Classes@TComponent", + "@Db@TSQLTimeStampField@CopyData$qqrpvt1", + "@Db@TSQLTimeStampField@GetAsDateTime$qqrv", + "@Db@TSQLTimeStampField@GetAsSQLTimeStamp$qqrv", + "@Db@TSQLTimeStampField@GetAsString$qqrv", + "@Db@TSQLTimeStampField@GetAsVariant$qqrv", + "@Db@TSQLTimeStampField@GetDataSize$qqrv", + "@Db@TSQLTimeStampField@GetDefaultWidth$qqrv", + "@Db@TSQLTimeStampField@GetText$qqrr17System@AnsiStringo", + "@Db@TSQLTimeStampField@GetValue$qqrr22Sqltimst@TSQLTimeStamp", + "@Db@TSQLTimeStampField@SetAsDateTime$qqr16System@TDateTime", + "@Db@TSQLTimeStampField@SetAsSQLTimeStamp$qqrrx22Sqltimst@TSQLTimeStamp", + "@Db@TSQLTimeStampField@SetAsString$qqrx17System@AnsiString", + "@Db@TSQLTimeStampField@SetDisplayFormat$qqrx17System@AnsiString", + "@Db@TSQLTimeStampField@SetVarValue$qqrrx14System@Variant", + "@Db@TSmallintField@", + "@Db@TSmallintField@$bctr$qqrp18Classes@TComponent", + "@Db@TSmallintField@GetDataSize$qqrv", + "@Db@TStringField@", + "@Db@TStringField@$bctr$qqrp18Classes@TComponent", + "@Db@TStringField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TStringField@GetAsBCD$qqrv", + "@Db@TStringField@GetAsBoolean$qqrv", + "@Db@TStringField@GetAsDateTime$qqrv", + "@Db@TStringField@GetAsFloat$qqrv", + "@Db@TStringField@GetAsInteger$qqrv", + "@Db@TStringField@GetAsSqlTimeStamp$qqrv", + "@Db@TStringField@GetAsString$qqrv", + "@Db@TStringField@GetAsVariant$qqrv", + "@Db@TStringField@GetDataSize$qqrv", + "@Db@TStringField@GetDefaultWidth$qqrv", + "@Db@TStringField@GetText$qqrr17System@AnsiStringo", + "@Db@TStringField@GetValue$qqrr17System@AnsiString", + "@Db@TStringField@SetAsBCD$qqrrx11Fmtbcd@TBcd", + "@Db@TStringField@SetAsBoolean$qqro", + "@Db@TStringField@SetAsDateTime$qqr16System@TDateTime", + "@Db@TStringField@SetAsFloat$qqrd", + "@Db@TStringField@SetAsInteger$qqri", + "@Db@TStringField@SetAsSQLTimeStamp$qqrrx22Sqltimst@TSQLTimeStamp", + "@Db@TStringField@SetAsString$qqrx17System@AnsiString", + "@Db@TStringField@SetVarValue$qqrrx14System@Variant", + "@Db@TTimeField@", + "@Db@TTimeField@$bctr$qqrp18Classes@TComponent", + "@Db@TTimeField@GetDataSize$qqrv", + "@Db@TVarBytesField@", + "@Db@TVarBytesField@$bctr$qqrp18Classes@TComponent", + "@Db@TVarBytesField@GetDataSize$qqrv", + "@Db@TVarBytesField@SetAsByteArray$qqrrx14System@Variant", + "@Db@TVariantField@", + "@Db@TVariantField@$bctr$qqrp18Classes@TComponent", + "@Db@TVariantField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TVariantField@GetAsBCD$qqrv", + "@Db@TVariantField@GetAsBoolean$qqrv", + "@Db@TVariantField@GetAsDateTime$qqrv", + "@Db@TVariantField@GetAsFloat$qqrv", + "@Db@TVariantField@GetAsInteger$qqrv", + "@Db@TVariantField@GetAsSqlTimeStamp$qqrv", + "@Db@TVariantField@GetAsString$qqrv", + "@Db@TVariantField@GetAsVariant$qqrv", + "@Db@TVariantField@GetDefaultWidth$qqrv", + "@Db@TVariantField@SetAsBCD$qqrrx11Fmtbcd@TBcd", + "@Db@TVariantField@SetAsBoolean$qqro", + "@Db@TVariantField@SetAsDateTime$qqr16System@TDateTime", + "@Db@TVariantField@SetAsFloat$qqrd", + "@Db@TVariantField@SetAsInteger$qqri", + "@Db@TVariantField@SetAsSqlTimeStamp$qqrrx22Sqltimst@TSQLTimeStamp", + "@Db@TVariantField@SetAsString$qqrx17System@AnsiString", + "@Db@TVariantField@SetVarValue$qqrrx14System@Variant", + "@Db@TWideStringField@", + "@Db@TWideStringField@$bctr$qqrp18Classes@TComponent", + "@Db@TWideStringField@CheckTypeSize$qqrp17System@TMetaClassi", + "@Db@TWideStringField@CopyData$qqrpvt1", + "@Db@TWideStringField@GetAsString$qqrv", + "@Db@TWideStringField@GetAsVariant$qqrv", + "@Db@TWideStringField@GetAsWideString$qqrv", + "@Db@TWideStringField@GetDataSize$qqrv", + "@Db@TWideStringField@SetAsString$qqrx17System@AnsiString", + "@Db@TWideStringField@SetAsWideString$qqrx17System@WideString", + "@Db@TWideStringField@SetVarValue$qqrrx14System@Variant", + "@Db@TWordField@", + "@Db@TWordField@$bctr$qqrp18Classes@TComponent", + "@Db@TWordField@GetDataSize$qqrv", + "@Db@VarTypeToDataType$qqri", + "@Db@initialization$qqrv", + "@Dbcommon@AddParamSQLForDetail$qqrp10Db@TParams17System@AnsiStringo", + "@Dbcommon@Finalization$qqrv", + "@Dbcommon@GetFieldInfo$qqrx17System@AnsiStringr19Dbcommon@TFieldInfo", + "@Dbcommon@GetIndexForOrderBy$qqrx17System@AnsiStringp11Db@TDataSet", + "@Dbcommon@GetTableNameFromQuery$qqrx17System@AnsiString", + "@Dbcommon@GetTableNameFromSQL$qqrx17System@AnsiString", + "@Dbcommon@IsMultiTableQuery$qqrx17System@AnsiString", + "@Dbcommon@NextSQLToken$qqrrpcr17System@AnsiString18Dbcommon@TSQLToken", + "@Dbcommon@TExprParser@", + "@Dbcommon@TExprParser@$bctr$qqrp11Db@TDataSetx17System@AnsiString44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%50System@%Set$t22Dbcommon@TParserOption$iuc$0$iuc$5%t2p13Classes@TBitspxuc", + "@Dbcommon@TExprParser@$bdtr$qqrv", + "@Dbcommon@TExprParser@GetFuncResultInfo$qqrp18Dbcommon@TExprNode", + "@Dbcommon@TExprParser@GetScopeKind$qqrp18Dbcommon@TExprNodet1t1", + "@Dbcommon@TExprParser@NextToken$qqrv", + "@Dbcommon@TExprParser@NextTokenIsLParen$qqrv", + "@Dbcommon@TExprParser@ParseExpr$qqrv", + "@Dbcommon@TExprParser@ParseExpr2$qqrv", + "@Dbcommon@TExprParser@ParseExpr3$qqrv", + "@Dbcommon@TExprParser@ParseExpr4$qqrv", + "@Dbcommon@TExprParser@ParseExpr5$qqrv", + "@Dbcommon@TExprParser@ParseExpr6$qqrv", + "@Dbcommon@TExprParser@ParseExpr7$qqrv", + "@Dbcommon@TExprParser@SetExprParams$qqrx17System@AnsiString44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%50System@%Set$t22Dbcommon@TParserOption$iuc$0$iuc$5%t1", + "@Dbcommon@TExprParser@TokenName$qqrv", + "@Dbcommon@TExprParser@TokenSymbolIs$qqrx17System@AnsiString", + "@Dbcommon@TExprParser@TokenSymbolIsFunc$qqrx17System@AnsiString", + "@Dbcommon@TExprParser@TypeCheckArithOp$qqrp18Dbcommon@TExprNode", + "@Dbcommon@TFilterExpr@", + "@Dbcommon@TFilterExpr@$bctr$qqrp11Db@TDataSet44System@%Set$t16Db@TFilterOption$iuc$0$iuc$1%50System@%Set$t22Dbcommon@TParserOption$iuc$0$iuc$5%x17System@AnsiStringp13Classes@TBitspxuc", + "@Dbcommon@TFilterExpr@$bdtr$qqrv", + "@Dbcommon@TFilterExpr@FieldFromNode$qqrp18Dbcommon@TExprNode", + "@Dbcommon@TFilterExpr@GetExprData$qqrii", + "@Dbcommon@TFilterExpr@GetFieldByName$qqr17System@AnsiString", + "@Dbcommon@TFilterExpr@GetFilterData$qqrp18Dbcommon@TExprNode", + "@Dbcommon@TFilterExpr@NewCompareNode$qqrp9Db@TField21Dbcommon@TCANOperatorrx14System@Variant", + "@Dbcommon@TFilterExpr@NewNode$qqr22Dbcommon@TExprNodeKind21Dbcommon@TCANOperatorrx14System@Variantp18Dbcommon@TExprNodet4", + "@Dbcommon@TFilterExpr@PutConstBCD$qqrrx14System@Varianti", + "@Dbcommon@TFilterExpr@PutConstBool$qqrrx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstDate$qqrrx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstDateTime$qqrrx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstFMTBCD$qqrrx14System@Varianti", + "@Dbcommon@TFilterExpr@PutConstFloat$qqrrx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstInt$qqr13Db@TFieldTyperx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstNode$qqr13Db@TFieldTypepci", + "@Dbcommon@TFilterExpr@PutConstSQLTimeStamp$qqrrx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstStr$qqrx17System@AnsiString", + "@Dbcommon@TFilterExpr@PutConstTime$qqrrx14System@Variant", + "@Dbcommon@TFilterExpr@PutConstant$qqrp18Dbcommon@TExprNode", + "@Dbcommon@TFilterExpr@PutData$qqrpci", + "@Dbcommon@TFilterExpr@PutExprNode$qqrp18Dbcommon@TExprNode21Dbcommon@TCANOperator", + "@Dbcommon@TFilterExpr@PutFieldNode$qqrp9Db@TFieldp18Dbcommon@TExprNode", + "@Dbcommon@TFilterExpr@PutNode$qqr18Dbcommon@NODEClass21Dbcommon@TCANOperatori", + "@Dbcommon@TFilterExpr@SetNodeOp$qqriii", + "@Dbcommon@initialization$qqrv", + "@Dbconsts@Finalization$qqrv", + "@Dbconsts@_SAggActive", + "@Dbconsts@_SBadFieldType", + "@Dbconsts@_SBcdFieldRangeError", + "@Dbconsts@_SBcdOverflow", + "@Dbconsts@_SCircularDataLink", + "@Dbconsts@_SCouldNotParseTimeStamp", + "@Dbconsts@_SDataSetClosed", + "@Dbconsts@_SDataSetEmpty", + "@Dbconsts@_SDataSetMissing", + "@Dbconsts@_SDataSetOpen", + "@Dbconsts@_SDataSetReadOnly", + "@Dbconsts@_SDataSetUnidirectional", + "@Dbconsts@_SDataSourceChange", + "@Dbconsts@_SDeleteMultipleRecordsQuestion", + "@Dbconsts@_SDeleteRecordQuestion", + "@Dbconsts@_SDuplicateFieldName", + "@Dbconsts@_SDuplicateIndexName", + "@Dbconsts@_SDuplicateName", + "@Dbconsts@_SExprBadConst", + "@Dbconsts@_SExprBadField", + "@Dbconsts@_SExprBadNullTest", + "@Dbconsts@_SExprBadScope", + "@Dbconsts@_SExprEmptyInList", + "@Dbconsts@_SExprExpected", + "@Dbconsts@_SExprIncorrect", + "@Dbconsts@_SExprInvalidChar", + "@Dbconsts@_SExprNameError", + "@Dbconsts@_SExprNoAggFilter", + "@Dbconsts@_SExprNoAggOnCalcs", + "@Dbconsts@_SExprNoArith", + "@Dbconsts@_SExprNoLParen", + "@Dbconsts@_SExprNoRParen", + "@Dbconsts@_SExprNoRParenOrComma", + "@Dbconsts@_SExprNotAgg", + "@Dbconsts@_SExprNotBoolean", + "@Dbconsts@_SExprNothing", + "@Dbconsts@_SExprRangeError", + "@Dbconsts@_SExprStringError", + "@Dbconsts@_SExprTermination", + "@Dbconsts@_SExprTypeMis", + "@Dbconsts@_SFieldAccessError", + "@Dbconsts@_SFieldIndexError", + "@Dbconsts@_SFieldNameMissing", + "@Dbconsts@_SFieldNotFound", + "@Dbconsts@_SFieldOutOfRange", + "@Dbconsts@_SFieldRangeError", + "@Dbconsts@_SFieldReadOnly", + "@Dbconsts@_SFieldRequired", + "@Dbconsts@_SFieldSizeMismatch", + "@Dbconsts@_SFieldTypeMismatch", + "@Dbconsts@_SFieldValueError", + "@Dbconsts@_SFileNameBlank", + "@Dbconsts@_SIndexFieldMissing", + "@Dbconsts@_SIndexNotFound", + "@Dbconsts@_SInvalidBcdValue", + "@Dbconsts@_SInvalidBoolValue", + "@Dbconsts@_SInvalidCalcType", + "@Dbconsts@_SInvalidFieldKind", + "@Dbconsts@_SInvalidFieldRegistration", + "@Dbconsts@_SInvalidFieldSize", + "@Dbconsts@_SInvalidFloatValue", + "@Dbconsts@_SInvalidFormatType", + "@Dbconsts@_SInvalidIntegerValue", + "@Dbconsts@_SInvalidKeywordUse", + "@Dbconsts@_SInvalidSqlTimeStamp", + "@Dbconsts@_SInvalidVarByteArray", + "@Dbconsts@_SInvalidVersion", + "@Dbconsts@_SLookupInfoError", + "@Dbconsts@_SNestedDataSetClass", + "@Dbconsts@_SNewLookupFieldCaption", + "@Dbconsts@_SNoFieldIndexes", + "@Dbconsts@_SNoIndexForFields", + "@Dbconsts@_SNoNestedMasterSource", + "@Dbconsts@_SNotEditing", + "@Dbconsts@_SNotIndexField", + "@Dbconsts@_SParamTooBig", + "@Dbconsts@_SParameterNotFound", + "@Dbconsts@_SProviderExecuteNotSupported", + "@Dbconsts@_SProviderSQLNotSupported", + "@Dbconsts@_SRecordChanged", + "@Dbconsts@_SRecordNotFound", + "@Dbconsts@_STextFalse", + "@Dbconsts@_STextTrue", + "@Dbconsts@_STooManyColumns", + "@Dbconsts@_SUnassignedVar", + "@Dbconsts@_SUnknownFieldType", + "@Dbconsts@initialization$qqrv", + "@Dbrtl@@GetPackageInfoTable$qqrv", + "@Dbrtl@@PackageLoad$qqrv", + "@Dbrtl@@PackageUnload$qqrv", + "@Dbrtl@initialization$qqrv", + "@Fmtbcd@BCDToCurr$qqrrx11Fmtbcd@TBcdr15System@Currency", + "@Fmtbcd@BcdAdd$qqrrx11Fmtbcd@TBcdt1r11Fmtbcd@TBcd", + "@Fmtbcd@BcdCompare$qqrrx11Fmtbcd@TBcdt1", + "@Fmtbcd@BcdDivide$qqr17System@AnsiStringt1r11Fmtbcd@TBcd", + "@Fmtbcd@BcdDivide$qqrrx11Fmtbcd@TBcdt1r11Fmtbcd@TBcd", + "@Fmtbcd@BcdDivide$qqrrx11Fmtbcd@TBcdx17System@AnsiStringr11Fmtbcd@TBcd", + "@Fmtbcd@BcdDivide$qqrrx11Fmtbcd@TBcdxdr11Fmtbcd@TBcd", + "@Fmtbcd@BcdMultiply$qqr17System@AnsiStringt1r11Fmtbcd@TBcd", + "@Fmtbcd@BcdMultiply$qqrrx11Fmtbcd@TBcdt1r11Fmtbcd@TBcd", + "@Fmtbcd@BcdMultiply$qqrrx11Fmtbcd@TBcdx17System@AnsiStringr11Fmtbcd@TBcd", + "@Fmtbcd@BcdMultiply$qqrrx11Fmtbcd@TBcdxdr11Fmtbcd@TBcd", + "@Fmtbcd@BcdPrecision$qqrrx11Fmtbcd@TBcd", + "@Fmtbcd@BcdScale$qqrrx11Fmtbcd@TBcd", + "@Fmtbcd@BcdSubtract$qqrrx11Fmtbcd@TBcdt1r11Fmtbcd@TBcd", + "@Fmtbcd@BcdToDouble$qqrrx11Fmtbcd@TBcd", + "@Fmtbcd@BcdToInteger$qqrrx11Fmtbcd@TBcdo", + "@Fmtbcd@BcdToStr$qqrrx11Fmtbcd@TBcd", + "@Fmtbcd@BcdToStrF$qqrrx11Fmtbcd@TBcd21Sysutils@TFloatFormatxixi", + "@Fmtbcd@CurrToBCD$qqrx15System@Currencyr11Fmtbcd@TBcdii", + "@Fmtbcd@DoubleToBcd$qqrxd", + "@Fmtbcd@DoubleToBcd$qqrxdr11Fmtbcd@TBcd", + "@Fmtbcd@EBcdException@", + "@Fmtbcd@EBcdOverflowException@", + "@Fmtbcd@Finalization$qqrv", + "@Fmtbcd@FormatBcd$qqrx17System@AnsiStringrx11Fmtbcd@TBcd", + "@Fmtbcd@IntegerToBcd$qqrxi", + "@Fmtbcd@IsBcdNegative$qqrrx11Fmtbcd@TBcd", + "@Fmtbcd@NormalizeBcd$qqrrx11Fmtbcd@TBcdr11Fmtbcd@TBcdxusxus", + "@Fmtbcd@NullBcd", + "@Fmtbcd@StrToBcd$qqrx17System@AnsiString", + "@Fmtbcd@TryStrToBcd$qqrx17System@AnsiStringr11Fmtbcd@TBcd", + "@Fmtbcd@VarFMTBcd$qqrv", + "@Fmtbcd@VarFMTBcdCreate$qqrr14System@Variantrx11Fmtbcd@TBcd", + "@Fmtbcd@VarFMTBcdCreate$qqrrx11Fmtbcd@TBcd", + "@Fmtbcd@VarFMTBcdCreate$qqrv", + "@Fmtbcd@VarFMTBcdCreate$qqrx17System@AnsiStringusus", + "@Fmtbcd@VarFMTBcdCreate$qqrxdusus", + "@Fmtbcd@VarIsFMTBcd$qqrrx14System@Variant", + "@Fmtbcd@VarToBcd$qqrrx14System@Variant", + "@Fmtbcd@initialization$qqrv", + "@GetPackageInfoTable", + "@Sqltimst@CheckSqlTimeStamp$qqrrx22Sqltimst@TSQLTimeStamp", + "@Sqltimst@DateTimeToSQLTimeStamp$qqrx16System@TDateTime", + "@Sqltimst@Finalization$qqrv", + "@Sqltimst@NullSQLTimeStamp", + "@Sqltimst@SQLDayOfWeek$qqrrx22Sqltimst@TSQLTimeStamp", + "@Sqltimst@SQLTimeStampToDateTime$qqrrx22Sqltimst@TSQLTimeStamp", + "@Sqltimst@SQLTimeStampToStr$qqrx17System@AnsiStringrx22Sqltimst@TSQLTimeStamp", + "@Sqltimst@StrToSQLTimeStamp$qqrx17System@AnsiString", + "@Sqltimst@TryStrToSQLTimeStamp$qqrx17System@AnsiStringr22Sqltimst@TSQLTimeStamp", + "@Sqltimst@VarIsSQLTimeStamp$qqrrx14System@Variant", + "@Sqltimst@VarSQLTimeStamp$qqrv", + "@Sqltimst@VarSQLTimeStampCreate$qqrr14System@Variantrx22Sqltimst@TSQLTimeStamp", + "@Sqltimst@VarSQLTimeStampCreate$qqrrx22Sqltimst@TSQLTimeStamp", + "@Sqltimst@VarSQLTimeStampCreate$qqrv", + "@Sqltimst@VarSQLTimeStampCreate$qqrx16System@TDateTime", + "@Sqltimst@VarSQLTimeStampCreate$qqrx17System@AnsiString", + "@Sqltimst@VarToSQLTimeStamp$qqrrx14System@Variant", + "@Sqltimst@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 1012595196, + "characteristics": "0xA18E" + }, + "strings_total": 4896, + "domain_strings": [ + "AutoGenerateValuels3@", + "Indexls3@", + "Transliterate", + "poExtSyntax", + "SELECT", + "UPDATE", + "select", + "@System@@ROUND$qqrv", + "@Variants@TInvokeableVariantType@DoProcedure$qqrrx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TInvokeableVariantType@DoFunction$qqrr8TVarDatarx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TCustomVariantType@VarDataFromOleStr$qqrr8TVarDatax17System@WideString", + "@Variants@TCustomVariantType@VarDataFromStr$qqrr8TVarDatax17System@AnsiString", + "@Variants@TCustomVariantType@VarDataCastTo$qqrr8TVarDatarx8TVarDataxus", + "@Variants@TCustomVariantType@UnaryOp$qqrr8TVarDataxi", + "@Variants@TCustomVariantType@RightPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@LeftPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@CastTo$qqrr8TVarDatarx8TVarDataxus", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Typinfo@TPublishableVariantType@SetProperty$qqrrx8TVarDatax17System@AnsiStringt1", + "@Typinfo@TPublishableVariantType@GetProperty$qqrr8TVarDatarx8TVarDatax17System@AnsiString", + "@Db@TDataSet@ActivateBuffers$qqrv", + "@Db@TDataSet@Delete$qqrv", + "@Db@TDataSet@Insert$qqrv", + "@Db@TDefCollection@Update$qqrp23Classes@TCollectionItem", + "@Db@TField@SetAutoGenerateValue$qqrx19Db@TAutoRefreshFlag", + "@Db@TFieldDefs@Update$qqrv", + "@Db@TFlatList@Update$qqrv", + "@Db@TIndexDefs@Update$qqrv", + "@Db@TParams@Update$qqrp23Classes@TCollectionItem", + "Delete record?", + "Delete all selected records?/Grid requested to display more than 256 columns", + "DataSource cannot be changed*Nested datasets cannot have a MasterSource0Cannot perform this operation on an open dataset\"Dataset not in edit or insert mode1Cannot perform this operation on a closed dataset1Cannot perform this operation on an empty dataset!Cannot modify a read-only dataset#Nested dataset must inherit from %s(Filter expression incorrectly terminated" + ] + }, + "Dclhrp60.bpl": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 217212, + "raw_off": 1024, + "raw_size": 217600 + }, + { + "name": "DATA", + "va": 225280, + "vsize": 2864, + "raw_off": 218624, + "raw_size": 3072 + }, + { + "name": "BSS", + "va": 229376, + "vsize": 261, + "raw_off": 221696, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 233472, + "vsize": 37906, + "raw_off": 221696, + "raw_size": 38400 + }, + { + "name": ".edata", + "va": 274432, + "vsize": 71958, + "raw_off": 260096, + "raw_size": 72192 + }, + { + "name": ".rdata", + "va": 348160, + "vsize": 32, + "raw_off": 332288, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 352256, + "vsize": 16720, + "raw_off": 332800, + "raw_size": 16896 + }, + { + "name": ".rsrc", + "va": 372736, + "vsize": 69120, + "raw_off": 349696, + "raw_size": 69120 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "advapi32.dll", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "HRRES32.DLL", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vclx60.bpl", + "VclSmp60.bpl" + ], + "exports": [ + "@$xp$13Hrprtc@THRPrt", + "@$xp$14Hreport@THRPrs", + "@$xp$15Hrclass@THRSize", + "@$xp$15Hrecord@THRTree", + "@$xp$15Hrlinkc@THRLink", + "@$xp$16Hrclass@THRLines", + "@$xp$16Hrclass@THRSlash", + "@$xp$16Hrclass@THRTimer", + "@$xp$16Hrclass@THRUnits", + "@$xp$16Hrcommon@THRPage", + "@$xp$16Hrctrlsc@THRCalc", + "@$xp$16Hrctrlsc@THRMemo", + "@$xp$16Hrecord@THRTrees", + "@$xp$16Hrgridc@THRField", + "@$xp$16Hrprevu@THRGlyph", + "@$xp$17Hrclass@TGetIsEOF", + "@$xp$17Hrcommon@THRGroup", + "@$xp$17Hrctrlsc@THRImage", + "@$xp$17Hrctrlsc@THRLabel", + "@$xp$17Hrecord@THRGroupR", + "@$xp$17Hrecord@THRGroups", + "@$xp$17Hrlinkf@THRLinkFf", + "@$xp$17Hrlinkg@THRLinkGf", + "@$xp$17Hrlinks@THRLinkSf", + "@$xp$17Hrpager@THRPageRf", + "@$xp$17Hrpageu@THRPageUf", + "@$xp$17Hrprevu@THRPreVUf", + "@$xp$17Hrprtc@TSourceDir", + "@$xp$17Hrsaveu@THRSaveUf", + "@$xp$18Hrclass@THRBtnType", + "@$xp$18Hrclass@THROnDebug", + "@$xp$18Hrclass@THRSQLOpen", + "@$xp$18Hrctrlsc@THRDBMemo", + "@$xp$18Hrctrlsc@THRDBText", + "@$xp$18Hrprevc@THRPreview", + "@$xp$19Hrbarcd@THRRotation", + "@$xp$19Hrclass@THRGotoPage", + "@$xp$19Hrclass@THRGroupDir", + "@$xp$19Hrclass@THRLinesSet", + "@$xp$19Hrclass@THRPageInfo", + "@$xp$19Hrclass@THRPageSize", + "@$xp$19Hrclass@THRPrintOND", + "@$xp$19Hrclass@THRProperty", + "@$xp$19Hrclass@THRSlashSet", + "@$xp$19Hrctrlsc@THRBarcode", + "@$xp$19Hrctrlsc@THRDBImage", + "@$xp$19Hrctrlsc@THRSysData", + "@$xp$19Hrecord@THRBookMark", + "@$xp$19Hreport@TActionProc", + "@$xp$19Hreport@TDialogProc", + "@$xp$19Hreport@THRZoomKind", + "@$xp$19Hreportu@THReportUf", + "@$xp$19Hrgridcu@THRGridCUf", + "@$xp$19Hrgridfu@THRGridFUf", + "@$xp$19Hrgroupu@THRGroupUf", + "@$xp$19Hrlinkc@THRLinkInfo", + "@$xp$19Hrlinksg@THRLinkSGf", + "@$xp$19Hrprtc@THRBandTypes", + "@$xp$19Hrrichc@THRRichMemo", + "@$xp$20Hrbarcd@THRPlusDigit", + "@$xp$20Hrclass@THRAfterPage", + "@$xp$20Hrclass@THRBufAction", + "@$xp$20Hrclass@THRButtonSet", + "@$xp$20Hrclass@THROnAddPage", + "@$xp$20Hrclass@THROnProcess", + "@$xp$20Hrclass@THRRangeType", + "@$xp$20Hrclass@THRSizeStyle", + "@$xp$20Hrcommon@THRPageBand", + "@$xp$20Hrctrlsc@THRCheckBox", + "@$xp$20Hrecord@THRBookMarks", + "@$xp$20Hrecord@THRCustomDBI", + "@$xp$20Hreport@THyperReport", + "@$xp$20Hrgridc@THRFieldType", + "@$xp$20Hrrestyp@THRResource", + "@$xp$21Hrclass@THRBeforePage", + "@$xp$21Hrclass@THROnAddCount", + "@$xp$21Hrclass@THROnNextData", + "@$xp$21Hrclass@THRQCondition", + "@$xp$21Hrclass@THRSelectRect", + "@$xp$21Hrclass@THRShadowType", + "@$xp$21Hrcommon@THRBandAlign", + "@$xp$21Hrcommon@THRBandValue", + "@$xp$21Hrcommon@THRGroupBand", + "@$xp$21Hrcommon@THRPageBreak", + "@$xp$21Hrctrlsc@THRDBBarcode", + "@$xp$21Hrctrlsc@THRImageType", + "@$xp$21Hrctrlsc@THRResetType", + "@$xp$21Hreport@TOnSaveDialog", + "@$xp$21Hrepreg@THRPageEditor", + "@$xp$21Hrgridc@THRStringGrid", + "@$xp$21Hrrichc@THRDBRichMemo", + "@$xp$22Hrclass@THRAfterReport", + "@$xp$22Hrclass@THRBorderStyle", + "@$xp$22Hrclass@THRFieldAligns", + "@$xp$22Hrclass@THRFilterEvent", + "@$xp$22Hrclass@THRMargineSize", + "@$xp$22Hrclass@THROrientation", + "@$xp$22Hrclass@THRPictureType", + "@$xp$22Hrclass@THRPrintOption", + "@$xp$22Hrclass@THRStreamState", + "@$xp$22Hrcommon@THRBandLocate", + "@$xp$22Hrcommon@THRGroupAlign", + "@$xp$22Hrcommon@THRGroupStyle", + "@$xp$22Hrctrlsc@THRDBCheckBox", + "@$xp$22Hrctrlsc@THRImageLabel", + "@$xp$22Hrctrlsc@THRResetRange", + "@$xp$22Hrecord@THRSaveDataSet", + "@$xp$22Hreport@THRReportState", + "@$xp$22Hrolec@THROleContainer", + "@$xp$23Hrbarcd@THRBarcodeStyle", + "@$xp$23Hrclass@THRAfterPreview", + "@$xp$23Hrclass@THRBeforeReport", + "@$xp$23Hrclass@THRMemoryStream", + "@$xp$23Hrclass@THROnChangePage", + "@$xp$23Hrclass@THROnFileNotify", + "@$xp$23Hrctrlsc@THRCustomImage", + "@$xp$23Hrctrlsc@THRCustomLabel", + "@$xp$23Hrctrlsc@THRLabelLocate", + "@$xp$23Hrctrlsc@THRSysDataType", + "@$xp$23Hrecord@THRSaveDataSets", + "@$xp$23Hrpicedt@TGraphicEditor", + "@$xp$23Hrpicedt@TPictureEditor", + "@$xp$23Hrprevu@THRButtonNotify", + "@$xp$24Hrclass@THRBeforePreview", + "@$xp$24Hrcommon@THRAcrossHReset", + "@$xp$24Hrcommon@THRPageBandType", + "@$xp$24Hrctrlsc@THRCalcFunction", + "@$xp$24Hrgridc@THROnIndexChange", + "@$xp$24Hrolec@THRDBOleContainer", + "@$xp$25Hrbarcd@THRBarcodeOptions", + "@$xp$25Hrcommon@THRCustomControl", + "@$xp$25Hrcommon@THRGroupBandType", + "@$xp$25Hrctrlsc@THRCustomBarcode", + "@$xp$25Hrctrlsc@THRCustomDBLabel", + "@$xp$25Hrctrlsc@THRWindowControl", + "@$xp$25Hreport@THRPreviewOptions", + "@$xp$25Hrepreg@THRLinkInfoEditor", + "@$xp$25Hrlinks@THRNodeAttachMode", + "@$xp$25Hrpicedt@TGraphicProperty", + "@$xp$25Hrpicedt@TPictureProperty", + "@$xp$25Hrprevu@THRPreviewControl", + "@$xp$25Hrrichc@THRCustomRichMemo", + "@$xp$26Hrcommon@THRAfterBandPrint", + "@$xp$26Hrctrlsc@THRCustomCheckBox", + "@$xp$26Hrctrlsc@THRDBTextFunction", + "@$xp$26Hrepreg@THyperReportEditor", + "@$xp$26Hrpicedt@TPictureEditorDlg", + "@$xp$27Hrcommon@THRAcrossDirection", + "@$xp$27Hrcommon@THRBeforeBandPrint", + "@$xp$27Hrctrlsc@THRAfterLabelPrint", + "@$xp$27Hrepreg@THRGroupStyleEditor", + "@$xp$27Hrepreg@THRLinkInfoProperty", + "@$xp$27Hrepreg@THRPageInfoProperty", + "@$xp$27Hrepreg@THRStringGridEditor", + "@$xp$27Hrprevu@THRButtonPostNotify", + "@$xp$28Hrclass@THROnShowPrintDialog", + "@$xp$28Hrctrlsc@THRBeforeLabelPrint", + "@$xp$29Hrepreg@THRGroupStyleProperty", + "@$xp$29Hrepreg@THRSelectRectProperty", + "@$xp$30Hrepreg@THRMargineSizeProperty", + "@Dclhrp60@@GetPackageInfoTable$qqrv", + "@Dclhrp60@@PackageLoad$qqrv", + "@Dclhrp60@@PackageUnload$qqrv", + "@Dclhrp60@initialization$qqrv", + "@GetPackageInfoTable", + "@Hrbarcd@Finalization$qqrv", + "@Hrbarcd@THRBarcodeOptions@", + "@Hrbarcd@THRBarcodeOptions@$bctr$qqrp18Classes@TComponent", + "@Hrbarcd@THRBarcodeOptions@$bdtr$qqrv", + "@Hrbarcd@THRBarcodeOptions@SetCheckDigit$qqro", + "@Hrbarcd@THRBarcodeOptions@SetModuleWidth$qqri", + "@Hrbarcd@THRBarcodeOptions@SetPlusDigit$qqr20Hrbarcd@THRPlusDigit", + "@Hrbarcd@THRBarcodeOptions@SetRotation$qqr19Hrbarcd@THRRotation", + "@Hrbarcd@THRBarcodeOptions@SetShowData$qqro", + "@Hrbarcd@initialization$qqrv", + "@Hrclass@Finalization$qqrv", + "@Hrclass@HRFmtLoadStr$qqr20Hrrestyp@THRResourcepx14System@TVarRecxi", + "@Hrclass@HRLoadStr$qqr20Hrrestyp@THRResource", + "@Hrclass@LoadPictureFromStream$qqrp17Graphics@TPicture22Hrclass@THRPictureTypep23Hrclass@THRMemoryStream", + "@Hrclass@LoadTextFromStream$qqrp23Hrclass@THRMemoryStream", + "@Hrclass@SDefaultButtons", + "@Hrclass@SaveMetafileToStream$qqrp18Graphics@TMetafilep23Hrclass@THRMemoryStream", + "@Hrclass@SavePictureToStream$qqrp17Graphics@TPicture22Hrclass@THRPictureTypep23Hrclass@THRMemoryStream", + "@Hrclass@SaveTextToStream$qqr17System@AnsiStringp23Hrclass@THRMemoryStream", + "@Hrclass@THRBorderStyle@", + "@Hrclass@THRBorderStyle@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRBorderStyle@$bctr$qqrp18Classes@TComponentus", + "@Hrclass@THRBorderStyle@$bdtr$qqrv", + "@Hrclass@THRBorderStyle@CalcPixels$qqrv", + "@Hrclass@THRBorderStyle@Changed$qqrp14System@TObject", + "@Hrclass@THRBorderStyle@DefineProperties$qqrp14Classes@TFiler", + "@Hrclass@THRBorderStyle@DrawBorder$qqrp16Graphics@TCanvasrx11Types@TRect", + "@Hrclass@THRBorderStyle@DrawBorderEx$qqrp16Graphics@TCanvasrx11Types@TRectdddd", + "@Hrclass@THRBorderStyle@GetBottom$qqrv", + "@Hrclass@THRBorderStyle@GetLeft$qqrv", + "@Hrclass@THRBorderStyle@GetRight$qqrv", + "@Hrclass@THRBorderStyle@GetTop$qqrv", + "@Hrclass@THRBorderStyle@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrclass@THRBorderStyle@ReadBottom$qqrp15Classes@TReader", + "@Hrclass@THRBorderStyle@ReadLeft$qqrp15Classes@TReader", + "@Hrclass@THRBorderStyle@ReadRight$qqrp15Classes@TReader", + "@Hrclass@THRBorderStyle@ReadTop$qqrp15Classes@TReader", + "@Hrclass@THRBorderStyle@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrclass@THRBorderStyle@SetBackground$qqrp15Graphics@TBrush", + "@Hrclass@THRBorderStyle@SetBottom$qqro", + "@Hrclass@THRBorderStyle@SetCenter$qqro", + "@Hrclass@THRBorderStyle@SetCircle$qqro", + "@Hrclass@THRBorderStyle@SetDPI$qqrddddo", + "@Hrclass@THRBorderStyle@SetLeft$qqro", + "@Hrclass@THRBorderStyle@SetLines$qqr44System@%Set$t16Hrclass@THRLines$iuc$0$iuc$3%", + "@Hrclass@THRBorderStyle@SetPicture$qqrp17Graphics@TPicture", + "@Hrclass@THRBorderStyle@SetRight$qqro", + "@Hrclass@THRBorderStyle@SetRoundCurve$qqri", + "@Hrclass@THRBorderStyle@SetRoundRect$qqro", + "@Hrclass@THRBorderStyle@SetShadowBrush$qqrp15Graphics@TBrush", + "@Hrclass@THRBorderStyle@SetShadowType$qqr21Hrclass@THRShadowType", + "@Hrclass@THRBorderStyle@SetShadowWidth$qqri", + "@Hrclass@THRBorderStyle@SetSlash$qqr44System@%Set$t16Hrclass@THRSlash$iuc$0$iuc$1%", + "@Hrclass@THRBorderStyle@SetStretch$qqro", + "@Hrclass@THRBorderStyle@SetTop$qqro", + "@Hrclass@THRBorderStyle@SetTransparent$qqro", + "@Hrclass@THRFieldAligns@", + "@Hrclass@THRFieldAligns@SetAlignment$qqro", + "@Hrclass@THRFieldAligns@SetHeight$qqro", + "@Hrclass@THRFieldAligns@SetWidth$qqro", + "@Hrclass@THRMargineSize@", + "@Hrclass@THRMargineSize@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRMargineSize@CalcPixels$qqrv", + "@Hrclass@THRMargineSize@Changed$qqrp14System@TObject", + "@Hrclass@THRMargineSize@SetBottom$qqri", + "@Hrclass@THRMargineSize@SetDPI$qqrddddo", + "@Hrclass@THRMargineSize@SetLeft$qqri", + "@Hrclass@THRMargineSize@SetRight$qqri", + "@Hrclass@THRMargineSize@SetTop$qqri", + "@Hrclass@THRMemoryStream@", + "@Hrclass@THRMemoryStream@Read$qqrpvi", + "@Hrclass@THRMemoryStream@ReadRead$qqrpvi", + "@Hrclass@THRMemoryStream@Seek$qqrius", + "@Hrclass@THRMemoryStream@Write$qqrpxvi", + "@Hrclass@THRPageInfo@", + "@Hrclass@THRPageInfo@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRPageInfo@Changed$qqrp14System@TObject", + "@Hrclass@THRPageInfo@SetDPI$qqrddddo", + "@Hrclass@THRPageInfo@SetHeight$qqrd", + "@Hrclass@THRPageInfo@SetMargineBottom$qqrd", + "@Hrclass@THRPageInfo@SetMargineLeft$qqrd", + "@Hrclass@THRPageInfo@SetMargineRight$qqrd", + "@Hrclass@THRPageInfo@SetMargineTop$qqrd", + "@Hrclass@THRPageInfo@SetOrientation$qqr22Hrclass@THROrientation", + "@Hrclass@THRPageInfo@SetSize$qqr19Hrclass@THRPageSize", + "@Hrclass@THRPageInfo@SetUnits$qqr16Hrclass@THRUnits", + "@Hrclass@THRPageInfo@SetWidth$qqrd", + "@Hrclass@THRPrintOption@", + "@Hrclass@THRPrintOption@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRProperty@", + "@Hrclass@THRProperty@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRProperty@$bctr$qqrp18Classes@TComponentus", + "@Hrclass@THRProperty@$bdtr$qqrv", + "@Hrclass@THRProperty@Changed$qqrp14System@TObject", + "@Hrclass@THRProperty@Refresh$qqrv", + "@Hrclass@THRProperty@Updated$qqrv", + "@Hrclass@THRProperty@Updating$qqrv", + "@Hrclass@THRSelectRect@", + "@Hrclass@THRSelectRect@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRSelectRect@SetBottom$qqro", + "@Hrclass@THRSelectRect@SetLeft$qqro", + "@Hrclass@THRSelectRect@SetRight$qqro", + "@Hrclass@THRSelectRect@SetTop$qqro", + "@Hrclass@THRSize@", + "@Hrclass@THRSize@SetHeight$qqrd", + "@Hrclass@THRSize@SetLeft$qqrd", + "@Hrclass@THRSize@SetTop$qqrd", + "@Hrclass@THRSize@SetWidth$qqrd", + "@Hrclass@THRTimer@", + "@Hrclass@THRTimer@$bctr$qqrp18Classes@TComponent", + "@Hrclass@THRTimer@$bdtr$qqrv", + "@Hrclass@THRTimer@DoTimer$qqrv", + "@Hrclass@THRTimer@SetEnabled$qqro", + "@Hrclass@THRTimer@SetInterval$qqrui", + "@Hrclass@THRTimer@SetOnTimer$qqrynpqqrp14System@TObject$v", + "@Hrclass@THRTimer@Timer$qqrv", + "@Hrclass@THRTimer@UpdateTimer$qqrv", + "@Hrclass@THRTimer@WndProc$qqrr17Messages@TMessage", + "@Hrclass@initialization$qqrv", + "@Hrcommon@Finalization$qqrv", + "@Hrcommon@FindHRPage$qqrp18Classes@TComponent", + "@Hrcommon@SetAllDPI$qqrp18Classes@TComponentddddo", + "@Hrcommon@SetAllSize$qqrp18Classes@TComponent", + "@Hrcommon@THRCustomControl@", + "@Hrcommon@THRCustomControl@$bctr$qqrp18Classes@TComponent", + "@Hrcommon@THRCustomControl@$bctr$qqrp18Classes@TComponentus", + "@Hrcommon@THRCustomControl@$bdtr$qqrv", + "@Hrcommon@THRCustomControl@CMControlListChange$qqrr17Messages@TMessage", + "@Hrcommon@THRCustomControl@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Hrcommon@THRCustomControl@CMHitTest$qqrr21Messages@TWMNCHitTest", + "@Hrcommon@THRCustomControl@CMIsToolControl$qqrr17Messages@TMessage", + "@Hrcommon@THRCustomControl@CMTextChanged$qqrr17Messages@TMessage", + "@Hrcommon@THRCustomControl@Changed$qqrp14System@TObject", + "@Hrcommon@THRCustomControl@ClsCurrentValue$qqrv", + "@Hrcommon@THRCustomControl@DoFormat$qqrv", + "@Hrcommon@THRCustomControl@GetAfterPrint$qqrv", + "@Hrcommon@THRCustomControl@GetBeforePrint$qqrv", + "@Hrcommon@THRCustomControl@GetDPIA$qqrv", + "@Hrcommon@THRCustomControl@GetDPIC$qqrv", + "@Hrcommon@THRCustomControl@GetDPIX$qqrv", + "@Hrcommon@THRCustomControl@GetDPIY$qqrv", + "@Hrcommon@THRCustomControl@GetLabelText$qqrv", + "@Hrcommon@THRCustomControl@GetUnits$qqrv", + "@Hrcommon@THRCustomControl@GetisDesign$qqrv", + "@Hrcommon@THRCustomControl@Loaded$qqrv", + "@Hrcommon@THRCustomControl@OnCreateComponent$qqrp18Classes@TComponent", + "@Hrcommon@THRCustomControl@OnInsertControl$qqrp17Controls@TControl", + "@Hrcommon@THRCustomControl@Paint$qqrv", + "@Hrcommon@THRCustomControl@Resize$qqrv", + "@Hrcommon@THRCustomControl@ScanField$qqrv", + "@Hrcommon@THRCustomControl@SetBounds$qqriiii", + "@Hrcommon@THRCustomControl@SetCurrentValue$qqrv", + "@Hrcommon@THRCustomControl@SetDPI$qqrddddo", + "@Hrcommon@THRCustomControl@SetName$qqrx17System@AnsiString", + "@Hrcommon@THRCustomControl@SetSize$qqrv", + "@Hrcommon@THRCustomControl@SetisCalled$qqro", + "@Hrcommon@THRCustomControl@SizeChanged$qqrp14System@TObject", + "@Hrcommon@THRCustomControl@WMMove$qqrr16Messages@TWMMove", + "@Hrcommon@THRCustomControl@WMSize$qqrr16Messages@TWMSize", + "@Hrcommon@THRCustomControl@isPrintBand$qqri", + "@Hrcommon@THRCustomControl@isValueChanged$qqrv", + "@Hrcommon@THRGroup@", + "@Hrcommon@THRGroup@$bctr$qqrp18Classes@TComponent", + "@Hrcommon@THRGroup@$bdtr$qqrv", + "@Hrcommon@THRGroup@AddRefBand$qqrp14System@TObject", + "@Hrcommon@THRGroup@AlignControl$qqrp21Hrcommon@THRGroupBand", + "@Hrcommon@THRGroup@FindGroupBand$qqr25Hrcommon@THRGroupBandType", + "@Hrcommon@THRGroup@GetGroupBandRect$qqr25Hrcommon@THRGroupBandTyper11Types@TRect", + "@Hrcommon@THRGroup@GetRefBands$qqri", + "@Hrcommon@THRGroup@MakeBand$qqrp18Classes@TComponent", + "@Hrcommon@THRGroup@Paint$qqrv", + "@Hrcommon@THRGroup@RemoveRefBand$qqrp14System@TObject", + "@Hrcommon@THRGroup@SetLocateAtPage$qqr22Hrcommon@THRGroupAlign", + "@Hrcommon@THRGroupBand@", + "@Hrcommon@THRGroupBand@$bctr$qqrp18Classes@TComponent", + "@Hrcommon@THRGroupBand@$bdtr$qqrv", + "@Hrcommon@THRGroupBand@Paint$qqrv", + "@Hrcommon@THRGroupBand@SetAlignWithGroup$qqr21Hrcommon@THRBandAlign", + "@Hrcommon@THRGroupBand@SetBandType$qqr25Hrcommon@THRGroupBandType", + "@Hrcommon@THRGroupBand@SetBodyGroup$qqrp17Hrcommon@THRGroup", + "@Hrcommon@THRGroupBand@SetLocateAtGroup$qqr22Hrcommon@THRBandLocate", + "@Hrcommon@THRGroupStyle@", + "@Hrcommon@THRGroupStyle@$bctr$qqrv", + "@Hrcommon@THRPage@", + "@Hrcommon@THRPage@$bctr$qqrp18Classes@TComponent", + "@Hrcommon@THRPage@$bctr$qqrp18Classes@TComponentus", + "@Hrcommon@THRPage@$bdtr$qqrv", + "@Hrcommon@THRPage@AddRefBand$qqrp14System@TObject", + "@Hrcommon@THRPage@AlignControl$qqrp25Hrcommon@THRCustomControl", + "@Hrcommon@THRPage@AlignGroup$qqrp17Hrcommon@THRGroup", + "@Hrcommon@THRPage@AlignPageBand$qqrp20Hrcommon@THRPageBand", + "@Hrcommon@THRPage@AlignPageControls$qqrv", + "@Hrcommon@THRPage@Changed$qqrp14System@TObject", + "@Hrcommon@THRPage@DrawPage$qqrv", + "@Hrcommon@THRPage@DrawScale$qqrv", + "@Hrcommon@THRPage@FindPageBand$qqr24Hrcommon@THRPageBandType", + "@Hrcommon@THRPage@GetPageBandRect$qqr24Hrcommon@THRPageBandTyper11Types@TRect", + "@Hrcommon@THRPage@GetRefBands$qqri", + "@Hrcommon@THRPage@Loaded$qqrv", + "@Hrcommon@THRPage@OnCreateComponent$qqrp18Classes@TComponent", + "@Hrcommon@THRPage@OnInsertControl$qqrp17Controls@TControl", + "@Hrcommon@THRPage@Paint$qqrv", + "@Hrcommon@THRPage@RemoveRefBand$qqrp14System@TObject", + "@Hrcommon@THRPage@SetBounds$qqriiii", + "@Hrcommon@THRPage@SetDPI$qqrddddo", + "@Hrcommon@THRPage@SetPrintZoom$qqri", + "@Hrcommon@THRPage@SetRuler$qqro", + "@Hrcommon@THRPage@SetUnits$qqr16Hrclass@THRUnits", + "@Hrcommon@THRPage@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Hrcommon@THRPageBand@", + "@Hrcommon@THRPageBand@$bctr$qqrp18Classes@TComponent", + "@Hrcommon@THRPageBand@$bdtr$qqrv", + "@Hrcommon@THRPageBand@Paint$qqrv", + "@Hrcommon@THRPageBand@SetBandType$qqr24Hrcommon@THRPageBandType", + "@Hrcommon@THRPageBand@SetLocateAtPage$qqr15Controls@TAlign", + "@Hrcommon@initialization$qqrv", + "@Hrconst@Finalization$qqrv", + "@Hrconst@initialization$qqrv", + "@Hrctrlsc@Finalization$qqrv", + "@Hrctrlsc@THRBarcode@", + "@Hrctrlsc@THRCalc@", + "@Hrctrlsc@THRCalc@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRCalc@$bdtr$qqrv", + "@Hrctrlsc@THRCalc@CrossTabDoFunction$qqri", + "@Hrctrlsc@THRCalc@CrossTabResetValue$qqri", + "@Hrctrlsc@THRCalc@DoFunction$qqrv", + "@Hrctrlsc@THRCalc@DoResetValue$qqrv", + "@Hrctrlsc@THRCalc@GetCrossTabRCount$qqri", + "@Hrctrlsc@THRCalc@GetCrossTabValue$qqri", + "@Hrctrlsc@THRCalc@GetLabelText$qqrv", + "@Hrctrlsc@THRCalc@GetValueText$qqrv", + "@Hrctrlsc@THRCalc@SetCalcFunction$qqr24Hrctrlsc@THRCalcFunction", + "@Hrctrlsc@THRCalc@SetCrossTabRCount$qqrirx14System@Variant", + "@Hrctrlsc@THRCalc@SetCrossTabValue$qqrirx14System@Variant", + "@Hrctrlsc@THRCalc@SetDisplayFormat$qqr17System@AnsiString", + "@Hrctrlsc@THRCalc@SetFieldText$qqrp18Hrctrlsc@THRDBText", + "@Hrctrlsc@THRCalc@SetResetGroup$qqrp17Hrcommon@THRGroup", + "@Hrctrlsc@THRCalc@SetResetRange$qqr22Hrctrlsc@THRResetRange", + "@Hrctrlsc@THRCalc@SetValue$qqrrx14System@Variant", + "@Hrctrlsc@THRCheckBox@", + "@Hrctrlsc@THRCustomBarcode@", + "@Hrctrlsc@THRCustomBarcode@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRCustomBarcode@$bctr$qqrp18Classes@TComponentus", + "@Hrctrlsc@THRCustomBarcode@$bdtr$qqrv", + "@Hrctrlsc@THRCustomBarcode@HRDrawText$qqrp16Graphics@TCanvasr17System@AnsiStringr11Types@TRect", + "@Hrctrlsc@THRCustomBarcode@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomBarcode@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomBarcode@SetBarcodeStyle$qqr23Hrbarcd@THRBarcodeStyle", + "@Hrctrlsc@THRCustomCheckBox@", + "@Hrctrlsc@THRCustomCheckBox@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRCustomCheckBox@GetChecked$qqrv", + "@Hrctrlsc@THRCustomCheckBox@HRDrawText$qqrp16Graphics@TCanvasr17System@AnsiStringr11Types@TRect", + "@Hrctrlsc@THRCustomCheckBox@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomCheckBox@Paint$qqrv", + "@Hrctrlsc@THRCustomCheckBox@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomCheckBox@SetAlignment$qqr18Classes@TAlignment", + "@Hrctrlsc@THRCustomCheckBox@SetChecked$qqro", + "@Hrctrlsc@THRCustomCheckBox@SetDPI$qqrddddo", + "@Hrctrlsc@THRCustomCheckBox@SetState$qqr23Stdctrls@TCheckBoxState", + "@Hrctrlsc@THRCustomCheckBox@Toggle$qqrv", + "@Hrctrlsc@THRCustomDBLabel@", + "@Hrctrlsc@THRCustomDBLabel@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRCustomDBLabel@$bdtr$qqrv", + "@Hrctrlsc@THRCustomDBLabel@ActiveChange$qqrp14System@TObject", + "@Hrctrlsc@THRCustomDBLabel@AddRefField$qqrp14System@TObject", + "@Hrctrlsc@THRCustomDBLabel@AlignControl$qqrp23Hrctrlsc@THRCustomLabel", + "@Hrctrlsc@THRCustomDBLabel@CMGetDataLink$qqrr17Messages@TMessage", + "@Hrctrlsc@THRCustomDBLabel@ClsCurrentValue$qqrv", + "@Hrctrlsc@THRCustomDBLabel@DataChange$qqrp14System@TObject", + "@Hrctrlsc@THRCustomDBLabel@GetDataField$qqrv", + "@Hrctrlsc@THRCustomDBLabel@GetDataSource$qqrv", + "@Hrctrlsc@THRCustomDBLabel@GetField$qqrv", + "@Hrctrlsc@THRCustomDBLabel@GetFieldText$qqrv", + "@Hrctrlsc@THRCustomDBLabel@GetLabelText$qqrv", + "@Hrctrlsc@THRCustomDBLabel@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRCustomDBLabel@Paint$qqrv", + "@Hrctrlsc@THRCustomDBLabel@RemoveRefField$qqrp14System@TObject", + "@Hrctrlsc@THRCustomDBLabel@SetDataField$qqrx17System@AnsiString", + "@Hrctrlsc@THRCustomDBLabel@SetDataSource$qqrp14Db@TDataSource", + "@Hrctrlsc@THRCustomDBLabel@SetDisplayFormat$qqr17System@AnsiString", + "@Hrctrlsc@THRCustomDBLabel@SetFieldAlignment$qqrv", + "@Hrctrlsc@THRCustomDBLabel@SetValue$qqrrx14System@Variant", + "@Hrctrlsc@THRCustomImage@", + "@Hrctrlsc@THRCustomImage@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRCustomImage@$bctr$qqrp18Classes@TComponentus", + "@Hrctrlsc@THRCustomImage@$bdtr$qqrv", + "@Hrctrlsc@THRCustomImage@DrawTextEx$qqrp16Graphics@TCanvasr11Types@TRectdddd", + "@Hrctrlsc@THRCustomImage@GetPalette$qqrv", + "@Hrctrlsc@THRCustomImage@GetPicture$qqrv", + "@Hrctrlsc@THRCustomImage@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomImage@Loaded$qqrv", + "@Hrctrlsc@THRCustomImage@Paint$qqrv", + "@Hrctrlsc@THRCustomImage@PictureChanged$qqrp14System@TObject", + "@Hrctrlsc@THRCustomImage@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomImage@SetPicture$qqrp17Graphics@TPicture", + "@Hrctrlsc@THRCustomLabel@", + "@Hrctrlsc@THRCustomLabel@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRCustomLabel@$bctr$qqrp18Classes@TComponentus", + "@Hrctrlsc@THRCustomLabel@$bdtr$qqrv", + "@Hrctrlsc@THRCustomLabel@AdjustBounds$qqrv", + "@Hrctrlsc@THRCustomLabel@CMFontChanged$qqrr17Messages@TMessage", + "@Hrctrlsc@THRCustomLabel@CMTextChanged$qqrr17Messages@TMessage", + "@Hrctrlsc@THRCustomLabel@Changed$qqrp14System@TObject", + "@Hrctrlsc@THRCustomLabel@ClsCurrentValue$qqrv", + "@Hrctrlsc@THRCustomLabel@DrawTextEx$qqrp16Graphics@TCanvasr11Types@TRectdddd", + "@Hrctrlsc@THRCustomLabel@GetAfterPrint$qqrv", + "@Hrctrlsc@THRCustomLabel@GetBeforePrint$qqrv", + "@Hrctrlsc@THRCustomLabel@GetCaption$qqrv", + "@Hrctrlsc@THRCustomLabel@GetDPIA$qqrv", + "@Hrctrlsc@THRCustomLabel@GetDPIC$qqrv", + "@Hrctrlsc@THRCustomLabel@GetDPIX$qqrv", + "@Hrctrlsc@THRCustomLabel@GetDPIY$qqrv", + "@Hrctrlsc@THRCustomLabel@GetLabelText$qqrv", + "@Hrctrlsc@THRCustomLabel@GetUnits$qqrv", + "@Hrctrlsc@THRCustomLabel@GetisDesign$qqrv", + "@Hrctrlsc@THRCustomLabel@HRDrawText$qqrp16Graphics@TCanvasr17System@AnsiStringr11Types@TRect", + "@Hrctrlsc@THRCustomLabel@Invalidate$qqrv", + "@Hrctrlsc@THRCustomLabel@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomLabel@Loaded$qqrv", + "@Hrctrlsc@THRCustomLabel@Paint$qqrv", + "@Hrctrlsc@THRCustomLabel@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRCustomLabel@SetAutoSize$qqro", + "@Hrctrlsc@THRCustomLabel@SetBounds$qqriiii", + "@Hrctrlsc@THRCustomLabel@SetCaption$qqr17System@AnsiString", + "@Hrctrlsc@THRCustomLabel@SetCurrentValue$qqrv", + "@Hrctrlsc@THRCustomLabel@SetDPI$qqrddddo", + "@Hrctrlsc@THRCustomLabel@SetFieldText$qqrp18Hrctrlsc@THRDBText", + "@Hrctrlsc@THRCustomLabel@SetFlags$qqr17System@AnsiString", + "@Hrctrlsc@THRCustomLabel@SetFontWidth$qqri", + "@Hrctrlsc@THRCustomLabel@SetLocateAtText$qqr23Hrctrlsc@THRLabelLocate", + "@Hrctrlsc@THRCustomLabel@SetSize$qqrv", + "@Hrctrlsc@THRCustomLabel@SizeChanged$qqrp14System@TObject", + "@Hrctrlsc@THRCustomLabel@isValueChanged$qqrv", + "@Hrctrlsc@THRDBBarcode@", + "@Hrctrlsc@THRDBBarcode@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRDBBarcode@$bdtr$qqrv", + "@Hrctrlsc@THRDBBarcode@CMGetDataLink$qqrr17Messages@TMessage", + "@Hrctrlsc@THRDBBarcode@DataChange$qqrp14System@TObject", + "@Hrctrlsc@THRDBBarcode@GetDataField$qqrv", + "@Hrctrlsc@THRDBBarcode@GetDataSource$qqrv", + "@Hrctrlsc@THRDBBarcode@GetField$qqrv", + "@Hrctrlsc@THRDBBarcode@GetFieldText$qqrv", + "@Hrctrlsc@THRDBBarcode@GetLabelText$qqrv", + "@Hrctrlsc@THRDBBarcode@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRDBBarcode@SetDataField$qqrx17System@AnsiString", + "@Hrctrlsc@THRDBBarcode@SetDataSource$qqrp14Db@TDataSource", + "@Hrctrlsc@THRDBCheckBox@", + "@Hrctrlsc@THRDBCheckBox@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRDBCheckBox@$bdtr$qqrv", + "@Hrctrlsc@THRDBCheckBox@CMGetDataLink$qqrr17Messages@TMessage", + "@Hrctrlsc@THRDBCheckBox@ClsCurrentValue$qqrv", + "@Hrctrlsc@THRDBCheckBox@DataChange$qqrp14System@TObject", + "@Hrctrlsc@THRDBCheckBox@GetDataField$qqrv", + "@Hrctrlsc@THRDBCheckBox@GetDataSource$qqrv", + "@Hrctrlsc@THRDBCheckBox@GetField$qqrv", + "@Hrctrlsc@THRDBCheckBox@GetFieldState$qqrv", + "@Hrctrlsc@THRDBCheckBox@GetReadOnly$qqrv", + "@Hrctrlsc@THRDBCheckBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRDBCheckBox@SetCurrentValue$qqrv", + "@Hrctrlsc@THRDBCheckBox@SetDataField$qqrx17System@AnsiString", + "@Hrctrlsc@THRDBCheckBox@SetDataSource$qqrp14Db@TDataSource", + "@Hrctrlsc@THRDBCheckBox@SetReadOnly$qqro", + "@Hrctrlsc@THRDBCheckBox@SetValueCheck$qqrx17System@AnsiString", + "@Hrctrlsc@THRDBCheckBox@SetValueUncheck$qqrx17System@AnsiString", + "@Hrctrlsc@THRDBCheckBox@Toggle$qqrv", + "@Hrctrlsc@THRDBCheckBox@UpdateData$qqrp14System@TObject", + "@Hrctrlsc@THRDBCheckBox@ValueMatch$qqrx17System@AnsiStringt1", + "@Hrctrlsc@THRDBImage@", + "@Hrctrlsc@THRDBImage@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRDBImage@$bdtr$qqrv", + "@Hrctrlsc@THRDBImage@CMTextChanged$qqrr17Messages@TMessage", + "@Hrctrlsc@THRDBImage@ClsCurrentValue$qqrv", + "@Hrctrlsc@THRDBImage@DataChange$qqrp14System@TObject", + "@Hrctrlsc@THRDBImage@GetDataField$qqrv", + "@Hrctrlsc@THRDBImage@GetDataSource$qqrv", + "@Hrctrlsc@THRDBImage@GetField$qqrv", + "@Hrctrlsc@THRDBImage@LoadPicture$qqrv", + "@Hrctrlsc@THRDBImage@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRDBImage@Paint$qqrv", + "@Hrctrlsc@THRDBImage@PictureChanged$qqrp14System@TObject", + "@Hrctrlsc@THRDBImage@SetAutoDisplay$qqro", + "@Hrctrlsc@THRDBImage@SetCurrentValue$qqrv", + "@Hrctrlsc@THRDBImage@SetDataField$qqrx17System@AnsiString", + "@Hrctrlsc@THRDBImage@SetDataSource$qqrp14Db@TDataSource", + "@Hrctrlsc@THRDBImage@UpdateData$qqrp14System@TObject", + "@Hrctrlsc@THRDBMemo@", + "@Hrctrlsc@THRDBMemo@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRDBMemo@$bdtr$qqrv", + "@Hrctrlsc@THRDBMemo@CMGetDataLink$qqrr17Messages@TMessage", + "@Hrctrlsc@THRDBMemo@DataChange$qqrp14System@TObject", + "@Hrctrlsc@THRDBMemo@GetDataField$qqrv", + "@Hrctrlsc@THRDBMemo@GetDataSource$qqrv", + "@Hrctrlsc@THRDBMemo@GetField$qqrv", + "@Hrctrlsc@THRDBMemo@GetFieldText$qqrv", + "@Hrctrlsc@THRDBMemo@GetLabelText$qqrv", + "@Hrctrlsc@THRDBMemo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRDBMemo@Paint$qqrv", + "@Hrctrlsc@THRDBMemo@SetDataField$qqrx17System@AnsiString", + "@Hrctrlsc@THRDBMemo@SetDataSource$qqrp14Db@TDataSource", + "@Hrctrlsc@THRDBText@", + "@Hrctrlsc@THRImage@", + "@Hrctrlsc@THRImage@GetPicture$qqrv", + "@Hrctrlsc@THRImage@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRImage@PictureChanged$qqrp14System@TObject", + "@Hrctrlsc@THRImage@SetAutoSize$qqro", + "@Hrctrlsc@THRImage@SetCopyFrom$qqrp15Extctrls@TImage", + "@Hrctrlsc@THRImageLabel@", + "@Hrctrlsc@THRImageLabel@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRImageLabel@$bctr$qqrp18Classes@TComponentus", + "@Hrctrlsc@THRImageLabel@$bdtr$qqrv", + "@Hrctrlsc@THRImageLabel@Changed$qqrp14System@TObject", + "@Hrctrlsc@THRImageLabel@CreateMetafile$qqrorx11Types@TRect", + "@Hrctrlsc@THRImageLabel@DoDrawImage$qqrp16Graphics@TCanvasp17Graphics@TPicturerx11Types@TRect", + "@Hrctrlsc@THRImageLabel@GetPicture$qqrv", + "@Hrctrlsc@THRImageLabel@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRImageLabel@Paint$qqrv", + "@Hrctrlsc@THRImageLabel@RefreshData$qqrv", + "@Hrctrlsc@THRImageLabel@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRImageLabel@SetCenter$qqro", + "@Hrctrlsc@THRImageLabel@SetDPI$qqrddddo", + "@Hrctrlsc@THRImageLabel@SetPicture$qqrp17Graphics@TPicture", + "@Hrctrlsc@THRImageLabel@SetStretch$qqro", + "@Hrctrlsc@THRLabel@", + "@Hrctrlsc@THRLabel@GetLabelText$qqrv", + "@Hrctrlsc@THRLabel@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRLabel@SetCopyFrom$qqrp15Stdctrls@TLabel", + "@Hrctrlsc@THRMemo@", + "@Hrctrlsc@THRMemo@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRMemo@$bdtr$qqrv", + "@Hrctrlsc@THRMemo@GetLabelText$qqrv", + "@Hrctrlsc@THRMemo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrctrlsc@THRMemo@SetCopyFrom$qqrp20Stdctrls@TCustomEdit", + "@Hrctrlsc@THRMemo@SetLines$qqrp16Classes@TStrings", + "@Hrctrlsc@THRSysData@", + "@Hrctrlsc@THRSysData@GetLabelText$qqrv", + "@Hrctrlsc@THRSysData@SetData$qqr23Hrctrlsc@THRSysDataType", + "@Hrctrlsc@THRSysData@SetValue$qqri", + "@Hrctrlsc@THRWindowControl@", + "@Hrctrlsc@THRWindowControl@$bctr$qqrp18Classes@TComponent", + "@Hrctrlsc@THRWindowControl@$bctr$qqrp18Classes@TComponentus", + "@Hrctrlsc@THRWindowControl@$bdtr$qqrv", + "@Hrctrlsc@THRWindowControl@Changed$qqrp14System@TObject", + "@Hrctrlsc@THRWindowControl@CreateMetafile$qqrorx11Types@TRect", + "@Hrctrlsc@THRWindowControl@DoDrawImage$qqrp16Graphics@TCanvasp17Graphics@TPicturerx11Types@TRect", + "@Hrctrlsc@THRWindowControl@DrawTextEx$qqrp16Graphics@TCanvasr11Types@TRectdddd", + "@Hrctrlsc@THRWindowControl@GetPicture$qqrv", + "@Hrctrlsc@THRWindowControl@HRDrawText$qqrp16Graphics@TCanvas17System@AnsiStringr11Types@TRect", + "@Hrctrlsc@THRWindowControl@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRWindowControl@Paint$qqrv", + "@Hrctrlsc@THRWindowControl@RefreshData$qqrv", + "@Hrctrlsc@THRWindowControl@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrctrlsc@THRWindowControl@SetCenter$qqro", + "@Hrctrlsc@THRWindowControl@SetDPI$qqrddddo", + "@Hrctrlsc@THRWindowControl@SetPicture$qqrp17Graphics@TPicture", + "@Hrctrlsc@THRWindowControl@SetStretch$qqro", + "@Hrctrlsc@THRWindowControl@SetTransparent$qqro", + "@Hrctrlsc@initialization$qqrv", + "@Hrecord@Finalization$qqrv", + "@Hrecord@THRBookMark@", + "@Hrecord@THRBookMarks@", + "@Hrecord@THRBookMarks@$bctr$qqrv", + "@Hrecord@THRBookMarks@$bdtr$qqrv", + "@Hrecord@THRBookMarks@Check$qqri", + "@Hrecord@THRBookMarks@GetItems$qqri", + "@Hrecord@THRBookMarks@SetItems$qqrip19Hrecord@THRBookMark", + "@Hrecord@THRCustomDBI@", + "@Hrecord@THRCustomDBI@$bctr$qqrv", + "@Hrecord@THRCustomDBI@$bdtr$qqrv", + "@Hrecord@THRGroupR@", + "@Hrecord@THRGroups@", + "@Hrecord@THRGroups@$bctr$qqrv", + "@Hrecord@THRGroups@$bdtr$qqrv", + "@Hrecord@THRGroups@Check$qqri", + "@Hrecord@THRGroups@GetItems$qqri", + "@Hrecord@THRGroups@SetItems$qqrip17Hrecord@THRGroupR", + "@Hrecord@THRSaveDataSet@", + "@Hrecord@THRSaveDataSets@", + "@Hrecord@THRSaveDataSets@$bctr$qqrv", + "@Hrecord@THRSaveDataSets@$bdtr$qqrv", + "@Hrecord@THRSaveDataSets@Check$qqri", + "@Hrecord@THRSaveDataSets@GetCount$qqrv", + "@Hrecord@THRSaveDataSets@GetItems$qqri", + "@Hrecord@THRSaveDataSets@SetItems$qqrip22Hrecord@THRSaveDataSet", + "@Hrecord@THRTree@", + "@Hrecord@THRTree@$bctr$qqrv", + "@Hrecord@THRTree@$bdtr$qqrv", + "@Hrecord@THRTree@GetBookMarks$qqri", + "@Hrecord@THRTree@GetGroup$qqri", + "@Hrecord@THRTree@SetBookMarks$qqrip19Hrecord@THRBookMark", + "@Hrecord@THRTree@SetGroup$qqrip17Hrecord@THRGroupR", + "@Hrecord@THRTrees@", + "@Hrecord@THRTrees@$bctr$qqrv", + "@Hrecord@THRTrees@$bdtr$qqrv", + "@Hrecord@THRTrees@Check$qqri", + "@Hrecord@THRTrees@GetItems$qqri", + "@Hrecord@THRTrees@SetItems$qqrip15Hrecord@THRTree", + "@Hrecord@initialization$qqrv", + "@Hreport@Finalization$qqrv", + "@Hreport@THRPreviewOptions@", + "@Hreport@THRPreviewOptions@$bctr$qqrp18Classes@TComponent", + "@Hreport@THRPreviewOptions@$bdtr$qqrv", + "@Hreport@THRPreviewOptions@SetBitmapPalette$qqrp17Graphics@TPicture", + "@Hreport@THRPreviewOptions@SetVisibleButtons$qqr47System@%Set$t18Hrclass@THRBtnType$iuc$0$iuc$12%", + "@Hreport@THRPreviewOptions@SetWindowState$qqr18Forms@TWindowState", + "@Hreport@THRPreviewOptions@SetZoomInit$qqri", + "@Hreport@THRPreviewOptions@SetZoomMax$qqri", + "@Hreport@THRPreviewOptions@SetZoomMin$qqri", + "@Hreport@THRPreviewOptions@SetZoomStep$qqri", + "@Hreport@THRPrs@", + "@Hreport@THRPrs@$bctr$qqrp18Classes@TComponent", + "@Hreport@THRPrs@$bdtr$qqrv", + "@Hreport@THRPrs@AssignedNextData$qqrv", + "@Hreport@THRPrs@BandPrintAt$qqriip25Hrcommon@THRCustomControl", + "@Hreport@THRPrs@BandPrintBy$qqrp25Hrcommon@THRCustomControl", + "@Hreport@THRPrs@BlankPage$qqrv", + "@Hreport@THRPrs@DefineProperties$qqrp14Classes@TFiler", + "@Hreport@THRPrs@DoAfterPage$qqri", + "@Hreport@THRPrs@DoBeforePage$qqri", + "@Hreport@THRPrs@DoChangePage$qqrv", + "@Hreport@THRPrs@DoOnAddCount$qqri", + "@Hreport@THRPrs@DoOnAddPage$qqriii", + "@Hreport@THRPrs@DoOnBOF$qqri", + "@Hreport@THRPrs@DoOnDataFirst$qqrp14System@TObject", + "@Hreport@THRPrs@DoOnDataNext$qqrp14System@TObject", + "@Hreport@THRPrs@DoOnEOF$qqri", + "@Hreport@THRPrs@DoOnFilter$qqrp19Classes@TStringListt1t1", + "@Hreport@THRPrs@DoSaveDialog$qqrv", + "@Hreport@THRPrs@EndPreview$qqrv", + "@Hreport@THRPrs@EndPrint$qqrv", + "@Hreport@THRPrs@ExecQEnd$qqrv", + "@Hreport@THRPrs@ExecQStart$qqrv", + "@Hreport@THRPrs@ExecQUntil$qqr21Hrclass@THRQCondition", + "@Hreport@THRPrs@FindHRComponent$qqrp17System@TMetaClass", + "@Hreport@THRPrs@FindPagePos$qqrri", + "@Hreport@THRPrs@GetBackgroundStart$qqrv", + "@Hreport@THRPrs@GetCurrPageNo$qqrv", + "@Hreport@THRPrs@GetGroupInfo$qqrp15Hrecord@THRTree", + "@Hreport@THRPrs@GetIsBackground$qqrv", + "@Hreport@THRPrs@GetIsEOF$qqrv", + "@Hreport@THRPrs@GetIsFormating$qqrv", + "@Hreport@THRPrs@GetLastPageNo$qqrv", + "@Hreport@THRPrs@GetPreviewCaption$qqrv", + "@Hreport@THRPrs@GetPreviewZoomMax$qqrv", + "@Hreport@THRPrs@GetPreviewZoomMin$qqrv", + "@Hreport@THRPrs@GetPreviewZoomStep$qqrv", + "@Hreport@THRPrs@GetShowModal$qqrv", + "@Hreport@THRPrs@GetWindowState$qqrv", + "@Hreport@THRPrs@GetisRepeatToEOP$qqrv", + "@Hreport@THRPrs@GotoPage$qqr19Hrclass@THRGotoPagei", + "@Hreport@THRPrs@InsertControl$qqrp14System@TObject", + "@Hreport@THRPrs@Load$qqrv", + "@Hreport@THRPrs@LoadFromFile$qqr17System@AnsiString", + "@Hreport@THRPrs@MakePageInfo$qqrv", + "@Hreport@THRPrs@MakeParams$qqriip19Classes@TStringList", + "@Hreport@THRPrs@MakeParamsCrossTab$qqrv", + "@Hreport@THRPrs@MakeParamsSQL$qqri", + "@Hreport@THRPrs@MakeTreeInfo$qqrv", + "@Hreport@THRPrs@OnTimer$qqrp14System@TObject", + "@Hreport@THRPrs@PageSkip$qqrv", + "@Hreport@THRPrs@PreviewOptionsChange$qqrp14System@TObject", + "@Hreport@THRPrs@PreviewPrint$qqrp17Printers@TPrinter", + "@Hreport@THRPrs@ProcessData$qqrv", + "@Hreport@THRPrs@ProcessEnd$qqrv", + "@Hreport@THRPrs@ProcessResume$qqrv", + "@Hreport@THRPrs@PrtResume$qqrv", + "@Hreport@THRPrs@PrtSuspend$qqr17System@AnsiString", + "@Hreport@THRPrs@RePositionAll$qqrv", + "@Hreport@THRPrs@ReStart$qqrv", + "@Hreport@THRPrs@ReadBackgroundStart$qqrp15Classes@TReader", + "@Hreport@THRPrs@ReadBufFile$qqro", + "@Hreport@THRPrs@ReadBufFileUntil$qqr20Hrclass@THRBufActioni", + "@Hreport@THRPrs@ReadPreviewCaption$qqrp15Classes@TReader", + "@Hreport@THRPrs@ReadPreviewZoomMax$qqrp15Classes@TReader", + "@Hreport@THRPrs@ReadPreviewZoomMin$qqrp15Classes@TReader", + "@Hreport@THRPrs@ReadPreviewZoomStep$qqrp15Classes@TReader", + "@Hreport@THRPrs@ReadShowModal$qqrp15Classes@TReader", + "@Hreport@THRPrs@ReadWindowState$qqrp15Classes@TReader", + "@Hreport@THRPrs@RemoveControl$qqrp14System@TObject", + "@Hreport@THRPrs@RestoreDataSets$qqrv", + "@Hreport@THRPrs@SQLClose$qqrv", + "@Hreport@THRPrs@SQLOpen$qqrv", + "@Hreport@THRPrs@Save$qqrv", + "@Hreport@THRPrs@SaveStream$qqrv", + "@Hreport@THRPrs@SetBackgroundStart$qqro", + "@Hreport@THRPrs@SetGroupOrderInfo$qqrv", + "@Hreport@THRPrs@SetIsBackground$qqro", + "@Hreport@THRPrs@SetIsEOF$qqro", + "@Hreport@THRPrs@SetPreviewCaption$qqr17System@AnsiString", + "@Hreport@THRPrs@SetPreviewComponent$qqrp14System@TObject", + "@Hreport@THRPrs@SetPreviewZoomMax$qqri", + "@Hreport@THRPrs@SetPreviewZoomMin$qqri", + "@Hreport@THRPrs@SetPreviewZoomStep$qqri", + "@Hreport@THRPrs@SetShowModal$qqro", + "@Hreport@THRPrs@SetStream$qqrp23Hrclass@THRMemoryStream", + "@Hreport@THRPrs@SetWindowState$qqr18Forms@TWindowState", + "@Hreport@THRPrs@StartPreview$qqrv", + "@Hreport@THRPrs@Step$qqrv", + "@Hreport@THRPrs@ZoomControl$qqrv", + "@Hreport@THRPrs@isOverPage$qqrp25Hrcommon@THRCustomControl", + "@Hreport@THRPrs@isPrintPage$qqrv", + "@Hreport@THRPrs@isReporting$qqrv", + "@Hreport@THyperReport@", + "@Hreport@THyperReport@AlignScrollBox$qqrv", + "@Hreport@THyperReport@CheckReportState$qqrv", + "@Hreport@THyperReport@CommonPreview$qqrv", + "@Hreport@THyperReport@DoPrint$qqrv", + "@Hreport@THyperReport@DoPrintDialog$qqrv", + "@Hreport@THyperReport@DoSave$qqrv", + "@Hreport@THyperReport@EndPreview$qqrv", + "@Hreport@THyperReport@FitToHeight$qqrv", + "@Hreport@THyperReport@FitToWidth$qqrv", + "@Hreport@THyperReport@LoadFromFile$qqr17System@AnsiString", + "@Hreport@THyperReport@Preview$qqrv", + "@Hreport@THyperReport@PreviewFromFile$qqr17System@AnsiString", + "@Hreport@THyperReport@PreviewModal$qqrv", + "@Hreport@THyperReport@PreviewPrint$qqrp17Printers@TPrinter", + "@Hreport@THyperReport@Print$qqrv", + "@Hreport@THyperReport@PrintFromFile$qqr17System@AnsiString", + "@Hreport@THyperReport@PrintPage$qqrii", + "@Hreport@THyperReport@Report$qqrynpqqrv$oynpqqrv$v17System@AnsiString", + "@Hreport@THyperReport@Resize$qqrv", + "@Hreport@THyperReport@SaveToFile$qqr17System@AnsiString", + "@Hreport@THyperReport@SetupPrinterSettings$qqrv", + "@Hreport@THyperReport@StartPreview$qqrv", + "@Hreport@THyperReport@Zoom$qqri", + "@Hreport@THyperReport@ZoomControl$qqrv", + "@Hreport@THyperReport@ZoomIn$qqrv", + "@Hreport@THyperReport@ZoomOut$qqrv", + "@Hreport@initialization$qqrv", + "@Hreportu@Finalization$qqrv", + "@Hreportu@HReportUf", + "@Hreportu@THReportUf@", + "@Hreportu@THReportUf@ClearProcessStatus$qqrv", + "@Hreportu@THReportUf@DisplayPageNo$qqrii", + "@Hreportu@THReportUf@DisplayProcessStatus$qqri", + "@Hreportu@THReportUf@FormClose$qqrp14System@TObjectr18Forms@TCloseAction", + "@Hreportu@THReportUf@FormDestroy$qqrp14System@TObject", + "@Hreportu@THReportUf@btCancelClick$qqrp14System@TObject", + "@Hreportu@initialization$qqrv", + "@Hrepreg@Finalization$qqrv", + "@Hrepreg@Register$qqrv", + "@Hrepreg@THRGroupStyleEditor@", + "@Hrepreg@THRGroupStyleEditor@Edit$qqrv", + "@Hrepreg@THRGroupStyleProperty@", + "@Hrepreg@THRGroupStyleProperty@Edit$qqrv", + "@Hrepreg@THRGroupStyleProperty@GetAttributes$qqrv", + "@Hrepreg@THRLinkInfoEditor@", + "@Hrepreg@THRLinkInfoEditor@Edit$qqrv", + "@Hrepreg@THRLinkInfoProperty@", + "@Hrepreg@THRLinkInfoProperty@Edit$qqrv", + "@Hrepreg@THRLinkInfoProperty@GetAttributes$qqrv", + "@Hrepreg@THRMargineSizeProperty@", + "@Hrepreg@THRMargineSizeProperty@GetAttributes$qqrv", + "@Hrepreg@THRPageEditor@", + "@Hrepreg@THRPageEditor@Edit$qqrv", + "@Hrepreg@THRPageInfoProperty@", + "@Hrepreg@THRPageInfoProperty@Edit$qqrv", + "@Hrepreg@THRPageInfoProperty@GetAttributes$qqrv", + "@Hrepreg@THRSelectRectProperty@", + "@Hrepreg@THRSelectRectProperty@GetAttributes$qqrv", + "@Hrepreg@THRStringGridEditor@", + "@Hrepreg@THRStringGridEditor@Edit$qqrv", + "@Hrepreg@THyperReportEditor@", + "@Hrepreg@THyperReportEditor@Edit$qqrv", + "@Hrepreg@initialization$qqrv", + "@Hrgridc@Finalization$qqrv", + "@Hrgridc@THRField@", + "@Hrgridc@THRField@$bctr$qqrp18Classes@TComponent", + "@Hrgridc@THRField@$bctr$qqrp18Classes@TComponentus", + "@Hrgridc@THRField@$bdtr$qqrv", + "@Hrgridc@THRField@FieldChanged$qqrp14System@TObject", + "@Hrgridc@THRField@FontChanged$qqrp14System@TObject", + "@Hrgridc@THRField@GetParentComponent$qqrv", + "@Hrgridc@THRField@GetTextWidth$qqrp16Graphics@TCanvas", + "@Hrgridc@THRField@GetValue$qqrv", + "@Hrgridc@THRField@HRDrawText$qqrp16Graphics@TCanvasr17System@AnsiStringr11Types@TRect", + "@Hrgridc@THRField@HasParent$qqrv", + "@Hrgridc@THRField@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrgridc@THRField@ReadState$qqrp15Classes@TReader", + "@Hrgridc@THRField@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrgridc@THRField@SetAlignment$qqr18Classes@TAlignment", + "@Hrgridc@THRField@SetColumnIndex$qqri", + "@Hrgridc@THRField@SetDPI$qqrddddo", + "@Hrgridc@THRField@SetDisplayIndex$qqri", + "@Hrgridc@THRField@SetDisplayWidth$qqri", + "@Hrgridc@THRField@SetFont$qqrp14Graphics@TFont", + "@Hrgridc@THRField@SetName$qqrx17System@AnsiString", + "@Hrgridc@THRField@SetParentComponent$qqrp18Classes@TComponent", + "@Hrgridc@THRField@SetParentFont$qqro", + "@Hrgridc@THRField@SetToParentFont$qqrv", + "@Hrgridc@THRField@SetTransparent$qqro", + "@Hrgridc@THRField@SetWordWrap$qqro", + "@Hrgridc@THRStringGrid@", + "@Hrgridc@THRStringGrid@$bctr$qqrp18Classes@TComponent", + "@Hrgridc@THRStringGrid@$bctr$qqrp18Classes@TComponentus", + "@Hrgridc@THRStringGrid@$bdtr$qqrv", + "@Hrgridc@THRStringGrid@AddField$qqrp16Hrgridc@THRField", + "@Hrgridc@THRStringGrid@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Hrgridc@THRStringGrid@CMFontChanged$qqrr17Messages@TMessage", + "@Hrgridc@THRStringGrid@CreateField$qqri", + "@Hrgridc@THRStringGrid@DeleteField$qqrp16Hrgridc@THRField", + "@Hrgridc@THRStringGrid@DrawLine$qqri", + "@Hrgridc@THRStringGrid@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Hrgridc@THRStringGrid@GetColWidth$qqri", + "@Hrgridc@THRStringGrid@GetColumnCount$qqrv", + "@Hrgridc@THRStringGrid@GetColumns$qqri", + "@Hrgridc@THRStringGrid@GetLabelText$qqrv", + "@Hrgridc@THRStringGrid@GridChanged$qqrp14System@TObject", + "@Hrgridc@THRStringGrid@HRDrawText$qqrp16Graphics@TCanvasr17System@AnsiStringr11Types@TRect", + "@Hrgridc@THRStringGrid@IndexChange$qqrrit1", + "@Hrgridc@THRStringGrid@LoadCurrentFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrgridc@THRStringGrid@LoadFromStream$qqrusop23Hrclass@THRMemoryStream", + "@Hrgridc@THRStringGrid@ModifyIndex$qqriii", + "@Hrgridc@THRStringGrid@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrgridc@THRStringGrid@Paint$qqrv", + "@Hrgridc@THRStringGrid@SaveCurrentToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrgridc@THRStringGrid@SaveToStream$qqrp23Hrclass@THRMemoryStream", + "@Hrgridc@THRStringGrid@SetColWidth$qqrii", + "@Hrgridc@THRStringGrid@SetDPI$qqrddddo", + "@Hrgridc@THRStringGrid@SetStringGrid$qqrp17Grids@TStringGrid", + "@Hrgridc@THRStringGrid@Sizing$qqrrit1t1", + "@Hrgridc@THRStringGrid@UpdateDesigner$qqrv", + "@Hrgridc@THRStringGrid@WndProc$qqrr17Messages@TMessage", + "@Hrgridc@initialization$qqrv", + "@Hrgridcu@Finalization$qqrv", + "@Hrgridcu@HRGridCUf", + "@Hrgridcu@THRGridCUf@", + "@Hrgridcu@initialization$qqrv", + "@Hrgridfu@Finalization$qqrv", + "@Hrgridfu@HRGridFUf", + "@Hrgridfu@HyperReportEditStringGrid$qqrp21Hrgridc@THRStringGrid48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Hrgridfu@THRGridFUf@", + "@Hrgridfu@THRGridFUf@FormDestroy$qqrp14System@TObject", + "@Hrgridfu@THRGridFUf@GetFields$qqrp14System@TObject", + "@Hrgridfu@THRGridFUf@GridDestroy$qqrp14System@TObject", + "@Hrgridfu@THRGridFUf@ListBox1Click$qqrp14System@TObject", + "@Hrgridfu@THRGridFUf@ListBox1DragDrop$qqrp14System@TObjectt1ii", + "@Hrgridfu@THRGridFUf@ListBox1DragOver$qqrp14System@TObjectt1ii19Controls@TDragStatero", + "@Hrgridfu@THRGridFUf@ListBox1KeyDown$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Hrgridfu@THRGridFUf@mnAddColumnsClick$qqrp14System@TObject", + "@Hrgridfu@THRGridFUf@mnDeleteClick$qqrp14System@TObject", + "@Hrgridfu@THRGridFUf@mnSelectAllClick$qqrp14System@TObject", + "@Hrgridfu@initialization$qqrv", + "@Hrgroupu@Finalization$qqrv", + "@Hrgroupu@HRGroupUf", + "@Hrgroupu@HyperReportGroupEdit$qqrp17Hrcommon@THRGroup", + "@Hrgroupu@THRGroupUf@", + "@Hrgroupu@initialization$qqrv", + "@Hrlinkc@Finalization$qqrv", + "@Hrlinkc@THRLink@", + "@Hrlinkc@THRLink@$bctr$qqrp18Classes@TComponent", + "@Hrlinkc@THRLink@$bdtr$qqrv", + "@Hrlinkc@THRLinkInfo@", + "@Hrlinkc@THRLinkInfo@$bctr$qqrp18Classes@TComponent", + "@Hrlinkc@THRLinkInfo@$bdtr$qqrv", + "@Hrlinkc@THRLinkInfo@CheckFieldOptions$qqr17System@AnsiStringt1t1", + "@Hrlinkc@THRLinkInfo@CheckGroupOptions$qqr17System@AnsiString", + "@Hrlinkc@THRLinkInfo@GetGroupInfo$qqrip18Classes@TComponent", + "@Hrlinkc@THRLinkInfo@GetLinkMDFields$qqrip16Classes@TStringst2t2", + "@Hrlinkc@THRLinkInfo@GetSourceInfo$qqrv", + "@Hrlinkc@THRLinkInfo@SetSourceTrees$qqrp19Classes@TStringList", + "@Hrlinkc@initialization$qqrv", + "@Hrlinkf@Finalization$qqrv", + "@Hrlinkf@HRLinkFf", + "@Hrlinkf@THRLinkFf@", + "@Hrlinkf@THRLinkFf@btAddClick$qqrp14System@TObject", + "@Hrlinkf@THRLinkFf@btRemoveClick$qqrp14System@TObject", + "@Hrlinkf@THRLinkFf@ckSelfClick$qqrp14System@TObject", + "@Hrlinkf@initialization$qqrv", + "@Hrlinkg@Finalization$qqrv", + "@Hrlinkg@HRLinkGf", + "@Hrlinkg@THRLinkGf@", + "@Hrlinkg@THRLinkGf@CheckEnabled$qqrv", + "@Hrlinkg@THRLinkGf@FormActivate$qqrp14System@TObject", + "@Hrlinkg@THRLinkGf@btAddClick$qqrp14System@TObject", + "@Hrlinkg@THRLinkGf@btRemoveClick$qqrp14System@TObject", + "@Hrlinkg@THRLinkGf@cbGroupDirChange$qqrp14System@TObject", + "@Hrlinkg@THRLinkGf@lbGroupOrderDragDrop$qqrp14System@TObjectt1ii", + "@Hrlinkg@THRLinkGf@lbGroupOrderDragOver$qqrp14System@TObjectt1ii19Controls@TDragStatero", + "@Hrlinkg@initialization$qqrv", + "@Hrlinks@Finalization$qqrv", + "@Hrlinks@HRLinkSf", + "@Hrlinks@HyperReportEditTree$qqrp15Hrlinkc@THRLink", + "@Hrlinks@THRLinkSf@", + "@Hrlinks@THRLinkSf@AddChild1Click$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@AddLinkFields$qqrv", + "@Hrlinks@THRLinkSf@AddOrInsert$qqr25Hrlinks@THRNodeAttachMode", + "@Hrlinks@THRLinkSf@AddSource1Click$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@CheckLinkFields$qqrv", + "@Hrlinks@THRLinkSf@FormActivate$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@GetFirstChildNode$qqrv", + "@Hrlinks@THRLinkSf@GetLinkFields$qqrip16Classes@TStringst2t2t2", + "@Hrlinks@THRLinkSf@GetMDFields$qqrp14Db@TDataSourcet1t1p16Classes@TStringst4t4", + "@Hrlinks@THRLinkSf@GetNextChildNode$qqrv", + "@Hrlinks@THRLinkSf@GetSourceTree$qqrp16Classes@TStrings", + "@Hrlinks@THRLinkSf@GroupOrder1Click$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@InsertSource1Click$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@IsInclude$qqrxixi", + "@Hrlinks@THRLinkSf@LinkFields1Click$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@SetGroupInfo$qqri", + "@Hrlinks@THRLinkSf@SetLinkFields$qqrip16Classes@TStrings", + "@Hrlinks@THRLinkSf@SetSourceTree$qqrp16Classes@TStrings", + "@Hrlinks@THRLinkSf@StringGridOptions1Click$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btAddClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btChildClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btGroupOrderClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btInsertClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btLinkFieldsClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btRemoveClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@btStringGridClick$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@tvLinkTreeClick$qqrp14System@TObject", + "@Hrlinks@initialization$qqrv", + "@Hrlinksg@Finalization$qqrv", + "@Hrlinksg@HRLinkSGf", + "@Hrlinksg@THRLinkSGf@", + "@Hrlinksg@initialization$qqrv", + "@Hrolec@Finalization$qqrv", + "@Hrolec@THRDBOleContainer@", + "@Hrolec@THRDBOleContainer@$bctr$qqrp18Classes@TComponent", + "@Hrolec@THRDBOleContainer@$bdtr$qqrv", + "@Hrolec@THRDBOleContainer@CMTextChanged$qqrr17Messages@TMessage", + "@Hrolec@THRDBOleContainer@ClsCurrentValue$qqrv", + "@Hrolec@THRDBOleContainer@CreateMetafile$qqrorx11Types@TRect", + "@Hrolec@THRDBOleContainer@DataChange$qqrp14System@TObject", + "@Hrolec@THRDBOleContainer@DoDrawImage$qqrp16Graphics@TCanvasp17Graphics@TPicturerx11Types@TRect", + "@Hrolec@THRDBOleContainer@GetDataField$qqrv", + "@Hrolec@THRDBOleContainer@GetDataSource$qqrv", + "@Hrolec@THRDBOleContainer@GetField$qqrv", + "@Hrolec@THRDBOleContainer@GetPicture$qqrv", + "@Hrolec@THRDBOleContainer@LoadPicture$qqrv", + "@Hrolec@THRDBOleContainer@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrolec@THRDBOleContainer@SetAutoDisplay$qqro", + "@Hrolec@THRDBOleContainer@SetCurrentValue$qqrv", + "@Hrolec@THRDBOleContainer@SetDataField$qqrx17System@AnsiString", + "@Hrolec@THRDBOleContainer@SetDataSource$qqrp14Db@TDataSource", + "@Hrolec@THRDBOleContainer@SetSizeMode$qqr18Olectnrs@TSizeMode", + "@Hrolec@THROleContainer@", + "@Hrolec@THROleContainer@$bctr$qqrp18Classes@TComponent", + "@Hrolec@THROleContainer@$bdtr$qqrv", + "@Hrolec@THROleContainer@CreateMetafile$qqrorx11Types@TRect", + "@Hrolec@THROleContainer@DoDrawOle$qqrp16Graphics@TCanvasp22Hrolec@THROleContainerr11Types@TRect", + "@Hrolec@THROleContainer@GetDPIA$qqrv", + "@Hrolec@THROleContainer@GetDPIC$qqrv", + "@Hrolec@THROleContainer@GetDPIX$qqrv", + "@Hrolec@THROleContainer@GetDPIY$qqrv", + "@Hrolec@THROleContainer@GetUnits$qqrv", + "@Hrolec@THROleContainer@GetisDesign$qqrv", + "@Hrolec@THROleContainer@Loaded$qqrv", + "@Hrolec@THROleContainer@OleChanged$qqrp14System@TObject", + "@Hrolec@THROleContainer@Paint$qqrv", + "@Hrolec@THROleContainer@SetBounds$qqriiii", + "@Hrolec@THROleContainer@SetDPI$qqrddddo", + "@Hrolec@THROleContainer@SetSize$qqrv", + "@Hrolec@THROleContainer@SizeChanged$qqrp14System@TObject", + "@Hrolec@initialization$qqrv", + "@Hrpager@Finalization$qqrv", + "@Hrpager@HRPageRf", + "@Hrpager@THRPageRf@", + "@Hrpager@THRPageRf@Button1Click$qqrp14System@TObject", + "@Hrpager@THRPageRf@FormShow$qqrp14System@TObject", + "@Hrpager@initialization$qqrv", + "@Hrpageu@FPageInfo", + "@Hrpageu@Finalization$qqrv", + "@Hrpageu@HRPageUf", + "@Hrpageu@HyperReportPageEdit$qqrp16Hrcommon@THRPage", + "@Hrpageu@THRPageUf@", + "@Hrpageu@THRPageUf@FormActivate$qqrp14System@TObject", + "@Hrpageu@THRPageUf@btRegistrationClick$qqrp14System@TObject", + "@Hrpageu@THRPageUf@cbSizeChange$qqrp14System@TObject", + "@Hrpageu@THRPageUf@seHeightExit$qqrp14System@TObject", + "@Hrpageu@THRPageUf@seWidthExit$qqrp14System@TObject", + "@Hrpageu@initialization$qqrv", + "@Hrpicedt@Finalization$qqrv", + "@Hrpicedt@TGraphicEditor@", + "@Hrpicedt@TGraphicEditor@EditProperty$qqrx48System@%DelphiInterface$t20Designintf@IProperty%ro", + "@Hrpicedt@TGraphicProperty@", + "@Hrpicedt@TGraphicProperty@Edit$qqrv", + "@Hrpicedt@TGraphicProperty@GetAttributes$qqrv", + "@Hrpicedt@TGraphicProperty@GetValue$qqrv", + "@Hrpicedt@TGraphicProperty@SetValue$qqrx17System@AnsiString", + "@Hrpicedt@TPictureEditor@", + "@Hrpicedt@TPictureEditor@$bctr$qqrp18Classes@TComponent", + "@Hrpicedt@TPictureEditor@$bdtr$qqrv", + "@Hrpicedt@TPictureEditor@Execute$qqrv", + "@Hrpicedt@TPictureEditor@SetPicture$qqrp17Graphics@TPicture", + "@Hrpicedt@TPictureEditorDlg@", + "@Hrpicedt@TPictureEditorDlg@ClearClick$qqrp14System@TObject", + "@Hrpicedt@TPictureEditorDlg@FormCreate$qqrp14System@TObject", + "@Hrpicedt@TPictureEditorDlg@FormDestroy$qqrp14System@TObject", + "@Hrpicedt@TPictureEditorDlg@HelpButtonClick$qqrp14System@TObject", + "@Hrpicedt@TPictureEditorDlg@ImagePaintBoxPaint$qqrp14System@TObject", + "@Hrpicedt@TPictureEditorDlg@LoadClick$qqrp14System@TObject", + "@Hrpicedt@TPictureEditorDlg@SaveClick$qqrp14System@TObject", + "@Hrpicedt@TPictureProperty@", + "@Hrpicedt@TPictureProperty@Edit$qqrv", + "@Hrpicedt@TPictureProperty@GetAttributes$qqrv", + "@Hrpicedt@TPictureProperty@GetValue$qqrv", + "@Hrpicedt@TPictureProperty@SetValue$qqrx17System@AnsiString", + "@Hrpicedt@initialization$qqrv", + "@Hrprevc@Finalization$qqrv", + "@Hrprevc@THRPreview@", + "@Hrprevc@THRPreview@$bctr$qqrp18Classes@TComponent", + "@Hrprevc@THRPreview@$bdtr$qqrv", + "@Hrprevc@THRPreview@CheckPreview$qqrv", + "@Hrprevc@THRPreview@ClearPreview$qqrv", + "@Hrprevc@THRPreview@EndPreview$qqrv", + "@Hrprevc@THRPreview@GetCurrPageNo$qqrv", + "@Hrprevc@THRPreview@GetCurrPagePos$qqrv", + "@Hrprevc@THRPreview@GetLastPageNo$qqrv", + "@Hrprevc@THRPreview@GetLastPagePos$qqrv", + "@Hrprevc@THRPreview@GetisBackground$qqrv", + "@Hrprevc@THRPreview@GetisEOF$qqrv", + "@Hrprevc@THRPreview@GotoPage$qqr19Hrclass@THRGotoPagei", + "@Hrprevc@THRPreview@Load$qqrv", + "@Hrprevc@THRPreview@Print$qqrv", + "@Hrprevc@THRPreview@Save$qqrv", + "@Hrprevc@THRPreview@SetHyperReport$qqrp20Hreport@THyperReport", + "@Hrprevc@THRPreview@StartPreview$qqrv", + "@Hrprevc@THRPreview@ZoomIn$qqrv", + "@Hrprevc@THRPreview@ZoomOut$qqrv", + "@Hrprevc@initialization$qqrv", + "@Hrprevu@Finalization$qqrv", + "@Hrprevu@HRPreVUf", + "@Hrprevu@THRPreVUf@", + "@Hrprevu@THRPreVUf@CheckPageButton$qqrv", + "@Hrprevu@THRPreVUf@ClearProcessStatus$qqrv", + "@Hrprevu@THRPreVUf@DisplayPageNo$qqrii", + "@Hrprevu@THRPreVUf@DisplayProcessStatus$qqri", + "@Hrprevu@THRPreVUf@FirstPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@FitToHeightPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@FitToWidthPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@FormClose$qqrp14System@TObjectr18Forms@TCloseAction", + "@Hrprevu@THRPreVUf@FormCloseQuery$qqrp14System@TObjectro", + "@Hrprevu@THRPreVUf@FormDestroy$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@FormKeyDown$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Hrprevu@THRPreVUf@FormResize$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@FormShow$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@LastPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@LoadReportClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@NextPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@PrevPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@PrintReportClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@SaveReportClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@SetButtons$qqrv", + "@Hrprevu@THRPreVUf@StepClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@ZoomInPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@ZoomOutPageClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@btExitClick$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@cbPageNoChange$qqrp14System@TObject", + "@Hrprevu@THRPreVUf@cbPageNoKeyDown$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Hrprevu@THRPreviewControl@", + "@Hrprevu@THRPreviewControl@$bctr$qqrp18Classes@TComponent", + "@Hrprevu@THRPreviewControl@$bdtr$qqrv", + "@Hrprevu@THRPreviewControl@Adjust$qqrv", + "@Hrprevu@THRPreviewControl@AutoButtonSet$qqr18Hrclass@THRBtnType", + "@Hrprevu@THRPreviewControl@ButtonClick$qqr18Hrclass@THRBtnTypero", + "@Hrprevu@THRPreviewControl@DestroyBitmaps$qqrv", + "@Hrprevu@THRPreviewControl@DoChangePage$qqrii", + "@Hrprevu@THRPreviewControl@DoClick$qqr18Hrclass@THRBtnType", + "@Hrprevu@THRPreviewControl@DoMouseDown$qqrii", + "@Hrprevu@THRPreviewControl@DoPostClick$qqr18Hrclass@THRBtnType", + "@Hrprevu@THRPreviewControl@DrawAutoButtons$qqrv", + "@Hrprevu@THRPreviewControl@DrawButton$qqr18Hrclass@THRBtnTypei", + "@Hrprevu@THRPreviewControl@First$qqrv", + "@Hrprevu@THRPreviewControl@FitToHeight$qqrv", + "@Hrprevu@THRPreviewControl@FitToWidth$qqrv", + "@Hrprevu@THRPreviewControl@GetCurrPageNo$qqrv", + "@Hrprevu@THRPreviewControl@GetLastPageNo$qqrv", + "@Hrprevu@THRPreviewControl@GetZoomFactor$qqrv", + "@Hrprevu@THRPreviewControl@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Hrprevu@THRPreviewControl@Last$qqrv", + "@Hrprevu@THRPreviewControl@Load$qqrv", + "@Hrprevu@THRPreviewControl@LoadBitmaps$qqrv", + "@Hrprevu@THRPreviewControl@Loaded$qqrv", + "@Hrprevu@THRPreviewControl@Next$qqrv", + "@Hrprevu@THRPreviewControl@Paint$qqrv", + "@Hrprevu@THRPreviewControl@PostClick$qqr18Hrclass@THRBtnType", + "@Hrprevu@THRPreviewControl@Previous$qqrv", + "@Hrprevu@THRPreviewControl@Print$qqrv", + "@Hrprevu@THRPreviewControl@Save$qqrv", + "@Hrprevu@THRPreviewControl@SetColored$qqr47System@%Set$t18Hrclass@THRBtnType$iuc$0$iuc$12%", + "@Hrprevu@THRPreviewControl@SetEnabledButtons$qqr47System@%Set$t18Hrclass@THRBtnType$iuc$0$iuc$12%", + "@Hrprevu@THRPreviewControl@SetHyperReport$qqrp20Hreport@THyperReport", + "@Hrprevu@THRPreviewControl@SetVisible$qqr47System@%Set$t18Hrclass@THRBtnType$iuc$0$iuc$12%", + "@Hrprevu@THRPreviewControl@Start$qqrv", + "@Hrprevu@THRPreviewControl@Stop$qqrv", + "@Hrprevu@THRPreviewControl@Updated$qqrv", + "@Hrprevu@THRPreviewControl@VisibleButtonCount$qqrv", + "@Hrprevu@THRPreviewControl@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Hrprevu@THRPreviewControl@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Hrprevu@THRPreviewControl@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Hrprevu@THRPreviewControl@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Hrprevu@THRPreviewControl@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Hrprevu@THRPreviewControl@WMMouseMove$qqrr17Messages@TWMMouse", + "@Hrprevu@THRPreviewControl@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Hrprevu@THRPreviewControl@WMSize$qqrr16Messages@TWMSize", + "@Hrprevu@THRPreviewControl@Zoom$qqri", + "@Hrprevu@THRPreviewControl@ZoomIn$qqrv", + "@Hrprevu@THRPreviewControl@ZoomOut$qqrv", + "@Hrprevu@initialization$qqrv", + "@Hrprtc@Finalization$qqrv", + "@Hrprtc@THRPrt@", + "@Hrprtc@THRPrt@$bctr$qqrp18Classes@TComponent", + "@Hrprtc@THRPrt@$bdtr$qqrv", + "@Hrprtc@THRPrt@ABorderPaint$qqrp25Hrcommon@THRCustomControlo", + "@Hrprtc@THRPrt@AddPrintedTop$qqriioopx25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@AfterGroupDoFunction$qqrrpp17Hrecord@THRGroupsii", + "@Hrprtc@THRPrt@BandControlPaint$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@BandPaint$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@BandPaintAt$qqriip25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@BandPaintBy$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@BeforeGroupDoFunction$qqrrpp17Hrecord@THRGroupsii", + "@Hrprtc@THRPrt@BorderPaint$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@CheckIsBOF$qqrv", + "@Hrprtc@THRPrt@ClsCurrentValue$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@ControlPaintAll$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@ControlPaintOne$qqrp25Hrcommon@THRCustomControlp17Controls@TControl", + "@Hrprtc@THRPrt@CrossTabMaxHeight$qqrv", + "@Hrprtc@THRPrt@CrossTabOlePump$qqrp25Hrcommon@THRCustomControlii", + "@Hrprtc@THRPrt@CrossTabOleRestore$qqrv", + "@Hrprtc@THRPrt@CrossTabPageSkip$qqrv", + "@Hrprtc@THRPrt@CrossTabQ$qqrv", + "@Hrprtc@THRPrt@CrossTabQCount$qqro", + "@Hrprtc@THRPrt@CrossTabQFilter$qqrr17System@AnsiStringt1x17System@AnsiString", + "@Hrprtc@THRPrt@CrossTabQFooterPaint1$qqrv", + "@Hrprtc@THRPrt@CrossTabQFooterPaint2$qqrv", + "@Hrprtc@THRPrt@CrossTabQFooterPaintX$qqri", + "@Hrprtc@THRPrt@CrossTabQFooterPaintY$qqri", + "@Hrprtc@THRPrt@CrossTabQFooterPaintZ$qqrv", + "@Hrprtc@THRPrt@CrossTabQGrandFilter$qqrp15Hrecord@THRTree", + "@Hrprtc@THRPrt@CrossTabQGroupInfo$qqrv", + "@Hrprtc@THRPrt@CrossTabQNextEOF$qqrv", + "@Hrprtc@THRPrt@CrossTabXPaint$qqrv", + "@Hrprtc@THRPrt@CrossTabYPaint$qqro", + "@Hrprtc@THRPrt@CrossTabZPaint$qqrv", + "@Hrprtc@THRPrt@EndFormating$qqrv", + "@Hrprtc@THRPrt@ExecQEnd$qqrv", + "@Hrprtc@THRPrt@ExecQStart$qqrv", + "@Hrprtc@THRPrt@ExecQUntil$qqr21Hrclass@THRQCondition", + "@Hrprtc@THRPrt@FireAfterAll$qqrv", + "@Hrprtc@THRPrt@FireAfterControl$qqrp17Controls@TControl", + "@Hrprtc@THRPrt@FireAfterPrint$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@FireBeforePrint$qqrp25Hrcommon@THRCustomControlo", + "@Hrprtc@THRPrt@GetGroupInfo$qqrp15Hrecord@THRTreerpp17Hrecord@THRGroupsp19Classes@TStringList", + "@Hrprtc@THRPrt@GetIsBOF$qqrv", + "@Hrprtc@THRPrt@GetIsEOF$qqrv", + "@Hrprtc@THRPrt@GetLabelText$qqrp23Hrctrlsc@THRCustomLabel", + "@Hrprtc@THRPrt@GetLinkGroupInfo$qqrp15Hrecord@THRTreerpp17Hrecord@THRGroups", + "@Hrprtc@THRPrt@GetMinMax$qqrrpp17Hrecord@THRGroupsirit3", + "@Hrprtc@THRPrt@GroupBodyCalc$qqririt2rot4rp25Hrcommon@THRCustomControlpoxit7xi", + "@Hrprtc@THRPrt@GroupFooterPaint$qqroi", + "@Hrprtc@THRPrt@GroupHeaderCalc$qqrrip19Classes@TStringListt1t1rot5", + "@Hrprtc@THRPrt@GroupHeaderPaint$qqroi", + "@Hrprtc@THRPrt@GroupPaint$qqroi", + "@Hrprtc@THRPrt@GroupResetValue$qqrrpp17Hrecord@THRGroupsip19Classes@TStringListi", + "@Hrprtc@THRPrt@InitGroupInfo$qqrrpp17Hrecord@THRGroupsii", + "@Hrprtc@THRPrt@MDOlePump$qqrv", + "@Hrprtc@THRPrt@MDOleRestore$qqrv", + "@Hrprtc@THRPrt@MDPageSkip$qqro", + "@Hrprtc@THRPrt@MDQ$qqrv", + "@Hrprtc@THRPrt@MDQGroupInfo$qqrv", + "@Hrprtc@THRPrt@MDQNext$qqrv", + "@Hrprtc@THRPrt@MDQNextEOF$qqrv", + "@Hrprtc@THRPrt@MDQPaint$qqrv", + "@Hrprtc@THRPrt@MDRepeatToEOP$qqrv", + "@Hrprtc@THRPrt@NextData$qqrv", + "@Hrprtc@THRPrt@OleRestore$qqrv", + "@Hrprtc@THRPrt@PageBandPaint$qqro52System@%Set$t24Hrcommon@THRPageBandType$iuc$0$iuc$4%", + "@Hrprtc@THRPrt@PageBandSetCurrent$qqr52System@%Set$t24Hrcommon@THRPageBandType$iuc$0$iuc$4%", + "@Hrprtc@THRPrt@PageFooterPaint$qqrv", + "@Hrprtc@THRPrt@PageHeaderPaint$qqrv", + "@Hrprtc@THRPrt@PagePaint$qqrv", + "@Hrprtc@THRPrt@PrintGroup$qqrp17Hrcommon@THRGroup", + "@Hrprtc@THRPrt@ReStart$qqrv", + "@Hrprtc@THRPrt@ResetVariable$qqrv", + "@Hrprtc@THRPrt@RootChange$qqrv", + "@Hrprtc@THRPrt@SetCurrentValue$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@StartFormating$qqrv", + "@Hrprtc@THRPrt@Step$qqrv", + "@Hrprtc@THRPrt@WriteBufFile$qqr20Hrclass@THRBufActionp14System@TObjectr11Types@TRect", + "@Hrprtc@THRPrt@isBeforePrintBand$qqrp25Hrcommon@THRCustomControlo", + "@Hrprtc@THRPrt@isOverPage$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@isPageSkip$qqri", + "@Hrprtc@THRPrt@isPrintBand$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@THRPrt@isValueChanged$qqrp25Hrcommon@THRCustomControl", + "@Hrprtc@initialization$qqrv", + "@Hrrestyp@Finalization$qqrv", + "@Hrrestyp@initialization$qqrv", + "@Hrrichc@Finalization$qqrv", + "@Hrrichc@THRCustomRichMemo@", + "@Hrrichc@THRCustomRichMemo@$bctr$qqrp18Classes@TComponent", + "@Hrrichc@THRCustomRichMemo@$bdtr$qqrv", + "@Hrrichc@THRCustomRichMemo@Changed$qqrp14System@TObject", + "@Hrrichc@THRCustomRichMemo@CreateMetafile$qqrorx11Types@TRect", + "@Hrrichc@THRCustomRichMemo@DoDrawRichEdit$qqrp16Graphics@TCanvasir11Types@TRect", + "@Hrrichc@THRCustomRichMemo@GetHandle$qqrv", + "@Hrrichc@THRCustomRichMemo@GetLabelText$qqrv", + "@Hrrichc@THRCustomRichMemo@GetLines$qqrv", + "@Hrrichc@THRCustomRichMemo@GetRichEdit$qqrv", + "@Hrrichc@THRCustomRichMemo@HRDrawText$qqrp16Graphics@TCanvasr17System@AnsiStringr11Types@TRect", + "@Hrrichc@THRCustomRichMemo@MakeRTF$qqr17System@AnsiString", + "@Hrrichc@THRCustomRichMemo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrrichc@THRCustomRichMemo@Paint$qqrv", + "@Hrrichc@THRCustomRichMemo@RefreshData$qqrv", + "@Hrrichc@THRCustomRichMemo@SetCopyFrom$qqrp18Comctrls@TRichEdit", + "@Hrrichc@THRCustomRichMemo@SetFirstChar$qqrv", + "@Hrrichc@THRCustomRichMemo@SetLines$qqrp16Classes@TStrings", + "@Hrrichc@THRCustomRichMemo@SetNextArea$qqrp16Graphics@TCanvasr11Types@TRect", + "@Hrrichc@THRCustomRichMemo@StringToRichEdit$qqr17System@AnsiString", + "@Hrrichc@THRDBRichMemo@", + "@Hrrichc@THRDBRichMemo@$bctr$qqrp18Classes@TComponent", + "@Hrrichc@THRDBRichMemo@$bdtr$qqrv", + "@Hrrichc@THRDBRichMemo@CMGetDataLink$qqrr17Messages@TMessage", + "@Hrrichc@THRDBRichMemo@DataChange$qqrp14System@TObject", + "@Hrrichc@THRDBRichMemo@GetDataField$qqrv", + "@Hrrichc@THRDBRichMemo@GetDataSource$qqrv", + "@Hrrichc@THRDBRichMemo@GetField$qqrv", + "@Hrrichc@THRDBRichMemo@GetFieldText$qqrv", + "@Hrrichc@THRDBRichMemo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Hrrichc@THRDBRichMemo@SetDataField$qqrx17System@AnsiString", + "@Hrrichc@THRDBRichMemo@SetDataSource$qqrp14Db@TDataSource", + "@Hrrichc@THRRichMemo@", + "@Hrrichc@initialization$qqrv", + "@Hrsaveu@Finalization$qqrv", + "@Hrsaveu@HRSaveUf", + "@Hrsaveu@THRSaveUf@", + "@Hrsaveu@THRSaveUf@FormKeyPress$qqrp14System@TObjectrc", + "@Hrsaveu@THRSaveUf@FromPageChange$qqrp14System@TObject", + "@Hrsaveu@THRSaveUf@FromPageKeyPress$qqrp14System@TObjectrc", + "@Hrsaveu@THRSaveUf@btBrowseClick$qqrp14System@TObject", + "@Hrsaveu@THRSaveUf@rbPageNumsClick$qqrp14System@TObject", + "@Hrsaveu@initialization$qqrv", + "@Hrutils@AddRect$qqrrx11Types@TRectt1", + "@Hrutils@CheckTable$qqrr17System@AnsiStringt1t1t1t1r16System@TDateTime", + "@Hrutils@CheckTableEx$qqrynpqqrv$o", + "@Hrutils@DrawBarcode$qqrp25Hrbarcd@THRBarcodeOptions", + "@Hrutils@Finalization$qqrv", + "@Hrutils@FormatVariant$qqrx17System@AnsiStringrx14System@Variant", + "@Hrutils@GetCmpName$qqrr17System@AnsiStringt1", + "@Hrutils@GetFromHRRect$qqrrx15Hrclass@THRRect", + "@Hrutils@GetPictureType$qqrp17Graphics@TPicture", + "@Hrutils@GetTable$qqrr17System@AnsiStringt1t1t1", + "@Hrutils@GetVolumnParam$qqrui", + "@Hrutils@GetVolumnQuery$qqrv", + "@Hrutils@MaxVariant$qqrrx14System@Variant", + "@Hrutils@MinVariant$qqrrx14System@Variant", + "@Hrutils@OpenTable$qqrv", + "@Hrutils@PageInfoCalcPixels$qqrp19Hrclass@THRPageInfo", + "@Hrutils@PageInfoGetSize$qqri16Hrclass@THRUnitsrdt3", + "@Hrutils@PageInfoSetSize$qqr19Hrclass@THRPageSize16Hrclass@THRUnitsrdt3", + "@Hrutils@ParamName$qqrui17System@AnsiString", + "@Hrutils@ParamQuery$qqrx17System@AnsiStringt1", + "@Hrutils@PixelsToUnits$qqrrx11Types@TRect16Hrclass@THRUnitsdp15Hrclass@THRSize", + "@Hrutils@RenameComponent$qqrp18Classes@TComponentt1x17System@AnsiString", + "@Hrutils@RenameControl$qqrp18Classes@TComponentp17Controls@TControlx17System@AnsiString", + "@Hrutils@ResultName$qqrui17System@AnsiString", + "@Hrutils@ResultQuery$qqrx17System@AnsiStringt1", + "@Hrutils@ResultStr$qqr17System@AnsiString", + "@Hrutils@SetTable$qqrx17System@AnsiStringt1t1", + "@Hrutils@SetToHRRect$qqrrx11Types@TRect", + "@Hrutils@StrName$qqr17System@AnsiString", + "@Hrutils@SubRect$qqrrx11Types@TRectt1", + "@Hrutils@UnitsToPixels$qqrpx15Hrclass@THRSized16Hrclass@THRUnits", + "@Hrutils@UnitsToUnits$qqrpx15Hrclass@THRSize16Hrclass@THRUnitsdt2p15Hrclass@THRSize", + "@Hrutils@initialization$qqrv", + "@Hrutils@isTableed$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6381, + "domain_strings": [ + "SExcelSheetName", + "SBackgroundProcessing", + "SStartBackground", + "5F133022A3679D6F0DBFE6C1D7D14913BE658B720F2EA5E85A84F0419B790D34A3FFD45609AA7E18AE7D1721B8", + "BackgroundX", + "RoundRectT", + "RoundCurve", + "Excel.Sheet.5", + "lbBackGroundMsg<", + "StopBackgroundD", + "StartBackgroundH", + "BackgroundStart", + "FooterAtEOP@", + "lbExcelSheetName$", + "cbExcelSheetNames(", + "seExcelSheetX0", + "seExcelSheetY", + "FormActivate", + "@System@@ROUND$qqrv", + "@Classes@TList@Delete$qqri", + "@Graphics@TCanvas@RoundRect$qqriiiiii", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Designeditors@TPropertyEditor@Activate$qqrv", + "@Outline@TCustomOutline@Delete$qqri", + "@Hrclass@THRBorderStyle@SetBackground$qqrp15Graphics@TBrush", + "@Hrclass@THRBorderStyle@SetRoundCurve$qqri", + "@Hrclass@THRBorderStyle@SetRoundRect$qqro", + "@Hrctrlsc@THRCustomLabel@AdjustBounds$qqrv", + "@Hreport@THRPrs@GetBackgroundStart$qqrv", + "@Hreport@THRPrs@GetIsBackground$qqrv", + "@Hreport@THRPrs@ReadBackgroundStart$qqrp15Classes@TReader", + "@Hreport@THRPrs@SetBackgroundStart$qqro", + "@Hreport@THRPrs@SetIsBackground$qqro", + "@Hrlinkg@THRLinkGf@FormActivate$qqrp14System@TObject", + "@Hrlinks@THRLinkSf@FormActivate$qqrp14System@TObject", + "@Hrpageu@THRPageUf@FormActivate$qqrp14System@TObject", + "@Hrprevc@THRPreview@GetisBackground$qqrv", + "@Hrprevu@THRPreviewControl@Adjust$qqrv", + "Select All", + "Delete", + "OnActivate", + "lbExcelSheetName", + "Excel Sheet Name", + "cbExcelSheetNames", + "ExcelSheetNames", + "seExcelSheetX", + "&Insert >", + "Insert Source", + "lbBackGroundMsg", + "Background Processing", + "StopBackground", + "Stop Background", + "StartBackground", + "Start Background", + "BackgroundX뾅", + "RoundRectT뾅", + "RoundCurve컺C", + "BackgroundStart쐹C", + "FooterAtEOP@퍫" + ] + }, + "DELPHIMM.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 4060, + "raw_off": 1024, + "raw_size": 4096 + }, + { + "name": "DATA", + "va": 8192, + "vsize": 160, + "raw_off": 5120, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 12288, + "vsize": 1769, + "raw_off": 5632, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 16384, + "vsize": 982, + "raw_off": 5632, + "raw_size": 1024 + }, + { + "name": ".edata", + "va": 20480, + "vsize": 281, + "raw_off": 6656, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 24576, + "vsize": 444, + "raw_off": 7168, + "raw_size": 512 + }, + { + "name": ".rsrc", + "va": 28672, + "vsize": 1536, + "raw_off": 7680, + "raw_size": 1536 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "kernel32.dll", + "borlndmm.dll" + ], + "exports": [ + "DumpBlocks", + "FreeMemory", + "GetAllocMemCount", + "GetAllocMemSize", + "GetHeapStatus", + "GetMemory", + "ReallocMemory", + "SysFreeMem", + "SysGetMem", + "SysReallocMem" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 146, + "domain_strings": [] + }, + "designide60.bpl": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 372376, + "raw_off": 1024, + "raw_size": 372736 + }, + { + "name": "DATA", + "va": 376832, + "vsize": 1372, + "raw_off": 373760, + "raw_size": 1536 + }, + { + "name": "BSS", + "va": 380928, + "vsize": 533, + "raw_off": 375296, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 385024, + "vsize": 62642, + "raw_off": 375296, + "raw_size": 62976 + }, + { + "name": ".edata", + "va": 450560, + "vsize": 174388, + "raw_off": 438272, + "raw_size": 174592 + }, + { + "name": ".rdata", + "va": 626688, + "vsize": 29, + "raw_off": 612864, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 630784, + "vsize": 31868, + "raw_off": 613376, + "raw_size": 32256 + }, + { + "name": ".rsrc", + "va": 663552, + "vsize": 55808, + "raw_off": 645632, + "raw_size": 55808 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "olepro32.dll", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "comctl32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl" + ], + "exports": [ + "@$xp$13Events@TEvent", + "@$xp$14Designer@IItem", + "@$xp$15Designer@ITools", + "@$xp$15Treeintf@TSprig", + "@$xp$16Designer@TZOrder", + "@$xp$16Mtdedlg@TMtDeDlg", + "@$xp$16Mtindlg@TMtInDlg", + "@$xp$16Mtsvdlg@TMtSvDlg", + "@$xp$17Designmenus@IMenu", + "@$xp$17Exptintf@TIExpert", + "@$xp$17Mnubuild@TMenuWin", + "@$xp$17Toolsapi@IOTAFile", + "@$xp$18Designer@TDesigner", + "@$xp$18Update@TUpdateMode", + "@$xp$19Colnedit@TColOption", + "@$xp$19Designer@IDragBoxes", + "@$xp$19Designer@TNullTools", + "@$xp$19Editintf@TBlockType", + "@$xp$19Editintf@TIEditView", + "@$xp$19Mnubuild@THomeValue", + "@$xp$19Mnubuild@TStateFlag", + "@$xp$19Stredit@TStrEditDlg", + "@$xp$19Toolintf@TIMenuFlag", + "@$xp$19Toolsapi@IOTAEditor", + "@$xp$19Toolsapi@IOTAModule", + "@$xp$19Toolsapi@IOTARecord", + "@$xp$19Toolsapi@IOTAThread", + "@$xp$19Toolsapi@IOTAWizard", + "@$xp$19Toolutils@TOTAClass", + "@$xp$19Treeintf@TGUIDArray", + "@$xp$19Treeintf@TInformant", + "@$xp$19Treeintf@TRootSprig", + "@$xp$19Treeintf@TSprigType", + "@$xp$19Update@TUpdateFiler", + "@$xp$19Virtintf@TInterface", + "@$xp$20Colnedit@TColOptions", + "@$xp$20Designer@Designer__1", + "@$xp$20Designer@Designer__5", + "@$xp$20Designer@Designer__6", + "@$xp$20Designer@ISelections", + "@$xp$20Designer@TDragAction", + "@$xp$20Designintf@IDesigner", + "@$xp$20Designintf@IProperty", + "@$xp$20Designintf@TPropKind", + "@$xp$20Dsncmds@TDsnCommands", + "@$xp$20Editintf@TNotifyCode", + "@$xp$20Exptintf@ExptIntf__1", + "@$xp$20Mnubuild@MnuBuild__1", + "@$xp$20Mnubuild@MnuBuild__2", + "@$xp$20Mnubuild@TMenuEditor", + "@$xp$20Mnubuild@TStateFlags", + "@$xp$20Toolintf@TBoundsType", + "@$xp$20Toolintf@TIMenuFlags", + "@$xp$20Toolsapi@IOTACreator", + "@$xp$20Toolsapi@IOTAOptions", + "@$xp$20Toolsapi@IOTAProcess", + "@$xp$20Toolsapi@IOTAProject", + "@$xp$20Toolsapi@TOTARunMode", + "@$xp$20Toolsapi@ToolsAPI__1", + "@$xp$20Treeintf@TDragSprigs", + "@$xp$20Treeintf@TSprigIndex", + "@$xp$20Update@TUpdateObject", + "@$xp$21Designer@IGrabHandles", + "@$xp$21Designer@TMoveAffects", + "@$xp$21Designintf@TEditState", + "@$xp$21Designmenus@IMainMenu", + "@$xp$21Designmenus@IMenuItem", + "@$xp$21Deskform@TDesktopForm", + "@$xp$21Dockform@TIDEDockType", + "@$xp$21Editintf@TIEditReader", + "@$xp$21Editintf@TIEditWriter", + "@$xp$21Exptintf@TExpertState", + "@$xp$21Exptintf@TExpertStyle", + "@$xp$21Istreams@TIFileStream", + "@$xp$21Mnubuild@EMenuBuilder", + "@$xp$21Mnubuild@TMenuBuilder", + "@$xp$21Mnubuild@TMenuItemWin", + "@$xp$21Ocxreg@TOleFontEditor", + "@$xp$21Stfilsys@TOTANotifier", + "@$xp$21Toolform@TToolbarForm", + "@$xp$21Toolsapi@INTAServices", + "@$xp$21Toolsapi@INTAToDoItem", + "@$xp$21Toolsapi@IOTAEditView", + "@$xp$21Toolsapi@IOTAModule40", + "@$xp$21Toolsapi@IOTAModule50", + "@$xp$21Toolsapi@IOTANotifier", + "@$xp$21Toolsapi@IOTAServices", + "@$xp$21Toolsapi@TBindingType", + "@$xp$21Toolsapi@TWizardState", + "@$xp$21Treeintf@TSprigAction", + "@$xp$21Update@IUpdateManager", + "@$xp$21Update@TUpdateManager", + "@$xp$21Vclmenus@TMenuWrapper", + "@$xp$21Vclsprigs@TFrameSprig", + "@$xp$22Designer@TXorDragBoxes", + "@$xp$22Designintf@TDragTarget", + "@$xp$22Designintf@TEditAction", + "@$xp$22Designintf@TEditStates", + "@$xp$22Designmenus@IMenuItems", + "@$xp$22Designmenus@IPopupMenu", + "@$xp$22Dmform@TDataModuleForm", + "@$xp$22Dockform@TDockableForm", + "@$xp$22Editintf@TPropertyType", + "@$xp$22Joindock@TJoinDockForm", + "@$xp$22Menutmpl@TMenuTemplate", + "@$xp$22Picedit@TGraphicEditor", + "@$xp$22Picedit@TPictureEditor", + "@$xp$22Surface@TDesignSurface", + "@$xp$22Toolsapi@INTAComponent", + "@$xp$22Toolsapi@IOTAComponent", + "@$xp$22Toolsapi@IOTAEditBlock", + "@$xp$22Toolsapi@IOTAProject40", + "@$xp$22Toolsapi@TOTABlockType", + "@$xp$23Componentdesigner@IFile", + "@$xp$23Componentdesigner@IRoot", + "@$xp$23Designer@IDesignSurface", + "@$xp$23Designer@TDesignKeyCode", + "@$xp$23Designintf@IActivatable", + "@$xp$23Designintf@IEditHandler", + "@$xp$23Designintf@TGetPropProc", + "@$xp$23Editintf@TIResourceFile", + "@$xp$23Idedockpanel@TDockPanel", + "@$xp$23Istreams@TIMemoryStream", + "@$xp$23Istreams@TVirtualStream", + "@$xp$23Ocxreg@TOleEnumProperty", + "@$xp$23Ocxreg@TOleObjectEditor", + "@$xp$23Stfilsys@TStringsStream", + "@$xp$23Toolintf@TIMainMenuIntf", + "@$xp$23Toolintf@TIMenuItemIntf", + "@$xp$23Toolintf@TIToolServices", + "@$xp$23Toolsapi@INTAEditWindow", + "@$xp$23Toolsapi@INTAFormEditor", + "@$xp$23Toolsapi@INTAServices40", + "@$xp$23Toolsapi@IOTABreakpoint", + "@$xp$23Toolsapi@IOTAEditBuffer", + "@$xp$23Toolsapi@IOTAEditReader", + "@$xp$23Toolsapi@IOTAEditView40", + "@$xp$23Toolsapi@IOTAEditWriter", + "@$xp$23Toolsapi@IOTAFileSystem", + "@$xp$23Toolsapi@IOTAFormEditor", + "@$xp$23Toolsapi@IOTAFormWizard", + "@$xp$23Toolsapi@IOTAKeyContext", + "@$xp$23Toolsapi@IOTAMenuWizard", + "@$xp$23Toolsapi@IOTAModuleData", + "@$xp$23Toolsapi@IOTAModuleInfo", + "@$xp$23Toolsapi@IOTAServices50", + "@$xp$23Toolsapi@TOTAAccessType", + "@$xp$23Toolsapi@TOTAModuleType", + "@$xp$23Toolsapi@TOTAOptionName", + "@$xp$23Treeintf@ISprigDesigner", + "@$xp$23Treeintf@TAbstractSprig", + "@$xp$23Treeintf@TPropertySprig", + "@$xp$23Treeintf@TRootSprigList", + "@$xp$23Treeintf@TSprigIntfType", + "@$xp$23Treeintf@TSprigTreeNode", + "@$xp$23Treeintf@TSprigTypeList", + "@$xp$23Valueedit@TValueEditDlg", + "@$xp$23Vclsprigs@TControlSprig", + "@$xp$23Vclsurface@IHintMessage", + "@$xp$24Designer@IPersistentItem", + "@$xp$24Designer@TDesignBoxStyle", + "@$xp$24Designer@TPersistentItem", + "@$xp$24Designintf@ICustomModule", + "@$xp$24Designintf@IDesignWindow", + "@$xp$24Editintf@TIFormInterface", + "@$xp$24Editintf@TIModuleCreator", + "@$xp$24Editintf@TIResourceEntry", + "@$xp$24Editintf@TResHeaderValue", + "@$xp$24Istreams@TIStreamAdapter", + "@$xp$24Ocxreg@TOleControlEditor", + "@$xp$24Picedit@TGraphicProperty", + "@$xp$24Picedit@TPictureProperty", + "@$xp$24Tabdock@TTabDockHostForm", + "@$xp$24Toolintf@TIAddInNotifier", + "@$xp$24Toolsapi@IOTAEditActions", + "@$xp$24Toolsapi@IOTAEditOptions", + "@$xp$24Toolsapi@IOTAIDENotifier", + "@$xp$24Toolsapi@IOTAToDoManager", + "@$xp$24Toolsapi@TKeyBindingProc", + "@$xp$24Toolsapi@TNotifierObject", + "@$xp$24Toolsapi@TOTACompileMode", + "@$xp$24Toolsapi@TOTAThreadState", + "@$xp$24Toolutils@TIUnknownEvent", + "@$xp$24Toplevels@TComponentList", + "@$xp$24Treeintf@TComponentSprig", + "@$xp$24Treeintf@TTransientSprig", + "@$xp$24Vcleditors@TFontProperty", + "@$xp$24Wctlform@TWinControlForm", + "@$xp$25Componentdesigner@IStream", + "@$xp$25Componentdesigner@TAffect", + "@$xp$25Componentdesigner@TEvents", + "@$xp$25Designer@ISurfaceDesigner", + "@$xp$25Designintf@IDefaultEditor", + "@$xp$25Editintf@TIModuleNotifier", + "@$xp$25Editintf@TIProjectCreator", + "@$xp$25Ocxreg@TOleCustomProperty", + "@$xp$25Ocxreg@TOleObjectProperty", + "@$xp$25Picedit@TPictureEditorDlg", + "@$xp$25Stfilsys@TOTAFormNotifier", + "@$xp$25Toolintf@TIMenuClickEvent", + "@$xp$25Toolsapi@IOTABreakpoint40", + "@$xp$25Toolsapi@IOTAEditPosition", + "@$xp$25Toolsapi@IOTAFormNotifier", + "@$xp$25Toolsapi@IOTAModuleInfo50", + "@$xp$25Toolsapi@IOTAProjectGroup", + "@$xp$25Toolsapi@IOTASourceEditor", + "@$xp$25Toolsapi@IOTASpeedSetting", + "@$xp$25Toolsapi@IOTAToDoServices", + "@$xp$25Toolsapi@TOTANotifyReason", + "@$xp$25Toolsapi@TOTAToDoPriority", + "@$xp$25Toolsapi@TSearchDirection", + "@$xp$25Treeintf@ISprigCollection", + "@$xp$25Treeintf@TCollectionSprig", + "@$xp$25Treeintf@TPersistentSprig", + "@$xp$25Update@TUpdateFilterState", + "@$xp$25Vcleditors@TColorProperty", + "@$xp$25Vclmenus@TMainMenuWrapper", + "@$xp$25Vclmenus@TMenuItemWrapper", + "@$xp$26Basedock@TBaseDockHostForm", + "@$xp$26Colnedit@TCollectionEditor", + "@$xp$26Componentdesigner@TRenames", + "@$xp$26Designeditors@TSetProperty", + "@$xp$26Designer@TSimpleSelections", + "@$xp$26Designintf@IImplementation", + "@$xp$26Designintf@IMethodProperty", + "@$xp$26Designmenus@TLocalMenuType", + "@$xp$26Editintf@TIEditorInterface", + "@$xp$26Editintf@TIModuleCreatorEx", + "@$xp$26Editintf@TIModuleInterface", + "@$xp$26Idemenuaction@TPopupAction", + "@$xp$26Mnubuild@TMenuItemProperty", + "@$xp$26Mnubuild@TScrollVisibility", + "@$xp$26Mnuselct@TMenuSelectDialog", + "@$xp$26Stredit@TValueListProperty", + "@$xp$26Toolintf@TCreateModuleFlag", + "@$xp$26Toolintf@TFileNotification", + "@$xp$26Toolsapi@IOTABufferOptions", + "@$xp$26Toolsapi@IOTACustomMessage", + "@$xp$26Toolsapi@IOTAIDENotifier50", + "@$xp$26Toolsapi@IOTAModuleCreator", + "@$xp$26Toolsapi@IOTAProcessModule", + "@$xp$26Toolsapi@IOTAProjectWizard", + "@$xp$26Toolsapi@IOTAResourceEntry", + "@$xp$26Toolsapi@IOTASearchOptions", + "@$xp$26Toolsapi@IOTATypeLibEditor", + "@$xp$26Toolsapi@IOTATypeLibModule", + "@$xp$26Toolsapi@TKeyBindingResult", + "@$xp$26Toolsapi@TOTATriggerResult", + "@$xp$26Treeintf@TSprigDeleteStyle", + "@$xp$26Vcleditors@TCursorProperty", + "@$xp$26Vclmenus@TMenuItemsWrapper", + "@$xp$26Vclmenus@TPopupMenuWrapper", + "@$xp$26Vclsprigs@TWinControlSprig", + "@$xp$26Virtintf@IStreamModifyTime", + "@$xp$27Componentdesigner@ICompInfo", + "@$xp$27Componentdesigner@TCompInfo", + "@$xp$27Designeditors@TBoolProperty", + "@$xp$27Designeditors@TCharProperty", + "@$xp$27Designeditors@TCustomModule", + "@$xp$27Designeditors@TDateProperty", + "@$xp$27Designeditors@TEnumProperty", + "@$xp$27Designeditors@TTimeProperty", + "@$xp$27Designintf@IComponentEditor", + "@$xp$27Designintf@ISelectionEditor", + "@$xp$27Designmenus@TLocalMenuTypes", + "@$xp$27Designwindows@TDesignWindow", + "@$xp$27Editintf@TIProjectCreatorEx", + "@$xp$27Editintf@TSyntaxHighlighter", + "@$xp$27Ocxreg@TOlePropPageProperty", + "@$xp$27Stfilsys@TOTAModuleNotifier", + "@$xp$27Stfilsys@TStringsFileSystem", + "@$xp$27Stredit@TStringListProperty", + "@$xp$27Stringsedit@TStringsEditDlg", + "@$xp$27Toolintf@TCreateModuleFlags", + "@$xp$27Toolintf@TCreateProjectFlag", + "@$xp$27Toolintf@TEventNotification", + "@$xp$27Toolsapi@IOTAActionServices", + "@$xp$27Toolsapi@IOTAEditorNotifier", + "@$xp$27Toolsapi@IOTAEditorServices", + "@$xp$27Toolsapi@IOTAModuleNotifier", + "@$xp$27Toolsapi@IOTAModuleServices", + "@$xp$27Toolsapi@IOTAProjectBuilder", + "@$xp$27Toolsapi@IOTAProjectCreator", + "@$xp$27Toolsapi@IOTAProjectOptions", + "@$xp$27Toolsapi@IOTAReplaceOptions", + "@$xp$27Toolsapi@IOTAThreadNotifier", + "@$xp$27Toolsapi@IOTAWizardServices", + "@$xp$27Toolsapi@TOTAEvaluateResult", + "@$xp$27Toolsapi@TOTAResHeaderValue", + "@$xp$27Toplevels@ITopLevelsHandler", + "@$xp$27Vcleditors@TCaptionProperty", + "@$xp$27Vcleditors@TImeNameProperty", + "@$xp$28Colnedit@TCollectionProperty", + "@$xp$28Componentdesigner@IAlignable", + "@$xp$28Componentdesigner@IScaleable", + "@$xp$28Componentdesigner@TEventItem", + "@$xp$28Componentdesigner@TFormState", + "@$xp$28Componentdesigner@TShowState", + "@$xp$28Designeditors@TClassProperty", + "@$xp$28Designeditors@TDefaultEditor", + "@$xp$28Designeditors@TFloatProperty", + "@$xp$28Designeditors@TInt64Property", + "@$xp$28Designer@ISelectionsListener", + "@$xp$28Designintf@TBaseCustomModule", + "@$xp$28Designintf@TGetDesignerEvent", + "@$xp$28Designmenus@IDesignLocalMenu", + "@$xp$28Fileintf@TIVirtualFileSystem", + "@$xp$28Idemenuaction@TSubMenuAction", + "@$xp$28Toolintf@TCreateProjectFlags", + "@$xp$28Toolsapi@IBorlandIDEServices", + "@$xp$28Toolsapi@IOTACustomMessage50", + "@$xp$28Toolsapi@IOTAEditLineTracker", + "@$xp$28Toolsapi@IOTAKeyboardBinding", + "@$xp$28Toolsapi@IOTAMessageServices", + "@$xp$28Toolsapi@IOTAPackageServices", + "@$xp$28Toolsapi@IOTAProcessNotifier", + "@$xp$28Toolsapi@IOTAProjectResource", + "@$xp$28Toolsapi@TOTAOptionNameArray", + "@$xp$28Treeintf@TCopySprigGlyphFunc", + "@$xp$28Vcleditors@ICustomDesignForm", + "@$xp$28Vcleditors@ISelectionMessage", + "@$xp$28Vcleditors@TFontNameProperty", + "@$xp$28Vcleditors@TPenStyleProperty", + "@$xp$28Vcleditors@TShortCutProperty", + "@$xp$28Vcleditors@TTabOrderProperty", + "@$xp$29Componentdesigner@TRenameItem", + "@$xp$29Componentdesigner@TSelections", + "@$xp$29Componentdesigner@TSizeAffect", + "@$xp$29Designeditors@TMethodProperty", + "@$xp$29Designeditors@TNestedProperty", + "@$xp$29Designeditors@TPropertyEditor", + "@$xp$29Designeditors@TStringProperty", + "@$xp$29Designintf@IReferenceProperty", + "@$xp$29Designintf@TPropertyAttribute", + "@$xp$29Editintf@TIComponentInterface", + "@$xp$29Idedockpanel@TEditorDockPanel", + "@$xp$29Menutmpl@TMenuTemplateManager", + "@$xp$29Metasupport@TMetaPopulateProc", + "@$xp$29Metasupport@TMetaPostWorkProc", + "@$xp$29Metasupport@TMetaProgressProc", + "@$xp$29Toolsapi@IOTADebuggerNotifier", + "@$xp$29Toolsapi@IOTADebuggerServices", + "@$xp$29Toolsapi@IOTAEditLineNotifier", + "@$xp$29Toolsapi@IOTAKeyboardServices", + "@$xp$29Toolsapi@IOTAProjectBuilder40", + "@$xp$29Toolsapi@IOTAProjectCreator50", + "@$xp$29Toolsapi@IOTAProjectOptions40", + "@$xp$29Toolsapi@IOTARepositoryWizard", + "@$xp$29Toolsapi@IOTASourceBreakpoint", + "@$xp$29Toolsapi@TOTAFileNotification", + "@$xp$29Toolsapi@TOTAGetChildCallback", + "@$xp$29Toolwnds@TToolbarDesignWindow", + "@$xp$29Treeintf@TCollectionItemSprig", + "@$xp$29Update@IUpdateManagerCallback", + "@$xp$29Vclsurface@IImageListProvider", + "@$xp$30Componentdesigner@IDatedStream", + "@$xp$30Componentdesigner@IPaletteBits", + "@$xp$30Componentdesigner@IPaletteItem", + "@$xp$30Componentdesigner@ISurfaceHost", + "@$xp$30Componentdesigner@TGetRootProc", + "@$xp$30Componentdesigner@TStringArray", + "@$xp$30Designeditors@TComponentEditor", + "@$xp$30Designeditors@TIntegerProperty", + "@$xp$30Designeditors@TOrdinalProperty", + "@$xp$30Designeditors@TSelectionEditor", + "@$xp$30Designeditors@TVariantProperty", + "@$xp$30Designintf@IDesignNotification", + "@$xp$30Designintf@IDesignerSelections", + "@$xp$30Designintf@TBasePropertyEditor", + "@$xp$30Designintf@TDesignerSelections", + "@$xp$30Designintf@TPropertyAttributes", + "@$xp$30Dmform@TDataModuleCustomModule", + "@$xp$30Idemenuaction@TPopupActionLink", + "@$xp$30Toolsapi@INTACustomDrawMessage", + "@$xp$30Toolsapi@IOTAAddressBreakpoint", + "@$xp$30Toolsapi@IOTAMessageServices40", + "@$xp$30Toolsapi@TOTASyntaxHighlighter", + "@$xp$30Vcleditors@TBrushStyleProperty", + "@$xp$30Vcleditors@TMPFilenameProperty", + "@$xp$30Vclsprigs@TCustomFormRootSprig", + "@$xp$30Vclsprigs@TDataModuleRootSprig", + "@$xp$30Vclsprigs@TWinControlRootSprig", + "@$xp$31Componentdesigner@IInternalItem", + "@$xp$31Componentdesigner@IInternalRoot", + "@$xp$31Componentdesigner@IPalettePaint", + "@$xp$31Componentdesigner@ITabOrderable", + "@$xp$31Componentdesigner@TDesignDialog", + "@$xp$31Componentdesigner@TInternalItem", + "@$xp$31Componentdesigner@TOTAComponent", + "@$xp$31Designeditors@TDateTimeProperty", + "@$xp$31Designer@IDesignSurfaceListener", + "@$xp$31Designintf@ISelectionEditorList", + "@$xp$31Designintf@TBaseComponentEditor", + "@$xp$31Designintf@TBaseSelectionEditor", + "@$xp$31Idecommandbutton@TCommandButton", + "@$xp$31Toolsapi@IOTABreakpointNotifier", + "@$xp$31Toolsapi@IOTAEditBufferIterator", + "@$xp$31Toolsapi@IOTAEnvironmentOptions", + "@$xp$31Toolsapi@IOTAKeyBindingServices", + "@$xp$31Toolsapi@IOTAProcessModNotifier", + "@$xp$31Toolsapi@IOTARepositoryWizard60", + "@$xp$31Vcleditors@TFontCharsetProperty", + "@$xp$31Vcleditors@TModalResultProperty", + "@$xp$32Componentdesigner@TComponentItem", + "@$xp$32Componentdesigner@TComponentRoot", + "@$xp$32Componentdesigner@TDesignCommand", + "@$xp$32Componentdesigner@TDesignerState", + "@$xp$32Componentdesigner@TOTAFormEditor", + "@$xp$32Componentdesigner@TStreamAdapter", + "@$xp$32Designeditors@IDesignGroupChange", + "@$xp$32Designeditors@TComponentProperty", + "@$xp$32Designeditors@TInterfaceProperty", + "@$xp$32Idedockctrls@TTabDockPageControl", + "@$xp$32Idemenuaction@TCustomPopupAction", + "@$xp$32Stfilsys@TActiveTStringsProperty", + "@$xp$32Toolsapi@IOTAKeyboardDiagnostics", + "@$xp$32Toolsapi@IOTAProjectGroupCreator", + "@$xp$32Vcleditors@ISelectionMessageList", + "@$xp$32Wctlform@TWinControlCustomModule", + "@$xp$33Componentdesigner@IDesignerModule", + "@$xp$33Componentdesigner@IRootListUpdate", + "@$xp$33Componentdesigner@TComponentArray", + "@$xp$33Componentdesigner@TIStreamAdapter", + "@$xp$33Componentdesigner@TPaintItemStyle", + "@$xp$33Componentdesigner@TRecoveryResult", + "@$xp$33Designeditors@TSetElementProperty", + "@$xp$33Designer@TSelectionListenerHelper", + "@$xp$33Designintf@TCustomModuleAttribute", + "@$xp$33Docktoolform@TDockableToolbarForm", + "@$xp$33Editorviewsupport@TEditorViewData", + "@$xp$33Treeintf@TAbstractCollectionSprig", + "@$xp$33Vcleditors@ICustomPropertyDrawing", + "@$xp$34Componentdesigner@ICreateOrderable", + "@$xp$34Componentdesigner@TPaintItemStyles", + "@$xp$34Designintf@TCustomModuleAttributes", + "@$xp$34Editorviewsupport@TEditorViewStyle", + "@$xp$34Idemenuaction@TCustomSubMenuAction", + "@$xp$34Propertycategories@TPropertyFilter", + "@$xp$34Toolsapi@IOTAAdditionalModuleFiles", + "@$xp$34Treeintf@TTransientCollectionSprig", + "@$xp$35Componentdesigner@TDeleteWarnResult", + "@$xp$35Componentdesigner@TEnvironmentTools", + "@$xp$35Editorviewsupport@ICustomEditorView", + "@$xp$35Editorviewsupport@TCustomEditorView", + "@$xp$35Editorviewsupport@TEditorViewStyles", + "@$xp$35Idemenuaction@TPopulateSubMenuEvent", + "@$xp$36Componentdesigner@IComponentDesigner", + "@$xp$36Componentdesigner@IDesignEnvironment", + "@$xp$36Componentdesigner@IInterfaceDesigner", + "@$xp$36Componentdesigner@TComponentDesigner", + "@$xp$36Designeditors@TComponentNameProperty", + "@$xp$36Designintf@TPropertyEditorFilterFunc", + "@$xp$36Propertycategories@TPropertyCategory", + "@$xp$37Componentdesigner@IComponentDesigners", + "@$xp$37Componentdesigner@TDatedStreamAdapter", + "@$xp$37Componentdesigner@TRootActivatedEvent", + "@$xp$37Vcleditors@ICustomPropertyListDrawing", + "@$xp$38Componentdesigner@ComponentDesigner__1", + "@$xp$38Componentdesigner@ComponentDesigner__2", + "@$xp$38Componentdesigner@TRootReadErrorResult", + "@$xp$38Editorviewsupport@TEditorViewDataArray", + "@$xp$39Componentdesigner@IComponentPaletteItem", + "@$xp$39Componentdesigner@TEvRootActivatedEvent", + "@$xp$39Editorviewsupport@ICustomEditorEditView", + "@$xp$39Editorviewsupport@IFileCustomEditorView", + "@$xp$39Editorviewsupport@TCustomEditorViewInfo", + "@$xp$39Editorviewsupport@TCustomEditorViewList", + "@$xp$40Designeditors@TEditActionSelectionEditor", + "@$xp$40Editorviewsupport@ICustomEditorFrameView", + "@$xp$40Propertycategories@TPropertyCategoryList", + "@$xp$41Componentdesigner@IComponentDesignSurface", + "@$xp$41Editorviewsupport@ERequiredInterfaceError", + "@$xp$41Toolsapi@IOTAAdditionalFilesModuleCreator", + "@$xp$43Componentdesigner@TQueryRedirectLinksResult", + "@$xp$44Componentdesigner@IInternalComponentDesigner", + "@$xp$45Componentdesigner@IInternalComponentDesigners", + "@$xp$47Propertycategories@TPropertyCategoryVisibleMode", + "@$xp$49Editorviewsupport@IEditorViewRegisterNotification", + "@$xp$52Componentdesigner@ECannotDeleteNonComponentException", + "@Basedock@DestroyDockHosts$qqrv", + "@Basedock@Finalization$qqrv", + "@Basedock@HostDockFormList", + "@Basedock@TBaseDockHostForm@", + "@Basedock@TBaseDockHostForm@$bctr$qqrp18Classes@TComponent", + "@Basedock@TBaseDockHostForm@$bdtr$qqrv", + "@Basedock@TBaseDockHostForm@CMDialogChar$qqrr15Messages@TWMKey", + "@Basedock@TBaseDockHostForm@CreateDockParent$qqrr22Controls@TCMDockClient", + "@Basedock@TBaseDockHostForm@DoAddDockClient$qqrp17Controls@TControlrx11Types@TRect", + "@Basedock@TBaseDockHostForm@DoRemoveDockClient$qqrp17Controls@TControl", + "@Basedock@TBaseDockHostForm@DoUnDock$qqrp20Controls@TWinControlp17Controls@TControl", + "@Basedock@TBaseDockHostForm@FormClose$qqrp14System@TObjectr18Forms@TCloseAction", + "@Basedock@TBaseDockHostForm@GetDockSiteControl$qqrv", + "@Basedock@TBaseDockHostForm@GetVisibleClientCount$qqrv", + "@Basedock@TBaseDockHostForm@ManualDockClient$qqrp17Controls@TControlt115Controls@TAligno", + "@Basedock@TBaseDockHostForm@ResetCaption$qqrv", + "@Basedock@TBaseDockHostForm@ResetStayOnTop$qqrv", + "@Basedock@TBaseDockHostForm@SetDockable$qqrxo", + "@Basedock@TBaseDockHostForm@UMFinalUndock$qqrr17Messages@TMessage", + "@Basedock@TBaseDockHostForm@UMNewClientFocused$qqrr17Messages@TMessage", + "@Basedock@TBaseDockHostForm@WMActivate$qqrr20Messages@TWMActivate", + "@Basedock@initialization$qqrv", + "@Colnedit@Finalization$qqrv", + "@Colnedit@ShowCollectionEditor$qqr48System@%DelphiInterface$t20Designintf@IDesigner%p18Classes@TComponentp19Classes@TCollectionx17System@AnsiString", + "@Colnedit@ShowCollectionEditorClass$qqr48System@%DelphiInterface$t20Designintf@IDesigner%p17System@TMetaClassp18Classes@TComponentp19Classes@TCollectionx17System@AnsiString47System@%Set$t19Colnedit@TColOption$iuc$0$iuc$2%", + "@Colnedit@TCollectionEditor@", + "@Colnedit@TCollectionEditor@AMDeferUpdate$qqrpv", + "@Colnedit@TCollectionEditor@Activated$qqrv", + "@Colnedit@TCollectionEditor@AddClick$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@CanAdd$qqri", + "@Colnedit@TCollectionEditor@CloseEditor$qqrv", + "@Colnedit@TCollectionEditor@DeleteClick$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@DesignerClosed$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Colnedit@TCollectionEditor@FormClose$qqrp14System@TObjectr18Forms@TCloseAction", + "@Colnedit@TCollectionEditor@FormCreate$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@FormDestroy$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@FormKeyPress$qqrp14System@TObjectrc", + "@Colnedit@TCollectionEditor@FormResize$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@GetItemName$qqrii", + "@Colnedit@TCollectionEditor@GetRegKey$qqrv", + "@Colnedit@TCollectionEditor@GetSelection$qqrv", + "@Colnedit@TCollectionEditor@ItemDeleted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Colnedit@TCollectionEditor@ItemsModified$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Colnedit@TCollectionEditor@ListView1Change$qqrp14System@TObjectp18Comctrls@TListItem20Comctrls@TItemChange", + "@Colnedit@TCollectionEditor@ListView1Click$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@ListView1DragDrop$qqrp14System@TObjectt1ii", + "@Colnedit@TCollectionEditor@ListView1DragOver$qqrp14System@TObjectt1ii19Controls@TDragStatero", + "@Colnedit@TCollectionEditor@ListView1KeyPress$qqrp14System@TObjectrc", + "@Colnedit@TCollectionEditor@LockState$qqrv", + "@Colnedit@TCollectionEditor@MoveDownClick$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@MoveUpClick$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@SelectAll$qqro", + "@Colnedit@TCollectionEditor@SelectAll1Click$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@SelectAllCommandUpdate$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@SelectNone$qqro", + "@Colnedit@TCollectionEditor@SelectionChanged$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Colnedit@TCollectionEditor@SelectionUpdate$qqrp14System@TObject", + "@Colnedit@TCollectionEditor@SetColOptions$qqr47System@%Set$t19Colnedit@TColOption$iuc$0$iuc$2%", + "@Colnedit@TCollectionEditor@SetCollectionPropertyName$qqrx17System@AnsiString", + "@Colnedit@TCollectionEditor@SetSelection$qqrv", + "@Colnedit@TCollectionEditor@UnlockState$qqrv", + "@Colnedit@TCollectionEditor@UpdateListbox$qqrv", + "@Colnedit@TCollectionProperty@", + "@Colnedit@TCollectionProperty@Edit$qqrv", + "@Colnedit@TCollectionProperty@GetAttributes$qqrv", + "@Colnedit@TCollectionProperty@GetColOptions$qqrv", + "@Colnedit@TCollectionProperty@GetEditorClass$qqrv", + "@Colnedit@initialization$qqrv", + "@Componentdesigner@ActiveDesigner$qqrv", + "@Componentdesigner@ActiveRoot$qqrv", + "@Componentdesigner@Designers$qqrv", + "@Componentdesigner@ECannotDeleteNonComponentException@", + "@Componentdesigner@EmptyPoint", + "@Componentdesigner@EmptyRect", + "@Componentdesigner@EvRootActivatedEvent", + "@Componentdesigner@Finalization$qqrv", + "@Componentdesigner@InitializeDesigners$qqrx64System@%DelphiInterface$t36Componentdesigner@IDesignEnvironment%", + "@Componentdesigner@IsNoIconComponent$qqrp18Classes@TComponent", + "@Componentdesigner@OffScreenPoint", + "@Componentdesigner@OffScreenRect", + "@Componentdesigner@ProtectEnvironment$qqrx64System@%DelphiInterface$t36Componentdesigner@IDesignEnvironment%", + "@Componentdesigner@RegisterInitializeDesigner$qqrpqqrx64System@%DelphiInterface$t36Componentdesigner@IDesignEnvironment%$v", + "@Componentdesigner@TCompInfo@", + "@Componentdesigner@TCompInfo@$bctr$qqrx59System@%DelphiInterface$t31Componentdesigner@IInternalRoot%p19Classes@TPersistent", + "@Componentdesigner@TCompInfo@$bdtr$qqrv", + "@Componentdesigner@TCompInfo@ClearEvent$qqri", + "@Componentdesigner@TCompInfo@GetClassName$qqrv", + "@Componentdesigner@TCompInfo@GetComponentHandle$qqrv", + "@Componentdesigner@TCompInfo@GetEventCount$qqrv", + "@Componentdesigner@TCompInfo@GetEventInfo$qqri", + "@Componentdesigner@TCompInfo@GetEventName$qqri", + "@Componentdesigner@TCompInfo@GetEventValue$qqri", + "@Componentdesigner@TCompInfo@GetNamePath$qqrv", + "@Componentdesigner@TCompInfo@GetSubInfo$qqri", + "@Componentdesigner@TCompInfo@GetSubInfoCount$qqrv", + "@Componentdesigner@TCompInfo@InitSubList$qqrv", + "@Componentdesigner@TComponentDesigner@", + "@Componentdesigner@TComponentDesigner@$bctr$qqrv", + "@Componentdesigner@TComponentDesigner@CancelModes$qqrv", + "@Componentdesigner@TComponentDesigner@CopySelectionToStream$qqrp21Classes@TMemoryStreamp16Classes@TStrings", + "@Componentdesigner@TComponentDesigner@DesignerOptionsChanged$qqrv", + "@Componentdesigner@TComponentDesigner@EditAction$qqr22Designintf@TEditAction", + "@Componentdesigner@TComponentDesigner@FindBaseClass$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@FindCustomModuleClass$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@FindFile$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@FindRoot$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentDesigner@FindRoot$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@GetActiveRoot$qqrv", + "@Componentdesigner@TComponentDesigner@GetClassUnits$qqrx17System@AnsiStringynpqqrx17System@AnsiString$v", + "@Componentdesigner@TComponentDesigner@GetControlsLocked$qqrv", + "@Componentdesigner@TComponentDesigner@GetEditState$qqrv", + "@Componentdesigner@TComponentDesigner@GetFirstSelectionClass$qqrv", + "@Componentdesigner@TComponentDesigner@GetFirstSelectionType$qqrv", + "@Componentdesigner@TComponentDesigner@GetProperties$qqrynpqqrx48System@%DelphiInterface$t20Designintf@IProperty%$v", + "@Componentdesigner@TComponentDesigner@GetRootNames$qqrynpqqrx17System@AnsiString$v", + "@Componentdesigner@TComponentDesigner@GetRoots$qqri", + "@Componentdesigner@TComponentDesigner@GetRootsCount$qqrv", + "@Componentdesigner@TComponentDesigner@GetSelection$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Componentdesigner@TComponentDesigner@GetSelectionName$qqrv", + "@Componentdesigner@TComponentDesigner@GetSelectionType$qqrv", + "@Componentdesigner@TComponentDesigner@HideWindows$qqrv", + "@Componentdesigner@TComponentDesigner@IsNestable$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@IsRootBaseClass$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@ModalEditDone$qqrx51System@%DelphiInterface$t23Designintf@IActivatable%", + "@Componentdesigner@TComponentDesigner@OpenRootClass$qqrx17System@AnsiString", + "@Componentdesigner@TComponentDesigner@PasteSelectionFromStream$qqrp21Classes@TMemoryStreamp18Classes@TComponentrx11Types@TRect", + "@Componentdesigner@TComponentDesigner@RemoveDependenciesOn$qqrpx18Classes@TComponent", + "@Componentdesigner@TComponentDesigner@RootActivated$qqrx51System@%DelphiInterface$t23Componentdesigner@IRoot%", + "@Componentdesigner@TComponentDesigner@RootGoingDormant$qqrx51System@%DelphiInterface$t23Componentdesigner@IRoot%", + "@Componentdesigner@TComponentDesigner@RootListAdd$qqrx51System@%DelphiInterface$t23Componentdesigner@IRoot%", + "@Componentdesigner@TComponentDesigner@RootListRemove$qqrx51System@%DelphiInterface$t23Componentdesigner@IRoot%", + "@Componentdesigner@TComponentDesigner@RootModified$qqrx51System@%DelphiInterface$t23Componentdesigner@IRoot%", + "@Componentdesigner@TComponentDesigner@SetControlsLocked$qqro", + "@Componentdesigner@TComponentDesigner@SetSelection$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x52System@%DelphiInterface$t24Designintf@IDesignWindow%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Componentdesigner@TComponentDesigner@ShowWindows$qqrv", + "@Componentdesigner@TComponentDesigner@UpdateRootDependents$qqrv", + "@Componentdesigner@TComponentDesigner@UpdateSelections$qqrv", + "@Componentdesigner@TComponentItem@", + "@Componentdesigner@TComponentItem@$bctr$qqrp18Classes@TComponentx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Componentdesigner@TComponentItem@FlipChildren$qqrv", + "@Componentdesigner@TComponentItem@GetComponent$qqrv", + "@Componentdesigner@TComponentItem@Selectable$qqrv", + "@Componentdesigner@TComponentItem@ValidateDeletable$qqrv", + "@Componentdesigner@TComponentItem@ZOrder$qqro", + "@Componentdesigner@TComponentRoot@", + "@Componentdesigner@TComponentRoot@$bctr$qqrx64System@%DelphiInterface$t36Componentdesigner@IComponentDesigner%x61System@%DelphiInterface$t33Componentdesigner@IDesignerModule%x17System@AnsiStringox58System@%DelphiInterface$t30Componentdesigner@IDatedStrea", + "@Componentdesigner@TComponentRoot@$bdtr$qqrv", + "@Componentdesigner@TComponentRoot@AddClassProps$qqrp13Classes@TListp14System@TObject", + "@Componentdesigner@TComponentRoot@AddImportedRoot$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@Align$qqr25Componentdesigner@TAffect", + "@Componentdesigner@TComponentRoot@AlignToGrid$qqrv", + "@Componentdesigner@TComponentRoot@BeforeDestruction$qqrv", + "@Componentdesigner@TComponentRoot@BringToFront$qqrv", + "@Componentdesigner@TComponentRoot@CanModify$qqrv", + "@Componentdesigner@TComponentRoot@CanRevert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Componentdesigner@TComponentRoot@CanRevert$qqrv", + "@Componentdesigner@TComponentRoot@CanUndelete$qqrv", + "@Componentdesigner@TComponentRoot@ChainCall$qqrx17System@AnsiStringt1t1p17Typinfo@TTypeData", + "@Componentdesigner@TComponentRoot@CheckFileDate$qqrv", + "@Componentdesigner@TComponentRoot@ClearDependencies$qqrv", + "@Componentdesigner@TComponentRoot@ClearDependenciesOn$qqrpx18Classes@TComponent", + "@Componentdesigner@TComponentRoot@ClearDependents$qqrv", + "@Componentdesigner@TComponentRoot@ClearSelection$qqrv", + "@Componentdesigner@TComponentRoot@Close$qqrv", + "@Componentdesigner@TComponentRoot@Command$qqr32Componentdesigner@TDesignCommand", + "@Componentdesigner@TComponentRoot@CompIndexToComponent$qqri", + "@Componentdesigner@TComponentRoot@ComponentRead$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@ComponentReadAdjust$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@CopySelectionToStream$qqrp21Classes@TMemoryStreamp16Classes@TStrings", + "@Componentdesigner@TComponentRoot@CreateComponent$qqr58System@%DelphiInterface$t30Componentdesigner@IPaletteItem%", + "@Componentdesigner@TComponentRoot@CreateComponent$qqrp17System@TMetaClassp18Classes@TComponentiiii", + "@Componentdesigner@TComponentRoot@CreateCurrentComponent$qqrp18Classes@TComponentrx11Types@TRect", + "@Componentdesigner@TComponentRoot@CreateFromStream$qqrpx15Classes@TStream", + "@Componentdesigner@TComponentRoot@CreateMethod$qqrx17System@AnsiStringp17Typinfo@TTypeData", + "@Componentdesigner@TComponentRoot@CreateRootAs$qqrx17System@AnsiStringt1", + "@Componentdesigner@TComponentRoot@CreateRootInstance$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@DeleteSelection$qqro", + "@Componentdesigner@TComponentRoot@Deleting$qqrx49System@%DelphiInterface$t21Update@IUpdateManager%p19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@Dialog$qqr31Componentdesigner@TDesignDialog", + "@Componentdesigner@TComponentRoot@DoCreateComponent$qqrx58System@%DelphiInterface$t30Componentdesigner@IPaletteItem%42System@%DelphiInterface$t14Designer@IItem%rx11Types@TRect", + "@Componentdesigner@TComponentRoot@DoUndelete$qqrv", + "@Componentdesigner@TComponentRoot@DoViewAsText$qqrv", + "@Componentdesigner@TComponentRoot@Edit$qqrpx18Classes@TComponent", + "@Componentdesigner@TComponentRoot@EditComponent$qqrpx18Classes@TComponent", + "@Componentdesigner@TComponentRoot@EnsureSelectableComponents$qqrv", + "@Componentdesigner@TComponentRoot@FindAncestorRoot$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@FindCompClass$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@FindCurrentParent$qqrv", + "@Componentdesigner@TComponentRoot@FindCurrentParentItem$qqrv", + "@Componentdesigner@TComponentRoot@FindGlobalComponent$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@FindItemParent$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Componentdesigner@TComponentRoot@FindObjectMethod$qqrp15Classes@TReaderx17System@AnsiStringrpvro", + "@Componentdesigner@TComponentRoot@FindSelection$qqrp19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@ForceCommonParent$qqrv", + "@Componentdesigner@TComponentRoot@FormFileOpen$qqrv", + "@Componentdesigner@TComponentRoot@FrameCreateComponent$qqrp17System@TMetaClassp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@GetAncestorDesigner$qqrv", + "@Componentdesigner@TComponentRoot@GetAncestorName$qqrv", + "@Componentdesigner@TComponentRoot@GetBaseRegKey$qqrv", + "@Componentdesigner@TComponentRoot@GetCompCount$qqrv", + "@Componentdesigner@TComponentRoot@GetCompInfo$qqri", + "@Componentdesigner@TComponentRoot@GetCompName$qqri", + "@Componentdesigner@TComponentRoot@GetComponent$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@GetComponentDesigner$qqrv", + "@Componentdesigner@TComponentRoot@GetComponentEditor$qqrv", + "@Componentdesigner@TComponentRoot@GetComponentName$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@GetComponentNames$qqrp17Typinfo@TTypeDataynpqqrx17System@AnsiString$v", + "@Componentdesigner@TComponentRoot@GetComponentRootFor$qqrpx18Classes@TComponent", + "@Componentdesigner@TComponentRoot@GetComponentRootFor$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@GetCreateInfoFrom$qqrpx15Classes@TStreamr17System@AnsiStringt2", + "@Componentdesigner@TComponentRoot@GetCustomModule$qqrv", + "@Componentdesigner@TComponentRoot@GetCustomModuleClass$qqrv", + "@Componentdesigner@TComponentRoot@GetDependencies$qqrynpqqr51System@%DelphiInterface$t23Componentdesigner@IRoot%$v", + "@Componentdesigner@TComponentRoot@GetDependentRoots$qqrynpqqr51System@%DelphiInterface$t23Componentdesigner@IRoot%$v", + "@Componentdesigner@TComponentRoot@GetDesignClassName$qqrv", + "@Componentdesigner@TComponentRoot@GetEnvironment$qqrv", + "@Componentdesigner@TComponentRoot@GetFileName$qqrv", + "@Componentdesigner@TComponentRoot@GetFileSystem$qqrv", + "@Componentdesigner@TComponentRoot@GetFormEditor$qqrv", + "@Componentdesigner@TComponentRoot@GetIDEOptions$qqrv", + "@Componentdesigner@TComponentRoot@GetIsDormant$qqrv", + "@Componentdesigner@TComponentRoot@GetLocked$qqrv", + "@Componentdesigner@TComponentRoot@GetMethodName$qqrrx14System@TMethod", + "@Componentdesigner@TComponentRoot@GetMethods$qqrp17Typinfo@TTypeDataynpqqrx17System@AnsiString$v", + "@Componentdesigner@TComponentRoot@GetModifyTime$qqrv", + "@Componentdesigner@TComponentRoot@GetModule$qqrv", + "@Componentdesigner@TComponentRoot@GetObject$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@GetObjectName$qqrp19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@GetObjectNames$qqrp17Typinfo@TTypeDataynpqqrx17System@AnsiString$v", + "@Componentdesigner@TComponentRoot@GetPaletteItem$qqrp17System@TMetaClass", + "@Componentdesigner@TComponentRoot@GetPathAndBaseExeName$qqrv", + "@Componentdesigner@TComponentRoot@GetPrivateDirectory$qqrv", + "@Componentdesigner@TComponentRoot@GetProjectModules$qqrynpqqrx17System@AnsiStringt1t1t1p16Classes@TStrings$v", + "@Componentdesigner@TComponentRoot@GetRoot$qqrv", + "@Componentdesigner@TComponentRoot@GetRootBaseClass$qqrv", + "@Componentdesigner@TComponentRoot@GetRootClass$qqrv", + "@Componentdesigner@TComponentRoot@GetRootClassName$qqrv", + "@Componentdesigner@TComponentRoot@GetRootName$qqrv", + "@Componentdesigner@TComponentRoot@GetRootStream$qqrv", + "@Componentdesigner@TComponentRoot@GetScrollRanges$qqrrx12Types@TPoint", + "@Componentdesigner@TComponentRoot@GetSelectableComponentCount$qqrv", + "@Componentdesigner@TComponentRoot@GetSelectableComponents$qqri", + "@Componentdesigner@TComponentRoot@GetSelection$qqrv", + "@Componentdesigner@TComponentRoot@GetSelectionEditors$qqrv", + "@Componentdesigner@TComponentRoot@GetSelections$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Componentdesigner@TComponentRoot@GetTextDFM$qqrv", + "@Componentdesigner@TComponentRoot@GetTimeAtLoad$qqrv", + "@Componentdesigner@TComponentRoot@GetUnits$qqrynpqqrx17System@AnsiString$v", + "@Componentdesigner@TComponentRoot@GetUpdateManager$qqrv", + "@Componentdesigner@TComponentRoot@GoDormant$qqrv", + "@Componentdesigner@TComponentRoot@HasSelectableChildren$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@Implementor$qqrv", + "@Componentdesigner@TComponentRoot@InstanceInserted$qqrp19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@InstanceRemoved$qqrp19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@InternalDeinitializeDesigner$qqro", + "@Componentdesigner@TComponentRoot@InternalInitializeDesigner$qqro", + "@Componentdesigner@TComponentRoot@IsComponentHidden$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@IsComponentLinkable$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@IsDormant$qqrv", + "@Componentdesigner@TComponentRoot@IsFrame$qqrp19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@IsRootSelected$qqrv", + "@Componentdesigner@TComponentRoot@IsSourceReadOnly$qqrv", + "@Componentdesigner@TComponentRoot@IterateMethods$qqrpv", + "@Componentdesigner@TComponentRoot@LoadDependentModules$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@MakeComponentLinkable$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@MethodExists$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@MethodFromAncestor$qqrrx14System@TMethod", + "@Componentdesigner@TComponentRoot@ModalEdit$qqrcx51System@%DelphiInterface$t23Designintf@IActivatable%", + "@Componentdesigner@TComponentRoot@ModifiableFrame$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@Modified$qqrv", + "@Componentdesigner@TComponentRoot@ModifiedUpdateNotification$qqrv", + "@Componentdesigner@TComponentRoot@ModuleFileNames$qqrr17System@AnsiStringt1t1", + "@Componentdesigner@TComponentRoot@NoSelection$qqrv", + "@Componentdesigner@TComponentRoot@PasteSelectionFromStream$qqrp21Classes@TMemoryStreamp18Classes@TComponentrx11Types@TRect", + "@Componentdesigner@TComponentRoot@PrepareInputStream$qqrpx15Classes@TStreamo", + "@Componentdesigner@TComponentRoot@ReadObjectFromStream$qqrp18Classes@TComponentpx15Classes@TStream", + "@Componentdesigner@TComponentRoot@ReadStream$qqrpx15Classes@TStreampx18Classes@TComponentorx11Types@TRect", + "@Componentdesigner@TComponentRoot@ReaderAncestorNotFound$qqrp15Classes@TReaderx17System@AnsiStringp17System@TMetaClassrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@ReaderCreateComponent$qqrp15Classes@TReaderp17System@TMetaClassrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@ReaderFindComponentClass$qqrp15Classes@TReaderx17System@AnsiStringrp17System@TMetaClass", + "@Componentdesigner@TComponentRoot@ReaderFindMethod$qqrp15Classes@TReaderx17System@AnsiStringrpvro", + "@Componentdesigner@TComponentRoot@ReaderObjectError$qqrp15Classes@TReaderx17System@AnsiStringro", + "@Componentdesigner@TComponentRoot@ReaderReferenceName$qqrp15Classes@TReaderr17System@AnsiString", + "@Componentdesigner@TComponentRoot@ReaderSetName$qqrp15Classes@TReaderp18Classes@TComponentr17System@AnsiString", + "@Componentdesigner@TComponentRoot@RemoveDependenciesOn$qqrpx18Classes@TComponent", + "@Componentdesigner@TComponentRoot@RemoveDependentLinks$qqrv", + "@Componentdesigner@TComponentRoot@Rename$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@RenameComponent$qqrx17System@AnsiStringt1", + "@Componentdesigner@TComponentRoot@RenameEvents$qqrv", + "@Componentdesigner@TComponentRoot@RenameMethod$qqrx17System@AnsiStringt1", + "@Componentdesigner@TComponentRoot@RenameRootMethod$qqrx17System@AnsiStringt1", + "@Componentdesigner@TComponentRoot@Resurrect$qqrv", + "@Componentdesigner@TComponentRoot@ResurrectDependentModules$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@Revert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Componentdesigner@TComponentRoot@Save$qqrv", + "@Componentdesigner@TComponentRoot@Select$qqrp19Classes@TPersistento", + "@Componentdesigner@TComponentRoot@SelectAll$qqrv", + "@Componentdesigner@TComponentRoot@SelectComponent$qqrp19Classes@TPersistent", + "@Componentdesigner@TComponentRoot@SelectComponent$qqrp19Classes@TPersistento", + "@Componentdesigner@TComponentRoot@SelectItemName$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@SelectReadStream$qqrpx15Classes@TStreampx18Classes@TComponentorx11Types@TRect", + "@Componentdesigner@TComponentRoot@SelectedComponent$qqrv", + "@Componentdesigner@TComponentRoot@SelectedPersistent$qqrv", + "@Componentdesigner@TComponentRoot@SelectionsChanged$qqrp14System@TObject", + "@Componentdesigner@TComponentRoot@SendToBack$qqrv", + "@Componentdesigner@TComponentRoot@SetActive$qqro", + "@Componentdesigner@TComponentRoot@SetControlsLocked$qqro", + "@Componentdesigner@TComponentRoot@SetCreateInfo$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@SetFileSystem$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@SetRootName$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@SetSelection$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@SetSelections$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Componentdesigner@TComponentRoot@ShowHelp$qqrv", + "@Componentdesigner@TComponentRoot@ShowMethod$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@Size$qqr29Componentdesigner@TSizeAffecti", + "@Componentdesigner@TComponentRoot@SpecialPropertyHelp$qqrx17System@AnsiStringr17System@AnsiStringt2r17Classes@THelpType", + "@Componentdesigner@TComponentRoot@StreamSelection$qqrpx15Classes@TStreamoop16Classes@TStrings", + "@Componentdesigner@TComponentRoot@UniqueName$qqrx17System@AnsiString", + "@Componentdesigner@TComponentRoot@UpdateDependencies$qqrv", + "@Componentdesigner@TComponentRoot@UpdateEvents$qqrv", + "@Componentdesigner@TComponentRoot@UpdateManagerCreateComponent$qqrp17System@TMetaClasspx18Classes@TComponent", + "@Componentdesigner@TComponentRoot@UpdateOptions$qqrv", + "@Componentdesigner@TComponentRoot@Updated$qqrx49System@%DelphiInterface$t21Update@IUpdateManager%", + "@Componentdesigner@TComponentRoot@Updating$qqrx49System@%DelphiInterface$t21Update@IUpdateManager%", + "@Componentdesigner@TComponentRoot@ValidateComponent$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@ValidateInheritence$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@ValidateModification$qqrv", + "@Componentdesigner@TComponentRoot@ValidateRename$qqrp18Classes@TComponentx17System@AnsiStringt2", + "@Componentdesigner@TComponentRoot@VerifyEvents$qqrp16Classes@TStrings", + "@Componentdesigner@TComponentRoot@WriteComponent$qqrp15Classes@TWriterp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@WriteRootStream$qqrp15Classes@TStream", + "@Componentdesigner@TComponentRoot@WriterFindAncestor$qqrp15Classes@TWriterp18Classes@TComponentx17System@AnsiStringrp18Classes@TComponentt4", + "@Componentdesigner@TComponentRoot@ZOrder$qqro", + "@Componentdesigner@TDatedStreamAdapter@", + "@Componentdesigner@TDatedStreamAdapter@$bctr$qqrpx15Classes@TStreamio", + "@Componentdesigner@TDatedStreamAdapter@GetModifyTime$qqrv", + "@Componentdesigner@TDatedStreamAdapter@SetModifyTime$qqri", + "@Componentdesigner@TEnvironmentTools@", + "@Componentdesigner@TEnvironmentTools@$bctr$qqrx64System@%DelphiInterface$t36Componentdesigner@IDesignEnvironment%", + "@Componentdesigner@TEnvironmentTools@ToolSelected$qqrv", + "@Componentdesigner@TEvRootActivatedEvent@", + "@Componentdesigner@TEvRootActivatedEvent@Add$qqrynpqqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%$v", + "@Componentdesigner@TEvRootActivatedEvent@IndexOf$qqrynpqqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%$v", + "@Componentdesigner@TEvRootActivatedEvent@Remove$qqrynpqqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%$v", + "@Componentdesigner@TEvRootActivatedEvent@Send$qqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%", + "@Componentdesigner@TEventItem@", + "@Componentdesigner@TEventItem@$bctr$qqrpvx17System@AnsiString", + "@Componentdesigner@TEvents@", + "@Componentdesigner@TEvents@$bctr$qqrv", + "@Componentdesigner@TEvents@$bdtr$qqrv", + "@Componentdesigner@TEvents@Add$qqrpv17System@AnsiString", + "@Componentdesigner@TEvents@GetCount$qqrv", + "@Componentdesigner@TEvents@GetItems$qqri", + "@Componentdesigner@TIStreamAdapter@", + "@Componentdesigner@TIStreamAdapter@$bctr$qqrx53System@%DelphiInterface$t25Componentdesigner@IStream%", + "@Componentdesigner@TIStreamAdapter@Read$qqrpvi", + "@Componentdesigner@TIStreamAdapter@Seek$qqrius", + "@Componentdesigner@TIStreamAdapter@Write$qqrpxvi", + "@Componentdesigner@TInternalItem@", + "@Componentdesigner@TInternalItem@$bctr$qqrp19Classes@TPersistentx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Componentdesigner@TInternalItem@Edit$qqrv", + "@Componentdesigner@TInternalItem@GetChildCount$qqrv", + "@Componentdesigner@TInternalItem@GetChildren$qqri", + "@Componentdesigner@TInternalItem@GetEditor$qqrv", + "@Componentdesigner@TInternalItem@Selectable$qqrv", + "@Componentdesigner@TOTAComponent@", + "@Componentdesigner@TOTAComponent@$bctr$qqrp19Classes@TPersistentp32Componentdesigner@TComponentRoot", + "@Componentdesigner@TOTAComponent@$bdtr$qqrv", + "@Componentdesigner@TOTAComponent@Delete$qqrv", + "@Componentdesigner@TOTAComponent@Focus$qqro", + "@Componentdesigner@TOTAComponent@GetChildProc$qqrp18Classes@TComponent", + "@Componentdesigner@TOTAComponent@GetChildren$qqrpvynpqqrpv50System@%DelphiInterface$t22Toolsapi@IOTAComponent%ro$v", + "@Componentdesigner@TOTAComponent@GetComponent$qqri", + "@Componentdesigner@TOTAComponent@GetComponentCount$qqrv", + "@Componentdesigner@TOTAComponent@GetComponentHandle$qqrv", + "@Componentdesigner@TOTAComponent@GetComponentType$qqrv", + "@Componentdesigner@TOTAComponent@GetControl$qqri", + "@Componentdesigner@TOTAComponent@GetControlCount$qqrv", + "@Componentdesigner@TOTAComponent@GetParent$qqrv", + "@Componentdesigner@TOTAComponent@GetPropCount$qqrv", + "@Componentdesigner@TOTAComponent@GetPropList$qqrv", + "@Componentdesigner@TOTAComponent@GetPropName$qqri", + "@Componentdesigner@TOTAComponent@GetPropType$qqri", + "@Componentdesigner@TOTAComponent@GetPropTypeByName$qqrx17System@AnsiString", + "@Componentdesigner@TOTAComponent@GetPropValue$qqripv", + "@Componentdesigner@TOTAComponent@GetPropValueByName$qqrx17System@AnsiStringpv", + "@Componentdesigner@TOTAComponent@INTAComponent_GetComponent$qqrv", + "@Componentdesigner@TOTAComponent@INTAComponent_GetPersistent$qqrv", + "@Componentdesigner@TOTAComponent@IsTControl$qqrv", + "@Componentdesigner@TOTAComponent@Select$qqro", + "@Componentdesigner@TOTAComponent@SetProp$qqripxv", + "@Componentdesigner@TOTAComponent@SetPropByName$qqrx17System@AnsiStringpxv", + "@Componentdesigner@TOTAFormEditor@", + "@Componentdesigner@TOTAFormEditor@$bctr$qqrp32Componentdesigner@TComponentRoot", + "@Componentdesigner@TOTAFormEditor@AddNotifier$qqrx49System@%DelphiInterface$t21Toolsapi@IOTANotifier%", + "@Componentdesigner@TOTAFormEditor@CreateComponent$qqrx50System@%DelphiInterface$t22Toolsapi@IOTAComponent%x17System@AnsiStringiiii", + "@Componentdesigner@TOTAFormEditor@FindComponent$qqrx17System@AnsiString", + "@Componentdesigner@TOTAFormEditor@FormModified$qqrv", + "@Componentdesigner@TOTAFormEditor@FormSaving$qqrv", + "@Componentdesigner@TOTAFormEditor@GetComponentFromHandle$qqrpv", + "@Componentdesigner@TOTAFormEditor@GetCreateParent$qqrv", + "@Componentdesigner@TOTAFormEditor@GetFileName$qqrv", + "@Componentdesigner@TOTAFormEditor@GetFormDesigner$qqrv", + "@Componentdesigner@TOTAFormEditor@GetFormResource$qqrx34System@%DelphiInterface$t7IStream%", + "@Componentdesigner@TOTAFormEditor@GetModified$qqrv", + "@Componentdesigner@TOTAFormEditor@GetModule$qqrv", + "@Componentdesigner@TOTAFormEditor@GetRootComponent$qqrv", + "@Componentdesigner@TOTAFormEditor@GetSelComponent$qqri", + "@Componentdesigner@TOTAFormEditor@GetSelCount$qqrv", + "@Componentdesigner@TOTAFormEditor@INTAFormEditor_GetFormResource$qqrp15Classes@TStream", + "@Componentdesigner@TOTAFormEditor@MarkModified$qqrv", + "@Componentdesigner@TOTAFormEditor@NotifyActivate$qqrv", + "@Componentdesigner@TOTAFormEditor@NotifyActivated$qqr45System@%DelphiInterface$t17System@IInterface%t1", + "@Componentdesigner@TOTAFormEditor@NotifyDestruct$qqrv", + "@Componentdesigner@TOTAFormEditor@NotifyFormModified$qqr45System@%DelphiInterface$t17System@IInterface%t1", + "@Componentdesigner@TOTAFormEditor@NotifyFormSaving$qqr45System@%DelphiInterface$t17System@IInterface%t1", + "@Componentdesigner@TOTAFormEditor@NotifyRenamed$qqrp18Classes@TComponentx17System@AnsiStringt2", + "@Componentdesigner@TOTAFormEditor@RemoveNotifier$qqri", + "@Componentdesigner@TOTAFormEditor@Show$qqrv", + "@Componentdesigner@TRenameItem@", + "@Componentdesigner@TRenameItem@$bctr$qqrx17System@AnsiStringt1", + "@Componentdesigner@TRenames@", + "@Componentdesigner@TRenames@$bctr$qqrv", + "@Componentdesigner@TRenames@$bdtr$qqrv", + "@Componentdesigner@TRenames@Add$qqr17System@AnsiStringt1", + "@Componentdesigner@TRenames@GetCount$qqrv", + "@Componentdesigner@TRenames@GetItems$qqri", + "@Componentdesigner@TRenames@Rename$qqrr17System@AnsiString", + "@Componentdesigner@TSelections@", + "@Componentdesigner@TSelections@$bctr$qqrx48System@%DelphiInterface$t20Designer@ISelections%", + "@Componentdesigner@TSelections@$bdtr$qqrv", + "@Componentdesigner@TSelections@FindItemFor$qqrpx19Classes@TPersistent", + "@Componentdesigner@TSelections@GetCount$qqrv", + "@Componentdesigner@TSelections@GetPersistents$qqri", + "@Componentdesigner@TSelections@SelectionChanged$qqrx48System@%DelphiInterface$t20Designer@ISelections%", + "@Componentdesigner@TStreamAdapter@", + "@Componentdesigner@TStreamAdapter@$bctr$qqrpx15Classes@TStreamo", + "@Componentdesigner@TStreamAdapter@$bdtr$qqrv", + "@Componentdesigner@TStreamAdapter@Read$qqrpvj", + "@Componentdesigner@TStreamAdapter@Seek$qqrji", + "@Componentdesigner@TStreamAdapter@SetSize$qqrj", + "@Componentdesigner@TStreamAdapter@Write$qqrpvj", + "@Componentdesigner@_sAncestorClassName", + "@Componentdesigner@_sAncestorDeleteWarning", + "@Componentdesigner@_sBlankName", + "@Componentdesigner@_sCannotDeleteNonComponent", + "@Componentdesigner@_sCannotInherit", + "@Componentdesigner@_sCannotInheritControl", + "@Componentdesigner@_sCannotInheritFrom", + "@Componentdesigner@_sCannotInheritFroms", + "@Componentdesigner@_sCannotPasteForm", + "@Componentdesigner@_sCantDeleteAncestor", + "@Componentdesigner@_sCantDeleteComponent", + "@Componentdesigner@_sCantRename", + "@Componentdesigner@_sCantSaveModuleWithAFixup", + "@Componentdesigner@_sCantSaveModuleWithFixups", + "@Componentdesigner@_sComponentAlreadyExists", + "@Componentdesigner@_sMenuAlign", + "@Componentdesigner@_sMenuAlignToGrid", + "@Componentdesigner@_sMenuBringToFront", + "@Componentdesigner@_sMenuCreatOrder", + "@Componentdesigner@_sMenuFlipChildren", + "@Componentdesigner@_sMenuRevert", + "@Componentdesigner@_sMenuSaveAsTemplate", + "@Componentdesigner@_sMenuScale", + "@Componentdesigner@_sMenuSendToBack", + "@Componentdesigner@_sMenuSize", + "@Componentdesigner@_sMenuTabOrder", + "@Componentdesigner@_sMenuTextDFM", + "@Componentdesigner@_sMenuTextXFM", + "@Componentdesigner@_sMenuViewAsText", + "@Componentdesigner@_sNestedInsertedInSelf", + "@Componentdesigner@_sPasteError", + "@Componentdesigner@_sReadOnlyError", + "@Componentdesigner@_sReadOnlySource", + "@Componentdesigner@_sRedirectLinks", + "@Componentdesigner@_sRenamingAncestor", + "@Componentdesigner@_sRootClassNotFound", + "@Componentdesigner@_sSubMenuFlipChidrenSelected", + "@Componentdesigner@_sSubMenuFlipChildrenAll", + "@Componentdesigner@initialization$qqrv", + "@Designconst@Finalization$qqrv", + "@Designconst@_SAboutVerb", + "@Designconst@_SAllFiles", + "@Designconst@_SCannotCreateName", + "@Designconst@_SCantAddToFrame", + "@Designconst@_SCantDeleteAncestor", + "@Designconst@_SCantFindProperty", + "@Designconst@_SColEditCaption", + "@Designconst@_SInvalidFormat", + "@Designconst@_SLoadPictureTitle", + "@Designconst@_SNoAboutBoxAvailable", + "@Designconst@_SNoPropertyPageAvailable", + "@Designconst@_SNull", + "@Designconst@_SSavePictureTitle", + "@Designconst@_SString", + "@Designconst@_SStringsPropertyInvalid", + "@Designconst@_SUnableToFindComponent", + "@Designconst@_SUnassigned", + "@Designconst@_SUnknown", + "@Designconst@_SUnknownType", + "@Designconst@_srLine", + "@Designconst@_srLines", + "@Designconst@_srNone", + "@Designconst@initialization$qqrv", + "@Designeditors@AncestorNameMatches$qqrp17System@TMetaClasst1", + "@Designeditors@ClassInheritsFrom$qqrp17System@TMetaClassx17System@AnsiString", + "@Designeditors@Finalization$qqrv", + "@Designeditors@FreeEditorGroup$qqri", + "@Designeditors@GReferenceExpandable", + "@Designeditors@GShowReadOnlyProps", + "@Designeditors@GetComponentEditor$qqrp18Classes@TComponentx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designeditors@GetComponentProperties$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%46System@%Set$t17Typinfo@TTypeKind$iuc$0$iuc$17%x48System@%DelphiInterface$t20Designintf@IDesigner%ynpqqrx48System@%DelphiInterface$t20Designintf@IPrope", + "@Designeditors@GetSelectionEditors$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designeditors@GetSelectionEditors$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p18Classes@TComponent", + "@Designeditors@GetSelectionEditors$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designeditors@GetTopLevelComponentFunc", + "@Designeditors@NewEditorGroup$qqrv", + "@Designeditors@NotifyGroupChange$qqrpqqri$v", + "@Designeditors@PossibleStream$qqrx17System@AnsiString", + "@Designeditors@TBoolProperty@", + "@Designeditors@TCharProperty@", + "@Designeditors@TCharProperty@GetValue$qqrv", + "@Designeditors@TCharProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TClassProperty@", + "@Designeditors@TClassProperty@GetAttributes$qqrv", + "@Designeditors@TClassProperty@GetProperties$qqrynpqqrx48System@%DelphiInterface$t20Designintf@IProperty%$v", + "@Designeditors@TClassProperty@GetValue$qqrv", + "@Designeditors@TComponentEditor@", + "@Designeditors@TComponentEditor@$bctr$qqrp18Classes@TComponent48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designeditors@TComponentEditor@Copy$qqrv", + "@Designeditors@TComponentEditor@Edit$qqrv", + "@Designeditors@TComponentEditor@ExecuteVerb$qqri", + "@Designeditors@TComponentEditor@GetComponent$qqrv", + "@Designeditors@TComponentEditor@GetDesigner$qqrv", + "@Designeditors@TComponentEditor@GetVerb$qqri", + "@Designeditors@TComponentEditor@GetVerbCount$qqrv", + "@Designeditors@TComponentEditor@IsInInlined$qqrv", + "@Designeditors@TComponentEditor@PrepareItem$qqrix49System@%DelphiInterface$t21Designmenus@IMenuItem%", + "@Designeditors@TComponentNameProperty@", + "@Designeditors@TComponentNameProperty@GetAttributes$qqrv", + "@Designeditors@TComponentNameProperty@GetEditLimit$qqrv", + "@Designeditors@TComponentProperty@", + "@Designeditors@TComponentProperty@AllEqual$qqrv", + "@Designeditors@TComponentProperty@Edit$qqrv", + "@Designeditors@TComponentProperty@FilterFunc$qqrx48System@%DelphiInterface$t20Designintf@IProperty%", + "@Designeditors@TComponentProperty@GetAttributes$qqrv", + "@Designeditors@TComponentProperty@GetComponentReference$qqrv", + "@Designeditors@TComponentProperty@GetEditLimit$qqrv", + "@Designeditors@TComponentProperty@GetProperties$qqrynpqqrx48System@%DelphiInterface$t20Designintf@IProperty%$v", + "@Designeditors@TComponentProperty@GetSelections$qqrv", + "@Designeditors@TComponentProperty@GetValue$qqrv", + "@Designeditors@TComponentProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TComponentProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TCustomModule@", + "@Designeditors@TCustomModule@$bctr$qqrp18Classes@TComponentx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designeditors@TCustomModule@$bdtr$qqrv", + "@Designeditors@TCustomModule@ExecuteVerb$qqri", + "@Designeditors@TCustomModule@GetAttributes$qqrv", + "@Designeditors@TCustomModule@GetVerb$qqri", + "@Designeditors@TCustomModule@GetVerbCount$qqrv", + "@Designeditors@TCustomModule@Nestable$qqrv", + "@Designeditors@TCustomModule@PrepareItem$qqrix49System@%DelphiInterface$t21Designmenus@IMenuItem%", + "@Designeditors@TCustomModule@Saving$qqrv", + "@Designeditors@TCustomModule@ValidateComponent$qqrp18Classes@TComponent", + "@Designeditors@TCustomModule@ValidateComponentClass$qqrp17System@TMetaClass", + "@Designeditors@TDateProperty@", + "@Designeditors@TDateProperty@GetAttributes$qqrv", + "@Designeditors@TDateProperty@GetValue$qqrv", + "@Designeditors@TDateProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TDateTimeProperty@", + "@Designeditors@TDateTimeProperty@GetAttributes$qqrv", + "@Designeditors@TDateTimeProperty@GetValue$qqrv", + "@Designeditors@TDateTimeProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TDefaultEditor@", + "@Designeditors@TDefaultEditor@CheckEdit$qqrx48System@%DelphiInterface$t20Designintf@IProperty%", + "@Designeditors@TDefaultEditor@Edit$qqrv", + "@Designeditors@TDefaultEditor@EditProperty$qqrx48System@%DelphiInterface$t20Designintf@IProperty%ro", + "@Designeditors@TEditActionSelectionEditor@", + "@Designeditors@TEditActionSelectionEditor@EditAction$qqr22Designintf@TEditAction", + "@Designeditors@TEditActionSelectionEditor@GetEditState$qqrv", + "@Designeditors@TEditActionSelectionEditor@GetVerb$qqri", + "@Designeditors@TEditActionSelectionEditor@GetVerbCount$qqrv", + "@Designeditors@TEditActionSelectionEditor@HandleCopy$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandleCut$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandleDelete$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandlePaste$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandleSelectAll$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandleToBack$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandleToFront$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@HandleUndo$qqrp14System@TObject", + "@Designeditors@TEditActionSelectionEditor@PrepareItem$qqrix49System@%DelphiInterface$t21Designmenus@IMenuItem%", + "@Designeditors@TEnumProperty@", + "@Designeditors@TEnumProperty@GetAttributes$qqrv", + "@Designeditors@TEnumProperty@GetValue$qqrv", + "@Designeditors@TEnumProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TEnumProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TFloatProperty@", + "@Designeditors@TFloatProperty@AllEqual$qqrv", + "@Designeditors@TFloatProperty@GetValue$qqrv", + "@Designeditors@TFloatProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TInt64Property@", + "@Designeditors@TInt64Property@AllEqual$qqrv", + "@Designeditors@TInt64Property@GetEditLimit$qqrv", + "@Designeditors@TInt64Property@GetValue$qqrv", + "@Designeditors@TInt64Property@SetValue$qqrx17System@AnsiString", + "@Designeditors@TIntegerProperty@", + "@Designeditors@TIntegerProperty@GetValue$qqrv", + "@Designeditors@TIntegerProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TInterfaceProperty@", + "@Designeditors@TInterfaceProperty@AllEqual$qqrv", + "@Designeditors@TInterfaceProperty@GetComponent$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Designeditors@TInterfaceProperty@GetComponentReference$qqrv", + "@Designeditors@TInterfaceProperty@GetSelections$qqrv", + "@Designeditors@TInterfaceProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TInterfaceProperty@ReceiveComponentNames$qqrx17System@AnsiString", + "@Designeditors@TInterfaceProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TMethodProperty@", + "@Designeditors@TMethodProperty@AllEqual$qqrv", + "@Designeditors@TMethodProperty@AllNamed$qqrv", + "@Designeditors@TMethodProperty@Edit$qqrv", + "@Designeditors@TMethodProperty@GetAttributes$qqrv", + "@Designeditors@TMethodProperty@GetEditLimit$qqrv", + "@Designeditors@TMethodProperty@GetFormMethodName$qqrv", + "@Designeditors@TMethodProperty@GetTrimmedEventName$qqrv", + "@Designeditors@TMethodProperty@GetValue$qqrv", + "@Designeditors@TMethodProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TMethodProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TNestedProperty@", + "@Designeditors@TNestedProperty@$bctr$qqrp29Designeditors@TPropertyEditor", + "@Designeditors@TNestedProperty@$bdtr$qqrv", + "@Designeditors@TOrdinalProperty@", + "@Designeditors@TOrdinalProperty@AllEqual$qqrv", + "@Designeditors@TOrdinalProperty@GetEditLimit$qqrv", + "@Designeditors@TPropertyEditor@", + "@Designeditors@TPropertyEditor@$bctr$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%i", + "@Designeditors@TPropertyEditor@$bdtr$qqrv", + "@Designeditors@TPropertyEditor@Activate$qqrv", + "@Designeditors@TPropertyEditor@AllEqual$qqrv", + "@Designeditors@TPropertyEditor@AutoFill$qqrv", + "@Designeditors@TPropertyEditor@Edit$qqrv", + "@Designeditors@TPropertyEditor@GetAttributes$qqrv", + "@Designeditors@TPropertyEditor@GetComponent$qqri", + "@Designeditors@TPropertyEditor@GetEditLimit$qqrv", + "@Designeditors@TPropertyEditor@GetEditValue$qqrr17System@AnsiString", + "@Designeditors@TPropertyEditor@GetFloatValue$qqrv", + "@Designeditors@TPropertyEditor@GetFloatValueAt$qqri", + "@Designeditors@TPropertyEditor@GetInt64Value$qqrv", + "@Designeditors@TPropertyEditor@GetInt64ValueAt$qqri", + "@Designeditors@TPropertyEditor@GetIntfValue$qqrv", + "@Designeditors@TPropertyEditor@GetIntfValueAt$qqri", + "@Designeditors@TPropertyEditor@GetMethodValue$qqrv", + "@Designeditors@TPropertyEditor@GetMethodValueAt$qqri", + "@Designeditors@TPropertyEditor@GetName$qqrv", + "@Designeditors@TPropertyEditor@GetOrdValue$qqrv", + "@Designeditors@TPropertyEditor@GetOrdValueAt$qqri", + "@Designeditors@TPropertyEditor@GetPrivateDirectory$qqrv", + "@Designeditors@TPropertyEditor@GetPropInfo$qqrv", + "@Designeditors@TPropertyEditor@GetPropType$qqrv", + "@Designeditors@TPropertyEditor@GetProperties$qqrynpqqrx48System@%DelphiInterface$t20Designintf@IProperty%$v", + "@Designeditors@TPropertyEditor@GetStrValue$qqrv", + "@Designeditors@TPropertyEditor@GetStrValueAt$qqri", + "@Designeditors@TPropertyEditor@GetValue$qqrv", + "@Designeditors@TPropertyEditor@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TPropertyEditor@GetVarValue$qqrv", + "@Designeditors@TPropertyEditor@GetVarValueAt$qqri", + "@Designeditors@TPropertyEditor@GetVisualValue$qqrv", + "@Designeditors@TPropertyEditor@HasInstance$qqrp19Classes@TPersistent", + "@Designeditors@TPropertyEditor@Initialize$qqrv", + "@Designeditors@TPropertyEditor@Modified$qqrv", + "@Designeditors@TPropertyEditor@Revert$qqrv", + "@Designeditors@TPropertyEditor@SetFloatValue$qqrg", + "@Designeditors@TPropertyEditor@SetInt64Value$qqrj", + "@Designeditors@TPropertyEditor@SetIntfValue$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Designeditors@TPropertyEditor@SetMethodValue$qqrrx14System@TMethod", + "@Designeditors@TPropertyEditor@SetOrdValue$qqri", + "@Designeditors@TPropertyEditor@SetPropEntry$qqrip19Classes@TPersistentp17Typinfo@TPropInfo", + "@Designeditors@TPropertyEditor@SetStrValue$qqrx17System@AnsiString", + "@Designeditors@TPropertyEditor@SetValue$qqrx17System@AnsiString", + "@Designeditors@TPropertyEditor@SetVarValue$qqrrx14System@Variant", + "@Designeditors@TPropertyEditor@ValueAvailable$qqrv", + "@Designeditors@TSelectionEditor@", + "@Designeditors@TSelectionEditor@$bctr$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designeditors@TSelectionEditor@ExecuteVerb$qqrix58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designeditors@TSelectionEditor@GetVerb$qqri", + "@Designeditors@TSelectionEditor@GetVerbCount$qqrv", + "@Designeditors@TSelectionEditor@PrepareItem$qqrix49System@%DelphiInterface$t21Designmenus@IMenuItem%", + "@Designeditors@TSelectionEditor@RequiresUnits$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TSetElementProperty@", + "@Designeditors@TSetElementProperty@$bctr$qqrp29Designeditors@TPropertyEditori", + "@Designeditors@TSetElementProperty@AllEqual$qqrv", + "@Designeditors@TSetElementProperty@GetAttributes$qqrv", + "@Designeditors@TSetElementProperty@GetName$qqrv", + "@Designeditors@TSetElementProperty@GetValue$qqrv", + "@Designeditors@TSetElementProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Designeditors@TSetElementProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TSetProperty@", + "@Designeditors@TSetProperty@GetAttributes$qqrv", + "@Designeditors@TSetProperty@GetProperties$qqrynpqqrx48System@%DelphiInterface$t20Designintf@IProperty%$v", + "@Designeditors@TSetProperty@GetValue$qqrv", + "@Designeditors@TStringProperty@", + "@Designeditors@TStringProperty@AllEqual$qqrv", + "@Designeditors@TStringProperty@GetEditLimit$qqrv", + "@Designeditors@TStringProperty@GetValue$qqrv", + "@Designeditors@TStringProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TTimeProperty@", + "@Designeditors@TTimeProperty@GetAttributes$qqrv", + "@Designeditors@TTimeProperty@GetValue$qqrv", + "@Designeditors@TTimeProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@TVariantProperty@", + "@Designeditors@TVariantProperty@GetAttributes$qqrv", + "@Designeditors@TVariantProperty@GetProperties$qqrynpqqrx48System@%DelphiInterface$t20Designintf@IProperty%$v", + "@Designeditors@TVariantProperty@GetValue$qqrv", + "@Designeditors@TVariantProperty@SetValue$qqrx17System@AnsiString", + "@Designeditors@UnnotifyGroupChange$qqrpqqri$v", + "@Designeditors@_sClassNotApplicable", + "@Designeditors@_sNotAvailable", + "@Designeditors@initialization$qqrv", + "@Designer@ExtractComponent$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@ExtractPersistent$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@Finalization$qqrv", + "@Designer@SameItem$qqrx42System@%DelphiInterface$t14Designer@IItem%t1", + "@Designer@TDesigner@", + "@Designer@TDesigner@$bctr$qqrx51System@%DelphiInterface$t23Designer@IDesignSurface%x48System@%DelphiInterface$t20Designer@ISelections%x43System@%DelphiInterface$t15Designer@ITools%", + "@Designer@TDesigner@$bdtr$qqrv", + "@Designer@TDesigner@BeginSelect$qqrv", + "@Designer@TDesigner@CancelDragging$qqrv", + "@Designer@TDesigner@ClearSelection$qqrv", + "@Designer@TDesigner@Close$qqrv", + "@Designer@TDesigner@DeleteSelection$qqrv", + "@Designer@TDesigner@DoDragCreate$qqrv", + "@Designer@TDesigner@DoDragMove$qqrv", + "@Designer@TDesigner@DoDragSelect$qqrv", + "@Designer@TDesigner@DoDragSize$qqrv", + "@Designer@TDesigner@DragBegin$qqrii", + "@Designer@TDesigner@DragBoxesMoveTo$qqrrx11Types@TRect", + "@Designer@TDesigner@DragBoxesOff$qqrv", + "@Designer@TDesigner@DragBoxesOn$qqrv", + "@Designer@TDesigner@DragCancel$qqrv", + "@Designer@TDesigner@DragEnd$qqriio", + "@Designer@TDesigner@DragTo$qqrii", + "@Designer@TDesigner@Edit$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TDesigner@EndSelect$qqrv", + "@Designer@TDesigner@FindNearestItem$qqrx42System@%DelphiInterface$t14Designer@IItem%23Designer@TDesignKeyCode", + "@Designer@TDesigner@ForceCommonSelectParent$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TDesigner@Free$qqrv", + "@Designer@TDesigner@GetDragRect$qqrrx12Types@TPoint", + "@Designer@TDesigner@GetGridAligned$qqrv", + "@Designer@TDesigner@GetGridSize$qqrv", + "@Designer@TDesigner@GetLocked$qqrv", + "@Designer@TDesigner@IsDesignerSelected$qqrv", + "@Designer@TDesigner@Key$qqr23Designer@TDesignKeyCode46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%b", + "@Designer@TDesigner@Lock$qqrv", + "@Designer@TDesigner@Modified$qqrv", + "@Designer@TDesigner@MouseDown$qqr42System@%DelphiInterface$t14Designer@IItem%46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%iio48System@%Set$t20Designer@Designer__1$iuc$0$iuc$3%", + "@Designer@TDesigner@MouseMove$qqrii", + "@Designer@TDesigner@MouseUp$qqrii", + "@Designer@TDesigner@MoveBy$qqrrx12Types@TPointo", + "@Designer@TDesigner@PointToGrid$qqrrx12Types@TPointo", + "@Designer@TDesigner@Select$qqrx42System@%DelphiInterface$t14Designer@IItem%o", + "@Designer@TDesigner@SelectedItem$qqrv", + "@Designer@TDesigner@SetGridAligned$qqro", + "@Designer@TDesigner@SetGridSize$qqrrx12Types@TPoint", + "@Designer@TDesigner@SnapToGrid$qqriiio", + "@Designer@TDesigner@Unlock$qqrv", + "@Designer@TNullTools@", + "@Designer@TNullTools@ToolSelected$qqrv", + "@Designer@TPersistentItem@", + "@Designer@TPersistentItem@$bctr$qqrp19Classes@TPersistent", + "@Designer@TPersistentItem@Contains$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TPersistentItem@Delete$qqrv", + "@Designer@TPersistentItem@Equals$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TPersistentItem@GetBoundsRect$qqrv", + "@Designer@TPersistentItem@GetClientRect$qqrv", + "@Designer@TPersistentItem@GetExtendedRect$qqrv", + "@Designer@TPersistentItem@GetItem$qqrv", + "@Designer@TPersistentItem@GetNamePath$qqrv", + "@Designer@TPersistentItem@GetParent$qqrv", + "@Designer@TPersistentItem@HasSelectableChildren$qqrv", + "@Designer@TPersistentItem@IsContainer$qqrv", + "@Designer@TPersistentItem@SetBoundsRect$qqrrx11Types@TRect", + "@Designer@TPersistentItem@ValidateDeletable$qqrv", + "@Designer@TSelectionListenerHelper@", + "@Designer@TSelectionListenerHelper@$bctr$qqrv", + "@Designer@TSelectionListenerHelper@AddListener$qqrx56System@%DelphiInterface$t28Designer@ISelectionsListener%", + "@Designer@TSelectionListenerHelper@RemoveListener$qqrx56System@%DelphiInterface$t28Designer@ISelectionsListener%", + "@Designer@TSelectionListenerHelper@SelectionChanged$qqrx48System@%DelphiInterface$t20Designer@ISelections%", + "@Designer@TSimpleSelections@", + "@Designer@TSimpleSelections@$bctr$qqrv", + "@Designer@TSimpleSelections@$bdtr$qqrv", + "@Designer@TSimpleSelections@Add$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TSimpleSelections@BeginSelections$qqrv", + "@Designer@TSimpleSelections@Clear$qqrv", + "@Designer@TSimpleSelections@EndSelections$qqrv", + "@Designer@TSimpleSelections@GetCount$qqrv", + "@Designer@TSimpleSelections@GetItems$qqri", + "@Designer@TSimpleSelections@GetSelectionLevel$qqrv", + "@Designer@TSimpleSelections@IndexOf$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TSimpleSelections@Modified$qqrv", + "@Designer@TSimpleSelections@Remove$qqri", + "@Designer@TSimpleSelections@Remove$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TSimpleSelections@Selected$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TSimpleSelections@Toggle$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Designer@TXorDragBoxes@", + "@Designer@TXorDragBoxes@Add$qqrrx11Types@TRect24Designer@TDesignBoxStyle", + "@Designer@TXorDragBoxes@BoundingRect$qqrv", + "@Designer@TXorDragBoxes@Change$qqrirx11Types@TRect", + "@Designer@TXorDragBoxes@Done$qqrv", + "@Designer@TXorDragBoxes@DrawBoxes$qqrv", + "@Designer@TXorDragBoxes@MoveBy$qqrii", + "@Designer@initialization$qqrv", + "@Designide@@GetPackageInfoTable$qqrv", + "@Designide@@PackageLoad$qqrv", + "@Designide@@PackageUnload$qqrv", + "@Designide@initialization$qqrv", + "@Designintf@CreateSelectionList$qqrv", + "@Designintf@Finalization$qqrv", + "@Designintf@RegisterComponentEditor$qqrp17System@TMetaClasst1", + "@Designintf@RegisterComponentEditorProc", + "@Designintf@RegisterCustomModule$qqrp17System@TMetaClasst1", + "@Designintf@RegisterCustomModuleProc", + "@Designintf@RegisterDesignDragObject$qqrp17System@TMetaClass", + "@Designintf@RegisterDesignDragObjectProc", + "@Designintf@RegisterDesignNotification$qqrx58System@%DelphiInterface$t30Designintf@IDesignNotification%", + "@Designintf@RegisterDesignNotificationProc", + "@Designintf@RegisterDragTarget$qqrx17System@AnsiStringp17System@TMetaClass", + "@Designintf@RegisterDragTargetProc", + "@Designintf@RegisterPropertiesInCategory$qqrx17System@AnsiStringp17System@TMetaClasspx17System@AnsiStringxi", + "@Designintf@RegisterPropertiesInCategory$qqrx17System@AnsiStringp17Typinfo@TTypeInfopx17System@AnsiStringxi", + "@Designintf@RegisterPropertiesInCategory$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Designintf@RegisterPropertyEditor$qqrp17Typinfo@TTypeInfop17System@TMetaClassx17System@AnsiStringt2", + "@Designintf@RegisterPropertyEditorProc", + "@Designintf@RegisterPropertyInCategory$qqrx17System@AnsiStringp17System@TMetaClasst1", + "@Designintf@RegisterPropertyInCategory$qqrx17System@AnsiStringp17Typinfo@TTypeInfo", + "@Designintf@RegisterPropertyInCategory$qqrx17System@AnsiStringp17Typinfo@TTypeInfot1", + "@Designintf@RegisterPropertyInCategory$qqrx17System@AnsiStringt1", + "@Designintf@RegisterPropertyInCategoryProc", + "@Designintf@RegisterPropertyMapper$qqrpqqrp19Classes@TPersistentp17Typinfo@TPropInfo$p17System@TMetaClass", + "@Designintf@RegisterPropertyMapperProc", + "@Designintf@RegisterSelectionEditor$qqrp17System@TMetaClasst1", + "@Designintf@RegisterSelectionEditorProc", + "@Designintf@SetPropertyEditorGroup$qqrp17System@TMetaClasst1", + "@Designintf@SetPropertyEditorGroupProc", + "@Designintf@TBaseComponentEditor@", + "@Designintf@TBaseComponentEditor@$bctr$qqrp18Classes@TComponent48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designintf@TBaseCustomModule@", + "@Designintf@TBaseCustomModule@$bctr$qqrp18Classes@TComponentx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designintf@TBaseCustomModule@DesignClass$qqrp17System@TMetaClass", + "@Designintf@TBasePropertyEditor@", + "@Designintf@TBasePropertyEditor@$bctr$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%i", + "@Designintf@TBaseSelectionEditor@", + "@Designintf@TBaseSelectionEditor@$bctr$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designintf@TDesignerSelections@", + "@Designintf@TDesignerSelections@$bctr$qqrv", + "@Designintf@TDesignerSelections@$bctr$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designintf@TDesignerSelections@$bdtr$qqrv", + "@Designintf@TDesignerSelections@Add$qqrpx19Classes@TPersistent", + "@Designintf@TDesignerSelections@Equals$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designintf@TDesignerSelections@Get$qqri", + "@Designintf@TDesignerSelections@GetCount$qqrv", + "@Designintf@TDragTarget@", + "@Designintf@TDragTarget@$bctr$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designintf@UnregisterDesignNotification$qqrx58System@%DelphiInterface$t30Designintf@IDesignNotification%", + "@Designintf@UnregisterDesignNotificationProc", + "@Designintf@_sActionCategoryName", + "@Designintf@_sDataCategoryName", + "@Designintf@_sDatabaseCategoryName", + "@Designintf@_sDragNDropCategoryName", + "@Designintf@_sHelpCategoryName", + "@Designintf@_sInputCategoryName", + "@Designintf@_sInvalidFilter", + "@Designintf@_sLayoutCategoryName", + "@Designintf@_sLegacyCategoryName", + "@Designintf@_sLinkageCategoryName", + "@Designintf@_sLocaleCategoryName", + "@Designintf@_sLocalizableCategoryName", + "@Designintf@_sMiscellaneousCategoryName", + "@Designintf@_sVisualCategoryName", + "@Designintf@initialization$qqrv", + "@Designmenus@CLocalMenusIf", + "@Designmenus@Finalization$qqrv", + "@Designmenus@initialization$qqrv", + "@Designwindows@Finalization$qqrv", + "@Designwindows@TDesignWindow@", + "@Designwindows@TDesignWindow@$bctr$qqrp18Classes@TComponent", + "@Designwindows@TDesignWindow@$bdtr$qqrv", + "@Designwindows@TDesignWindow@ActivateInspector$qqrc", + "@Designwindows@TDesignWindow@Activated$qqrv", + "@Designwindows@TDesignWindow@ClipboardComponents$qqrv", + "@Designwindows@TDesignWindow@ComponentRead$qqrp18Classes@TComponent", + "@Designwindows@TDesignWindow@CopyComponents$qqrp18Classes@TComponentx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designwindows@TDesignWindow@DesignerClosed$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Designwindows@TDesignWindow@DesignerOpened$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Designwindows@TDesignWindow@EditAction$qqr22Designintf@TEditAction", + "@Designwindows@TDesignWindow@GetEditState$qqrv", + "@Designwindows@TDesignWindow@ItemDeleted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Designwindows@TDesignWindow@ItemInserted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Designwindows@TDesignWindow@ItemsModified$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Designwindows@TDesignWindow@PasteComponents$qqrp18Classes@TComponentt1x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designwindows@TDesignWindow@ReaderSetName$qqrp15Classes@TReaderp18Classes@TComponentr17System@AnsiString", + "@Designwindows@TDesignWindow@SelectionChanged$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designwindows@TDesignWindow@SetSelection$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Designwindows@TDesignWindow@UniqueName$qqrp18Classes@TComponent", + "@Designwindows@TDesignWindow@WMActivate$qqrr20Messages@TWMActivate", + "@Designwindows@TDesignWindow@WindowHide$qqrv", + "@Designwindows@TDesignWindow@WindowShow$qqrv", + "@Designwindows@initialization$qqrv", + "@Deskform@BeginDesktopUpdate$qqrv", + "@Deskform@EndDesktopUpdate$qqrv", + "@Deskform@Finalization$qqrv", + "@Deskform@GetDockable", + "@Deskform@InitializeForm", + "@Deskform@IsDesktopLocked$qqrv", + "@Deskform@LoadedDesktopFormInstances", + "@Deskform@RegisterMainFormShown", + "@Deskform@RegisterMenu", + "@Deskform@TDesktopForm@", + "@Deskform@TDesktopForm@$bctr$qqrp18Classes@TComponent", + "@Deskform@TDesktopForm@CMShowingChanged$qqrr17Messages@TMessage", + "@Deskform@TDesktopForm@DoMainFormShown$qqrv", + "@Deskform@TDesktopForm@EditAction$qqr22Designintf@TEditAction", + "@Deskform@TDesktopForm@FormCreate$qqrp14System@TObject", + "@Deskform@TDesktopForm@FormDestroy$qqrp14System@TObject", + "@Deskform@TDesktopForm@GetEditState$qqrv", + "@Deskform@TDesktopForm@LoadDockClients$qqrp20Inifiles@TMemIniFilex17System@AnsiStringp20Controls@TWinControl", + "@Deskform@TDesktopForm@LoadDockStream$qqrp20Inifiles@TMemIniFilex17System@AnsiStringp20Controls@TWinControl", + "@Deskform@TDesktopForm@LoadWindowState$qqrp20Inifiles@TMemIniFile", + "@Deskform@TDesktopForm@LockUpdates$qqrv", + "@Deskform@TDesktopForm@MainFormMadeVisible$qqrp14System@TObject", + "@Deskform@TDesktopForm@Repaint$qqrv", + "@Deskform@TDesktopForm@SaveDockClients$qqrp20Inifiles@TMemIniFilex17System@AnsiStringp20Controls@TWinControl", + "@Deskform@TDesktopForm@SaveDockStream$qqrp20Inifiles@TMemIniFilex17System@AnsiStringp20Controls@TWinControl", + "@Deskform@TDesktopForm@SaveWindowState$qqrp20Inifiles@TMemIniFileo", + "@Deskform@TDesktopForm@UnlockUpdates$qqrv", + "@Deskform@TDesktopForm@ZoomWindow$qqrv", + "@Deskform@UnregisterMainFormShown", + "@Deskform@UnregisterMenu", + "@Deskform@initialization$qqrv", + "@Deskstrs@Finalization$qqrv", + "@Deskstrs@initialization$qqrv", + "@Deskutil@AddMainFormCreatedEvent", + "@Deskutil@AddMainFormShownEvent", + "@Deskutil@DoDesktopLoadProcs$qqrp23Inifiles@TCustomIniFile", + "@Deskutil@DoDesktopSaveProcs$qqrp23Inifiles@TCustomIniFileo", + "@Deskutil@Finalization$qqrv", + "@Deskutil@FocusWindow$qqrp11Forms@TForm", + "@Deskutil@GetFieldAddress", + "@Deskutil@IDEIniFile", + "@Deskutil@LoadDesktopFormClasses$qqrp23Inifiles@TCustomIniFile", + "@Deskutil@RegisterDesktopFormClass$qqrp17System@TMetaClassx17System@AnsiStringt2", + "@Deskutil@RegisterDesktopProcs$qqrpqqrp23Inifiles@TCustomIniFile$vpqqrp23Inifiles@TCustomIniFileo$v", + "@Deskutil@RegisterFieldAddress", + "@Deskutil@RemoveMainFormCreatedEvent", + "@Deskutil@RemoveMainFormShownEvent", + "@Deskutil@SaveDesktopFormClasses$qqrp23Inifiles@TCustomIniFileo", + "@Deskutil@ShowDockableForm$qqrp11Forms@TForm", + "@Deskutil@UnregisterDesktopProcs$qqrpqqrp23Inifiles@TCustomIniFile$vpqqrp23Inifiles@TCustomIniFileo$v", + "@Deskutil@UnregisterFieldAddress", + "@Deskutil@initialization$qqrv", + "@Dmform@Finalization$qqrv", + "@Dmform@TDataModuleCustomModule@", + "@Dmform@TDataModuleCustomModule@CreateDesignerForm$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p18Classes@TComponentrp17Forms@TCustomFormrp20Controls@TWinControl", + "@Dmform@TDataModuleCustomModule@DesignClass$qqrp17System@TMetaClass", + "@Dmform@TDataModuleCustomModule@ValidateComponentClass$qqrp17System@TMetaClass", + "@Dmform@TDataModuleForm@", + "@Dmform@TDataModuleForm@$bctr$qqrpx18Classes@TComponentx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Dmform@TDataModuleForm@$bdtr$qqrv", + "@Dmform@TDataModuleForm@DesignerClosed$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Dmform@TDataModuleForm@DesignerOpened$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Dmform@TDataModuleForm@FormResize$qqrp14System@TObject", + "@Dmform@TDataModuleForm@GetContainer$qqrv", + "@Dmform@TDataModuleForm@GetRoot$qqrv", + "@Dmform@TDataModuleForm@ItemDeleted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Dmform@TDataModuleForm@ItemInserted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Dmform@TDataModuleForm@ItemsModified$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Dmform@TDataModuleForm@SelectionChanged$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Dmform@TDataModuleForm@UpdateDesigner$qqrv", + "@Dmform@TDataModuleForm@WMMove$qqrr17Messages@TMessage", + "@Dmform@_sControlInDataModule", + "@Dmform@initialization$qqrv", + "@Dockform@Finalization$qqrv", + "@Dockform@PumpDockingMessages$qqrv", + "@Dockform@TDockableForm@", + "@Dockform@TDockableForm@$bctr$qqrp18Classes@TComponent", + "@Dockform@TDockableForm@CMDockClient$qqrr22Controls@TCMDockClient", + "@Dockform@TDockableForm@CreateDockParent$qqrr22Controls@TCMDockClient", + "@Dockform@TDockableForm@CreateParams$qqrr22Controls@TCreateParams", + "@Dockform@TDockableForm@DockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Dockform@TDockableForm@DockableCmdExecute$qqrp14System@TObject", + "@Dockform@TDockableForm@DockableCmdUpdate$qqrp14System@TObject", + "@Dockform@TDockableForm@ForceShow$qqrv", + "@Dockform@TDockableForm@FormCreate$qqrp14System@TObject", + "@Dockform@TDockableForm@FormGetSiteInfo$qqrp14System@TObjectp17Controls@TControlr11Types@TRectrx12Types@TPointro", + "@Dockform@TDockableForm@GetTabDockRect$qqrr11Types@TRect", + "@Dockform@TDockableForm@LoadWindowState$qqrp20Inifiles@TMemIniFile", + "@Dockform@TDockableForm@SaveWindowState$qqrp20Inifiles@TMemIniFileo", + "@Dockform@TDockableForm@SetDockable$qqrxo", + "@Dockform@TDockableForm@StayOnTopCmdExecute$qqrp14System@TObject", + "@Dockform@TDockableForm@StayOnTopCmdUpdate$qqrp14System@TObject", + "@Dockform@TDockableForm@ToggleDockable$qqrv", + "@Dockform@TDockableForm@WMMouseActivate$qqrr25Messages@TWMMouseActivate", + "@Dockform@TDockableForm@ZoomWindowCmdExecute$qqrp14System@TObject", + "@Dockform@initialization$qqrv", + "@Docktoolform@Finalization$qqrv", + "@Docktoolform@TDockableToolbarForm@", + "@Docktoolform@TDockableToolbarForm@FormCreate$qqrp14System@TObject", + "@Docktoolform@TDockableToolbarForm@FormDestroy$qqrp14System@TObject", + "@Docktoolform@TDockableToolbarForm@GetLargeButtons$qqrv", + "@Docktoolform@TDockableToolbarForm@ResizeButtons$qqro", + "@Docktoolform@TDockableToolbarForm@SetLargeButtons$qqro", + "@Docktoolform@TDockableToolbarForm@Splitter1CanResize$qqrp14System@TObjectriro", + "@Docktoolform@TDockableToolbarForm@Splitter1Moved$qqrp14System@TObject", + "@Docktoolform@TDockableToolbarForm@TextLabelsCmdExecute$qqrp14System@TObject", + "@Docktoolform@TDockableToolbarForm@TextLabelsCmdUpdate$qqrp14System@TObject", + "@Docktoolform@TDockableToolbarForm@ToolbarCmdExecute$qqrp14System@TObject", + "@Docktoolform@TDockableToolbarForm@ToolbarCmdUpdate$qqrp14System@TObject", + "@Docktoolform@initialization$qqrv", + "@Dsncmds@DsnCommands", + "@Dsncmds@Finalization$qqrv", + "@Dsncmds@TDsnCommands@", + "@Dsncmds@initialization$qqrv", + "@Dsnconst@Finalization$qqrv", + "@Dsnconst@_SActionCategoryAll", + "@Dsnconst@_SActionCategoryNone", + "@Dsnconst@_SActionListEdit", + "@Dsnconst@_SActionListEditorCaption", + "@Dsnconst@_SActionManagerEdit", + "@Dsnconst@_SAddImagesTitle", + "@Dsnconst@_SAnimationFilter", + "@Dsnconst@_SControlInService", + "@Dsnconst@_SCoolBarBandEdit", + "@Dsnconst@_SCopyObjectVerb", + "@Dsnconst@_SDdeConvErr", + "@Dsnconst@_SDdeEmptyConnection", + "@Dsnconst@_SDdeErr", + "@Dsnconst@_SDdeMemErr", + "@Dsnconst@_SDdeNoConnect", + "@Dsnconst@_SDeleteColumnsQuestion", + "@Dsnconst@_SDeleteObjectVerb", + "@Dsnconst@_SDeletePage", + "@Dsnconst@_SDeleteToolbar", + "@Dsnconst@_SDialogCategory", + "@Dsnconst@_SEditCategory", + "@Dsnconst@_SFileCategory", + "@Dsnconst@_SFilter", + "@Dsnconst@_SFilterName", + "@Dsnconst@_SFormat", + "@Dsnconst@_SHeaderSectionEdit", + "@Dsnconst@_SHelpCategory", + "@Dsnconst@_SImageListDivide", + "@Dsnconst@_SImageListEditor", + "@Dsnconst@_SImageListEditorCaption", + "@Dsnconst@_SImageListGraphicUnsupported", + "@Dsnconst@_SInputMaskEditor", + "@Dsnconst@_SInsertObjectVerb", + "@Dsnconst@_SInternetCategory", + "@Dsnconst@_SInvalidSampleMask", + "@Dsnconst@_SListCategory", + "@Dsnconst@_SListColumnsEditor", + "@Dsnconst@_SListItemsEditor", + "@Dsnconst@_SMaskTextEditor", + "@Dsnconst@_SNewAction", + "@Dsnconst@_SNewActionHint", + "@Dsnconst@_SNewGalleryPage", + "@Dsnconst@_SNewPage", + "@Dsnconst@_SNewServiceModuleDescription", + "@Dsnconst@_SNewServiceModuleName", + "@Dsnconst@_SNewServiceProjectDescription", + "@Dsnconst@_SNewServiceProjectName", + "@Dsnconst@_SNewToolButton", + "@Dsnconst@_SNewToolSeparator", + "@Dsnconst@_SNextPage", + "@Dsnconst@_SNoUnusedColors", + "@Dsnconst@_SObjectPropertiesVerb", + "@Dsnconst@_SOpenAVITitle", + "@Dsnconst@_SOpenDialogFilter", + "@Dsnconst@_SOpenXMLTitle", + "@Dsnconst@_SPasteSpecialVerb", + "@Dsnconst@_SPrevPage", + "@Dsnconst@_SPropertiesVerb", + "@Dsnconst@_SSearchCategory", + "@Dsnconst@_SStatusBarPanelEdit", + "@Dsnconst@_STabCategory", + "@Dsnconst@_STabControlTabsEdit", + "@Dsnconst@_STestDialog", + "@Dsnconst@_STreeColumnsEditor", + "@Dsnconst@_STreeItemsEditor", + "@Dsnconst@_SUntitled", + "@Dsnconst@_SWindowCategory", + "@Dsnconst@_SXMLFilter", + "@Dsnconst@_srAdditional", + "@Dsnconst@_srComPlus", + "@Dsnconst@_srCommonControls", + "@Dsnconst@_srDialogs", + "@Dsnconst@_srStandard", + "@Dsnconst@_srSystem", + "@Dsnconst@_srWin95", + "@Dsnconst@initialization$qqrv", + "@Editintf@Finalization$qqrv", + "@Editintf@TIComponentInterface@", + "@Editintf@TIEditReader@", + "@Editintf@TIEditView@", + "@Editintf@TIEditWriter@", + "@Editintf@TIEditorInterface@", + "@Editintf@TIFormInterface@", + "@Editintf@TIModuleCreator@", + "@Editintf@TIModuleCreatorEx@", + "@Editintf@TIModuleInterface@", + "@Editintf@TIModuleNotifier@", + "@Editintf@TIProjectCreator@", + "@Editintf@TIProjectCreatorEx@", + "@Editintf@TIResourceEntry@", + "@Editintf@TIResourceFile@", + "@Editintf@initialization$qqrv", + "@Editorviewsupport@ContextResurrect$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Editorviewsupport@ContextToDesigner$qqrx45System@%DelphiInterface$t17System@IInterface%r48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Editorviewsupport@ContextToFilename$qqrx45System@%DelphiInterface$t17System@IInterface%r17System@AnsiString", + "@Editorviewsupport@ContextToFormEditor$qqrx45System@%DelphiInterface$t17System@IInterface%r51System@%DelphiInterface$t23Toolsapi@IOTAFormEditor%", + "@Editorviewsupport@ContextToModule$qqrx45System@%DelphiInterface$t17System@IInterface%r47System@%DelphiInterface$t19Toolsapi@IOTAModule%", + "@Editorviewsupport@ContextToRootComponent$qqrx45System@%DelphiInterface$t17System@IInterface%rp18Classes@TComponent", + "@Editorviewsupport@ERequiredInterfaceError@", + "@Editorviewsupport@Finalization$qqrv", + "@Editorviewsupport@RegisterCustomEditorViewProc", + "@Editorviewsupport@RegisterEditorView$qqrx63System@%DelphiInterface$t35Editorviewsupport@ICustomEditorView%", + "@Editorviewsupport@RegisteredEditorViews$qqrv", + "@Editorviewsupport@TCustomEditorView@", + "@Editorviewsupport@TCustomEditorView@Display$qqrx45System@%DelphiInterface$t17System@IInterface%p14System@TObject", + "@Editorviewsupport@TCustomEditorView@EditAction$qqrx45System@%DelphiInterface$t17System@IInterface%22Designintf@TEditActionp14System@TObject", + "@Editorviewsupport@TCustomEditorView@GetCaption$qqrv", + "@Editorviewsupport@TCustomEditorView@GetEditState$qqrx45System@%DelphiInterface$t17System@IInterface%p14System@TObject", + "@Editorviewsupport@TCustomEditorView@GetPriority$qqrv", + "@Editorviewsupport@TCustomEditorView@GetStyle$qqrv", + "@Editorviewsupport@TCustomEditorView@Handles$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Editorviewsupport@TCustomEditorViewInfo@", + "@Editorviewsupport@TCustomEditorViewInfo@$bctr$qqrp17System@TMetaClassx63System@%DelphiInterface$t35Editorviewsupport@ICustomEditorView%", + "@Editorviewsupport@TCustomEditorViewInfo@GetHasViewClass$qqrv", + "@Editorviewsupport@TCustomEditorViewInfo@GetViewClass$qqrv", + "@Editorviewsupport@TCustomEditorViewList@", + "@Editorviewsupport@TCustomEditorViewList@$bctr$qqrv", + "@Editorviewsupport@TCustomEditorViewList@$bdtr$qqrv", + "@Editorviewsupport@TCustomEditorViewList@Add$qqrp17System@TMetaClass", + "@Editorviewsupport@TCustomEditorViewList@Add$qqrx63System@%DelphiInterface$t35Editorviewsupport@ICustomEditorView%", + "@Editorviewsupport@TCustomEditorViewList@Count$qqrv", + "@Editorviewsupport@TCustomEditorViewList@FreeEditorGroup$qqri", + "@Editorviewsupport@TCustomEditorViewList@GetCustomEditorView$qqri", + "@Editorviewsupport@TCustomEditorViewList@GetFileCustomEditorView$qqri", + "@Editorviewsupport@TCustomEditorViewList@GetViewClass$qqri", + "@Editorviewsupport@TCustomEditorViewList@Remove$qqrp17System@TMetaClass", + "@Editorviewsupport@TCustomEditorViewList@Remove$qqrpv", + "@Editorviewsupport@UnregisterCustomEditorViewProc", + "@Editorviewsupport@UnregisterEditorView$qqrpv", + "@Editorviewsupport@initialization$qqrv", + "@Events@Finalization$qqrv", + "@Events@TEvent@", + "@Events@TEvent@$bctr$qqrv", + "@Events@TEvent@$bdtr$qqrv", + "@Events@TEvent@Add$qqrynpqqrp14System@TObject$v", + "@Events@TEvent@IndexOf$qqrynpqqrp14System@TObject$v", + "@Events@TEvent@Remove$qqrynpqqrp14System@TObject$v", + "@Events@TEvent@Send$qqrp14System@TObject", + "@Events@initialization$qqrv", + "@Exptintf@Finalization$qqrv", + "@Exptintf@LibraryExpertProc", + "@Exptintf@RegisterLibraryExpert$qqrp17Exptintf@TIExpert", + "@Exptintf@TIExpert@", + "@Exptintf@ToolServices", + "@Exptintf@initialization$qqrv", + "@Fileintf@Finalization$qqrv", + "@Fileintf@TIVirtualFileSystem@", + "@Fileintf@initialization$qqrv", + "@GetPackageInfoTable", + "@Idecommandbutton@Finalization$qqrv", + "@Idecommandbutton@TCommandButton@", + "@Idecommandbutton@TCommandButton@$bctr$qqrp18Classes@TComponent", + "@Idecommandbutton@TCommandButton@$bdtr$qqrv", + "@Idecommandbutton@TCommandButton@ActionChange$qqrp14System@TObjecto", + "@Idecommandbutton@TCommandButton@CMDialogChar$qqrr15Messages@TWMKey", + "@Idecommandbutton@TCommandButton@CalcButtonLayout$qqrp16Graphics@TCanvasrx11Types@TRectrx12Types@TPointx17System@AnsiString21Buttons@TButtonLayoutiir12Types@TPointr11Types@TRect", + "@Idecommandbutton@TCommandButton@CanAutoSize$qqrrit1", + "@Idecommandbutton@TCommandButton@CheckMenuDropdown$qqrv", + "@Idecommandbutton@TCommandButton@Click$qqrv", + "@Idecommandbutton@TCommandButton@Draw$qqrp16Graphics@TCanvasrx11Types@TRectrx12Types@TPointx17System@AnsiString21Buttons@TButtonLayoutii20Buttons@TButtonStateo", + "@Idecommandbutton@TCommandButton@DrawButtonGlyph$qqrp16Graphics@TCanvasrx12Types@TPoint20Buttons@TButtonStateo", + "@Idecommandbutton@TCommandButton@DrawButtonText$qqrp16Graphics@TCanvasx17System@AnsiStringrx11Types@TRect20Buttons@TButtonState", + "@Idecommandbutton@TCommandButton@GetActionLinkClass$qqrv", + "@Idecommandbutton@TCommandButton@ImageListChange$qqrp14System@TObject", + "@Idecommandbutton@TCommandButton@IsImageIndexStored$qqrv", + "@Idecommandbutton@TCommandButton@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Idecommandbutton@TCommandButton@Paint$qqrv", + "@Idecommandbutton@TCommandButton@SetDisabledImages$qqrp24Imglist@TCustomImageList", + "@Idecommandbutton@TCommandButton@SetDropdownMenu$qqrp16Menus@TPopupMenu", + "@Idecommandbutton@TCommandButton@SetEnableDropDown$qqro", + "@Idecommandbutton@TCommandButton@SetEnabled$qqro", + "@Idecommandbutton@TCommandButton@SetHotImages$qqrp24Imglist@TCustomImageList", + "@Idecommandbutton@TCommandButton@SetImageIndex$qqri", + "@Idecommandbutton@TCommandButton@SetImages$qqrp24Imglist@TCustomImageList", + "@Idecommandbutton@TCommandButton@SetShowCaption$qqro", + "@Idecommandbutton@TCommandButton@UpdateImage$qqrv", + "@Idecommandbutton@TCommandButton@UpdateTracking$qqrv", + "@Idecommandbutton@TCommandButton@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Idecommandbutton@TCommandButton@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Idecommandbutton@TCommandButton@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Idecommandbutton@initialization$qqrv", + "@Idedockctrls@Finalization$qqrv", + "@Idedockctrls@TTabDockPageControl@", + "@Idedockctrls@TTabDockPageControl@$bctr$qqrp18Classes@TComponent", + "@Idedockctrls@TTabDockPageControl@CMDockClient$qqrr22Controls@TCMDockClient", + "@Idedockctrls@TTabDockPageControl@CMDockNotification$qqrr28Controls@TCMDockNotification", + "@Idedockctrls@TTabDockPageControl@Change$qqrv", + "@Idedockctrls@TTabDockPageControl@DoAddDockClient$qqrp17Controls@TControlrx11Types@TRect", + "@Idedockctrls@TTabDockPageControl@DoRemoveDockClient$qqrp17Controls@TControl", + "@Idedockctrls@TTabDockPageControl@DockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Idedockctrls@TTabDockPageControl@GetSiteInfo$qqrp17Controls@TControlr11Types@TRectrx12Types@TPointro", + "@Idedockctrls@TTabDockPageControl@ShowDockClient$qqrp17Controls@TControl", + "@Idedockctrls@initialization$qqrv", + "@Idedockpanel@Finalization$qqrv", + "@Idedockpanel@TDockPanel@", + "@Idedockpanel@TDockPanel@$bctr$qqrp18Classes@TComponent", + "@Idedockpanel@TDockPanel@CMFloat$qqrr17Controls@TCMFloat", + "@Idedockpanel@TDockPanel@CreateParams$qqrr22Controls@TCreateParams", + "@Idedockpanel@TDockPanel@Dock$qqrp20Controls@TWinControlrx11Types@TRect", + "@Idedockpanel@TDockPanel@DockTrackNoTarget$qqrp24Controls@TDragDockObjectii", + "@Idedockpanel@TDockPanel@DrawDragDockImage$qqrp24Controls@TDragDockObject", + "@Idedockpanel@TDockPanel@EraseDragDockImage$qqrp24Controls@TDragDockObject", + "@Idedockpanel@TDockPanel@GetFloatingDockSiteClass$qqrv", + "@Idedockpanel@TDockPanel@WMGetText$qqrr19Messages@TWMGetText", + "@Idedockpanel@TDockPanel@WMGetTextLength$qqrr20Messages@TWMNoParams", + "@Idedockpanel@TDockPanel@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Idedockpanel@TDockPanel@WMSetText$qqrr19Messages@TWMSetText", + "@Idedockpanel@TEditorDockPanel@", + "@Idedockpanel@TEditorDockPanel@AdjustPosition$qqrv", + "@Idedockpanel@TEditorDockPanel@CMDockNotification$qqrr28Controls@TCMDockNotification", + "@Idedockpanel@TEditorDockPanel@CMUnDockClient$qqrr24Controls@TCMUnDockClient", + "@Idedockpanel@TEditorDockPanel@DoUnDock$qqrp20Controls@TWinControlp17Controls@TControl", + "@Idedockpanel@TEditorDockPanel@DockDrop$qqrp24Controls@TDragDockObjectii", + "@Idedockpanel@TEditorDockPanel@DockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Idedockpanel@TEditorDockPanel@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Idedockpanel@TEditorDockPanel@ReloadDockedControl$qqrx17System@AnsiStringrp17Controls@TControl", + "@Idedockpanel@TEditorDockPanel@SetNextControl$qqrp17Controls@TControl", + "@Idedockpanel@TEditorDockPanel@SetResizeSuspended$qqrxo", + "@Idedockpanel@TEditorDockPanel@SetSplitter$qqrp18Extctrls@TSplitter", + "@Idedockpanel@TEditorDockPanel@VisibleClientCount$qqrv", + "@Idedockpanel@initialization$qqrv", + "@Idemenuaction@Finalization$qqrv", + "@Idemenuaction@TCustomPopupAction@", + "@Idemenuaction@TCustomPopupAction@SetDropdownMenu$qqrp16Menus@TPopupMenu", + "@Idemenuaction@TCustomPopupAction@SetEnableDropdown$qqro", + "@Idemenuaction@TCustomPopupAction@SetPopupMenu$qqrp16Menus@TPopupMenu", + "@Idemenuaction@TCustomSubMenuAction@", + "@Idemenuaction@TCustomSubMenuAction@PopulateSubMenu$qqrp15Menus@TMenuItem", + "@Idemenuaction@TPopupAction@", + "@Idemenuaction@TPopupActionLink@", + "@Idemenuaction@TPopupActionLink@IsDropdownMenuLinked$qqrv", + "@Idemenuaction@TPopupActionLink@IsEnableDropdownLinked$qqrv", + "@Idemenuaction@TPopupActionLink@IsPopupMenuLinked$qqrv", + "@Idemenuaction@TPopupActionLink@SetDropdownMenu$qqrp16Menus@TPopupMenu", + "@Idemenuaction@TPopupActionLink@SetEnableDropdown$qqro", + "@Idemenuaction@TPopupActionLink@SetPopupMenu$qqrp16Menus@TPopupMenu", + "@Idemenuaction@TSubMenuAction@", + "@Idemenuaction@initialization$qqrv", + "@Idemessages@DeferDoLayoutMsg", + "@Idemessages@DeferRecalcVisibleMsg", + "@Idemessages@Finalization$qqrv", + "@Idemessages@initialization$qqrv", + "@Istreams@ExceptionHandler", + "@Istreams@Finalization$qqrv", + "@Istreams@TIFileStream@", + "@Istreams@TIFileStream@$bctr$qqrx17System@AnsiStringus", + "@Istreams@TIFileStream@Commit$qqsi", + "@Istreams@TIFileStream@GetFileStream$qqrv", + "@Istreams@TIFileStream@GetModifyTime$qqsv", + "@Istreams@TIFileStream@SetModifyTime$qqsi", + "@Istreams@TIFileStream@Stat$qqsr10tagSTATSTGi", + "@Istreams@TIMemoryStream@", + "@Istreams@TIMemoryStream@$bctr$qqrp21Classes@TMemoryStream24Classes@TStreamOwnership", + "@Istreams@TIMemoryStream@GetMemoryStream$qqrv", + "@Istreams@TIStreamAdapter@", + "@Istreams@TIStreamAdapter@$bctr$qqrp15Classes@TStream24Classes@TStreamOwnership", + "@Istreams@TIStreamAdapter@GetModifyTime$qqsv", + "@Istreams@TIStreamAdapter@SetModifyTime$qqsi", + "@Istreams@TIStreamAdapter@Stat$qqsr10tagSTATSTGi", + "@Istreams@TIStreamAdapter@Write$qqspvipi", + "@Istreams@TVirtualStream@", + "@Istreams@TVirtualStream@$bctr$qqr34System@%DelphiInterface$t7IStream%", + "@Istreams@TVirtualStream@GetModifyTime$qqrv", + "@Istreams@TVirtualStream@SetModifyTime$qqri", + "@Istreams@initialization$qqrv", + "@Joindock@Finalization$qqrv", + "@Joindock@TJoinDockForm@", + "@Joindock@TJoinDockForm@$bctr$qqrp18Classes@TComponent", + "@Joindock@TJoinDockForm@CMDockNotification$qqrr28Controls@TCMDockNotification", + "@Joindock@TJoinDockForm@FormUnDock$qqrp14System@TObjectp17Controls@TControlp20Controls@TWinControlro", + "@Joindock@TJoinDockForm@GetDialogCharParentClass$qqrv", + "@Joindock@TJoinDockForm@LoadWindowState$qqrp20Inifiles@TMemIniFile", + "@Joindock@TJoinDockForm@ReloadDockedControl$qqrx17System@AnsiStringrp17Controls@TControl", + "@Joindock@TJoinDockForm@SaveWindowState$qqrp20Inifiles@TMemIniFileo", + "@Joindock@TJoinDockForm@UnlockUpdates$qqrv", + "@Joindock@initialization$qqrv", + "@Libconst@Finalization$qqrv", + "@Libconst@_SBlankName", + "@Libconst@_SCannotInheritControl", + "@Libconst@_SCannotInheritFrom", + "@Libconst@_SCannotInheritFroms", + "@Libconst@_SCantDeleteComponent", + "@Libconst@_SCantSaveFormWithAFixup", + "@Libconst@_SCantSaveFormWithFixups", + "@Libconst@_SComponentAlreadyExists", + "@Libconst@_SDeleteWarning", + "@Libconst@_SFormPasteError", + "@Libconst@_SLocalSelect", + "@Libconst@_SMenuAlign", + "@Libconst@_SMenuAlignToGrid", + "@Libconst@_SMenuBringToFront", + "@Libconst@_SMenuCreatOrder", + "@Libconst@_SMenuFlipChildren", + "@Libconst@_SMenuRevert", + "@Libconst@_SMenuSaveAsTemplate", + "@Libconst@_SMenuScale", + "@Libconst@_SMenuSendToBack", + "@Libconst@_SMenuSize", + "@Libconst@_SMenuTabOrder", + "@Libconst@_SNotAvailable", + "@Libconst@_SRedirectLinks", + "@Libconst@_SRemoteSelect", + "@Libconst@_SRemoveLinks", + "@Libconst@_SRenamingAncestor", + "@Libconst@_SSubMenuFlipChidrenSelected", + "@Libconst@_SSubMenuFlipChildrenAll", + "@Libconst@_sAncestorClassName", + "@Libconst@_sCantRename", + "@Libconst@_sComponentClassName", + "@Libconst@_sInvalidSelection", + "@Libconst@_sMenuTextDFM", + "@Libconst@_sMenuViewAsText", + "@Libconst@_sNoHelpFile", + "@Libconst@_sNotImplemented", + "@Libconst@_sReadOnlyError", + "@Libconst@_sRootClassNotFound", + "@Libconst@initialization$qqrv", + "@Libhelp@Finalization$qqrv", + "@Libhelp@initialization$qqrv", + "@Menutmpl@Finalization$qqrv", + "@Menutmpl@LoadMenuTemplateManagerFromDisk$qqrp29Menutmpl@TMenuTemplateManager", + "@Menutmpl@TMenuTemplate@", + "@Menutmpl@TMenuTemplate@$bctr$qqrp18Classes@TComponent", + "@Menutmpl@TMenuTemplate@ComponentRead$qqrp18Classes@TComponent", + "@Menutmpl@TMenuTemplate@GetChildOwner$qqrv", + "@Menutmpl@TMenuTemplate@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Menutmpl@TMenuTemplate@LoadFromClipboard$qqrp18Classes@TComponent", + "@Menutmpl@TMenuTemplate@ReadState$qqrp15Classes@TReader", + "@Menutmpl@TMenuTemplate@ReadStream$qqrp15Classes@TStreamp18Classes@TComponentt2", + "@Menutmpl@TMenuTemplate@ReaderSetName$qqrp15Classes@TReaderp18Classes@TComponentr17System@AnsiString", + "@Menutmpl@TMenuTemplate@SetItem$qqrp15Menus@TMenuItem", + "@Menutmpl@TMenuTemplateManager@", + "@Menutmpl@TMenuTemplateManager@$bctr$qqrp18Classes@TComponent", + "@Menutmpl@TMenuTemplateManager@$bdtr$qqrv", + "@Menutmpl@TMenuTemplateManager@DoesTemplateExist$qqr17System@AnsiString", + "@Menutmpl@TMenuTemplateManager@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Menutmpl@TMenuTemplateManager@GetTemplate$qqri", + "@Menutmpl@TMenuTemplateManager@GetTemplatesSize$qqrv", + "@Menutmpl@TMenuTemplateManager@IsSpaceAvailable$qqrv", + "@Menutmpl@TMenuTemplateManager@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Menutmpl@TMenuTemplateManager@StreamTemplatesOut$qqrv", + "@Menutmpl@TMenuTemplateManager@TemplateSaveAs$qqrp22Menutmpl@TMenuTemplate", + "@Menutmpl@initialization$qqrv", + "@Metasupport@Finalization$qqrv", + "@Metasupport@MetaPrint$qqrynpqqruiii$p18Graphics@TMetafilex17System@AnsiStringoooynpqqrii$vp14Graphics@TFontynpqqrp24Graphics@TMetafileCanvasrx12Types@TPointt2rx11Types@TRect$v", + "@Metasupport@MetaPrintBorderSize", + "@Metasupport@MetaPrintHeaderSize", + "@Metasupport@MetaPrintOverlapSize", + "@Metasupport@MetaSave$qqrynpqqruiii$p18Graphics@TMetafiler17System@AnsiStringx17System@AnsiString", + "@Metasupport@_SMetaPrint1dCounterCaption", + "@Metasupport@_SMetaPrint2dCounterCaption", + "@Metasupport@_SMetaSaveFilterCaption", + "@Metasupport@_SMetaSaveTitleCaption", + "@Metasupport@initialization$qqrv", + "@Mnubuild@EMenuBuilder@", + "@Mnubuild@Finalization$qqrv", + "@Mnubuild@MenuEditor", + "@Mnubuild@Register$qqrv", + "@Mnubuild@TMenuBuilder@", + "@Mnubuild@TMenuBuilder@ActiveChanged$qqrv", + "@Mnubuild@TMenuBuilder@AdjustScrollBars$qqrv", + "@Mnubuild@TMenuBuilder@BuildCaptionFromPieces$qqrv", + "@Mnubuild@TMenuBuilder@ChangeWorkMenu$qqrp15Menus@TMenuItemoo", + "@Mnubuild@TMenuBuilder@CheckDragAcceptance$qqrp17Mnubuild@TMenuWinp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuBuilder@ClearDragState$qqrv", + "@Mnubuild@TMenuBuilder@ClearWorkMenu$qqrp15Menus@TMenuItem", + "@Mnubuild@TMenuBuilder@Copy$qqrv", + "@Mnubuild@TMenuBuilder@CreateSubmenu1Click$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@Cut$qqrv", + "@Mnubuild@TMenuBuilder@Delete$qqrv", + "@Mnubuild@TMenuBuilder@DeleteItemClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@DesignerClosed$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Mnubuild@TMenuBuilder@DesignerOpened$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Mnubuild@TMenuBuilder@DoActivate$qqrv", + "@Mnubuild@TMenuBuilder@EditAction$qqr22Designintf@TEditAction", + "@Mnubuild@TMenuBuilder@FormActivate$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@FormClose$qqrp14System@TObjectr18Forms@TCloseAction", + "@Mnubuild@TMenuBuilder@FormCreate$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@FormDeactivate$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@FormDestroy$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@FormMouseDown$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Mnubuild@TMenuBuilder@FormResize$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@GetANewMenu$qqro", + "@Mnubuild@TMenuBuilder@GetActiveItem$qqrp17Mnubuild@TMenuWin", + "@Mnubuild@TMenuBuilder@GetEditState$qqrv", + "@Mnubuild@TMenuBuilder@GetScrollVisibility$qqrv", + "@Mnubuild@TMenuBuilder@GetSubWinForItem$qqrp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuBuilder@GetWindowForItem$qqrp15Menus@TMenuItemrp17Mnubuild@TMenuWinrp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuBuilder@HandleAltF10$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%rus", + "@Mnubuild@TMenuBuilder@InsertItemClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@InsertResourceItemClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@IsFirstWindowHome$qqrv", + "@Mnubuild@TMenuBuilder@IsInDDList$qqrp17Mnubuild@TMenuWin", + "@Mnubuild@TMenuBuilder@ItemDeleted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Mnubuild@TMenuBuilder@ItemGotFocus$qqrp17Mnubuild@TMenuWinp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuBuilder@ItemInserted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Mnubuild@TMenuBuilder@ItemsModified$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Mnubuild@TMenuBuilder@MnuBuildPopupPopup$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@NewPopup$qqrp17Mnubuild@TMenuWinp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuBuilder@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Mnubuild@TMenuBuilder@Paste$qqrv", + "@Mnubuild@TMenuBuilder@PerformUpdate$qqrv", + "@Mnubuild@TMenuBuilder@PopupMenu1DeleteTemplatesClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@PopupMenu1InsertFromTemplateClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@PopupMenu1SaveAsTemplateClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@PopupMenu1SelectMenuClick$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@ReConstructDDList$qqrv", + "@Mnubuild@TMenuBuilder@ResetAllSelections$qqrp17Mnubuild@TMenuWin", + "@Mnubuild@TMenuBuilder@SelectionChanged$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Mnubuild@TMenuBuilder@SetDragState$qqrp17Mnubuild@TMenuWinp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuBuilder@SetMenu$qqrp15Menus@TMenuItemx48System@%DelphiInterface$t20Designintf@IDesigner%p13Classes@TList", + "@Mnubuild@TMenuBuilder@SetWorkMenu$qqrp15Menus@TMenuItem", + "@Mnubuild@TMenuBuilder@SyncSelection$qqrp13Classes@TList", + "@Mnubuild@TMenuBuilder@UpdatePropertyInspector$qqrx58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Mnubuild@TMenuBuilder@WMWinIniChange$qqrr17Messages@TMessage", + "@Mnubuild@TMenuEditor@", + "@Mnubuild@TMenuEditor@Edit$qqrv", + "@Mnubuild@TMenuEditor@ExecuteVerb$qqri", + "@Mnubuild@TMenuEditor@GetVerb$qqri", + "@Mnubuild@TMenuEditor@GetVerbCount$qqrv", + "@Mnubuild@TMenuItemProperty@", + "@Mnubuild@TMenuItemProperty@Edit$qqrv", + "@Mnubuild@TMenuItemProperty@GetAttributes$qqrv", + "@Mnubuild@TMenuItemProperty@GetValue$qqrv", + "@Mnubuild@TMenuItemWin@", + "@Mnubuild@TMenuItemWin@$bctr$qqrp18Classes@TComponent", + "@Mnubuild@TMenuItemWin@$bdtr$qqrv", + "@Mnubuild@TMenuItemWin@DoSetColor$qqro", + "@Mnubuild@TMenuItemWin@GetCaptionExtent$qqrv", + "@Mnubuild@TMenuItemWin@GetMenuItem$qqrv", + "@Mnubuild@TMenuItemWin@MenuOwner$qqrv", + "@Mnubuild@TMenuItemWin@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Mnubuild@TMenuItemWin@Paint$qqrv", + "@Mnubuild@TMenuItemWin@PaintItemFocusRect$qqrv", + "@Mnubuild@TMenuItemWin@PaintItemGlyph$qqroi", + "@Mnubuild@TMenuItemWin@PaintItemShortcut$qqrus", + "@Mnubuild@TMenuItemWin@PaintItemText$qqrus", + "@Mnubuild@TMenuItemWin@PaintSeparator$qqrv", + "@Mnubuild@TMenuItemWin@SetExtentValues$qqrv", + "@Mnubuild@TMenuItemWin@SetMenuItem$qqrp15Menus@TMenuItem", + "@Mnubuild@TMenuItemWin@SetSelected$qqro", + "@Mnubuild@TMenuItemWin@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Mnubuild@TMenuWin@", + "@Mnubuild@TMenuWin@$bctr$qqrp18Classes@TComponent", + "@Mnubuild@TMenuWin@AdjustAfterParentSize$qqrv", + "@Mnubuild@TMenuWin@CMFocusChanged$qqrr24Controls@TCMFocusChanged", + "@Mnubuild@TMenuWin@CreateAndPositionNewItem$qqrv", + "@Mnubuild@TMenuWin@CreateParams$qqrr22Controls@TCreateParams", + "@Mnubuild@TMenuWin@FindControlIndex$qqrp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuWin@GetActiveItem$qqrp17Mnubuild@TMenuWin", + "@Mnubuild@TMenuWin@GetItemsSelected$qqrv", + "@Mnubuild@TMenuWin@GetLongestCaption$qqrv", + "@Mnubuild@TMenuWin@GetLongestShortCut$qqrv", + "@Mnubuild@TMenuWin@GetWindowForItem$qqrp15Menus@TMenuItem", + "@Mnubuild@TMenuWin@HideNextLevels$qqrv", + "@Mnubuild@TMenuWin@InitDragDrop$qqrv", + "@Mnubuild@TMenuWin@InsertMenuTemplate$qqrp21Mnubuild@TMenuItemWinrp22Menutmpl@TMenuTemplateo", + "@Mnubuild@TMenuWin@IsAncestorLevel$qqrp17Mnubuild@TMenuWin", + "@Mnubuild@TMenuWin@IsLastItemEmpty$qqrv", + "@Mnubuild@TMenuWin@IsParentLevel$qqrp17Mnubuild@TMenuWinp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuWin@ItemDblClick$qqrp14System@TObject", + "@Mnubuild@TMenuWin@ItemGotFocus$qqrp20Controls@TWinControl", + "@Mnubuild@TMenuWin@ItemKeyDown$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mnubuild@TMenuWin@ItemKeyPress$qqrp14System@TObjectrc", + "@Mnubuild@TMenuWin@ItemOnMouseDown$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Mnubuild@TMenuWin@MenuDragDrop$qqrp14System@TObjectt1ii", + "@Mnubuild@TMenuWin@MenuDragOver$qqrp14System@TObjectt1ii19Controls@TDragStatero", + "@Mnubuild@TMenuWin@MenuEndDrag$qqrp14System@TObjectt1ii", + "@Mnubuild@TMenuWin@MenuInvalidNotification$qqrv", + "@Mnubuild@TMenuWin@NavItemIncrement$qqrp21Mnubuild@TMenuItemWino46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mnubuild@TMenuWin@NavItemLR$qqrp21Mnubuild@TMenuItemWinus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mnubuild@TMenuWin@NavItemUD$qqrp21Mnubuild@TMenuItemWinus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mnubuild@TMenuWin@NewMenuItem$qqrp21Mnubuild@TMenuItemWin46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mnubuild@TMenuWin@NewSubMenu$qqrp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuWin@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Mnubuild@TMenuWin@Paint$qqrv", + "@Mnubuild@TMenuWin@PositionAfterParentSize$qqrp17Mnubuild@TMenuWin", + "@Mnubuild@TMenuWin@RemoveMenuItem$qqrp21Mnubuild@TMenuItemWinoo", + "@Mnubuild@TMenuWin@ResetAllSelections$qqrv", + "@Mnubuild@TMenuWin@SetItemProperties$qqrp21Mnubuild@TMenuItemWin", + "@Mnubuild@TMenuWin@SetPosition$qqro", + "@Mnubuild@TMenuWin@SetWorkMenu$qqrp15Menus@TMenuItem", + "@Mnubuild@TMenuWin@SizeItemWindows$qqrv", + "@Mnubuild@TMenuWin@StreamSelections$qqrp21Classes@TMemoryStreamp18Classes@TComponent", + "@Mnubuild@TMenuWin@SyncSelection$qqrp13Classes@TList", + "@Mnubuild@TMenuWin@TreatAsMenuBar$qqrv", + "@Mnubuild@TMenuWin@UpdateMenuAssignments$qqrv", + "@Mnubuild@TMenuWin@UpdateNotification$qqrv", + "@Mnubuild@TMenuWin@UpdatePropertyInspector$qqrv", + "@Mnubuild@TMenuWin@VerifyWindowsMatchMenu$qqrp15Menus@TMenuItem", + "@Mnubuild@TMenuWin@WidenItems$qqri", + "@Mnubuild@initialization$qqrv", + "@Mnuconst@Finalization$qqrv", + "@Mnuconst@_SCantDeleteAncestor", + "@Mnuconst@_SCharExpected", + "@Mnuconst@_SExpectingBegin", + "@Mnuconst@_SExpectingCaption", + "@Mnuconst@_SExpectingPopup", + "@Mnuconst@_SIdentifierExpected", + "@Mnuconst@_SInFile", + "@Mnuconst@_SInvalidMenu", + "@Mnuconst@_SInvalidNumber", + "@Mnuconst@_SInvalidString", + "@Mnuconst@_SLineTooLong", + "@Mnuconst@_SMenuDesigner", + "@Mnuconst@_SMenuItemCaption", + "@Mnuconst@_SMenuPasteError", + "@Mnuconst@_SMenuTemplateExists", + "@Mnuconst@_SNumberExpected", + "@Mnuconst@_SParseError", + "@Mnuconst@_SPictureMenu", + "@Mnuconst@_SPictureNone", + "@Mnuconst@_SStringExpected", + "@Mnuconst@_SSymbolExpected", + "@Mnuconst@_SUnexpectedEOF", + "@Mnuconst@_SUnexpectedEOF1", + "@Mnuconst@_SUnexpectedFloat", + "@Mnuconst@_SUnexpectedInteger", + "@Mnuconst@_SUnexpectedString", + "@Mnuconst@_SUnknownToken", + "@Mnuconst@_SWindowCaption", + "@Mnuconst@initialization$qqrv", + "@Mnufile@Finalization$qqrv", + "@Mnufile@LoadMenuFromResource$qqrx17System@AnsiStringp18Classes@TComponent", + "@Mnufile@initialization$qqrv", + "@Mnuselct@Finalization$qqrv", + "@Mnuselct@TMenuSelectDialog@", + "@Mnuselct@TMenuSelectDialog@GetData$qqrrp18Classes@TComponent", + "@Mnuselct@TMenuSelectDialog@HelpButtonClick$qqrp14System@TObject", + "@Mnuselct@TMenuSelectDialog@SelectionBoxDblClick$qqrp14System@TObject", + "@Mnuselct@TMenuSelectDialog@SetData$qqrp18Classes@TComponent", + "@Mnuselct@initialization$qqrv", + "@Mtdedlg@Finalization$qqrv", + "@Mtdedlg@TMtDeDlg@", + "@Mtdedlg@TMtDeDlg@HelpButtonClick$qqrp14System@TObject", + "@Mtdedlg@TMtDeDlg@OkButtonClick$qqrp14System@TObject", + "@Mtdedlg@TMtDeDlg@SetData$qqrp29Menutmpl@TMenuTemplateManager", + "@Mtdedlg@initialization$qqrv", + "@Mtindlg@Finalization$qqrv", + "@Mtindlg@TMtInDlg@", + "@Mtindlg@TMtInDlg@GetData$qqrrp22Menutmpl@TMenuTemplate", + "@Mtindlg@TMtInDlg@HelpButtonClick$qqrp14System@TObject", + "@Mtindlg@TMtInDlg@OkButtonClick$qqrp14System@TObject", + "@Mtindlg@TMtInDlg@SetData$qqrp29Menutmpl@TMenuTemplateManager", + "@Mtindlg@initialization$qqrv", + "@Mtmisc@Finalization$qqrv", + "@Mtmisc@MenuClone$qqrp15Menus@TMenuItemp18Classes@TComponent", + "@Mtmisc@MenuTemplateDelete$qqrp18Classes@TComponentp29Menutmpl@TMenuTemplateManager", + "@Mtmisc@MenuTemplateInsert$qqrp18Classes@TComponentp29Menutmpl@TMenuTemplateManager", + "@Mtmisc@MenuTemplateSave$qqrp18Classes@TComponentp29Menutmpl@TMenuTemplateManagerp15Menus@TMenuItem", + "@Mtmisc@initialization$qqrv", + "@Mtsvdlg@Finalization$qqrv", + "@Mtsvdlg@TMtSvDlg@", + "@Mtsvdlg@TMtSvDlg@GetData$qqrr17System@AnsiString", + "@Mtsvdlg@TMtSvDlg@HelpButtonClick$qqrp14System@TObject", + "@Mtsvdlg@TMtSvDlg@SelectionBoxClick$qqrp14System@TObject", + "@Mtsvdlg@TMtSvDlg@SetData$qqrp29Menutmpl@TMenuTemplateManager17System@AnsiString", + "@Mtsvdlg@initialization$qqrv", + "@Ocxreg@Finalization$qqrv", + "@Ocxreg@Register$qqrv", + "@Ocxreg@RegisterOleObjectEditor$qqrrx5_GUIDx17System@AnsiStringp17System@TMetaClass", + "@Ocxreg@TOleControlEditor@", + "@Ocxreg@TOleControlEditor@$bctr$qqrp18Classes@TComponent48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Ocxreg@TOleControlEditor@$bdtr$qqrv", + "@Ocxreg@TOleControlEditor@DoVerb$qqri", + "@Ocxreg@TOleControlEditor@Edit$qqrv", + "@Ocxreg@TOleControlEditor@ExecuteVerb$qqri", + "@Ocxreg@TOleControlEditor@GetVerb$qqri", + "@Ocxreg@TOleControlEditor@GetVerbCount$qqrv", + "@Ocxreg@TOleCustomProperty@", + "@Ocxreg@TOleCustomProperty@GetAttributes$qqrv", + "@Ocxreg@TOleCustomProperty@GetValue$qqrv", + "@Ocxreg@TOleCustomProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Ocxreg@TOleCustomProperty@SetValue$qqrx17System@AnsiString", + "@Ocxreg@TOleEnumProperty@", + "@Ocxreg@TOleEnumProperty@GetAttributes$qqrv", + "@Ocxreg@TOleEnumProperty@GetValue$qqrv", + "@Ocxreg@TOleEnumProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Ocxreg@TOleEnumProperty@Initialize$qqrv", + "@Ocxreg@TOleEnumProperty@SetValue$qqrx17System@AnsiString", + "@Ocxreg@TOleFontEditor@", + "@Ocxreg@TOleFontEditor@Edit$qqrrx14System@Variant", + "@Ocxreg@TOleObjectEditor@", + "@Ocxreg@TOleObjectEditor@$bctr$qqrp29Designeditors@TPropertyEditor", + "@Ocxreg@TOleObjectEditor@Edit$qqrrx14System@Variant", + "@Ocxreg@TOleObjectProperty@", + "@Ocxreg@TOleObjectProperty@Edit$qqrv", + "@Ocxreg@TOleObjectProperty@GetAttributes$qqrv", + "@Ocxreg@TOleObjectProperty@GetValue$qqrv", + "@Ocxreg@TOlePropPageProperty@", + "@Ocxreg@TOlePropPageProperty@Edit$qqrv", + "@Ocxreg@TOlePropPageProperty@GetAttributes$qqrv", + "@Ocxreg@initialization$qqrv", + "@Picedit@Finalization$qqrv", + "@Picedit@TGraphicEditor@", + "@Picedit@TGraphicEditor@EditProperty$qqrx48System@%DelphiInterface$t20Designintf@IProperty%ro", + "@Picedit@TGraphicProperty@", + "@Picedit@TGraphicProperty@Edit$qqrv", + "@Picedit@TGraphicProperty@GetAttributes$qqrv", + "@Picedit@TGraphicProperty@GetValue$qqrv", + "@Picedit@TGraphicProperty@SetValue$qqrx17System@AnsiString", + "@Picedit@TPictureEditor@", + "@Picedit@TPictureEditor@$bctr$qqrp18Classes@TComponent", + "@Picedit@TPictureEditor@$bdtr$qqrv", + "@Picedit@TPictureEditor@Execute$qqrv", + "@Picedit@TPictureEditor@SetPicture$qqrp17Graphics@TPicture", + "@Picedit@TPictureEditorDlg@", + "@Picedit@TPictureEditorDlg@ClearClick$qqrp14System@TObject", + "@Picedit@TPictureEditorDlg@FormCreate$qqrp14System@TObject", + "@Picedit@TPictureEditorDlg@FormDestroy$qqrp14System@TObject", + "@Picedit@TPictureEditorDlg@HelpButtonClick$qqrp14System@TObject", + "@Picedit@TPictureEditorDlg@ImagePaintBoxPaint$qqrp14System@TObject", + "@Picedit@TPictureEditorDlg@LoadClick$qqrp14System@TObject", + "@Picedit@TPictureEditorDlg@SaveClick$qqrp14System@TObject", + "@Picedit@TPictureProperty@", + "@Picedit@TPictureProperty@Edit$qqrv", + "@Picedit@TPictureProperty@GetAttributes$qqrv", + "@Picedit@TPictureProperty@GetValue$qqrv", + "@Picedit@TPictureProperty@SetValue$qqrx17System@AnsiString", + "@Picedit@initialization$qqrv", + "@Propertycategories@Finalization$qqrv", + "@Propertycategories@IsPropertyInCategory$qqrx17System@AnsiStringp17System@TMetaClasst1", + "@Propertycategories@IsPropertyInCategory$qqrx17System@AnsiStringt1t1", + "@Propertycategories@PropertyCategoryList$qqrv", + "@Propertycategories@TPropertyCategory@", + "@Propertycategories@TPropertyCategory@$bctr$qqrx17System@AnsiString", + "@Propertycategories@TPropertyCategory@$bdtr$qqrv", + "@Propertycategories@TPropertyCategory@Add$qqrp34Propertycategories@TPropertyFilter", + "@Propertycategories@TPropertyCategory@ClearMatches$qqrv", + "@Propertycategories@TPropertyCategory@Count$qqrv", + "@Propertycategories@TPropertyCategory@FreeEditorGroup$qqri", + "@Propertycategories@TPropertyCategory@GetFilter$qqri", + "@Propertycategories@TPropertyCategory@Match$qqrx17System@AnsiStringp17System@TMetaClassp17Typinfo@TTypeInfo", + "@Propertycategories@TPropertyCategoryList@", + "@Propertycategories@TPropertyCategoryList@$bctr$qqrv", + "@Propertycategories@TPropertyCategoryList@$bdtr$qqrv", + "@Propertycategories@TPropertyCategoryList@ChangeVisibility$qqr47Propertycategories@TPropertyCategoryVisibleMode", + "@Propertycategories@TPropertyCategoryList@ChangeVisibility$qqr47Propertycategories@TPropertyCategoryVisibleModepx17System@AnsiStringxi", + "@Propertycategories@TPropertyCategoryList@ClearMatches$qqrv", + "@Propertycategories@TPropertyCategoryList@Count$qqrv", + "@Propertycategories@TPropertyCategoryList@FindCategory$qqrx17System@AnsiString", + "@Propertycategories@TPropertyCategoryList@FreeEditorGroup$qqri", + "@Propertycategories@TPropertyCategoryList@GetCategory$qqri", + "@Propertycategories@TPropertyCategoryList@GetHiddenCategories$qqrv", + "@Propertycategories@TPropertyCategoryList@IndexOf$qqrx17System@AnsiString", + "@Propertycategories@TPropertyCategoryList@Match$qqrx17System@AnsiStringp17System@TMetaClassp17Typinfo@TTypeInfo", + "@Propertycategories@TPropertyCategoryList@MiscCategory$qqrv", + "@Propertycategories@TPropertyCategoryList@SetHiddenCategories$qqrx17System@AnsiString", + "@Propertycategories@TPropertyFilter@", + "@Propertycategories@TPropertyFilter@$bctr$qqrx17System@AnsiStringp17System@TMetaClassp17Typinfo@TTypeInfo", + "@Propertycategories@TPropertyFilter@$bdtr$qqrv", + "@Propertycategories@TPropertyFilter@Match$qqrx17System@AnsiStringp17System@TMetaClassp17Typinfo@TTypeInfo", + "@Propertycategories@initialization$qqrv", + "@Proxies@ChangeToProxyClass$qqrp14System@TObjectp17System@TMetaClass", + "@Proxies@CreateSubClass$qqrp14System@TObjectx17System@AnsiStringp17System@TMetaClass", + "@Proxies@CreateSubClass$qqrp14System@TObjectx17System@AnsiStringt2p17System@TMetaClass", + "@Proxies@CreateSubClassMethod$qqrp14System@TObjectx17System@AnsiString", + "@Proxies@DestroySubClass$qqrp14System@TObject", + "@Proxies@DestroySubClassMethod$qqrp14System@TObjectpv", + "@Proxies@Finalization$qqrv", + "@Proxies@IsProxyClass$qqrp17System@TMetaClass", + "@Proxies@RenameSubClass$qqrp14System@TObjectx17System@AnsiStringt2", + "@Proxies@RenameSubClassMethod$qqrp14System@TObjectpvx17System@AnsiString", + "@Proxies@initialization$qqrv", + "@Stfilsys@Finalization$qqrv", + "@Stfilsys@Register$qqrv", + "@Stfilsys@StringsFileSystem", + "@Stfilsys@StringsFileSystemCounter", + "@Stfilsys@StringsFileSystemIndex", + "@Stfilsys@TActiveTStringsProperty@", + "@Stfilsys@TActiveTStringsProperty@$bctr$qqrp18Classes@TComponentt1x17System@AnsiString", + "@Stfilsys@TActiveTStringsProperty@$bdtr$qqrv", + "@Stfilsys@TActiveTStringsProperty@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Stfilsys@TActiveTStringsProperty@RenameComponent$qqrx17System@AnsiStringt1", + "@Stfilsys@TActiveTStringsProperty@SetComponent$qqrp18Classes@TComponent", + "@Stfilsys@TActiveTStringsProperty@SetModule$qqrx47System@%DelphiInterface$t19Toolsapi@IOTAModule%", + "@Stfilsys@TOTAFormNotifier@", + "@Stfilsys@TOTAFormNotifier@ComponentRenamed$qqrpvx17System@AnsiStringt2", + "@Stfilsys@TOTAFormNotifier@FormActivated$qqrv", + "@Stfilsys@TOTAFormNotifier@FormSaving$qqrv", + "@Stfilsys@TOTAModuleNotifier@", + "@Stfilsys@TOTAModuleNotifier@CheckOverwrite$qqrv", + "@Stfilsys@TOTAModuleNotifier@Modified$qqrv", + "@Stfilsys@TOTAModuleNotifier@ModuleRenamed$qqrx17System@AnsiString", + "@Stfilsys@TOTANotifier@", + "@Stfilsys@TOTANotifier@$bctr$qqrp32Stfilsys@TActiveTStringsProperty", + "@Stfilsys@TOTANotifier@Destroyed$qqrv", + "@Stfilsys@TStringsFileSystem@", + "@Stfilsys@TStringsFileSystem@$bctr$qqrv", + "@Stfilsys@TStringsFileSystem@$bdtr$qqrv", + "@Stfilsys@TStringsFileSystem@DeleteFile$qqrx17System@AnsiString", + "@Stfilsys@TStringsFileSystem@FileAge$qqrx17System@AnsiString", + "@Stfilsys@TStringsFileSystem@FileExists$qqrx17System@AnsiString", + "@Stfilsys@TStringsFileSystem@GetBackupFileName$qqrx17System@AnsiString", + "@Stfilsys@TStringsFileSystem@GetFileStream$qqrx17System@AnsiStringi", + "@Stfilsys@TStringsFileSystem@GetIDString$qqrv", + "@Stfilsys@TStringsFileSystem@GetTStringsProperty$qqrx17System@AnsiStringp18Classes@TComponentt1", + "@Stfilsys@TStringsFileSystem@GetTempFileName$qqrx17System@AnsiString", + "@Stfilsys@TStringsFileSystem@IsFileBased$qqrv", + "@Stfilsys@TStringsFileSystem@IsReadonly$qqrx17System@AnsiString", + "@Stfilsys@TStringsFileSystem@RenameFile$qqrx17System@AnsiStringt1", + "@Stfilsys@TStringsStream@", + "@Stfilsys@TStringsStream@$bctr$qqrp32Stfilsys@TActiveTStringsPropertyp18Classes@TComponentx17System@AnsiStringi", + "@Stfilsys@TStringsStream@$bdtr$qqrv", + "@Stfilsys@TStringsStream@SetDesignerModified$qqrv", + "@Stfilsys@TStringsStream@Write$qqspvipi", + "@Stfilsys@Unregister$qqrv", + "@Stfilsys@initialization$qqrv", + "@Stredit@Finalization$qqrv", + "@Stredit@TStrEditDlg@", + "@Stredit@TStrEditDlg@CodeWndBtnClick$qqrp14System@TObject", + "@Stredit@TStrEditDlg@FileOpen$qqrp14System@TObject", + "@Stredit@TStrEditDlg@FileSave$qqrp14System@TObject", + "@Stredit@TStrEditDlg@HelpButtonClick$qqrp14System@TObject", + "@Stredit@TStringListProperty@", + "@Stredit@TStringListProperty@Edit$qqrv", + "@Stredit@TStringListProperty@EditDialog$qqrv", + "@Stredit@TStringListProperty@GetAttributes$qqrv", + "@Stredit@TStringListProperty@GetStrings$qqrv", + "@Stredit@TStringListProperty@SetStrings$qqrpx16Classes@TStrings", + "@Stredit@TValueListProperty@", + "@Stredit@TValueListProperty@EditDialog$qqrv", + "@Stredit@initialization$qqrv", + "@Stringsedit@Finalization$qqrv", + "@Stringsedit@TStringsEditDlg@", + "@Stringsedit@TStringsEditDlg@FormCreate$qqrp14System@TObject", + "@Stringsedit@TStringsEditDlg@GetLines$qqrv", + "@Stringsedit@TStringsEditDlg@GetLinesControl$qqrv", + "@Stringsedit@TStringsEditDlg@Memo1KeyDown$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Stringsedit@TStringsEditDlg@SetLines$qqrpx16Classes@TStrings", + "@Stringsedit@TStringsEditDlg@UpdateStatus$qqrp14System@TObject", + "@Stringsedit@initialization$qqrv", + "@Surface@Finalization$qqrv", + "@Surface@TDesignSurface@", + "@Surface@TDesignSurface@$bdtr$qqrv", + "@Surface@TDesignSurface@AddListener$qqrx59System@%DelphiInterface$t31Designer@IDesignSurfaceListener%", + "@Surface@TDesignSurface@AlignToGrid$qqrp14System@TObject", + "@Surface@TDesignSurface@AppAlignDialog$qqrp14System@TObject", + "@Surface@TDesignSurface@AppCreationOrderDialog$qqrp14System@TObject", + "@Surface@TDesignSurface@AppFlipChildrenAll$qqrp14System@TObject", + "@Surface@TDesignSurface@AppFlipChildrenSelected$qqrp14System@TObject", + "@Surface@TDesignSurface@AppSaveTemplateDialog$qqrp14System@TObject", + "@Surface@TDesignSurface@AppScaleDialog$qqrp14System@TObject", + "@Surface@TDesignSurface@AppSizeDialog$qqrp14System@TObject", + "@Surface@TDesignSurface@AppTabOrderDialog$qqrp14System@TObject", + "@Surface@TDesignSurface@AppTextDFM$qqrp14System@TObject", + "@Surface@TDesignSurface@AppViewAsText$qqrp14System@TObject", + "@Surface@TDesignSurface@Close$qqrv", + "@Surface@TDesignSurface@CreateItem$qqrx42System@%DelphiInterface$t14Designer@IItem%rx11Types@TRect", + "@Surface@TDesignSurface@DeleteSelection$qqrv", + "@Surface@TDesignSurface@DestroyItem$qqrx42System@%DelphiInterface$t14Designer@IItem%", + "@Surface@TDesignSurface@GetDesignRoot$qqrv", + "@Surface@TDesignSurface@GetGrabHandles$qqrv", + "@Surface@TDesignSurface@GetIsControl$qqrv", + "@Surface@TDesignSurface@GetItems$qqri", + "@Surface@TDesignSurface@GetItemsCount$qqrv", + "@Surface@TDesignSurface@GetRoot$qqrv", + "@Surface@TDesignSurface@GridSnapDisabled$qqrv", + "@Surface@TDesignSurface@InstanceInserted$qqrp19Classes@TPersistent", + "@Surface@TDesignSurface@InstanceRemoved$qqrp19Classes@TPersistent", + "@Surface@TDesignSurface@Modified$qqrv", + "@Surface@TDesignSurface@RemoveListener$qqrx59System@%DelphiInterface$t31Designer@IDesignSurfaceListener%", + "@Surface@TDesignSurface@RevertComponent$qqrp14System@TObject", + "@Surface@TDesignSurface@SelectionVerb$qqrp14System@TObject", + "@Surface@TDesignSurface@SetInitializing$qqro", + "@Surface@TDesignSurface@SetIsControl$qqro", + "@Surface@TDesignSurface@UniqueName$qqrx17System@AnsiString", + "@Surface@TDesignSurface@ValidateModification$qqrv", + "@Surface@initialization$qqrv", + "@Tabdock@Finalization$qqrv", + "@Tabdock@TTabDockHostForm@", + "@Tabdock@TTabDockHostForm@$bctr$qqrp18Classes@TComponent", + "@Tabdock@TTabDockHostForm@CMDialogChar$qqrr17Messages@TMessage", + "@Tabdock@TTabDockHostForm@FormCreate$qqrp14System@TObject", + "@Tabdock@TTabDockHostForm@GetDialogCharParentClass$qqrv", + "@Tabdock@TTabDockHostForm@GetDockSiteControl$qqrv", + "@Tabdock@TTabDockHostForm@LoadWindowState$qqrp20Inifiles@TMemIniFile", + "@Tabdock@TTabDockHostForm@ManualDockClient$qqrp17Controls@TControlt115Controls@TAligno", + "@Tabdock@TTabDockHostForm@SaveWindowState$qqrp20Inifiles@TMemIniFileo", + "@Tabdock@TTabDockHostForm@Top1Click$qqrp14System@TObject", + "@Tabdock@initialization$qqrv", + "@Toolform@Finalization$qqrv", + "@Toolform@TToolbarForm@", + "@Toolform@TToolbarForm@FormCreate$qqrp14System@TObject", + "@Toolform@TToolbarForm@GetLargeButtons$qqrv", + "@Toolform@TToolbarForm@LoadWindowState$qqrp20Inifiles@TMemIniFile", + "@Toolform@TToolbarForm@ResizeButtons$qqro", + "@Toolform@TToolbarForm@SaveWindowState$qqrp20Inifiles@TMemIniFileo", + "@Toolform@TToolbarForm@SetLargeButtons$qqro", + "@Toolform@TToolbarForm@Splitter1CanResize$qqrp14System@TObjectriro", + "@Toolform@TToolbarForm@Splitter1Moved$qqrp14System@TObject", + "@Toolform@TToolbarForm@TextLabelsCmdExecute$qqrp14System@TObject", + "@Toolform@TToolbarForm@TextLabelsCmdUpdate$qqrp14System@TObject", + "@Toolform@TToolbarForm@ToolbarCmdExecute$qqrp14System@TObject", + "@Toolform@TToolbarForm@ToolbarCmdUpdate$qqrp14System@TObject", + "@Toolform@initialization$qqrv", + "@Toolintf@Finalization$qqrv", + "@Toolintf@TIAddInNotifier@", + "@Toolintf@TIMainMenuIntf@", + "@Toolintf@TIMenuItemIntf@", + "@Toolintf@TIToolServices@", + "@Toolintf@initialization$qqrv", + "@Toolsapi@BorlandIDEServices", + "@Toolsapi@Finalization$qqrv", + "@Toolsapi@LibraryWizardProc", + "@Toolsapi@RegisterPackageWizard$qqrx47System@%DelphiInterface$t19Toolsapi@IOTAWizard%", + "@Toolsapi@TNotifierObject@", + "@Toolsapi@TNotifierObject@AfterSave$qqrv", + "@Toolsapi@TNotifierObject@BeforeSave$qqrv", + "@Toolsapi@TNotifierObject@Destroyed$qqrv", + "@Toolsapi@TNotifierObject@Modified$qqrv", + "@Toolsapi@initialization$qqrv", + "@Toolutils@AddToList$qqrx50System@%DelphiInterface$t22Classes@IInterfaceList%45System@%DelphiInterface$t17System@IInterface%", + "@Toolutils@Finalization$qqrv", + "@Toolutils@ForEach$qqrx50System@%DelphiInterface$t22Classes@IInterfaceList%ynpqqr45System@%DelphiInterface$t17System@IInterface%t1$vx45System@%DelphiInterface$t17System@IInterface%", + "@Toolutils@TOTAClass@", + "@Toolutils@TOTAClass@$bctr$qqrv", + "@Toolutils@TOTAClass@BeforeDestruction$qqrv", + "@Toolutils@TOTAClass@GetInstance$qqrv", + "@Toolutils@TOTAClass@NotifyDestroyed$qqr45System@%DelphiInterface$t17System@IInterface%t1", + "@Toolutils@initialization$qqrv", + "@Toolwnds@Finalization$qqrv", + "@Toolwnds@TToolbarDesignWindow@", + "@Toolwnds@TToolbarDesignWindow@FormCreate$qqrp14System@TObject", + "@Toolwnds@TToolbarDesignWindow@GetLargeButtons$qqrv", + "@Toolwnds@TToolbarDesignWindow@ResizeButtons$qqro", + "@Toolwnds@TToolbarDesignWindow@SetLargeButtons$qqro", + "@Toolwnds@TToolbarDesignWindow@Splitter1CanResize$qqrp14System@TObjectriro", + "@Toolwnds@TToolbarDesignWindow@Splitter1Moved$qqrp14System@TObject", + "@Toolwnds@TToolbarDesignWindow@TextLabelsCmdExecute$qqrp14System@TObject", + "@Toolwnds@TToolbarDesignWindow@TextLabelsCmdUpdate$qqrp14System@TObject", + "@Toolwnds@TToolbarDesignWindow@ToolbarCmdExecute$qqrp14System@TObject", + "@Toolwnds@TToolbarDesignWindow@ToolbarCmdUpdate$qqrp14System@TObject", + "@Toolwnds@initialization$qqrv", + "@Toplevels@ActivateTopLevelComponent$qqrp18Classes@TComponent", + "@Toplevels@CaptionFromComponent$qqrp18Classes@TComponent", + "@Toplevels@ComponentFromWindow$qqrui", + "@Toplevels@Finalization$qqrv", + "@Toplevels@IsComponentDesigner$qqrp18Classes@TComponent", + "@Toplevels@RegisterHandler$qqrx55System@%DelphiInterface$t27Toplevels@ITopLevelsHandler%", + "@Toplevels@TopLevelComponent$qqrp18Classes@TComponent", + "@Toplevels@TopLevelComponents$qqrv", + "@Toplevels@UnregisterHandler$qqrx55System@%DelphiInterface$t27Toplevels@ITopLevelsHandler%", + "@Toplevels@initialization$qqrv", + "@Treeintf@CUIControlImageIndex", + "@Treeintf@CopySprigGlyphFunc", + "@Treeintf@Finalization$qqrv", + "@Treeintf@FindBestRootSprigClass$qqrp17System@TMetaClass", + "@Treeintf@FindBestRootSprigClass$qqrp17System@TMetaClasst1", + "@Treeintf@FindBestSprigClass$qqrp17System@TMetaClass", + "@Treeintf@FindBestSprigClass$qqrp17System@TMetaClasst1", + "@Treeintf@GShowClassNameInTreeView", + "@Treeintf@RegisterRootSprigType$qqrp17System@TMetaClasst1", + "@Treeintf@RegisterRootSprigType$qqrx29System@%DynamicArray$t5_GUID%p17System@TMetaClass", + "@Treeintf@RegisterSprigType$qqrp17System@TMetaClasst1", + "@Treeintf@RegisterSprigType$qqrx29System@%DynamicArray$t5_GUID%p17System@TMetaClass", + "@Treeintf@RootSprigList$qqrv", + "@Treeintf@TAbstractCollectionSprig@", + "@Treeintf@TAbstractCollectionSprig@$bctr$qqrp19Classes@TPersistent", + "@Treeintf@TAbstractSprig@", + "@Treeintf@TAbstractSprig@Ghosted$qqrv", + "@Treeintf@TCollectionItemSprig@", + "@Treeintf@TCollectionItemSprig@AddType$qqri", + "@Treeintf@TCollectionItemSprig@AddTypeCount$qqrv", + "@Treeintf@TCollectionItemSprig@DragDropTo$qqrp15Treeintf@TSprig", + "@Treeintf@TCollectionItemSprig@DragOverTo$qqrp15Treeintf@TSprig", + "@Treeintf@TCollectionItemSprig@FigureParent$qqrv", + "@Treeintf@TCollectionItemSprig@GetAddType$qqri", + "@Treeintf@TCollectionItemSprig@Ghosted$qqrv", + "@Treeintf@TCollectionItemSprig@IncludeIndexInCaption$qqrv", + "@Treeintf@TCollectionItemSprig@ItemIndex$qqrv", + "@Treeintf@TCollectionItemSprig@Name$qqrv", + "@Treeintf@TCollectionItemSprig@Owner$qqrv", + "@Treeintf@TCollectionSprig@", + "@Treeintf@TCollectionSprig@$bctr$qqrp19Classes@TPersistent", + "@Treeintf@TCollectionSprig@AddType$qqri", + "@Treeintf@TCollectionSprig@AddTypeCount$qqrv", + "@Treeintf@TCollectionSprig@Caption$qqrv", + "@Treeintf@TCollectionSprig@CustomDelete$qqrv", + "@Treeintf@TCollectionSprig@DeleteStyle$qqrv", + "@Treeintf@TCollectionSprig@FigureChildren$qqrv", + "@Treeintf@TCollectionSprig@FigureParent$qqrv", + "@Treeintf@TCollectionSprig@GetAddType$qqri", + "@Treeintf@TCollectionSprig@Name$qqrv", + "@Treeintf@TCollectionSprig@Owner$qqrv", + "@Treeintf@TCollectionSprig@SortByIndex$qqrv", + "@Treeintf@TComponentSprig@", + "@Treeintf@TComponentSprig@$bctr$qqrp19Classes@TPersistent", + "@Treeintf@TComponentSprig@$bctr$qqrp19Classes@TPersistentp15Treeintf@TSprig", + "@Treeintf@TComponentSprig@Owner$qqrv", + "@Treeintf@TComponentSprig@UniqueName$qqrv", + "@Treeintf@TDragSprigs@", + "@Treeintf@TDragSprigs@$bctr$qqrp17Controls@TControl", + "@Treeintf@TDragSprigs@$bdtr$qqrv", + "@Treeintf@TDragSprigs@Add$qqrp15Treeintf@TSprig", + "@Treeintf@TDragSprigs@Count$qqrv", + "@Treeintf@TDragSprigs@GetSprig$qqri", + "@Treeintf@TInformant@", + "@Treeintf@TInformant@$bdtr$qqrv", + "@Treeintf@TInformant@BeforeDestruction$qqrv", + "@Treeintf@TInformant@Changed$qqrp19Treeintf@TInformant", + "@Treeintf@TInformant@DisableNotify$qqrv", + "@Treeintf@TInformant@EnableNotify$qqrv", + "@Treeintf@TInformant@Notification$qqrv", + "@Treeintf@TInformant@Notify$qqrp19Treeintf@TInformant", + "@Treeintf@TInformant@Unnotify$qqrp19Treeintf@TInformant", + "@Treeintf@TPersistentSprig@", + "@Treeintf@TPropertySprig@", + "@Treeintf@TPropertySprig@DeleteStyle$qqrv", + "@Treeintf@TPropertySprig@Ghosted$qqrv", + "@Treeintf@TRootSprig@", + "@Treeintf@TRootSprig@$bctr$qqrp19Classes@TPersistent", + "@Treeintf@TRootSprig@$bdtr$qqrv", + "@Treeintf@TRootSprig@AcceptsClass$qqrp17System@TMetaClass", + "@Treeintf@TRootSprig@AddItem$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@AddType$qqri", + "@Treeintf@TRootSprig@AddTypeCount$qqrv", + "@Treeintf@TRootSprig@BeginUpdate$qqrv", + "@Treeintf@TRootSprig@CanAdd$qqrv", + "@Treeintf@TRootSprig@CanMove$qqro", + "@Treeintf@TRootSprig@DeleteStyle$qqrv", + "@Treeintf@TRootSprig@DepopulateTreeView$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@DesigntimeChange$qqrv", + "@Treeintf@TRootSprig@EditAction$qqr22Designintf@TEditAction", + "@Treeintf@TRootSprig@EndUpdate$qqrv", + "@Treeintf@TRootSprig@EnsureUpdate$qqrv", + "@Treeintf@TRootSprig@FigureParent$qqrv", + "@Treeintf@TRootSprig@FindItem$qqrp19Classes@TPersistento", + "@Treeintf@TRootSprig@FindItemByName$qqrx17System@AnsiStringp17System@TMetaClasso", + "@Treeintf@TRootSprig@FindItemByPath$qqrx17System@AnsiStringo", + "@Treeintf@TRootSprig@GetAddType$qqri", + "@Treeintf@TRootSprig@GetDesigner$qqrr48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Treeintf@TRootSprig@GetEditState$qqrv", + "@Treeintf@TRootSprig@ItemDeleted$qqrp19Classes@TPersistent", + "@Treeintf@TRootSprig@ItemInserted$qqrv", + "@Treeintf@TRootSprig@ItemsModified$qqro", + "@Treeintf@TRootSprig@Move$qqro", + "@Treeintf@TRootSprig@PaletteOver$qqrp17System@TMetaClasst1", + "@Treeintf@TRootSprig@PostRefreshTreeView$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@PreRefreshTreeView$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@RefreshTreeView$qqrv", + "@Treeintf@TRootSprig@RemoveItem$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@Repopulate$qqrv", + "@Treeintf@TRootSprig@RestoreExpandState$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@RuntimeChange$qqrv", + "@Treeintf@TRootSprig@SelectItems$qqrppx19Classes@TPersistentxio", + "@Treeintf@TRootSprig@SelectedSprig$qqrrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@SelectionSurvey$qqrr26Treeintf@TSprigDeleteStylero", + "@Treeintf@TRootSprig@SetSprigDesigner$qqrx51System@%DelphiInterface$t23Treeintf@ISprigDesigner%", + "@Treeintf@TRootSprig@StoreExpandState$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprig@StoreTreeState$qqrv", + "@Treeintf@TRootSprig@TreeView$qqrv", + "@Treeintf@TRootSprig@ValidateParent$qqrp15Treeintf@TSprig", + "@Treeintf@TRootSprigList@", + "@Treeintf@TRootSprigList@$bctr$qqrv", + "@Treeintf@TRootSprigList@$bdtr$qqrv", + "@Treeintf@TRootSprigList@DesignerClosed$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Treeintf@TRootSprigList@DesignerOpened$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Treeintf@TRootSprigList@FindRoot$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%rp19Treeintf@TRootSprig", + "@Treeintf@TRootSprigList@ItemDeleted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Treeintf@TRootSprigList@ItemInserted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Treeintf@TRootSprigList@ItemsModified$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Treeintf@TSprig@", + "@Treeintf@TSprig@$bctr$qqrp19Classes@TPersistent", + "@Treeintf@TSprig@$bdtr$qqrv", + "@Treeintf@TSprig@Add$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@AddType$qqri", + "@Treeintf@TSprig@AddTypeCount$qqrv", + "@Treeintf@TSprig@AnyProblems$qqrv", + "@Treeintf@TSprig@BeginUpdate$qqrv", + "@Treeintf@TSprig@CanAdd$qqrv", + "@Treeintf@TSprig@CanMove$qqro", + "@Treeintf@TSprig@Caption$qqrv", + "@Treeintf@TSprig@CaptionFor$qqrx17System@AnsiStringt1t1", + "@Treeintf@TSprig@ClearTreeNode$qqroo", + "@Treeintf@TSprig@ClearTreeNode$qqrv", + "@Treeintf@TSprig@ClearUnneededSprigs$qqrv", + "@Treeintf@TSprig@Construct$qqrp17System@TMetaClass", + "@Treeintf@TSprig@CopyGlyph$qqrp16Graphics@TBitmap", + "@Treeintf@TSprig@Count$qqrv", + "@Treeintf@TSprig@CustomDelete$qqrv", + "@Treeintf@TSprig@DeleteStyle$qqrv", + "@Treeintf@TSprig@DesigntimeChange$qqrv", + "@Treeintf@TSprig@DragClass$qqrv", + "@Treeintf@TSprig@DragDrop$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@DragDropTo$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@DragOver$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@DragOverTo$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@EndUpdate$qqrv", + "@Treeintf@TSprig@EnsureUpdate$qqrv", + "@Treeintf@TSprig@FigureChildren$qqrv", + "@Treeintf@TSprig@FigureParent$qqrv", + "@Treeintf@TSprig@Find$qqrp19Classes@TPersistento", + "@Treeintf@TSprig@Find$qqrx17System@AnsiStringo", + "@Treeintf@TSprig@Find$qqrx17System@AnsiStringp17System@TMetaClasso", + "@Treeintf@TSprig@FindItem$qqrp19Classes@TPersistento", + "@Treeintf@TSprig@FindItemByName$qqrx17System@AnsiStringp17System@TMetaClasso", + "@Treeintf@TSprig@FindItemByPath$qqrx17System@AnsiStringo", + "@Treeintf@TSprig@FindPath$qqrx17System@AnsiStringo", + "@Treeintf@TSprig@FocusItem$qqrv", + "@Treeintf@TSprig@ForEach$qqrynpqqrp15Treeintf@TSprig$vt1", + "@Treeintf@TSprig@GetAddType$qqri", + "@Treeintf@TSprig@GetDesigner$qqrr48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Treeintf@TSprig@GetImageIndex$qqrv", + "@Treeintf@TSprig@GetItem$qqri", + "@Treeintf@TSprig@GetStateIndex$qqrv", + "@Treeintf@TSprig@Ghosted$qqrv", + "@Treeintf@TSprig@Hidden$qqrv", + "@Treeintf@TSprig@Hint$qqrv", + "@Treeintf@TSprig@IncludeIndexInCaption$qqrv", + "@Treeintf@TSprig@Index$qqrv", + "@Treeintf@TSprig@IndexOf$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@Invalidate$qqrv", + "@Treeintf@TSprig@ItemClass$qqrv", + "@Treeintf@TSprig@ItemIndex$qqrv", + "@Treeintf@TSprig@Move$qqro", + "@Treeintf@TSprig@Name$qqrv", + "@Treeintf@TSprig@Owner$qqrv", + "@Treeintf@TSprig@PaletteOver$qqrp17System@TMetaClasst1", + "@Treeintf@TSprig@PaletteOverTo$qqrp17System@TMetaClassp15Treeintf@TSprigt1", + "@Treeintf@TSprig@ParentProperty$qqrp17System@TMetaClass", + "@Treeintf@TSprig@Parents$qqrp15Treeintf@TSprig", + "@Treeintf@TSprig@Path$qqrv", + "@Treeintf@TSprig@PrepareMenu$qqrx50System@%DelphiInterface$t22Designmenus@IMenuItems%", + "@Treeintf@TSprig@Reparent$qqrv", + "@Treeintf@TSprig@ReparentChildren$qqrv", + "@Treeintf@TSprig@RuntimeChange$qqrv", + "@Treeintf@TSprig@SeekParent$qqrp19Classes@TPersistento", + "@Treeintf@TSprig@SeekParent$qqrx17System@AnsiStringo", + "@Treeintf@TSprig@SeekParent$qqrx17System@AnsiStringp17System@TMetaClasso", + "@Treeintf@TSprig@SelectItems$qqrppx19Classes@TPersistentxio", + "@Treeintf@TSprig@SetExpanded$qqrxo", + "@Treeintf@TSprig@SetImageIndex$qqrxi", + "@Treeintf@TSprig@ShowRegisteredMenus$qqrv", + "@Treeintf@TSprig@SortByIndex$qqrv", + "@Treeintf@TSprig@SortItems$qqrv", + "@Treeintf@TSprig@Transient$qqrv", + "@Treeintf@TSprig@TreeNodeFor$qqrp24Comctrls@TCustomTreeView", + "@Treeintf@TSprig@UniqueName$qqrv", + "@Treeintf@TSprig@VisualRefresh$qqrv", + "@Treeintf@TSprigIndex@", + "@Treeintf@TSprigIndex@$bctr$qqrv", + "@Treeintf@TSprigIndex@$bdtr$qqrv", + "@Treeintf@TSprigIndex@Add$qqrp15Treeintf@TSprig", + "@Treeintf@TSprigIndex@Find$qqrp19Classes@TPersistent", + "@Treeintf@TSprigIndex@Remove$qqrp15Treeintf@TSprig", + "@Treeintf@TSprigIntfType@", + "@Treeintf@TSprigIntfType@$bctr$qqrx29System@%DynamicArray$t5_GUID%p17System@TMetaClass", + "@Treeintf@TSprigIntfType@Match$qqrp17System@TMetaClass", + "@Treeintf@TSprigTreeNode@", + "@Treeintf@TSprigTreeNode@$bdtr$qqrv", + "@Treeintf@TSprigType@", + "@Treeintf@TSprigType@$bctr$qqrp17System@TMetaClasst1", + "@Treeintf@TSprigType@Score$qqrp17System@TMetaClass", + "@Treeintf@TSprigTypeList@", + "@Treeintf@TSprigTypeList@$bctr$qqrv", + "@Treeintf@TSprigTypeList@$bdtr$qqrv", + "@Treeintf@TSprigTypeList@Add$qqrp17System@TMetaClasst1", + "@Treeintf@TSprigTypeList@Add$qqrx29System@%DynamicArray$t5_GUID%p17System@TMetaClass", + "@Treeintf@TSprigTypeList@ClearCache$qqrv", + "@Treeintf@TSprigTypeList@FreeEditorGroup$qqri", + "@Treeintf@TSprigTypeList@Match$qqrp17System@TMetaClass", + "@Treeintf@TSprigTypeList@MatchCache$qqrp17System@TMetaClass", + "@Treeintf@TSprigTypeList@MatchClass$qqrp17System@TMetaClass", + "@Treeintf@TTransientCollectionSprig@", + "@Treeintf@TTransientCollectionSprig@$bctr$qqrp19Classes@TPersistent", + "@Treeintf@TTransientSprig@", + "@Treeintf@TTransientSprig@Transient$qqrv", + "@Treeintf@initialization$qqrv", + "@Update@Finalization$qqrv", + "@Update@TUpdateFiler@", + "@Update@TUpdateFiler@$bctr$qqrp20Update@TUpdateObjecto", + "@Update@TUpdateFiler@$bdtr$qqrv", + "@Update@TUpdateFiler@DefineBinaryProperty$qqrx17System@AnsiStringynpqqrp15Classes@TStream$vt2o", + "@Update@TUpdateFiler@DefineProperty$qqrx17System@AnsiStringynpqqrp15Classes@TReader$vynpqqrp15Classes@TWriter$vo", + "@Update@TUpdateFiler@Empty$qqrv", + "@Update@TUpdateFiler@Filter$qqrv", + "@Update@TUpdateFiler@FilterProp$qqrx17System@AnsiStringo", + "@Update@TUpdateFiler@FlushBuffer$qqrv", + "@Update@TUpdateFiler@Update$qqrv", + "@Update@TUpdateManager@", + "@Update@TUpdateManager@$bctr$qqrp18Classes@TComponentt149System@%DelphiInterface$t21Update@IUpdateManager%x57System@%DelphiInterface$t29Update@IUpdateManagerCallback%", + "@Update@TUpdateManager@$bdtr$qqrv", + "@Update@TUpdateManager@BeginUpdate$qqrv", + "@Update@TUpdateManager@CanRevert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Update@TUpdateManager@EndUpdate$qqrv", + "@Update@TUpdateManager@Filter$qqrv", + "@Update@TUpdateManager@GetAncestor$qqrv", + "@Update@TUpdateManager@GetComponent$qqrv", + "@Update@TUpdateManager@GetHasDescendents$qqrv", + "@Update@TUpdateManager@GetInstance$qqrv", + "@Update@TUpdateManager@GetIsDescendent$qqrv", + "@Update@TUpdateManager@Modified$qqrv", + "@Update@TUpdateManager@NameExists$qqrx17System@AnsiString", + "@Update@TUpdateManager@Notification$qqrp19Classes@TPersistent18Classes@TOperation", + "@Update@TUpdateManager@RenameComponent$qqrx17System@AnsiStringt1", + "@Update@TUpdateManager@RenameDescendents$qqrx17System@AnsiStringt1", + "@Update@TUpdateManager@Revert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Update@TUpdateManager@SetChildAncestor$qqrp18Classes@TComponent", + "@Update@TUpdateManager@Update$qqrv", + "@Update@TUpdateManager@UpdateChildren$qqrv", + "@Update@TUpdateManager@Updating$qqrp18Classes@TComponent", + "@Update@TUpdateObject@", + "@Update@TUpdateObject@$bctr$qqrp20Update@TUpdateObjectp19Classes@TPersistentt2p17Typinfo@TPropInfooo", + "@Update@TUpdateObject@$bdtr$qqrv", + "@Update@TUpdateObject@AddChild$qqrp18Classes@TComponent", + "@Update@TUpdateObject@CanRevert$qqrp19Classes@TPersistentp17Typinfo@TPropInforo", + "@Update@TUpdateObject@ComponentDelete$qqrp18Classes@TComponent", + "@Update@TUpdateObject@Filter$qqrv", + "@Update@TUpdateObject@FilterOrder$qqrv", + "@Update@TUpdateObject@FindChild$qqrp18Classes@TComponent", + "@Update@TUpdateObject@FindChildProp$qqrp17Typinfo@TPropInfo", + "@Update@TUpdateObject@GetAncestorMethod$qqrp17Typinfo@TPropInfo", + "@Update@TUpdateObject@GetAncestorPointer$qqrpv", + "@Update@TUpdateObject@GetAncestorReference$qqrp17Typinfo@TPropInfo", + "@Update@TUpdateObject@Revert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Update@TUpdateObject@Update$qqrp21Update@TUpdateManager", + "@Update@TUpdateObject@ValidateObjects$qqrv", + "@Update@initialization$qqrv", + "@Valueedit@Finalization$qqrv", + "@Valueedit@TValueEditDlg@", + "@Valueedit@TValueEditDlg@GetLines$qqrv", + "@Valueedit@TValueEditDlg@GetLinesControl$qqrv", + "@Valueedit@TValueEditDlg@SetLines$qqrpx16Classes@TStrings", + "@Valueedit@TValueEditDlg@ValueListEditor1StringsChange$qqrp14System@TObject", + "@Valueedit@initialization$qqrv", + "@Vcleditors@BaseRegistryKey", + "@Vcleditors@CF_COMPONENTS", + "@Vcleditors@CopyStreamToClipboard$qqrp21Classes@TMemoryStream", + "@Vcleditors@CreateAction$qqrp18Classes@TComponentp17System@TMetaClass", + "@Vcleditors@DefaultPropertyDrawName$qqrp29Designeditors@TPropertyEditorp16Graphics@TCanvasrx11Types@TRect", + "@Vcleditors@DefaultPropertyDrawValue$qqrp29Designeditors@TPropertyEditorp16Graphics@TCanvasrx11Types@TRect", + "@Vcleditors@DefaultPropertyListDrawValue$qqrx17System@AnsiStringp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@EditActionFor$qqrp20Stdctrls@TCustomEdit22Designintf@TEditAction", + "@Vcleditors@EnumActions$qqrynpqqrx17System@AnsiStringp17System@TMetaClasspv$vpv", + "@Vcleditors@Finalization$qqrv", + "@Vcleditors@FontNamePropertyDisplayFontNames", + "@Vcleditors@GetClipboardStream$qqrv", + "@Vcleditors@GetDisplayValue$qqrx48System@%DelphiInterface$t20Designintf@IProperty%", + "@Vcleditors@GetEditStateFor$qqrp20Stdctrls@TCustomEdit", + "@Vcleditors@NotifyActionListChange", + "@Vcleditors@RegActions$qqrx17System@AnsiStringpp17System@TMetaClassxip17System@TMetaClass", + "@Vcleditors@SelectionMessageListOf$qqrx59System@%DelphiInterface$t31Designintf@ISelectionEditorList%", + "@Vcleditors@TBrushStyleProperty@", + "@Vcleditors@TBrushStyleProperty@ListDrawValue$qqrx17System@AnsiStringp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TBrushStyleProperty@ListMeasureHeight$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TBrushStyleProperty@ListMeasureWidth$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TBrushStyleProperty@PropDrawName$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TBrushStyleProperty@PropDrawValue$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TCaptionProperty@", + "@Vcleditors@TCaptionProperty@GetAttributes$qqrv", + "@Vcleditors@TColorProperty@", + "@Vcleditors@TColorProperty@Edit$qqrv", + "@Vcleditors@TColorProperty@GetAttributes$qqrv", + "@Vcleditors@TColorProperty@GetValue$qqrv", + "@Vcleditors@TColorProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TColorProperty@ListDrawValue$qqrx17System@AnsiStringp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TColorProperty@ListMeasureHeight$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TColorProperty@ListMeasureWidth$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TColorProperty@PropDrawName$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TColorProperty@PropDrawValue$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TColorProperty@SetValue$qqrx17System@AnsiString", + "@Vcleditors@TCursorProperty@", + "@Vcleditors@TCursorProperty@GetAttributes$qqrv", + "@Vcleditors@TCursorProperty@GetValue$qqrv", + "@Vcleditors@TCursorProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TCursorProperty@ListDrawValue$qqrx17System@AnsiStringp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TCursorProperty@ListMeasureHeight$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TCursorProperty@ListMeasureWidth$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TCursorProperty@SetValue$qqrx17System@AnsiString", + "@Vcleditors@TFontCharsetProperty@", + "@Vcleditors@TFontCharsetProperty@GetAttributes$qqrv", + "@Vcleditors@TFontCharsetProperty@GetValue$qqrv", + "@Vcleditors@TFontCharsetProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TFontCharsetProperty@SetValue$qqrx17System@AnsiString", + "@Vcleditors@TFontNameProperty@", + "@Vcleditors@TFontNameProperty@GetAttributes$qqrv", + "@Vcleditors@TFontNameProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TFontNameProperty@ListDrawValue$qqrx17System@AnsiStringp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TFontNameProperty@ListMeasureHeight$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TFontNameProperty@ListMeasureWidth$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TFontProperty@", + "@Vcleditors@TFontProperty@Edit$qqrv", + "@Vcleditors@TFontProperty@GetAttributes$qqrv", + "@Vcleditors@TImeNameProperty@", + "@Vcleditors@TImeNameProperty@GetAttributes$qqrv", + "@Vcleditors@TImeNameProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TMPFilenameProperty@", + "@Vcleditors@TMPFilenameProperty@Edit$qqrv", + "@Vcleditors@TMPFilenameProperty@GetAttributes$qqrv", + "@Vcleditors@TModalResultProperty@", + "@Vcleditors@TModalResultProperty@GetAttributes$qqrv", + "@Vcleditors@TModalResultProperty@GetValue$qqrv", + "@Vcleditors@TModalResultProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TModalResultProperty@SetValue$qqrx17System@AnsiString", + "@Vcleditors@TPenStyleProperty@", + "@Vcleditors@TPenStyleProperty@ListDrawValue$qqrx17System@AnsiStringp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TPenStyleProperty@ListMeasureHeight$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TPenStyleProperty@ListMeasureWidth$qqrx17System@AnsiStringp16Graphics@TCanvasri", + "@Vcleditors@TPenStyleProperty@PropDrawName$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TPenStyleProperty@PropDrawValue$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Vcleditors@TShortCutProperty@", + "@Vcleditors@TShortCutProperty@GetAttributes$qqrv", + "@Vcleditors@TShortCutProperty@GetValue$qqrv", + "@Vcleditors@TShortCutProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Vcleditors@TShortCutProperty@SetValue$qqrx17System@AnsiString", + "@Vcleditors@TTabOrderProperty@", + "@Vcleditors@TTabOrderProperty@GetAttributes$qqrv", + "@Vcleditors@UnRegActions$qqrpp17System@TMetaClassxi", + "@Vcleditors@initialization$qqrv", + "@Vclmenus@Finalization$qqrv", + "@Vclmenus@IMainMenuFor$qqrp15Menus@TMainMenu", + "@Vclmenus@IMenuItemFor$qqrp15Menus@TMenuItem", + "@Vclmenus@IMenuItemsFor$qqrp15Menus@TMenuItem", + "@Vclmenus@IPopupMenuFor$qqrp16Menus@TPopupMenu", + "@Vclmenus@TMainMenuWrapper@", + "@Vclmenus@TMainMenuWrapper@$bctr$qqrp15Menus@TMainMenu", + "@Vclmenus@TMenuItemWrapper@", + "@Vclmenus@TMenuItemWrapper@GetCaption$qqrv", + "@Vclmenus@TMenuItemWrapper@GetChecked$qqrv", + "@Vclmenus@TMenuItemWrapper@GetEnabled$qqrv", + "@Vclmenus@TMenuItemWrapper@GetGroupIndex$qqrv", + "@Vclmenus@TMenuItemWrapper@GetHelpContext$qqrv", + "@Vclmenus@TMenuItemWrapper@GetHint$qqrv", + "@Vclmenus@TMenuItemWrapper@GetRadioItem$qqrv", + "@Vclmenus@TMenuItemWrapper@GetShortCut$qqrv", + "@Vclmenus@TMenuItemWrapper@GetTag$qqrv", + "@Vclmenus@TMenuItemWrapper@GetVisible$qqrv", + "@Vclmenus@TMenuItemWrapper@HasParent$qqrv", + "@Vclmenus@TMenuItemWrapper@IsLine$qqrv", + "@Vclmenus@TMenuItemWrapper@MenuIndex$qqrv", + "@Vclmenus@TMenuItemWrapper@Name$qqrv", + "@Vclmenus@TMenuItemWrapper@Parent$qqrv", + "@Vclmenus@TMenuItemWrapper@SetCaption$qqrx17System@WideString", + "@Vclmenus@TMenuItemWrapper@SetChecked$qqro", + "@Vclmenus@TMenuItemWrapper@SetEnabled$qqro", + "@Vclmenus@TMenuItemWrapper@SetGroupIndex$qqruc", + "@Vclmenus@TMenuItemWrapper@SetHelpContext$qqri", + "@Vclmenus@TMenuItemWrapper@SetHint$qqrx17System@AnsiString", + "@Vclmenus@TMenuItemWrapper@SetRadioItem$qqro", + "@Vclmenus@TMenuItemWrapper@SetShortCut$qqrus", + "@Vclmenus@TMenuItemWrapper@SetTag$qqri", + "@Vclmenus@TMenuItemWrapper@SetVisible$qqro", + "@Vclmenus@TMenuItemsWrapper@", + "@Vclmenus@TMenuItemsWrapper@$bctr$qqrp15Menus@TMenuItem", + "@Vclmenus@TMenuItemsWrapper@AddItem$qqrp20Classes@TBasicActionx17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@AddItem$qqrx17System@WideStringusooynpqqrp14System@TObject$vix17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@AddLine$qqrx17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@Clear$qqrv", + "@Vclmenus@TMenuItemsWrapper@Count$qqrv", + "@Vclmenus@TMenuItemsWrapper@Find$qqrx17System@WideString", + "@Vclmenus@TMenuItemsWrapper@FindByName$qqrx17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@GetComponent$qqrv", + "@Vclmenus@TMenuItemsWrapper@GetItem$qqri", + "@Vclmenus@TMenuItemsWrapper@InsertItem$qqrip15Menus@TMenuItem", + "@Vclmenus@TMenuItemsWrapper@InsertItem$qqrip20Classes@TBasicActionx17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@InsertItem$qqrix17System@WideStringusooynpqqrp14System@TObject$vix17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@InsertItem$qqrp20Classes@TBasicActionx17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@InsertItem$qqrx17System@WideStringusooynpqqrp14System@TObject$vix17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@InsertLine$qqrix17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@InsertLine$qqrx17System@AnsiString", + "@Vclmenus@TMenuItemsWrapper@SameAs$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Vclmenus@TMenuWrapper@", + "@Vclmenus@TMenuWrapper@$bctr$qqrp11Menus@TMenu", + "@Vclmenus@TMenuWrapper@GetComponent$qqrv", + "@Vclmenus@TMenuWrapper@Items$qqrv", + "@Vclmenus@TPopupMenuWrapper@", + "@Vclmenus@TPopupMenuWrapper@$bctr$qqrp16Menus@TPopupMenu", + "@Vclmenus@TPopupMenuWrapper@Popup$qqrii", + "@Vclmenus@TPopupMenuWrapper@PopupComponent$qqrv", + "@Vclmenus@initialization$qqrv", + "@Vclsprigs@Finalization$qqrv", + "@Vclsprigs@TControlSprig@", + "@Vclsprigs@TControlSprig@$bctr$qqrp19Classes@TPersistent", + "@Vclsprigs@TControlSprig@DragDropTo$qqrp15Treeintf@TSprig", + "@Vclsprigs@TControlSprig@DragOverTo$qqrp15Treeintf@TSprig", + "@Vclsprigs@TControlSprig@PaletteOverTo$qqrp17System@TMetaClassp15Treeintf@TSprigt1", + "@Vclsprigs@TCustomFormRootSprig@", + "@Vclsprigs@TCustomFormRootSprig@$bctr$qqrp19Classes@TPersistent", + "@Vclsprigs@TDataModuleRootSprig@", + "@Vclsprigs@TDataModuleRootSprig@$bctr$qqrp19Classes@TPersistent", + "@Vclsprigs@TDataModuleRootSprig@AcceptsClass$qqrp17System@TMetaClass", + "@Vclsprigs@TDataModuleRootSprig@DragOver$qqrp15Treeintf@TSprig", + "@Vclsprigs@TDataModuleRootSprig@PaletteOver$qqrp17System@TMetaClasst1", + "@Vclsprigs@TFrameSprig@", + "@Vclsprigs@TFrameSprig@$bctr$qqrp19Classes@TPersistent", + "@Vclsprigs@TFrameSprig@FigureChildren$qqrv", + "@Vclsprigs@TWinControlRootSprig@", + "@Vclsprigs@TWinControlRootSprig@$bctr$qqrp19Classes@TPersistent", + "@Vclsprigs@TWinControlRootSprig@DragDrop$qqrp15Treeintf@TSprig", + "@Vclsprigs@TWinControlRootSprig@DragOver$qqrp15Treeintf@TSprig", + "@Vclsprigs@TWinControlRootSprig@PaletteOver$qqrp17System@TMetaClasst1", + "@Vclsprigs@TWinControlSprig@", + "@Vclsprigs@TWinControlSprig@$bctr$qqrp19Classes@TPersistent", + "@Vclsprigs@TWinControlSprig@DragDrop$qqrp15Treeintf@TSprig", + "@Vclsprigs@TWinControlSprig@DragOver$qqrp15Treeintf@TSprig", + "@Vclsprigs@TWinControlSprig@PaletteOver$qqrp17System@TMetaClasst1", + "@Vclsprigs@initialization$qqrv", + "@Vclsurface@Finalization$qqrv", + "@Vclsurface@GetVCLDesignSurface$qqrpx17Forms@TCustomFormp20Controls@TWinControlpx18Classes@TComponentx58System@%DelphiInterface$t30Componentdesigner@ISurfaceHost%x51System@%DelphiInterface$t23Designintf@IEditHandler%48System@%DelphiInterface$t20Designint", + "@Vclsurface@initialization$qqrv", + "@Virtintf@Finalization$qqrv", + "@Virtintf@ReleaseException$qqrv", + "@Virtintf@TInterface@", + "@Virtintf@TInterface@$bctr$qqrv", + "@Virtintf@TInterface@AddRef$qqsv", + "@Virtintf@TInterface@Free$qqrv", + "@Virtintf@TInterface@GetVersion$qqsv", + "@Virtintf@TInterface@Release$qqsv", + "@Virtintf@initialization$qqrv", + "@Wctlform@Finalization$qqrv", + "@Wctlform@TWinControlCustomModule@", + "@Wctlform@TWinControlCustomModule@CreateDesignerForm$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p18Classes@TComponentrp17Forms@TCustomFormrp20Controls@TWinControl", + "@Wctlform@TWinControlForm@", + "@Wctlform@TWinControlForm@$bctr$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Wctlform@TWinControlForm@$bdtr$qqrv", + "@Wctlform@TWinControlForm@AfterConstruction$qqrv", + "@Wctlform@TWinControlForm@DesignerClosed$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Wctlform@TWinControlForm@DesignerOpened$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%o", + "@Wctlform@TWinControlForm@DragEnd$qqrv", + "@Wctlform@TWinControlForm@DragMove$qqrii", + "@Wctlform@TWinControlForm@DragStart$qqriii", + "@Wctlform@TWinControlForm@FormResize$qqrp14System@TObject", + "@Wctlform@TWinControlForm@Initialize$qqrp20Controls@TWinControlo", + "@Wctlform@TWinControlForm@ItemDeleted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Wctlform@TWinControlForm@ItemInserted$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%p19Classes@TPersistent", + "@Wctlform@TWinControlForm@ItemsModified$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%", + "@Wctlform@TWinControlForm@Modified$qqrv", + "@Wctlform@TWinControlForm@SelectionChanged$qqrx48System@%DelphiInterface$t20Designintf@IDesigner%x58System@%DelphiInterface$t30Designintf@IDesignerSelections%", + "@Wctlform@TWinControlForm@SizerMouseDown$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Wctlform@TWinControlForm@SizerMouseMove$qqrp14System@TObject46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Wctlform@TWinControlForm@SizerMouseUp$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Wctlform@TWinControlForm@UpdateSizers$qqrv", + "@Wctlform@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 990562283, + "characteristics": "0xA18E" + }, + "strings_total": 9139, + "domain_strings": [ + "IActivatable|", + "TOTASyntaxHighlighter", + "Update", + "TSyntaxHighlighter", + "TIFormInterface", + "TIFormInterfaceDix", + "TRootActivatedEvent", + "TEvRootActivatedEvent", + "sfSBAdjust", + "sfActivating", + "FormActivate", + "FormDeactivate", + "FormActivate: Skipping", + "FormActivate: ...", + "FormActivate: SpecialActive <> nil", + "@Classes@TBasicActionLink@Update$qqrv", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Classes@ActivateClassGroup$qqrp17System@TMetaClass", + "@Menus@TMenuItem@Delete$qqri", + "@Menus@TMenuItem@Insert$qqrip15Menus@TMenuItem", + "@Actnlist@TContainedAction@Update$qqrv", + "@Contnrs@TObjectList@Insert$qqrip14System@TObject", + "@Forms@TCustomForm@WMActivate$qqrr20Messages@TWMActivate", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@ForegroundTask$qqrv", + "@Controls@THintWindow@ActivateHintData$qqrrx11Types@TRectx17System@AnsiStringpv", + "@Controls@THintWindow@ActivateHint$qqrrx11Types@TRectx17System@AnsiString", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Comctrls@TTreeNode@Delete$qqrv", + "@Comctrls@TCustomTabControl@AdjustClientRect$qqrr11Types@TRect", + "@$xp$23Designintf@IActivatable", + "@$xp$24Editintf@TIFormInterface", + "@$xp$27Editintf@TSyntaxHighlighter", + "@$xp$30Toolsapi@TOTASyntaxHighlighter", + "@$xp$37Componentdesigner@TRootActivatedEvent", + "@$xp$39Componentdesigner@TEvRootActivatedEvent", + "@Basedock@TBaseDockHostForm@WMActivate$qqrr20Messages@TWMActivate", + "@Colnedit@TCollectionEditor@Activated$qqrv", + "@Componentdesigner@EvRootActivatedEvent", + "@Componentdesigner@TComponentDesigner@ModalEditDone$qqrx51System@%DelphiInterface$t23Designintf@IActivatable%", + "@Componentdesigner@TComponentDesigner@RootActivated$qqrx51System@%DelphiInterface$t23Componentdesigner@IRoot%", + "@Componentdesigner@TComponentRoot@ComponentReadAdjust$qqrp18Classes@TComponent", + "@Componentdesigner@TComponentRoot@GetPrivateDirectory$qqrv", + "@Componentdesigner@TComponentRoot@IterateMethods$qqrpv", + "@Componentdesigner@TComponentRoot@ModalEdit$qqrcx51System@%DelphiInterface$t23Designintf@IActivatable%", + "@Componentdesigner@TComponentRoot@Select$qqrp19Classes@TPersistento", + "@Componentdesigner@TEvRootActivatedEvent@", + "@Componentdesigner@TEvRootActivatedEvent@Add$qqrynpqqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%$v", + "@Componentdesigner@TEvRootActivatedEvent@IndexOf$qqrynpqqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%$v", + "@Componentdesigner@TEvRootActivatedEvent@Remove$qqrynpqqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%$v", + "@Componentdesigner@TEvRootActivatedEvent@Send$qqrp14System@TObjectx52System@%DelphiInterface$t24Designintf@ICustomModule%", + "@Componentdesigner@TOTAComponent@Delete$qqrv", + "@Componentdesigner@TOTAComponent@Select$qqro", + "@Componentdesigner@TOTAFormEditor@NotifyActivate$qqrv", + "@Componentdesigner@TOTAFormEditor@NotifyActivated$qqr45System@%DelphiInterface$t17System@IInterface%t1", + "@Designeditors@TPropertyEditor@Activate$qqrv", + "@Designeditors@TPropertyEditor@GetPrivateDirectory$qqrv", + "@Designer@TDesigner@Select$qqrx42System@%DelphiInterface$t14Designer@IItem%o", + "@Designer@TPersistentItem@Delete$qqrv", + "@Designwindows@TDesignWindow@ActivateInspector$qqrc", + "@Designwindows@TDesignWindow@Activated$qqrv", + "@Designwindows@TDesignWindow@WMActivate$qqrr20Messages@TWMActivate", + "@Dockform@TDockableForm@WMMouseActivate$qqrr25Messages@TWMMouseActivate", + "@Editintf@TIFormInterface@", + "@Idedockpanel@TEditorDockPanel@AdjustPosition$qqrv", + "@Mnubuild@TMenuBuilder@AdjustScrollBars$qqrv", + "@Mnubuild@TMenuBuilder@Delete$qqrv", + "@Mnubuild@TMenuBuilder@DoActivate$qqrv", + "@Mnubuild@TMenuBuilder@FormActivate$qqrp14System@TObject", + "@Mnubuild@TMenuBuilder@FormDeactivate$qqrp14System@TObject", + "@Mnubuild@TMenuWin@AdjustAfterParentSize$qqrv", + "@Stfilsys@TOTAFormNotifier@FormActivated$qqrv", + "@Toplevels@ActivateTopLevelComponent$qqrp18Classes@TComponent", + "@Update@Finalization$qqrv", + "@Update@TUpdateFiler@", + "@Update@TUpdateFiler@$bctr$qqrp20Update@TUpdateObjecto", + "@Update@TUpdateFiler@$bdtr$qqrv", + "@Update@TUpdateFiler@DefineBinaryProperty$qqrx17System@AnsiStringynpqqrp15Classes@TStream$vt2o", + "@Update@TUpdateFiler@DefineProperty$qqrx17System@AnsiStringynpqqrp15Classes@TReader$vynpqqrp15Classes@TWriter$vo", + "@Update@TUpdateFiler@Empty$qqrv", + "@Update@TUpdateFiler@Filter$qqrv", + "@Update@TUpdateFiler@FilterProp$qqrx17System@AnsiStringo", + "@Update@TUpdateFiler@FlushBuffer$qqrv", + "@Update@TUpdateFiler@Update$qqrv", + "@Update@TUpdateManager@", + "@Update@TUpdateManager@$bctr$qqrp18Classes@TComponentt149System@%DelphiInterface$t21Update@IUpdateManager%x57System@%DelphiInterface$t29Update@IUpdateManagerCallback%", + "@Update@TUpdateManager@$bdtr$qqrv", + "@Update@TUpdateManager@BeginUpdate$qqrv", + "@Update@TUpdateManager@CanRevert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Update@TUpdateManager@EndUpdate$qqrv", + "@Update@TUpdateManager@Filter$qqrv", + "@Update@TUpdateManager@GetAncestor$qqrv", + "@Update@TUpdateManager@GetComponent$qqrv", + "@Update@TUpdateManager@GetHasDescendents$qqrv", + "@Update@TUpdateManager@GetInstance$qqrv", + "@Update@TUpdateManager@GetIsDescendent$qqrv", + "@Update@TUpdateManager@Modified$qqrv", + "@Update@TUpdateManager@NameExists$qqrx17System@AnsiString", + "@Update@TUpdateManager@Notification$qqrp19Classes@TPersistent18Classes@TOperation", + "@Update@TUpdateManager@RenameComponent$qqrx17System@AnsiStringt1", + "@Update@TUpdateManager@RenameDescendents$qqrx17System@AnsiStringt1", + "@Update@TUpdateManager@Revert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Update@TUpdateManager@SetChildAncestor$qqrp18Classes@TComponent", + "@Update@TUpdateManager@Update$qqrv", + "@Update@TUpdateManager@UpdateChildren$qqrv", + "@Update@TUpdateManager@Updating$qqrp18Classes@TComponent", + "@Update@TUpdateObject@", + "@Update@TUpdateObject@$bctr$qqrp20Update@TUpdateObjectp19Classes@TPersistentt2p17Typinfo@TPropInfooo", + "@Update@TUpdateObject@$bdtr$qqrv", + "@Update@TUpdateObject@AddChild$qqrp18Classes@TComponent", + "@Update@TUpdateObject@CanRevert$qqrp19Classes@TPersistentp17Typinfo@TPropInforo", + "@Update@TUpdateObject@ComponentDelete$qqrp18Classes@TComponent", + "@Update@TUpdateObject@Filter$qqrv", + "@Update@TUpdateObject@FilterOrder$qqrv", + "@Update@TUpdateObject@FindChild$qqrp18Classes@TComponent", + "@Update@TUpdateObject@FindChildProp$qqrp17Typinfo@TPropInfo", + "@Update@TUpdateObject@GetAncestorMethod$qqrp17Typinfo@TPropInfo", + "@Update@TUpdateObject@GetAncestorPointer$qqrpv", + "@Update@TUpdateObject@GetAncestorReference$qqrp17Typinfo@TPropInfo", + "@Update@TUpdateObject@Revert$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Update@TUpdateObject@Update$qqrp21Update@TUpdateManager", + "@Update@TUpdateObject@ValidateObjects$qqrv", + "@Update@initialization$qqrv", + "&Delete", + "Delete Selected", + "&Select All", + "OnActivate", + "OnDeactivate", + "&Insert", + "Insert From &Resource...", + "Insert Menu From Resource", + "Select Menu", + "Delete Templates", + "Insert Template", + "Text XFM-Cannot delete a TPersistent from the designer'NextControl is not configured correctly,Splitter control is not configured correctly#Align property is not set correctly!Needs IDesignEditorView interface", + "Root class not found: \"%s\"1A nested component cannot be inserted into itselfwReverting '%s' deletes all contained components not found in the ancestor and will delete the following: %s. Continue?fComponent class '%s' does not support inheritance and cannot be added to a module that has descendantsLModule \"%s\" references another module and cannot be saved until %s is loadedcModule \"%s\" references other modules and cannot be saved until the following modules are loaded: %s", + "(Not available)[Cannot inherit from form '%s'. Contains a component '%s' that does not support inheritanceXCannot inherit from form '%s'. Contains components '%s' that do not support inheritancedComponent class '%s' does not support inheritance and cannot be added to a form that has descendantsQCannot inherit from form '%s'. It contains a component with a blank name propertywReverting '%s' deletes all contained components not found in the ancestor and will delete the following: %s. Continue?HCannot rename a form to the same class of registered component name (%s)BCannot rename a form to the same name as one of its ancestors (%s)$Invalid selection: '%s' has no owner", + "Select * from", + "Select * from %s", + "Delete", + "Select All", + "all files (*.*)6Cannot delete a persistent reference from the designer", + "Delete selected toolbar?", + "Insert Object...", + "Delete Object", + "Add Images-File format not supported by imagelist editorbBitmap dimensions for %s are greater than imagelist dimensions. Separate into %d separate bitmaps?%Controls cannot be added to a service Create a new Service Application", + "Delete existing columns?", + "&Delete Page", + "TIFormInterface똧x" + ] + }, + "DP_Common.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 373688, + "raw_off": 1024, + "raw_size": 373760 + }, + { + "name": "DATA", + "va": 380928, + "vsize": 4440, + "raw_off": 374784, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 389120, + "vsize": 3173, + "raw_off": 379392, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 393216, + "vsize": 8580, + "raw_off": 379392, + "raw_size": 8704 + }, + { + "name": ".edata", + "va": 405504, + "vsize": 1518, + "raw_off": 388096, + "raw_size": 1536 + }, + { + "name": ".reloc", + "va": 409600, + "vsize": 23976, + "raw_off": 389632, + "raw_size": 24064 + }, + { + "name": ".rsrc", + "va": 434176, + "vsize": 23040, + "raw_off": 413696, + "raw_size": 23040 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "comctl32.dll", + "shell32.dll" + ], + "exports": [ + "ADDBJVAL", + "ADDBSL", + "ADDSPSTR", + "AMTTOHAN", + "BPOS", + "CALC_STR", + "CALC_STR_PART", + "CALC_STR_URC", + "CHANGE_STR", + "CHANGE_STR_LO", + "CHK_TRUE_CLSTR", + "CH_FNTOVAL", + "COPY_FILE", + "COPY_LEFT", + "COPY_RIGHT", + "COUNT_FNC", + "COUNT_LOGICAL", + "COUNT_STR", + "COUNT_STRALL", + "DELBSL", + "DELE_FILE", + "DELE_FILES", + "DIS_FMT", + "DIS_FMT1", + "EXTTOSTR", + "FILEORDIREXISTS", + "FINDOSVERSION", + "FIND_OSID", + "FLOATTOSTR_", + "GETSTR_POS", + "GET_ROUND_CUT", + "GET_SUBNAME", + "GET_TRUEDIR", + "GET_URC_TYP", + "GET_VARI_VAL", + "IFI", + "IFO", + "IIF", + "INC_", + "ISINT", + "ISNUM", + "LEFT_STR", + "LEFT_STR_LO", + "LFNTOALTERNATE", + "LONGPATHTOALTERNATE", + "MFRAC", + "MINT", + "MOVE_FILE", + "MOVE_FILES", + "MPOS", + "MPOS_LO", + "MROUNDUD", + "MROUNDUP", + "MSTRTODBL", + "MSTRTOINT", + "MTRUNC", + "NICEFILENAME", + "NPOS", + "POST_MES", + "REN_FILE", + "REPLICA_STR", + "RIGHT_STR", + "RIGHT_STR_LO", + "SEP_STR", + "SET_VARI_VAL", + "SHCOPYDIR", + "SHDELETEDIR", + "SHFILEOP", + "SHFILEOP_SL", + "SHMOVEDIR", + "SHRENAMEDIR", + "SUBDIRCNT", + "TXT_DEL" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5729, + "domain_strings": [ + "clBackground", + "fsMDIForm", + "OnActivate", + "OnDeactivate", + "ROUND(", + "ROUNDDOWN(", + "ROUNDUP(", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "GET_ROUND_CUT", + "MROUNDUD", + "MROUNDUP", + "QTypInfo", + "OnDeactivate잖B" + ] + }, + "DP_MinMsg.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 40716, + "raw_off": 1024, + "raw_size": 40960 + }, + { + "name": "DATA", + "va": 45056, + "vsize": 844, + "raw_off": 41984, + "raw_size": 1024 + }, + { + "name": "BSS", + "va": 49152, + "vsize": 4257, + "raw_off": 43008, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 57344, + "vsize": 22942, + "raw_off": 43008, + "raw_size": 23040 + }, + { + "name": ".edata", + "va": 81920, + "vsize": 118, + "raw_off": 66048, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 86016, + "vsize": 3980, + "raw_off": 66560, + "raw_size": 4096 + }, + { + "name": ".rsrc", + "va": 90112, + "vsize": 11776, + "raw_off": 70656, + "raw_size": 11776 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl" + ], + "exports": [ + "GETNEWCODE_NAME", + "GETSPCHAR", + "MINIMSG" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1361, + "domain_strings": [ + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Typinfo@TPublishableVariantType@SetProperty$qqrrx8TVarDatax17System@AnsiStringt1", + "@Typinfo@TPublishableVariantType@GetProperty$qqrr8TVarDatarx8TVarDatax17System@AnsiString", + "@Variants@TInvokeableVariantType@DoProcedure$qqrrx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TInvokeableVariantType@DoFunction$qqrr8TVarDatarx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TCustomVariantType@VarDataFromOleStr$qqrr8TVarDatax17System@WideString", + "@Variants@TCustomVariantType@VarDataFromStr$qqrr8TVarDatax17System@AnsiString", + "@Variants@TCustomVariantType@VarDataCastTo$qqrr8TVarDatarx8TVarDataxus", + "@Variants@TCustomVariantType@UnaryOp$qqrr8TVarDataxi", + "@Variants@TCustomVariantType@RightPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@LeftPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@CastTo$qqrr8TVarDatarx8TVarDataxus", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect" + ] + }, + "EQSYNC.DBF": { + "format": "DBF-like", + "dbf": { + "version": "0xE6", + "records": 54, + "header_len": 129, + "record_len": 52, + "fields": [ + { + "name": "NAME", + "type": "C", + "length": 40, + "decimals": 0 + }, + { + "name": "SYNC", + "type": "M", + "length": 10, + "decimals": 0 + }, + { + "name": "INS_X", + "type": "L", + "length": 1, + "decimals": 0 + } + ] + } + }, + "EQSYNC.SMT": { + "format": "SIxMemo", + "detail": { + "block_size": 64, + "first_value": 193 + }, + "strings": [ + "SIxMemo", + "/g U", + "H8f>", + "p_jV", + "V}]$", + "hvkhi", + "i4V ", + "p`~/O", + "(Cv!", + "pTjG", + "Z@25", + ">.2p", + "v>>'", + "U:O*T", + "Hrn]", + "Yp8^", + "*V7j", + "[p(m", + "jrUy", + ")&0z", + " *7Pm", + "=P0=", + "`7KVf", + "Z#{<", + "pl,V.", + "MZ(P", + "9D(u", + "`7*V", + "l>Ne", + "DH1A", + "zvbgZ", + ":MZ(P", + "p(P;", + "^wr$vVh\"", + "Yp9P", + "\"9tZ", + "(mBc", + "NV6W", + ".2po", + "p(P/", + " Vkj", + "*tDp", + "VVGW", + "SVhi", + "ZY/9-", + "vmgZ", + "r$vVh\"", + "V~:eBc", + "Bwv&", + "JV8W", + "Hhn8", + "Q7[2", + "bgZC.2", + "Yp9^", + " V{j", + "/u]Z", + "GYrF", + "*w`2=", + "o68n", + "^v7>~V", + "j7KV", + "E<=0", + "vb-Z", + "r$vVh\"w", + "Zi>F", + "v/hi", + ".ytZ", + "vf(^", + "aTJ7", + "v\\xV", + "Vf.1V", + "l,V.", + "ZTN9-", + "r$vVh-", + "6`Bc", + "Z*row^", + ".K6o", + "/.yc", + ".Q_,", + "qf~2", + "&w|*", + "zvbgZo.yp", + ".dlFh", + "vbgZs.yp", + "\"MZ(P", + "/V?j", + "ZqD@", + "~f. ", + "Zy64", + ".2pC", + "Vy]$", + "U$`]", + "vr5d", + "Zu#7D", + "Z<-A", + "jro6", + "r5 N\"", + "V/:\\", + "Z(]G", + "YeT:", + "R\\F,", + "Vmss", + "*V)j", + "S6bg#", + "r$vVh", + "ppej", + "C$p&", + ">N>f", + "~f: ", + "`7OV", + "^0x/", + "*Z3:f", + "rUx~d", + "Y/G)", + "vVhr", + "Y']N}", + "ZDGG", + "6Vl7", + "o:MZ(P", + "vVhv", + "vbgZ", + "gVq7", + "_XFXT", + "U@1n", + "22tDp", + "V6bU$Mt", + "q\"x=`", + "\"QOj", + ">> TJ7", + "f(^J", + "~ 9m", + "美Xp<잔M", + "뤘U:O*T", + "W쓺츂育", + " *7Pm킈F", + "j6냆Jv쁷", + "♨뭒#{<츣R旅", + "뭁뢱띜", + "6$쿷殲졐뻴", + "봵捨쫜퓧", + "쩸팡捨", + "5뒙랄x돗", + "죢좕.;", + "6톪錚j팎", + "g뉮X쾼", + "B>얮J7턛f", + "\"9tZ쫹", + "넢7똘f", + "r`2졵툤", + "뻆?b寃", + "*tDp쫹", + "v筆j펭", + "H5^풛N魄뾷g쌄궬\")쵟v", + "t慶.寂럂^瑙", + "꽍L斂죴뾾닾菫폲|ⓙ", + "bgZC.2띃", + "P럮뻝 ", + ">퇚T훎륢", + "o^j팎轟[쫶쬊", + "7뉮X쾼", + ".ytZ쫹", + "TJ7턛f.1V", + "驕/V專竣봿", + "5뒙랄x먪", + "Db욦曺~^", + "&`조~f. 秤녀", + "쬼죻큁ES륽u#7D", + "v筆j팎", + "V}쾼常拉", + "轟ztZ쫹", + "쬼죻큁ES륽<-G큷", + "勸팜^W딥0", + "&`磅뭚", + "웻`x뛸f", + "tDp쫹67", + "쬺\"x=`" + ] + }, + "FAREAST.BTL": { + "format": "BTLF", + "detail": { + "header": "BTLF01.001\u0000Chinese_TW:dBASE:ANSI" + }, + "strings": [ + "BTLF01.001", + "Chinese_TW:dBASE:ANSI 950:Dictionary", + "TWD0WEA2", + "MBTLF01.001", + "Chinese_TW:Paradox:ANSI 950:Dictionary", + "TWP0WEA2", + "Chinese_CN:dBASE:ANSI 936:Dictionary", + "CND0WBA2", + "^BTLF01.001", + "Chinese_CN:Paradox:ANSI 936:Dictionary", + "CNP0WBA2", + "Korean_KR:dBASE:ANSI 949:Dictionary", + "KRD0WDA2", + "CBTLF01.001", + "Korean_KR:Paradox:ANSI 949:Dictionary", + "KRP0WDA2", + " !!\"\"##$$%%&&''(())**++,,--..//00112233445566778899::;;<<==>>??@@AABBCCDDEEFFGGHHIIJJKKLLMMNNOOPPQQRRSSTTUUVVWWXXYYZZ[[\\\\]]^^__``aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~", + " U촿 V쵀 W쵁 X쵂 Y쵃 Z쵄 [쵅 \\쵆 ]쵇 ^쵈 _쵉 `쵊 a쵋 b쵌 c쵍 d쵎 e쵏 f쵐 g쵑 h쵒 i쵓 j쵔 k쵕 l쵖 m쵗 n쵘 o쵙 p쵚 q쵛 r쵝 s쵞 t쵟 uА vБ wВ xГ yД zЕ {Ё |Ж }З ~И ", + "춊!겖j!궘k!꺆l!꽠m!뀷n!넮o!눑p!댂q!돪r!뒴s!떗t!뙪u!뜭v!렚w!룺x!맠y!뫋z!뮡{!벊|!뵯}!빆~!뼪", + "#]컖#^컗#_컘#`컙#a컚#b컛#c컜#d컝#e컞#f컟#g컠#h컡#i컢#j컣#k컦#l컧#m컩#n컪#o컭#p컮#q컯#r컰#s컱#t컲#u컳#v컶#w컺#x컻#y컼#z컽#{컾#|컿#}가#~각#", + "켥$겚b$궞c$꺊d$꽦e$뀻f$넲g$눘h$댇i$돮j$뒻k$떛l$뙮m$뜳n$렠o$뤀p$맩q$뫏r$뮦s$벑t$뵳u$빋v$뼮w$뿱x$삺y$솼z$슧{$쎉|$쑒}$씝~$옼", + "&e큱&f큲&g큳&h큵&i큶&j큷&k큸&l큹&m큺&n큻&o큾&p큿&q킀&r킂&s킃&t킄&u킅&v킆&w킇&x킈&y킉&z킊&{킋&|킌&}킍&~킎&", + "킱'겣Z'궢['꺏\\'꽪]'뀿^'넻_'눝`'댌a'돲b'뒿c'떟d'뙲e'뜷f'렦g'뤅h'맮i'뫓j'뮫k'벘l'뵷m'빑n'뼲o'뿵p'샃q'쇁r'슮s'쎎t'쑖u'씡v'왂w'윻x'졄y'〉z'℉{'5|'ㅅ}'Ⅵ~'┻", + ")m툈)n툊)o툋)p툌)q툍)r툎)s툏)t툑)u툒)v툓)w툔)x툕)y툖)z툗){툘)|툙)}툚)~툛)", + ",u펯,v펰,w펱,x펲,y펳,z펵,{펶,|펷,}펹,~펺,", + "/}픸/~픹/", + "1C횁1D횂1E횄1F횆1G횇1H횈1I횉1J횊1K횋1L횎1M횏1N횑1O횒1P횓1Q횕1R횖1S횗1T횘1U횙1V횚1W횛1X횜1Y횞1Z횠1[횢1\\횣1]횤1^횥1_횦1`횧1a횩1b횪1c찼1d창1e찾1f채1g책1h챈1i챌1j챔1k챕1l챗1m챘1n챙1o챠1p챤1q챦1r챨1s챰1t챵1u처1v척1w천1x철1y첨1z첩1{첫1|첬1}청1~체1" + ] + }, + "FTS32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 23088, + "raw_off": 1024, + "raw_size": 23552 + }, + { + "name": ".rdata", + "va": 28672, + "vsize": 2572, + "raw_off": 24576, + "raw_size": 3072 + }, + { + "name": ".data", + "va": 32768, + "vsize": 18428, + "raw_off": 27648, + "raw_size": 12800 + }, + { + "name": ".rsrc", + "va": 53248, + "vsize": 976, + "raw_off": 40448, + "raw_size": 1024 + }, + { + "name": ".reloc", + "va": 57344, + "vsize": 1676, + "raw_off": 41472, + "raw_size": 2048 + } + ], + "imports": [ + "KERNEL32.dll" + ], + "exports": [ + "FtsAdd", + "FtsClose", + "FtsCreate", + "FtsDelete", + "FtsIsDelete", + "FtsNextRec", + "FtsNumRecs", + "FtsOpen", + "FtsReplace", + "FtsSet", + "FtsSetCommitFileMethod", + "FtsUnDelete", + "FtsVerify", + "FtsVersion", + "FtsVersionEx", + "FtsVersionStrLen" + ], + "timestamp": 897531026, + "characteristics": "0x210E" + }, + "strings_total": 521, + "domain_strings": [ + "Index Applications, Incorporated" + ] + }, + "HRRES32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 13388, + "raw_off": 1024, + "raw_size": 13824 + }, + { + "name": "DATA", + "va": 20480, + "vsize": 708, + "raw_off": 14848, + "raw_size": 1024 + }, + { + "name": "BSS", + "va": 24576, + "vsize": 1821, + "raw_off": 15872, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 28672, + "vsize": 830, + "raw_off": 15872, + "raw_size": 1024 + }, + { + "name": ".edata", + "va": 32768, + "vsize": 75, + "raw_off": 16896, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 36864, + "vsize": 1056, + "raw_off": 17408, + "raw_size": 1536 + }, + { + "name": ".rsrc", + "va": 40960, + "vsize": 512, + "raw_off": 18944, + "raw_size": 512 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll" + ], + "exports": [ + "HRResLoadStr" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 366, + "domain_strings": [] + }, + "IDAPI32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 442368, + "raw_off": 1536, + "raw_size": 439808 + }, + { + "name": "DATA", + "va": 446464, + "vsize": 77824, + "raw_off": 441344, + "raw_size": 74240 + }, + { + "name": "DATA", + "va": 524288, + "vsize": 4096, + "raw_off": 515584, + "raw_size": 512 + }, + { + "name": "TLSCBA", + "va": 528384, + "vsize": 24576, + "raw_off": 516096, + "raw_size": 512 + }, + { + "name": ".idata", + "va": 552960, + "vsize": 4096, + "raw_off": 516608, + "raw_size": 4096 + }, + { + "name": ".edata", + "va": 557056, + "vsize": 53248, + "raw_off": 520704, + "raw_size": 52224 + }, + { + "name": ".reloc", + "va": 610304, + "vsize": 16384, + "raw_off": 572928, + "raw_size": 15360 + }, + { + "name": ".rsrc", + "va": 626688, + "vsize": 4096, + "raw_off": 588288, + "raw_size": 1024 + } + ], + "imports": [ + "KERNEL32.dll", + "ADVAPI32.dll", + "OLE32.dll", + "USER32.dll", + "MPR.dll", + "OLEAUT32.dll" + ], + "exports": [ + "@__lockDebuggerData$qv", + "@__unlockDebuggerData$qv", + "ADDELT", + "CfgComposeRec", + "CfgGetField", + "CfgGetOLEDBParseDN", + "CliGetDriver", + "CloseCallBack", + "CreateDbObj", + "CreateDrvObj", + "CreateUniqFldNames", + "CreateVtObj", + "CreateXltRecCurs", + "DLLEXITFUNCTION2", + "DLLINITFUNCTION", + "DbiAcqPersistTableLock", + "DbiAcqTableLock", + "DbiActivateFilter", + "DbiAddAlias", + "DbiAddDriver", + "DbiAddFamilyMember", + "DbiAddFilter", + "DbiAddIndex", + "DbiAddPassword", + "DbiAddRepository", + "DbiAnsiToNative", + "DbiAppendRecord", + "DbiApplyDelayedUpdates", + "DbiBatchMove", + "DbiBatchMoveQuery", + "DbiBcdFromFloat", + "DbiBcdToFloat", + "DbiBeginBatch", + "DbiBeginConstraintLayer", + "DbiBeginDelayedUpdates", + "DbiBeginLinkMode", + "DbiBeginLrNavMode", + "DbiBeginTran", + "DbiBeginXlateMode", + "DbiCfgAddRecord", + "DbiCfgBuildPath", + "DbiCfgDropRecord", + "DbiCfgGetHelp", + "DbiCfgGetNextNode", + "DbiCfgGetRecord", + "DbiCfgImportToRegistry", + "DbiCfgInstallMerge", + "DbiCfgMerge", + "DbiCfgModifyRecord", + "DbiCfgPosition", + "DbiCfgSave", + "DbiCfgTranslate", + "DbiChangeDefXltFn", + "DbiCheckRefresh", + "DbiCheckSQLExpression", + "DbiClearStats", + "DbiCloneCursor", + "DbiCloseConfigFile", + "DbiCloseCursor", + "DbiCloseDatabase", + "DbiCloseFieldXlt", + "DbiCloseFileHandle", + "DbiCloseIndex", + "DbiCloseSession", + "DbiCompareBookMarks", + "DbiCompareKeys", + "DbiComposeCursor", + "DbiCopyTable", + "DbiCreateInMemTable", + "DbiCreateTable", + "DbiCreateTempTable", + "DbiDRAdd", + "DbiDRAddAttr", + "DbiDRClose", + "DbiDRCreate", + "DbiDRCreateEnumAttrDomain", + "DbiDRCreateObjectType", + "DbiDRCreateRelationType", + "DbiDRDelete", + "DbiDRDeleteEnumAttrDomain", + "DbiDRDeleteObjectType", + "DbiDRDeleteRelationType", + "DbiDRDrop", + "DbiDRDropAttr", + "DbiDRExportToFile", + "DbiDRGetAttrDescs", + "DbiDRGetDesc", + "DbiDRGetEnumAttrDomain", + "DbiDRGetObjID", + "DbiDRGetObjTypeInfo", + "DbiDRGetRelTypeInfo", + "DbiDRGetRelatedObject", + "DbiDRImportFromFile", + "DbiDRLoadDBObject", + "DbiDRModifyEnumAttrDomain", + "DbiDROpen", + "DbiDROpenAttrTypeList", + "DbiDROpenObjSet", + "DbiDROpenObjectTypeList", + "DbiDROpenRelSet", + "DbiDROpenRelTypeList", + "DbiDRSetToObjID", + "DbiDRSetToObjName", + "DbiDatabaseFlush", + "DbiDateDecode", + "DbiDateEncode", + "DbiDeComposeCursor", + "DbiDeactivateFilter", + "DbiDebugLayerOptions", + "DbiDeleteAlias", + "DbiDeleteDriver", + "DbiDeleteIndex", + "DbiDeleteRecord", + "DbiDeleteRepository", + "DbiDeleteTable", + "DbiDeregisterCursor", + "DbiDoRestructure", + "DbiDoSoftRestr", + "DbiDropFamilyMember", + "DbiDropFilter", + "DbiDropPassword", + "DbiDrvXlateFld", + "DbiEmptyTable", + "DbiEndBatch", + "DbiEndConstraintLayer", + "DbiEndDelayedUpdates", + "DbiEndLinkMode", + "DbiEndLrNavMode", + "DbiEndTran", + "DbiEndXlateMode", + "DbiEnlistMtsTransaction", + "DbiEnterRefresh", + "DbiExit", + "DbiExitRefresh", + "DbiExtractKey", + "DbiFlushFileHandleCache", + "DbiForceRecordReread", + "DbiForceReread", + "DbiFormFullName", + "DbiFreeBlob", + "DbiFreeSQLRequest", + "DbiGenSQLStatement", + "DbiGetBestRowIdentifier", + "DbiGetBlob", + "DbiGetBlobHeading", + "DbiGetBlobSize", + "DbiGetBookMark", + "DbiGetCallBack", + "DbiGetClientInfo", + "DbiGetCurrSession", + "DbiGetCurrXltFn", + "DbiGetCursorForTable", + "DbiGetCursorProps", + "DbiGetDatabaseDesc", + "DbiGetDatabaseParams", + "DbiGetDateFormat", + "DbiGetDefaultRepository", + "DbiGetDirectory", + "DbiGetDriverDesc", + "DbiGetDriverParams", + "DbiGetErrorContext", + "DbiGetErrorEntry", + "DbiGetErrorInfo", + "DbiGetErrorString", + "DbiGetExactRecordCount", + "DbiGetExtFldDesc", + "DbiGetField", + "DbiGetFieldDescs", + "DbiGetFieldTypeDesc", + "DbiGetFilterInfo", + "DbiGetIndexDesc", + "DbiGetIndexDescs", + "DbiGetIndexForField", + "DbiGetIndexSeqNo", + "DbiGetIndexTypeDesc", + "DbiGetLdName", + "DbiGetLdNameFromDb", + "DbiGetLdObj", + "DbiGetLinkStatus", + "DbiGetNetUserName", + "DbiGetNextRecord", + "DbiGetNumberFormat", + "DbiGetObjFromName", + "DbiGetObjFromObj", + "DbiGetObjectHandles", + "DbiGetPriorRecord", + "DbiGetProp", + "DbiGetRecord", + "DbiGetRecordCount", + "DbiGetRecordForKey", + "DbiGetRefreshDistance", + "DbiGetRelativeRecord", + "DbiGetRelativeRecordCnt", + "DbiGetRepositoryInfo", + "DbiGetRintDesc", + "DbiGetSQLRequest", + "DbiGetSeqNo", + "DbiGetSesInfo", + "DbiGetSysConfig", + "DbiGetSysInfo", + "DbiGetSysStats", + "DbiGetSysVersion", + "DbiGetTableClass", + "DbiGetTableOpenCount", + "DbiGetTableTypeDesc", + "DbiGetTimeFormat", + "DbiGetTranInfo", + "DbiGetVchkDesc", + "DbiHardInsertRecord", + "DbiImportODBC", + "DbiInitFn", + "DbiInitRecord", + "DbiInsertRecord", + "DbiIsLDID19As13", + "DbiIsLDID19As19", + "DbiIsLDIDUSAsLocal", + "DbiIsRecordLocked", + "DbiIsTableLocked", + "DbiIsTableShared", + "DbiJoinTables", + "DbiLinkDetail", + "DbiLinkDetailToExp", + "DbiLoadDriver", + "DbiMakePermanent", + "DbiMapRecStruct", + "DbiModifyRecord", + "DbiNativeToAnsi", + "DbiOpenBlob", + "DbiOpenCfgInfoList", + "DbiOpenConfigFile", + "DbiOpenDatabase", + "DbiOpenDatabaseList", + "DbiOpenDriverList", + "DbiOpenFamilyList", + "DbiOpenFieldList", + "DbiOpenFieldTypesList", + "DbiOpenFieldXlt", + "DbiOpenFileList", + "DbiOpenFunctionArgList", + "DbiOpenFunctionList", + "DbiOpenIndex", + "DbiOpenIndexList", + "DbiOpenIndexTypesList", + "DbiOpenLdList", + "DbiOpenLockList", + "DbiOpenNestedTable", + "DbiOpenRef", + "DbiOpenRepositoryList", + "DbiOpenRintList", + "DbiOpenSPList", + "DbiOpenSPParamList", + "DbiOpenSecurityList", + "DbiOpenSessionRepository", + "DbiOpenTable", + "DbiOpenTableList", + "DbiOpenTableTypesList", + "DbiOpenUserList", + "DbiOpenVchkList", + "DbiPackTable", + "DbiPrepareDelayedUpdates", + "DbiProcessSql", + "DbiPutBlob", + "DbiPutField", + "DbiQAlloc", + "DbiQExec", + "DbiQExecDirect", + "DbiQExecProcDirect", + "DbiQFree", + "DbiQGetBaseDescs", + "DbiQInstantiateAnswer", + "DbiQLowBuild", + "DbiQLowFieldExp", + "DbiQLowFieldName", + "DbiQLowGetName", + "DbiQLowGetPAL", + "DbiQLowGetPALLen", + "DbiQLowGetProps", + "DbiQLowIsExample", + "DbiQLowParse", + "DbiQLowPrepare", + "DbiQLowQA", + "DbiQLowSetName", + "DbiQLowSetProps", + "DbiQLowStart", + "DbiQLowTableInfo", + "DbiQLowTablesCount", + "DbiQPrepare", + "DbiQPrepareExt", + "DbiQPrepareProc", + "DbiQSetParams", + "DbiQSetProcParams", + "DbiQryExec", + "DbiQryExecDirect", + "DbiQryFormatAnswer", + "DbiQryFree", + "DbiQryGetAnsFormat", + "DbiQryGetCursorProps", + "DbiQryGetFieldDescs", + "DbiQryGetLogType", + "DbiQryInstantiateAnswer", + "DbiQryOpen", + "DbiQryPrepareCmd", + "DbiQryRegisterCallBack", + "DbiQrySqlGetStrLen", + "DbiQrySqlGetString", + "DbiReadBlock", + "DbiRecordFlushRef", + "DbiRegenIndex", + "DbiRegenIndexes", + "DbiRegister", + "DbiRegisterCallBack", + "DbiRegisterCursor", + "DbiRelPersistTableLock", + "DbiRelRecordLock", + "DbiRelTableLock", + "DbiReleaseMem", + "DbiRenameTable", + "DbiResetDetailLinks", + "DbiResetRange", + "DbiSQLTextToCanEx", + "DbiSaveChanges", + "DbiSchemaCacheFlush", + "DbiSetCurrSession", + "DbiSetDateFormat", + "DbiSetDefaultRepository", + "DbiSetDirectory", + "DbiSetFieldMap", + "DbiSetFieldMap2", + "DbiSetFilterProps", + "DbiSetLDID19As13", + "DbiSetLDID19As19", + "DbiSetLDIDUSAsLocal", + "DbiSetLockRetry", + "DbiSetNumberFormat", + "DbiSetPrivateDir", + "DbiSetProp", + "DbiSetRange", + "DbiSetRefreshRange", + "DbiSetStats", + "DbiSetTimeFormat", + "DbiSetToBegin", + "DbiSetToBookMark", + "DbiSetToCursor", + "DbiSetToEnd", + "DbiSetToKey", + "DbiSetToRecordNo", + "DbiSetToSeqNo", + "DbiSetupExprObj", + "DbiSortTable", + "DbiSortTable2", + "DbiStartSession", + "DbiSwitchToIndex", + "DbiTimeDecode", + "DbiTimeEncode", + "DbiTimeStampDecode", + "DbiTimeStampEncode", + "DbiTranslateField", + "DbiTranslateRecordStructure", + "DbiTruncateBlob", + "DbiUCloseSecurityFile", + "DbiUCreateSecurityFile", + "DbiUDeleteSecurityUser", + "DbiUGetLoginSecurity", + "DbiUGetSecurityUserInfo", + "DbiUGetTablePrivileges", + "DbiUJoinIndexes", + "DbiUOpenSecurityFile", + "DbiUReadTableHdr", + "DbiURegenBlobFile", + "DbiUSetLoginSecurity", + "DbiUSetSecurityUserInfo", + "DbiUSetTablePrivileges", + "DbiUValidateSecurityUser", + "DbiUWriteTableHdr", + "DbiUndeleteRecord", + "DbiUnlinkDetail", + "DbiUseIdleTime", + "DbiValidateName", + "DbiValidateProp", + "DbiValidateRecordStructure", + "DbiVerifyField", + "DbiWriteBlock", + "DllEntryPoint", + "DllRegisterServer", + "DllUnregisterServer", + "ExecCallBack", + "ExpGeneratePostFix", + "ExprGenPostFix", + "FAMILY", + "FreeVtObj", + "GetCallBack", + "GetExtFromTblType", + "GetLocalCp", + "GetSpc1", + "GetSpc2", + "GetTblTypeFromExt", + "GetTblTypeFromTblName", + "GetWorldFlags", + "GetszLDdb", + "GetszLDpx", + "ImltCreateTable", + "ImltCreateTable2", + "ImltExitSubSys", + "ImltInitSubSys", + "JapanStrCmp", + "JapanStrnCmp", + "JapanStrnCmpi", + "LBlobOpen", + "LISTLENGTH", + "LrNavCompSetup", + "LsDateDecode", + "LsDateEncode", + "LsGetDate", + "LsGetTime", + "LsGetTimeStampEncode", + "LsTimeDecode", + "LsTimeEncode", + "LsTimeStampDecode", + "LsTimeStampEncode", + "LsValidDate", + "MEMB", + "NCONC", + "NCONS", + "NULLP", + "OCCloseObjs", + "OCFindObj", + "OCRegisterObj", + "OCUnRegisterObj", + "OpenCallBack", + "OsAssert", + "OsChSize", + "OsClearError", + "OsClose", + "OsCloseForInstance", + "OsControlError", + "OsCopy", + "OsCopyShare", + "OsCreate", + "OsCreate2", + "OsCreateRWObj", + "OsCtxBegin", + "OsCtxClrStk", + "OsCtxCount", + "OsCtxEnd", + "OsCtxExit", + "OsCtxGetCur", + "OsCtxGetElem", + "OsCtxGetError", + "OsCtxGetSymStr", + "OsCtxInit", + "OsCtxPop", + "OsCtxPush", + "OsCtxSetFatal", + "OsCurrFile", + "OsDBGSaveError", + "OsDeleteRWObj", + "OsDirExists", + "OsDirFirst", + "OsDirNext", + "OsFileExists", + "OsFileExistsSearch", + "OsFileLength", + "OsFlushFileSize", + "OsFlushLocalBuf", + "OsFreeDll", + "OsFreeSharedSz", + "OsFreeSz", + "OsGetCodePage", + "OsGetCurDirEx", + "OsGetCurDrive", + "OsGetDate", + "OsGetDllFileName", + "OsGetFileTime", + "OsGetM", + "OsGetNetInMemFlag", + "OsGetOSType", + "OsGetPrivateProfileString", + "OsGetProcAddressByName", + "OsGetProcAddressByNum", + "OsGetProcessId", + "OsGetProfileString", + "OsGetSharedPtr", + "OsGetSystemTicks", + "OsGetTempDir", + "OsGetTempName", + "OsGetTime", + "OsIs386", + "OsIs386Enh", + "OsIsAlpha", + "OsIsDigit", + "OsIsFileLocal", + "OsIsFileOnCdRom", + "OsIsFileReadOnly", + "OsIsLocalDrive", + "OsIsLocalDrive_0", + "OsJLdCBtoM", + "OsJLdCMtoB", + "OsJLdCStrLen", + "OsJLdFBtoM", + "OsJLdFGetMinMax", + "OsJLdFHanToZen", + "OsJLdFHiraToKata", + "OsJLdFKataToHira", + "OsJLdFLastString", + "OsJLdFLeadString", + "OsJLdFMtoB", + "OsJLdFPNBStrCmp", + "OsJLdFPStrCmp", + "OsJLdFZenToHan", + "OsJLdFmtDate", + "OsJLdPNBStrCmp", + "OsJLdScanDate", + "OsJLdWtoCdate", + "OsLdAnsiCharToOem", + "OsLdAnsiToOem", + "OsLdBufferNativeToUnicode", + "OsLdBufferUnicodeToNative", + "OsLdBuildCharSetXform", + "OsLdCharToLower", + "OsLdCharToUpper", + "OsLdExStrCmp", + "OsLdExit", + "OsLdFoxProSortKey", + "OsLdGetCharCount", + "OsLdGetCodePage", + "OsLdGetDefaultObj", + "OsLdGetDescName", + "OsLdGetDriverId", + "OsLdGetFName", + "OsLdGetFuncAddrLdStrnCmpi_", + "OsLdGetFuncAddrLdStrnColl_", + "OsLdGetFuncAddrLdStrnColli_", + "OsLdGetLCID", + "OsLdGetMinMax", + "OsLdGetProductID", + "OsLdGetSortSig", + "OsLdGetSymbName", + "OsLdInit", + "OsLdIsAlpha", + "OsLdIsAnsiCharInOemCp", + "OsLdIsDigit", + "OsLdIsOemCharInAnsiCp", + "OsLdLoadByDriverId", + "OsLdLoadByFName", + "OsLdLoadByLCID", + "OsLdLoadByMSID", + "OsLdLoadBySortSig", + "OsLdLoadBySymbName", + "OsLdMBRStrChr", + "OsLdMBRStrICmp", + "OsLdMBRStrNICmp", + "OsLdMBRisCJKBlank", + "OsLdMBRisCJKKana", + "OsLdMBRisKana", + "OsLdMBRisLead", + "OsLdMBRisTrail", + "OsLdNativeToUnicode", + "OsLdOemCharToAnsi", + "OsLdOemToAnsi", + "OsLdSNativeToUnicode", + "OsLdSUnicodeToNative", + "OsLdSearchEnd", + "OsLdSearchInit", + "OsLdSearchNext", + "OsLdSetConvChars", + "OsLdStrCmp", + "OsLdStrCmpi", + "OsLdStrToLower", + "OsLdStrToUpper", + "OsLdStrnCmp", + "OsLdStrnCmpi", + "OsLdStrnColl", + "OsLdStrnColli", + "OsLdStrnToLower", + "OsLdStrnToUpper", + "OsLdUnicodeToNative", + "OsLdUnloadObj", + "OsLoadDll", + "OsLoadString", + "OsLockBytes", + "OsLockHandle", + "OsLockRWObj", + "OsMallocSharedSz", + "OsMallocSz", + "OsMuxCreate", + "OsMuxDelete", + "OsMuxLock", + "OsMuxUnlock", + "OsMuxUseCount", + "OsNetDir", + "OsNetIsDriveShared", + "OsNetIsDriveShared_0", + "OsNetIsFileShared", + "OsNetIsLocalShare", + "OsNetLockBytes", + "OsNetType", + "OsNetUnlockBytes", + "OsNetUserName", + "OsNmBldFName", + "OsNmChgDrive", + "OsNmChgExt", + "OsNmChkFExt", + "OsNmCmpExt", + "OsNmGetAliasName", + "OsNmGetAliasPath", + "OsNmGetDot", + "OsNmGetExt", + "OsNmGetFName", + "OsNmNormalizeFileName", + "OsNmPrsFName", + "OsNmRealFName", + "OsNmValidateDosName", + "OsNmValidateFldName", + "OsNmZapExt", + "OsOpenR", + "OsOpenRW", + "OsQbeQA", + "OsRand", + "OsRead", + "OsReadExact", + "OsReadExactFromPos", + "OsReadFromPos", + "OsRename", + "OsSaveAnsiError", + "OsSaveError", + "OsSaveErrorByLang", + "OsSeek", + "OsSegChk", + "OsSetFatalError", + "OsSetNetDir", + "OsSetPrivateProfileString", + "OsSetProfileString", + "OsSetSharedPtr", + "OsSleep", + "OsStrToUpper", + "OsStriCmp", + "OsStrnToUpper", + "OsSwCalloc", + "OsSwFree", + "OsSwMalloc", + "OsToLower", + "OsToUpper", + "OsUnlink", + "OsUnlockBytes", + "OsUnlockHandle", + "OsUnlockRWObj", + "OsWrite", + "OsWriteExact", + "OsWriteExactToPos", + "OsWriteToPos", + "PARSEPATTERN", + "PdrvInfo", + "QGETM", + "RegCallBack", + "SdkDbgDecInDbiCount", + "SdkDbgIncInDbiCount", + "SqlDateString", + "SrtTable", + "StdDbExecDirect", + "StdDbPrepare", + "StdDbPrepareExt", + "StdDbProcessQuery", + "StdDbQAlloc", + "StmtAddParam", + "StmtConstructParamName", + "SvAtoI", + "SvAtoL", + "SvBuildName_0", + "SvDrvGet", + "SvDrvGetSize", + "SvDrvGetSize_0", + "SvDrvGet_0", + "SvECvt", + "SvFCvt", + "SvFilCpy", + "SvFilExist", + "SvItoA", + "SvLtoA", + "SvModExt_0", + "SvParseName_0", + "SvStrToD", + "SvVerifyName", + "SwBlkCreate", + "SwBlkDirty", + "SwBlkForget", + "SwBlkForget2", + "SwBlkMRO", + "SwBlkSeek", + "SwBlkSetPrio", + "SwBlkUnfix", + "SwClose", + "SwCreateSet", + "SwForget", + "SwGetLckObj", + "SwIsInBm", + "SwMakeLowPrio", + "SwOpen", + "SwSave", + "SysAddPassword", + "SysClientEntry", + "SysDropPassword", + "SysGetActiveClient", + "SysGetActiveSes", + "SysGetCallBack", + "SysGetDb", + "SysGetDriver", + "SysGetManager", + "SysGetPasswords", + "SysGetStdTran", + "SysLoadDriver", + "SysLock", + "SysPostClientMessage", + "SysRegStmt", + "SysRegVt", + "SysSetActiveSes", + "SysSetEnv", + "SysUnlock", + "SysYield", + "SystemYield", + "TCONC", + "TYPEOF", + "TmpMemPopAll", + "VtGenCreateObj", + "WEP", + "XLTCharMap", + "XLTDoLL", + "XlateBuild", + "XlateRecordStructure", + "XltBuild", + "XltRecStruct", + "_CfgBuildPath", + "_DbgPrintf", + "_OsCalloc", + "_OsCallocByName", + "_OsCallocShared", + "_OsDbgCalloc", + "_OsDbgFree", + "_OsDbgMalloc", + "_OsDbgRealloc", + "_OsFree", + "_OsFreeByName", + "_OsFreeShared", + "_OsMalloc", + "_OsMallocByName", + "_OsMallocShared", + "_OsNamedMemUseCount", + "_OsRealloc", + "_OsReallocShared", + "_SvStrPrintF", + "_SvStrScanF", + "__DebuggerHookData", + "__STRNLWR", + "__STRNUPR", + "refreshNotice" + ], + "timestamp": 1505766059, + "characteristics": "0xA18E" + }, + "strings_total": 4358, + "domain_strings": [ + "QtY]", + ".DBF", + "select * from X", + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "DbiActivateFilter", + "DbiDeactivateFilter", + "DbiFormFullName", + "DbiSetPrivateDir", + "ExpGeneratePostFix", + "OsGetPrivateProfileString", + "OsSetPrivateProfileString", + "SvAtoI", + "SvAtoL" + ] + }, + "IDDBAS32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 401408, + "raw_off": 1536, + "raw_size": 401408 + }, + { + "name": "DATA", + "va": 405504, + "vsize": 45056, + "raw_off": 402944, + "raw_size": 28160 + }, + { + "name": ".INIT", + "va": 450560, + "vsize": 4096, + "raw_off": 431104, + "raw_size": 3584 + }, + { + "name": ".idata", + "va": 454656, + "vsize": 4096, + "raw_off": 434688, + "raw_size": 2048 + }, + { + "name": ".edata", + "va": 458752, + "vsize": 4096, + "raw_off": 436736, + "raw_size": 2560 + }, + { + "name": ".reloc", + "va": 462848, + "vsize": 16384, + "raw_off": 439296, + "raw_size": 13824 + }, + { + "name": ".rsrc", + "va": 479232, + "vsize": 4096, + "raw_off": 453120, + "raw_size": 1024 + } + ], + "imports": [ + "KERNEL32.dll", + "IDAPI32.dll", + "USER32.dll", + "ADVAPI32.dll" + ], + "exports": [ + "@IntlAsianSort1$qqspvt1t1i", + "@IntlAsianSort2$qqspvt1t1i", + "@IntlAsianSort3$qqspvt1t1i", + "@IntlAsianSort4$qqspvt1t1i", + "@IntlAsianSort5$qqspvt1t1i", + "@IntlGetTrueStrLen$qqspci", + "@OdapiIndexObjectExprEqualCB$qqsp6ExpObjpc", + "@OdapiIndexObjectGetExactCB$qqsp6ExpObjulps", + "@OdapiIndexObjectKeyEndCB$qqsp6ExpObj", + "@OdapiIndexObjectKeyGenCB$qqsp6ExpObjpucult2", + "@OdapiIndexObjectKeyInfoCB$qqsp6ExpObjpust2pit4", + "@OdapiIndexObjectRecFilterCB$qqsp6ExpObjpuculpi", + "@OdapiIndexObjectSetExactCB$qqsp6ExpObjuls", + "@__lockDebuggerData$qv", + "@__unlockDebuggerData$qv", + "BLM_BufferCollate", + "BLM_StrDbaseCompare", + "BLM_StrTranslation", + "BLM_ToSoundex", + "BLN_GetSysLocale", + "BLN_IsClass", + "BLN_QStrMatchi", + "BLN_QStrnMatchi", + "BLN_StrCollate", + "BLN_StrDbaseCompare", + "BLN_StrLower", + "BLN_StrTranslation", + "BLN_StrUpper", + "BLN_StrnLower", + "BLN_StrnUpper", + "BLN_ToLower", + "BLN_ToSoundex", + "BLN_ToUpper", + "BLW_GetSysLocale", + "BLW_StrTranslation", + "BL_BufferConvert", + "BL_CloseConversion", + "BL_CloseLocale", + "BL_CollationInfo", + "BL_Exit", + "BL_GetHlocaleCharacterSetName", + "BL_GetHlocaleInfo", + "BL_GetLDDescFromLDID", + "BL_GetLDIDFromHlocale", + "BL_GetTranslationCount", + "BL_GetTranslationInfo", + "BL_IsFirstByte", + "BL_OpenConversion", + "BL_OpenLocale", + "BL_OpenLocaleWithLDID", + "BL_OpenLocaleWithLDName", + "FiltFloatCompare", + "FloatCompare", + "OsLdMBRisCJKBlank", + "OsLdMBRisCJKKana", + "OsLdMBRisKana", + "OsLdMBRisLead", + "OsLdMBRisTrail", + "WEP", + "XBFINDOBJ", + "XBREGISTEROBJ", + "XBUNREGISTEROBJ", + "XDrvInit", + "_BL_InitClient", + "__DebuggerHookData", + "dbe_IsExprEqual", + "dbe_callback" + ], + "timestamp": 1499867819, + "characteristics": "0xA18E" + }, + "strings_total": 3099, + "domain_strings": [ + "__KYT000.DBF", + "__KYV000.DBF", + "ROUND", + "ExpGeneratePostFix", + "SvAtoI" + ] + }, + "IDPDX32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 225280, + "raw_off": 1536, + "raw_size": 224256 + }, + { + "name": "DATA", + "va": 229376, + "vsize": 32768, + "raw_off": 225792, + "raw_size": 17408 + }, + { + "name": ".INIT", + "va": 262144, + "vsize": 4096, + "raw_off": 243200, + "raw_size": 3072 + }, + { + "name": ".idata", + "va": 266240, + "vsize": 4096, + "raw_off": 246272, + "raw_size": 1536 + }, + { + "name": ".edata", + "va": 270336, + "vsize": 4096, + "raw_off": 247808, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 274432, + "vsize": 8192, + "raw_off": 248320, + "raw_size": 6144 + }, + { + "name": ".rsrc", + "va": 282624, + "vsize": 4096, + "raw_off": 254464, + "raw_size": 1024 + } + ], + "imports": [ + "KERNEL32.dll", + "IDAPI32.dll", + "USER32.dll" + ], + "exports": [ + "@__lockDebuggerData$qv", + "@__unlockDebuggerData$qv", + "CRYPTAREA", + "OsLdMBRisCJKBlank", + "OsLdMBRisCJKKana", + "OsLdMBRisKana", + "OsLdMBRisLead", + "OsLdMBRisTrail", + "PDRVGETNETUSERLIST", + "PDrvGetFidInfo", + "PDrvIGetField", + "PDrvInit", + "PdrvInfo", + "WEP", + "__DebuggerHookData" + ], + "timestamp": 1498229419, + "characteristics": "0xA18E" + }, + "strings_total": 1910, + "domain_strings": [ + "SvAtoI", + "ExpGeneratePostFix" + ] + }, + "IDR20009.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 24576, + "raw_off": 1536, + "raw_size": 23552 + }, + { + "name": "DATA", + "va": 28672, + "vsize": 20480, + "raw_off": 25088, + "raw_size": 5120 + }, + { + "name": ".idata", + "va": 49152, + "vsize": 4096, + "raw_off": 30208, + "raw_size": 1536 + }, + { + "name": ".edata", + "va": 53248, + "vsize": 4096, + "raw_off": 31744, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 57344, + "vsize": 4096, + "raw_off": 32256, + "raw_size": 1536 + }, + { + "name": ".rsrc", + "va": 61440, + "vsize": 86016, + "raw_off": 33792, + "raw_size": 82944 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "@__lockDebuggerData$qv", + "@__unlockDebuggerData$qv", + "WEP", + "__DebuggerHookData" + ], + "timestamp": 1515203243, + "characteristics": "0xA18E" + }, + "strings_total": 1221, + "domain_strings": [ + "INSERT", + "DELETE", + "GENERATE AUXILIARY TABLES", + "MSSQL - dbfreebuf", + "MSSQL - dbfreelogin", + "SYBASE - dbfreebuf", + "File Delete operation failed.", + "Master record missing.3Master has detail records. Cannot delete or modify. Master table level is incorrect.&Field value out of lookup table range.#Lookup Table Open operation failed.#Detail Table Open operation failed.#Master Table Open operation failed.", + "Invalid table delete request", + "Invalid index delete request", + "Directory is not private.+Directory is controlled by other .NET file.", + "bitmapHCALC expression cannot be used in INSERT, DELETE, CHANGETO and SET rows.", + "chunk%More than 255 fields in ANSWER table.BAS must be followed by the name for the field in the ANSWER table.4DELETE can be used in only one query form at a time.GCannot perform operation on DELETED table together with a DELETE query.%Cannot delete from the DELETED table.MExample element is used in two fields with incompatible types or with a BLOB.0Cannot use example elements in an OR expression.,Expression in this field has the wrong type.", + "Extra OR found.7One or more query rows do not contribute to the ANSWER.2FIND can be used in only one query form at a time.*FIND cannot be used with the ANSWER table./A row with GROUPBY must contain SET operations.%GROUPBY can be used only in SET rows.8Use only INSERT, DELETE, SET or FIND in leftmost column.2Use only one INSERT, DELETE, SET or FIND per line.", + "Syntax error in expression.4INSERT can be used in only one query form at a time.ICannot perform operation on INSERTED table together with an INSERT query.9INSERT, DELETE, CHANGETO and SET rows may not be checked.9Field must contain an expression to insert (or be blank).&Cannot insert into the INSERTED table.,Variable is an array and cannot be accessed.", + "obsolete*No permission to insert or delete records.", + "2This DELETE, CHANGE or INSERT query has no ANSWER.*Query is not prepared. Properties unknown.1DELETE rows cannot contain quantifier expression.!Invalid expression in INSERT row.!Invalid expression in INSERT row.%Invalid expression in SET definition.", + "Unused SET row.FINSERT, DELETE, FIND, and SET can be used only in the leftmost column.9CHANGETO cannot be used with INSERT, DELETE, SET or FIND.CExpression must be followed by an example element defined in a SET.", + "QBE syntax error.(Query extended syntax field count error.-Field name in sort or field clause not found.-Table name in sort or field clause not found.*Operation is not supported on BLOB fields.", + "&Blob cannot be used as grouping field.'Query properties have not been fetched.#Answer table is of unsuitable type.5Answer table is not yet supported under server alias.2Non-null blob field required. Can't insert records)Unique index required to perform changeto'Unique index required to delete records%Update of table on the server failed.\"Can't process this query remotely.", + "%User defined function is not defined.)Unknown error from User defined function./Single row subquery produced more than one row.*Expressions in group by are not supported.1Queries on text or ascii tables is not supported.GANSI join keywords USING and NATURAL are not supported in this release.DSELECT DISTINCT may not be used with UNION unless UNION ALL is used.YGROUP BY is required when both aggregate and non-aggregate fields are used in result set.KINSERT and UPDATE operations are not supported on autoincrement field type.HUPDATE on Primary Key of a Master Table may modify more than one record.EQueries on MS ACCESS tables are not supported by local query engines.-Preparation of field-level constraint failed.$Preparation of field default failed..Preparation of record-level constraint failed.", + " Constraint Failed. Expression: aLocalSQL queries and Constraints that operate on Object-Relational field types are not supported.3SQL Builder does not support parameterized queries.", + "Update aborted.", + "Date Formats0Character used to separate month, day, and year.4Order in which date components appear (i.e., M/D/Y).ISpecifies whether or not years are expressed in four digits (i.e., 1995).eSpecifies whether or not the application adds 1900 to years entered as two digits (i.e., 95 -> 1995).iSpecifies whether or not the application adds a zero to months entered as a single digit (i.e., 3 -> 03).gSpecifies whether or not the application adds a zero to days entered as a single digit (i.e., 8 -> 08).", + "Number FormatsTCharacter used to separate the decimal portion of a number (i.e., the '.' in 2.087).QCharacter used to separate large numbers into thousands (i.e., the ',' in 1,000).IMaximum number of decimal places used when converting strings to numbers.YSpecifies whether or not numbers between 1 and -1 use leading zeroes (i.e., .14 or 0.14).-Borland Database Engine Drivers Configuration", + "Enter TDS packet size.8Enable logical integers for NUMBER fields with no scale. Include synonyms in table lists.,Rowset size for each fetch/insert operation." + ] + }, + "JDLCHK.Size.dll": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1046732, + "raw_off": 1024, + "raw_size": 1047040 + }, + { + "name": "DATA", + "va": 1052672, + "vsize": 16212, + "raw_off": 1048064, + "raw_size": 16384 + }, + { + "name": "BSS", + "va": 1069056, + "vsize": 4461, + "raw_off": 1064448, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1077248, + "vsize": 10048, + "raw_off": 1064448, + "raw_size": 10240 + }, + { + "name": ".edata", + "va": 1089536, + "vsize": 148, + "raw_off": 1074688, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1093632, + "vsize": 81684, + "raw_off": 1075200, + "raw_size": 81920 + }, + { + "name": ".rsrc", + "va": 1175552, + "vsize": 49664, + "raw_off": 1157120, + "raw_size": 49664 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "version.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "comctl32.dll" + ], + "exports": [ + "GetDLLVersion", + "GetJDLAnnouncement", + "IsCertifiedJDL", + "JDLCheck" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 15604, + "domain_strings": [ + "clBackground", + "DrawThemeBackground", + "GetThemeBackgroundContentRect", + "GetThemeBackgroundRegion", + "HitTestThemeBackground", + "IsThemeBackgroundPartiallyTransparent", + "DrawThemeParentBackground", + "ParentBackground", + "fsMDIForm", + "OnActivate0TE", + "OnDeactivate", + "hDbF", + "AutoGenerateValue", + "Transliterate", + "EDbfError", + "Dbf_Common", + "TDbf V%d.%d", + "Invalid DBF file.", + "Dbf_IdxFile", + "TDbfLocaleErrorEvent", + "TDbfIndexDef", + "TDbfIndexDefx", + "C:\\download\\pgdbf\\Dbf_IdxFile.pas", + "TDbfFieldDef", + "Dbf_Fields", + "TDbfFieldDefs", + "TDbfFieldDefs@", + "TDbfParser", + "TDbfIndexMissingEvent", + "EDbfFile", + "TDbfFile", + "TDbfCursor", + "TDbfGlobals", + "TDbfStorage", + "Dbf0dI", + "TDbfOpenMode", + "TDbfLanguageAction", + "TDbf", + "TDbfBlobStream", + "TDbfIndexDefs", + "TDbfMasterLink", + "TDbfMasterLinkDgI", + "TDbf,hI", + "Dbf-", + "SELECT", + "UPDATE", + "PrivateDir", + ".DBF", + "Danga.Dbf", + "F_QQTY", + "F_TQTY", + "F_QTY", + ",TOT,QTY,OP,INC,CODE,DES,SIZE,UNIT,TID,SPY,BIGO,", + "ROUND", + "uQhHaL", + "hhaL", + "tQhHaL", + "uNhHaL", + "JhHaL", + "LhHaL", + "hHaL", + "uMhHaL", + "tHhHaL", + "select", + "SSL_CTX_use_PrivateKey_file", + "SSL_CTX_check_private_key", + "CostAccount.Txt", + "EQTY", + "\\M.Dbf", + "\\L.Dbf", + "\\E.Dbf", + "\\W.Dbf", + "\\J.Dbf", + "\\GongJong.Dbf", + "\\Unit.Dbf", + "\\JUnit.Dbf", + "\\Danga.Dbf", + "F_SRATE", + "\\MainPart.Dbf", + "\\UnitPart.Dbf", + "\\JUnitPart.Dbf", + "QTY(", + "LARATE", + "MARATE", + "EQRATE", + "LARATE(", + "MARATE(", + "EQRATE(", + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "QTypInfo", + "Dbf_PgFile", + "oDbf_Str", + "YDbf_Common", + "1Dbf_IdxCur", + "Dbf_Cursor", + "Dbf_DbfFile", + "Dbf_Lang", + "Dbf_Parser", + "hDbf_PrsSupp", + "Dbf_PrsCore", + "Dbf_PrsDef", + "Dbf_Memo", + "Insert record", + "Delete record", + "Not in cached update mode", + "DataSource cannot be changed0Cannot perform this operation on an open dataset\"Dataset not in edit or insert mode1Cannot perform this operation on a closed dataset!Cannot modify a read-only dataset#Nested dataset must inherit from %s(Filter expression incorrectly terminated", + "Window Background", + "Highlight Background", + "Info Background", + "Menu Background", + "Background", + "Unable to insert a line Clipboard does not support Icons", + "EDbfError떲xuH", + "Dbf_IdxFile먖H", + "Dbf_IdxFile떲匐H", + "TDbfFieldDef먷", + "TDbfCursor맱?I", + "Dbf먅dI", + "TDbfBlobStream릶fI", + "TDbfIndexDefs봣I", + "TDbf맻jI", + "꽵uQhHaL", + "꽵uNhHaL", + "낔uMhHaL", + "끐tHhHaL" + ] + }, + "JDLCHK.Tab.dll": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1055036, + "raw_off": 1024, + "raw_size": 1055232 + }, + { + "name": "DATA", + "va": 1060864, + "vsize": 16100, + "raw_off": 1056256, + "raw_size": 16384 + }, + { + "name": "BSS", + "va": 1077248, + "vsize": 4461, + "raw_off": 1072640, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1085440, + "vsize": 9894, + "raw_off": 1072640, + "raw_size": 10240 + }, + { + "name": ".edata", + "va": 1097728, + "vsize": 148, + "raw_off": 1082880, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1101824, + "vsize": 82052, + "raw_off": 1083392, + "raw_size": 82432 + }, + { + "name": ".rsrc", + "va": 1187840, + "vsize": 49152, + "raw_off": 1165824, + "raw_size": 49152 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "version.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "comctl32.dll" + ], + "exports": [ + "GetDLLVersion", + "GetJDLAnnouncement", + "IsCertifiedJDL", + "JDLCheck" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 15307, + "domain_strings": [ + "clBackground", + "DrawThemeBackground", + "GetThemeBackgroundContentRect", + "GetThemeBackgroundRegion", + "HitTestThemeBackground", + "IsThemeBackgroundPartiallyTransparent", + "DrawThemeParentBackground", + "ParentBackground", + "fsMDIForm", + "OnActivate", + "OnDeactivate", + "TFMTBcdDataX", + "AutoGenerateValue", + "Transliterate", + "EDbfError", + "Dbf_Common", + "TDbf V%d.%d", + "Invalid DBF file.", + "Dbf_IdxFile", + "TDbfLocaleErrorEvent", + "TDbfIndexDef", + "C:\\Delphi Component\\PPS\\pgdbf\\Dbf_IdxFile.pas", + "TDbfFieldDef", + "Dbf_Fields", + "TDbfFieldDefs", + "TDbfParser", + "TDbfIndexMissingEvent", + "EDbfFile", + "TDbfFile", + "TDbfCursor", + "TDbfGlobals", + "TDbfStorage", + "TDbfOpenMode", + "TDbfLanguageAction", + "TDbf", + "TDbfBlobStream", + "TDbfIndexDefs", + "TDbfIndexDefslsI", + "TDbfMasterLink", + "Dbf-", + "SELECT", + "UPDATE", + "PrivateDir", + ".DBF", + "Danga.Dbf", + ",TOT,QTY,OP,INC,CODE,DES,SIZE,UNIT,TID,SPY,BIGO,", + "ROUND", + "F_TQTY", + "F_QQTY", + "F_QTY", + "select", + "SSL_CTX_use_PrivateKey_file", + "SSL_CTX_check_private_key", + "CostAccount.Txt", + "EQTY", + "\\M.Dbf", + "\\L.Dbf", + "\\E.Dbf", + "\\W.Dbf", + "\\J.Dbf", + "\\GongJong.Dbf", + "\\Unit.Dbf", + "\\JUnit.Dbf", + "\\Danga.Dbf", + "F_SRATE", + "\\MainPart.Dbf", + "\\UnitPart.Dbf", + "\\JUnitPart.Dbf", + "QTY(", + "LARATE", + "MARATE", + "EQRATE", + "LARATE(", + "MARATE(", + "EQRATE(", + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "QTypInfo", + "Dbf_PgFile", + "oDbf_Str", + "YDbf_Common", + "1Dbf_IdxCur", + "Dbf_Cursor", + "Dbf_DbfFile", + "Dbf_Lang", + "Dbf_Parser", + "hDbf_PrsSupp", + "Dbf_PrsCore", + "Dbf_PrsDef", + "Dbf_Memo", + "Insert record", + "Delete record", + "Not in cached update mode", + "DataSource cannot be changed0Cannot perform this operation on an open dataset\"Dataset not in edit or insert mode1Cannot perform this operation on a closed dataset!Cannot modify a read-only dataset#Nested dataset must inherit from %s(Filter expression incorrectly terminated", + "Window Background", + "Highlight Background", + "Info Background", + "Menu Background", + "Background", + "Unable to insert a line Clipboard does not support Icons", + "OnDeactivate쮆E", + "Transliterate멄[G", + "Transliterate먗}G", + "TDbfFieldDef먎", + "TDbfFieldDefs떲\\", + "TDbfCursor릱LI", + "Dbf맂qI", + "TDbfBlobStream릐sI", + "TDbfIndexDefs떲컎I", + "TDbf릶wI" + ] + }, + "JDLCHK.Tab_33.dll": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1068620, + "raw_off": 1024, + "raw_size": 1069056 + }, + { + "name": "DATA", + "va": 1073152, + "vsize": 16100, + "raw_off": 1070080, + "raw_size": 16384 + }, + { + "name": "BSS", + "va": 1089536, + "vsize": 4461, + "raw_off": 1086464, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1097728, + "vsize": 9894, + "raw_off": 1086464, + "raw_size": 10240 + }, + { + "name": ".edata", + "va": 1110016, + "vsize": 148, + "raw_off": 1096704, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1114112, + "vsize": 83272, + "raw_off": 1097216, + "raw_size": 83456 + }, + { + "name": ".rsrc", + "va": 1200128, + "vsize": 49152, + "raw_off": 1180672, + "raw_size": 49152 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "version.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "comctl32.dll" + ], + "exports": [ + "GetDLLVersion", + "GetJDLAnnouncement", + "IsCertifiedJDL", + "JDLCheck" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 15228, + "domain_strings": [ + "clBackground", + "DrawThemeBackground", + "GetThemeBackgroundContentRect", + "GetThemeBackgroundRegion", + "HitTestThemeBackground", + "IsThemeBackgroundPartiallyTransparent", + "DrawThemeParentBackground", + "ParentBackground", + "fsMDIForm", + "OnActivate", + "OnDeactivate", + "TFMTBcdDataX", + "AutoGenerateValue", + "Transliterate", + "EDbfError", + "Dbf_Common", + "TDbf V%d.%d", + "Invalid DBF file.", + "Dbf_IdxFile", + "TDbfLocaleErrorEvent", + "TDbfIndexDef", + "C:\\Delphi Component\\PPS\\pgdbf\\Dbf_IdxFile.pas", + "TDbfFieldDef", + "Dbf_Fields", + "TDbfFieldDefs", + "TDbfParser", + "TDbfIndexMissingEvent", + "EDbfFile", + "TDbfFile", + "TDbfCursor", + "TDbfGlobals", + "TDbfStorage", + "TDbfOpenMode", + "TDbfLanguageAction", + "TDbf", + "TDbfBlobStream", + "TDbfIndexDefs", + "TDbfIndexDefslsI", + "TDbfMasterLink", + "Dbf-", + "SELECT", + "UPDATE", + "PrivateDir", + ".DBF", + "Danga.Dbf", + ",TOT,QTY,OP,INC,CODE,DES,SIZE,UNIT,TID,SPY,BIGO,", + "ROUND", + "F_TQTY", + "F_QQTY", + "F_QTY", + "select", + "SSL_CTX_use_PrivateKey_file", + "SSL_CTX_check_private_key", + "CostAccount.Txt", + "EQTY", + "\\M.Dbf", + "\\L.Dbf", + "\\E.Dbf", + "\\W.Dbf", + "\\J.Dbf", + "\\GongJong.Dbf", + "\\Unit.Dbf", + "\\JUnit.Dbf", + "\\Danga.Dbf", + "F_SRATE", + "F_SANQTY", + "F_LQTY1", + "F_LQTY2", + "F_LQTY3", + "F_LQTY4", + "F_LQTY5", + "F_LRATE", + "\\MainPart.Dbf", + "\\UnitPart.Dbf", + "\\JUnitPart.Dbf", + "QTY(", + "LARATE", + "MARATE", + "EQRATE", + "LARATE(", + "MARATE(", + "EQRATE(", + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "QTypInfo", + "Dbf_PgFile", + "oDbf_Str", + "YDbf_Common", + "1Dbf_IdxCur", + "Dbf_Cursor", + "Dbf_DbfFile", + "Dbf_Lang", + "Dbf_Parser", + "hDbf_PrsSupp", + "Dbf_PrsCore", + "Dbf_PrsDef", + "Dbf_Memo", + "Insert record", + "Delete record", + "Not in cached update mode", + "DataSource cannot be changed0Cannot perform this operation on an open dataset\"Dataset not in edit or insert mode1Cannot perform this operation on a closed dataset!Cannot modify a read-only dataset#Nested dataset must inherit from %s(Filter expression incorrectly terminated", + "Window Background", + "Highlight Background", + "Info Background", + "Menu Background", + "Background", + "Unable to insert a line Clipboard does not support Icons", + "OnDeactivate쮆E", + "Transliterate멄[G", + "Transliterate먗}G", + "TDbfFieldDef먎", + "TDbfFieldDefs떲\\", + "TDbfCursor릱LI", + "Dbf맂qI", + "TDbfBlobStream릐sI", + "TDbfIndexDefs떲컎I", + "TDbf릶wI" + ] + }, + "MINIEXTR.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 17296, + "raw_off": 1536, + "raw_size": 17408 + }, + { + "name": ".rdata", + "va": 24576, + "vsize": 2821, + "raw_off": 18944, + "raw_size": 3072 + }, + { + "name": ".data", + "va": 28672, + "vsize": 15064, + "raw_off": 22016, + "raw_size": 13312 + }, + { + "name": ".rsrc", + "va": 45056, + "vsize": 2992, + "raw_off": 35328, + "raw_size": 3072 + }, + { + "name": ".reloc", + "va": 49152, + "vsize": 2134, + "raw_off": 38400, + "raw_size": 2560 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "LAAppend", + "LAAppendDirect", + "LADelete", + "LADeleteDirect", + "LAErrMsg", + "LAExtract", + "LAExtractDirect", + "LAGetExtensionString", + "LAIsArchiv", + "LAIsArchivHF", + "LAList", + "LAListDirect", + "LARegister" + ], + "timestamp": 947580437, + "characteristics": "0x210E" + }, + "strings_total": 513, + "domain_strings": [ + "Delete" + ] + }, + "RAR.EXE": { + "format": "DOS-MZ", + "detail": { + "magic": "4d5a7c016a01990840033903ffff282d" + }, + "strings": [ + "CC&8", + ">LN u", + "PSQR", + "Y]_^", + "ZY[X", + ">YY@", + "nOA;", + "u3SQR", + "$/YY", + ",YYP3", + "F+6{", + ";6.Ru", + "Qr!:", + "ZY[DD", + "[YZ^_]", + "X_^]", + "&hRU", + "w!9V", + "I,\"t", + "\"<\\u", + "&8RU", + "!r`;V", + "sZ)F", + "ub&9W", + "&)7P&", + "!r$RP", + "bRP&", + "XVW3", + "u6;V", + "u(;V", + "ZH;F", + "Vx}^", + "PSQV", + "V|$u", + "iwpu", + "AG;~", + ">DV*u", + "YYRP", + "'*YY", + "?.th", + "PRPRP", + "?.t#", + "?.td", + "YYF;6", + "ZTuM", + "?.t4", + "\"(#H#", + "&`'}'[", + "hVW3", + "PKt/", + "PKt!", + "p\\\\t", + "$_^]", + "L%L9LUL]LeLmLuL}L", + "M*M#M#M", + "M-MwJ", + "Y+~#", + "GF;v", + "?.t+", + "\\\"]1]g]U", + "FS t", + "p\\/u", + "p\\\\F", + "o\\\\u", + "YY@P", + "YY;F", + "\\aY[", + "RSFX", + "IC&8", + "[wIg", + "Y! t", + "=]u*", + ">)", + " MnQke", + "awbw", + "Oauq\"", + "m\"(+", + "*FAB*", + "PRPRPR", + "YY_^", + "iut'", + "T$PR", + "i0ww", + "6!YV", + "0uPR", + "iw(r", + "u!;V", + "?/u,", + "?=u\"", + "?@u<3", + "t&=K", + "9%@%+%$%2%[(", + "(G$?'X#", + "'K&%'", + "?@tf", + "J(Y[", + "/,YY", + "#,YY", + "Z2}B", + "6wiP", + "?YY[", + "0~YY", + ".ui+^", + "7YY[", + "ZXu?", + "ZXuV", + "Q{YYRP", + "CrYY", + "EYu&;", + "CYu ", + "ZPtt", + " NPR", + "!>^>", + "=^>U", + "ZVu!", + "otYYRP", + "RVW3", + "jjY3", + ";YY[", + "YY@3", + "YhY3", + "IZYY", + "`YYRP", + "?`u/", + "r_YYRP", + ">{ivt", + "iu;;", + "i0u6", + "LqYY", + "=qYY", + "|8RP", + "]\"^F^U", + "ZFuN", + "UYYRP", + "`K`}_", + "iwu2", + "FrYY", + "6niP", + "VRYY", + "7oYY3", + "?`u6", + "{mYY", + ":mYY", + "{UYY", + "TlYY", + " lYY", + "fhYY", + "!hYY", + ">[i2t", + "{OYY", + "DYYRP", + "ZFt+", + ",2RP", + "/2YY", + "VYY_^", + "ZDt5", + "?YYRP", + "=YYRP", + "/5YY", + "aZYY", + "3ZYY]", + "YYY]", + "Yu*3", + "=@YY", + "?YY3", + "YRPV", + "?`t/", + ":uA&", + "TUYY", + ":u/&", + "TYY^", + ">:YY", + "ZDt+PR", + "0)YYV", + ";>YYv", + ">YY)>YY", + ";>UYv", + ")6UY", + "$YYV", + "$YY_^", + "6mY)6uY", + "6qY)6wY", + "O:YY", + "::YY", + "$YY]", + "YYZ+", + "'v03", + "ZP s", + "Z s", + "n2YY", + "t2=R", + "y(YY3", + "&YY3", + "t~;6", + "*_^]", + "%YY^]", + "YYG;", + "_#YY", + "+#YY", + "\"\"YY", + " YYV", + "-\"YYV", + "QSPR3", + "ittm", + "p\\PR", + "yit5", + "u$;~", + "@uIV", + "OF;v", + ">(_^", + "?*ta", + "?.uc", + "?*t^", + "@DRP", + "?`tc", + "WZ:t", + "WZ\\u", + "yiPW", + "YYF;v", + "AB;V", + "Zw(r", + "zrIu", + "@fr ", + "v\\9|", + "v%9|", + "v.9|", + "zsc;", + "ys';", + "zs1;", + "^ysc;", + "Vys';", + "fys1;", + "G;>To|", + "A\"[6", + ",&,U", + "r@u1;F", + "3$3C3f3U", + "6@nP", + "HI^]", + "Xk_^]", + "XkF;6", + "6Zk;6", + "PSQRVU", + "RVWU", + "]_^Z=", + "]_^Z+", + "]^ZY[X", + "PSQRWVU", + "]^_ZY[X", + "&8/u", + "tAG.", + "w!J.", + "t/Ht,", + "w#P.", + "XvH.", + "t.Ht+", + "SQRWV", + ":FJu", + "^_ZY[]", + "t>.8", + "P0pU", + "I>-------!.", + "Text ", + "Hex ", + "Unwrap", + "Wrap ", + "CR/LF ", + "CR ", + "LF ", + "%#I%`%80s", + "%#I%`Col %-3d", + "Wait", + "Extracting", + "Search", + "Search string not found", + "Help", + "%#i%`%^RAR VIEWER", + "%#i%`CURSOR MOVEMENT", + "%#i%`FUNCTION KEYS", + "%#iLine up ", + "%#iLine down ", + "%#iChar left ", + "%#iChar right ", + "%#iPage up PgUp", + "%#iPage down PgDn", + "%#iTop of file Home", + "%#iEnd of file End", + "%#iF1 Help", + "%#iF2 Toggle Wrap/Unwrap", + "%#iF4 Toggle Text/Hex", + "%#iF6 Select EOL sequence", + "%#iF7 Search string", + "%#iShift-F7 Continue search", + "%#iF10 Return", + "%#I%`%3u%%", + "%#I%`%s %s %s %s %s %s", + "Help ", + "Return", + "%`%#b%d", + "%`%#b ", + "Add ", + "View ", + "Fresh ", + "Volume", + "Move ", + "Update", + "Delete", + "Option", + "Quit ", + " ", + "Solid ", + "View..", + "SFX ", + "SFXVol", + "SolVol", + "SolSVl", + "Repair", + "SolSFX", + "Test ", + "Extr ", + "Commen", + "ExCurD", + "ExtrTo", + "FilCmt", + "AddRec", + "Lock ", + "Storing ", + "Fastest ", + "Fast ", + "Normal ", + "Good ", + "Best ", + "Amiga", + "VAX/VMS", + "Unix", + "VM/CMS", + "Atari ST", + "OS/2", + "Mac-OS", + "Z-System", + "CP/M", + "PRIMOS", + "Apple GS", + "NEXT", + "Win95/NT", + "Usage: RAR - - ", + " <@listfiles...> ", + " or RAR", + "", + " a Add files to archive u Update files in archive", + " f Freshen files in archive m[f] Move to archive [files only]", + " x Extract files with full path e Extract files to current directory", + " d Delete files from archive v Verbosely list contents of archive", + " r Repair archive l List contents of archive", + " p Print file to stdout s Convert archive to SFX", + " t Test archive files c Add archive comment", + " en Enter to archive cf Add files comment", + " k Lock archive cw Write archive comment to file", + " rr[N] Add data recovery record", + "", + " r Recurse subdirectories y Assume Yes on all queries", + " rr[N] Add data recovery record mm[f] Multimedia compression [force]", + " o+ Overwrite existing files o- Do not overwrite existing files", + " Press any key for continue ...", + " bw Black & white mode col Color mode", + " s Create solid archive sfx Create SFX archives", + " std Stdout mode b Enable backup archives", + " f Freshen files u Update files", + " c- Disable comments show ed Do not add empty directories", + " ep Exclude paths from names ep1 Exclude base dir from names", + " tk Keep original archive time tl Set archive time to latest file", + " cfg- Disable read configuration ems- Disable expanded memory usage", + " z Read archive comment from file", + " x Exclude specified file", + " x@ Exclude files in specified list file", + " v Create volumes with size autodetection", + " v[k,b] Create volumes with size=*1000 [*1024, *1]", + " vd Erase disk contents before creating volume", + " p Set password", + " w Assign work directory", + " m<0..5> Set compression level (0-store...3-default...5-maximal)", + " e Set file exclude attributes", + " av Put authenticity verification (registered versions only)", + " av- Disable AV check", + " ds Disable name sort for solid archive", + " $[drive] Add/extract volume label", + " dh Disable file sharing", + " Proceed with all volumes from current ", + " Proceed with selected files only ", + "WARNING", + "No file selected", + "%` ", + "%#hSelected ", + "%#h%d %s", + "%#h and ", + "%#h bytes in %d %s", + " ALT ", + "%#i%`ALT-C Toggle color", + "%#i%`ALT-D Select drive", + "%#i%`ALT-J DOS shell", + "%#i%`ALT-M Select compression", + "%#i%`ALT-P Set password", + "%#i%`ALT-S Save setup", + "%#i%`ALT-W Set work directory", + "Bad archive %s", + "ERROR", + "Enter path for temporary files", + "Not enough memory for extraction", + "%#I%`View %s", + "Cannot delete not empty directory %s", + "Enter default comment file", + "Enter default external viewer", + "\\*.*", + "Not enough memory to process all files", + " ", + "", + "**********", + ".. ", + "----------", + "%^%#rReading archive", + "%^%#rPlease wait", + "%^%`%#r%4ld files", + "%`%^%#I %c:\\%s ", + "%#h%` Name Size Date Time %35s", + "Archive", + "SFX volume", + "SFX archive", + "%s archive", + "%`%^%#I %s %s%s%s ", + "%#h%` Name Size Packed Date Time %22s", + "%#b%d%#I%6.6s", + "Enter archive name", + "%#r%`", + "%#r%`[%c] Move files%`", + ".EXE", + ".RAR", + "%` RAR archiver ", + "%` Version 7.00 beta registered ", + "%` Version 7.00 beta shareware ", + "%`%37s", + " Memory ", + " Settings ", + "%` Memory in use %8s %3ld Kb ", + "with EMS", + " Extract from archive %~%s", + "Disabled ", + "Enabled ", + " Add to archive %~%s", + " Add to solid archive %~%s", + " Update solid archive %~%s", + "%` Password %~%s", + "Present ", + "Absent ", + " Compression level %s", + " Multimedia compression %s", + " Add recovery record %s", + " Add AV to archives %s", + " Make solid archives %s", + "Always ", + "Optional ", + " Log errors to file %s", + " Default comment file %s", + "%`%23s", + "Archive ", + "Volume ", + "SFX Vol. ", + "SFX Arch.", + "%s Arch.", + " %12.12s", + "Archive type %~%s", + " Solid", + " Normal", + "Main comment %~%s", + "Present", + " Absent", + "File comments %~%s", + "Passwords %~%s", + "Recovery data %~%s", + "Lock %~%s", + "Auth. verif. %~%s", + "Dictionary %4d Kb", + "Files %8lu", + "Total length %8lu", + "Packed length %8lu", + "Ratio %3u%%", + "Version to extr. %d.%d0", + "Host OS Many", + "Host OS ", + "%10s", + "%23s", + "Enter destination directory", + "SELECT", + "UNSELECT", + " Storing ", + " Fastest compression ", + " Fast compression ", + " Normal compression ", + " Good compression ", + " Best compression ", + "Compression", + "Configuration... ", + "Set password ALT-P", + "Work directory ALT-W", + "Default comment file ", + "External viewer ", + "Change disk ALT-D", + "Registration ", + "Save setup ALT-S", + "Options", + "Available in registered version only", + " 360 K ", + " 720 K ", + " 1.2 M ", + " 1.44 M ", + " 2.88 M ", + "Autodetect", + "Enter volume size", + "%#r%`Thousand bytes %`%#b%14s", + "%#r%`Kilobytes %`%#b%14s", + "%~%` ", + "%~%c ", + "%~%`%c", + "RAR CONFIG", + "Setup", + "%^%#rSave current setup", + "_Save_Cancel", + "%#r%s", + "%%^%%#rDelete %d %s. Are you sure ?", + "_Yes_No", + "%#h%ld,%03ld,%03ld,%03ld", + "%#h%ld,%03ld,%03ld", + "%#h%ld,%03ld", + "%#h%ld", + " Configuration ", + "%#i%` Interface options ", + "%#i%`[%c] Color [%c] Sound ", + "%#i%`[%c] Stdout mode [%c] Mouse ", + "%#i%` Archiving options ", + "%#i%`[%c] Always solid archiving ", + "%#i%`[%c] Multimedia compression ", + "%#i%`[%c] Put recovery record ", + "%~%`[%c] Put auth. verification ", + "%#i%` Compression ", + "%#i%`(%c) Store (%c) Normal", + "%#i%`(%c) Fastest (%c) Good ", + "%#i%`(%c) Fast (%c) Best ", + "%#i%` Include file mask ", + "%#i%`[%c] Read only [%c] System", + "%#i%`[%c] Archive [%c] Hidden", + "%#i%` Sort order ", + "%#i%`(%c) Unsorted ", + "%#i%`(%c) By name ", + "%#i%`(%c) By extension ", + "%#i%`(%c) By size ", + "%#i%` Other options ", + "%#i%`[%c] Use 386 instructions ", + "%#i%`[%c] Use expanded memory ", + "%~%`[%c] Log errors to file ", + "%~%`[ Ok ]", + "%~%`[ Cancel ]", + "%^%#rFile header broken. Continue ?", + "Select destination drive", + "%`%^%#rSelect drive for volumes with autodetection size", + "%~%`%$%`", + "%#i%s", + "Enter password", + " for ", + " %s: ", + " Reenter password: ", + "Reenter password", + "Passwords do not match", + "Not enough memory for registration", + "Please enter your AV text", + "Please enter your registration code", + "Registration failed", + "Thank you for support", + "%#r%`%^Looking for name", + "%`%65s", + "%`%15s", + "%#h%`%s", + ".R00", + ".A01", + ".ARJ", + "%`%^ Help ", + "%^RAR archiver. Copyright (C) 1993-95 by Eugene Roshal", + "%`%^Run RAR -? for command-line help", + "%`%^ Page %d of 2 ", + "%`File functions", + "%`Archive functions", + "F1 Help", + "F2 Add files to archive", + "F3 View files", + "F4 Fresh files", + "F5 Create volumes", + "F6 Move files to archive", + "F7 Update files", + "F8 Delete files and directories", + "F9 Change options", + "F10 Quit", + "Alt-F2 Create solid archive", + "Alt-F4 Create SFX archive", + "Alt-F5 Create SFX volumes", + "Alt-F6 Create solid volumes", + "Alt-F7 Create solid SFX volumes", + "Alt-F8 Repair archive", + "Alt-F9 Create solid SFX archive", + "F2 Test archive files", + "F3 View archive files", + "F4 Extract with full path", + "F5 Add archive comment", + "F6 Extract to current directory", + "F7 Convert archive to SFX", + "F8 Delete from archive", + "Alt-F4 Extract to path", + "Alt-F5 Add files comment", + "Alt-F6 Add recovery record", + "Alt-F7 Lock archive", + "%`%^Common functions", + "Alt-C toggle color", + "Alt-D change drive", + "Alt-J OS shell", + "Alt-M select compression level", + "Alt-P enter password", + "Alt-S save setup", + "Alt-W set working directory", + "SPACE,INS select file", + "'+' select group", + "'-' unselect group", + "'*' invert selection", + "Enter enter to archive", + " go to previous volume", + " go to next volume", + "$RAR$_", + " Adding archive comments", + " Read comment from stdin", + " Read comment from %s", + "Not enough memory for commenting", + "%wf%#w", + " Cannot add comment to %s", + "%#hEnter comment for %s. F10 - done. Esc - cancel.", + " Deleting comment from %-20s", + " Adding comment to %-20s", + "%` Ok", + "%ws%#g", + " Done", + " Adding file comments", + "%ws%#w", + "%#hEnter comment for %s:%s. F10 - done. Esc - cancel.", + "Comment header broken", + "Not enough memory to extract comment", + "Comment broken", + "Comment broken - skipped", + "%~%`%^Press any key", + "%~%`%^ Operation continued ", + "Comment header broken - skipped", + "File comment broken - skipped", + "File comment broken", + " Destination file name required", + " Cannot create %s", + " Write comment to %s", + "Comment not present", + "$RECOVER.RAR", + "$RECONST.RAR", + " Build %s", + "%^%#rReconstruct archive structure ?", + " Reconstructing %s", + " Cannot repair archive with old format", + " Find %s", + "Header broken", + "%^%#rArchive header broken. Mark archive as solid ?", + " No files", + "%^%#rSuspicious entry %s", + "%^%#rDirectory", + "%^%#rSize %ld Packed %ld", + "%^%#rAdd it to archive ?", + "_Yes_No_All", + " Scanning...", + " Data recovery record not found", + "Protect!", + " Data recovery record found", + " Sector %ld (offsets %lX...%lX) damaged", + " - data recovered", + " - cannot recover data", + "RAR.CFG", + "RAR.LOG", + "CFG-", + "AFUM", + "IALT", + "EMS-", + " RAR 7.00 beta Copyright (c) 1993-95 Eugene Roshal 22 December 1995", + " Registered to %s", + " Shareware version Type RAR -? for help", + "Too many files and directories", + "Not enough memory to extract", + " %-14s is not RAR archive", + " Testing archive %s", + " Extracting from %s", + ".rar", + "Solid archive: first volume required", + "%%^%%#r%-12s - use current password ?", + "Encrypted file", + "%#w%wf", + " %s: unknown method", + " Skipping %-56s", + " Testing %-56s Ok", + " Extracting %-56s", + " Cannot create directory %s", + " Creating %-56s", + "%#h%`%-12s", + " Testing %-56s", + " ------ Printing %s", + "%#I%`View %s:%s", + " Encrypted file: CRC failed in %s (password incorrect ?)", + "CRC failed (password incorrect ?)", + " %-15s : CRC failed", + " All OK", + " Total errors: %ld", + "???????????", + "SFX ", + "volume", + " Pathname/Comment", + "%12s", + " Name ", + " Size Packed Ratio Date Time Attr CRC-32 Meth Ver", + "%12s ", + " %8ld %8ld ", + " Split", + " %3d%% ", + " %2.2s-%2.2s-%2.2s %2.2s:%2.2s ", + "%c%c%c%c%c%c", + " %8.8lX m%d %d.%d", + "%5ld %16ld %8ld %4d%%", + " 0 files", + "%02d%02d%02d%02d%02d", + " Protecting archive", + " Protecting %s", + " Convert archives to SFX", + " Converting %-45s", + " Cannot open %s", + " %s is not RAR archive", + " %s already SFX", + " %s is not first volume", + " %s - cannot convert to SFX archive with old format", + " Unknown method in %s", + " Internal SFX doesn't support archives with dictionary size more than 64Kb", + " Locking archive", + " Locking %s", + "MS DOS 3.0 or later required", + "AFUMD", + "RE~^", + "Rar!", + "Archive header broken", + "Cannot modify old format archive", + "Locked archive", + "Cannot modify volume", + " Cannot find volume %s. Cannot change disk with temporary files", + "Required volume absent", + " Cannot find volume %s", + " ... %-56s", + "Not enough memory to read authenticity information", + " Verifying authenticity information ... ", + "%~ Archive %s", + " %s at %s", + "modified", + "created", + "%~ by %s", + "Unknown authenticity information format", + "Authenticity information corrupt", + "%#w Failed", + "Invalid authenticity information", + "PKZIP -c ", + "PKZIP -Z ", + "ARJ C ", + "PKZIP -D ", + "ARJ D ", + "LHA D ", + "PKUNZIP -T ", + "ARJ T ", + "LHA T ", + "PKUNZIP -D ", + "ARJ X ", + "LHA X ", + "PKUNZIP ", + "ARJ E ", + "LHA E ", + "ZIP2EXE ", + "ARJ Y -JE ", + "LHA S /X1 ", + " *.*", + "File header broken", + "Not enough memory to pack", + "%wf%#h", + " Evaluation copy. Please register.", + "%^%#eCannot create volumes with autodetecting size", + "%^%#eand place temporary files on same disk", + "%^%#eCreate archive on other disk or use -w", + " Creating %sarchive %s", + "solid ", + " Updating %sarchive %s", + "Not enough memory to update solid archives", + "Cannot update solid archives with password", + " Cannot open %s", + " Adding ", + " Updating ", + "%-50s ", + " Ok ", + " Deleting files %s...", + " Deleting %-30s", + " deleted", + "%#w NOT DELETED", + " Deleting directory %-30s", + " Warning: cannot open %d %s", + " Warning: no files", + " Analyzing archived files: ", + "%wf%`%5d", + " Repacking archived files: ", + " %s: encrypted", + " Cannot modify solid archive containing encrypted files", + " This RAR version cannot update solid archives", + " with dictionary size more than 64Kb", + " %s:%s CRC failed", + "%`%#h Press Ctrl-Z and Enter when done", + " Erasing contents of drive %c:", + "%3d%%", + "%`%3d%%", + "%`Elapsed time %~%02u:%02u:%02u", + "%`Estimated time %~%02u:%02u:%02u%`%3d%%", + "%`Elapsed time %02u:%02u:%02u", + "%~[%$%s%$]%#r ", + "%^%#rRAR interrupted by user. Continue ?", + "_Yes_Abort", + "User break", + "DRSCKN", + "%#g%` Files ", + "%#g%` Status ", + "%#g%` Total ", + "%#g%` Statistics ", + "%#g%` Current ", + "%#h%`Name", + "%#h%`", + "%~%`%$%`%$", + "%~%`%c%`%c", + "%~%`%c%`%c%`%c%`%c", + "%`Files %3ld%`Directories %3ld%`Archives %3ld%`Size %8ld%`Packed %8ld%`Ratio %4d%%", + " Total %ld%`Converted %ld", + " Total %ld%`Commented %ld", + "EMMXXXX0", + "%s A)bort, R)etry, I)gnore: ", + "Hardware ERROR", + "%^%#e%s", + "%^%#eA)bort, R)etry, I)gnore: ", + "write protect", + "unknown unit", + "drive not ready", + "unknown command", + "data error (CRC)", + "bad request", + "seek error", + "unknown media type", + "sector not found", + "printer out of paper", + "write fault", + "read fault", + "general failure", + "reserved", + "invalid disk change", + "Device error", + "Error: %s on drive %c:", + "Swapping to disk", + "Not enough memory", + "Swap file damaged. Program aborted", + "$RAR$_XXXXXX", + " Cannot open %s ", + "%%^%%#rOverwrite %s ?", + "File already exists", + "_Yes_No_All_Rename_Quit", + "Enter new name: ", + "Enter new name", + "%~%`%s", + " Unexpected end of archive", + " %s: file header broken", + "file header broken", + "Data recovery header corrupt", + "Not enough memory to delete from solid archive", + " Deleting from %s", + " Deleting %s", + " Erasing empty archive %s", + " No files to delete", + "%#g%ws", + " Adding data recovery record", + "~#`w", + "***************", + "123456789abcdef", + "1234", + "Write error", + "Read error", + "Seek error", + "File open error", + "File create error", + "File close error", + "Broken archive - use 'Repair' command", + "%%^%%#e%s", + "%^%#eProgram aborted", + "Break", + "Control-Break pressed", + " ", + "Next volume", + "%^%#rCreate next volume ?", + "Disk full", + "%^%#rDisk full. Insert next", + "_Ok_Cancel", + " ... %-55s", + " Keep %s", + "Cannot put authenticity verification", + " Adding authenticity verification ", + "%02u:%02u:%02u %u %s %u", + "-------- %2d %s %d, archive %s", + "%02d:%02d:%02d ", + "%-12s ", + "%%^%%#rInsert disk with %s", + " (08@P`p", + " !!!!! ", + "@@@@@@@@@@@@@@@", + "@@@@@@@", + "@@@@@@", + "@@@@ ", + "),(((((),(((", + "*(((", + "(null)", + "COMPAQ", + "print scanf : floating point formats not linked", + "COMSPEC", + "XXXXXX", + "*./:?\\", + " *+-", + "ANQYan", + "ADHRS", + "EPTX", + "CDERSTX" + ] + }, + "RealGrid6.bpl": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 247344, + "raw_off": 1024, + "raw_size": 247808 + }, + { + "name": "DATA", + "va": 253952, + "vsize": 756, + "raw_off": 248832, + "raw_size": 1024 + }, + { + "name": "BSS", + "va": 258048, + "vsize": 157, + "raw_off": 249856, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 262144, + "vsize": 35882, + "raw_off": 249856, + "raw_size": 36352 + }, + { + "name": ".edata", + "va": 299008, + "vsize": 89820, + "raw_off": 286208, + "raw_size": 90112 + }, + { + "name": ".rdata", + "va": 389120, + "vsize": 13, + "raw_off": 376320, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 393216, + "vsize": 14672, + "raw_off": 376832, + "raw_size": 14848 + }, + { + "name": ".rsrc", + "va": 409600, + "vsize": 11264, + "raw_off": 391680, + "raw_size": 11264 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "advapi32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl" + ], + "exports": [ + "@$xp$14Urgrids@TweRow", + "@$xp$15Urgrids@TwGroup", + "@$xp$15Urgrids@TwTitle", + "@$xp$15Urgrids@TweCell", + "@$xp$15Urgrids@TweEdit", + "@$xp$15Urmgrid@TwCells", + "@$xp$16Urgrids@TwColumn", + "@$xp$16Urgrids@TwGroups", + "@$xp$16Urgrids@TwInEdit", + "@$xp$16Urgrids@TweGroup", + "@$xp$16Urgrids@TweLevel", + "@$xp$16Urguard@TKeyType", + "@$xp$17Urgrids@TwColumns", + "@$xp$17Urgrids@TwInCombo", + "@$xp$17Urgrids@TwMarkers", + "@$xp$17Urgrids@TweColumn", + "@$xp$17Urgrids@TweRowCol", + "@$xp$17Urguard@TCodeType", + "@$xp$17Urmgrid@TRealGrid", + "@$xp$17Urmgrid@TwMemPool", + "@$xp$17Urmgrid@TwRowType", + "@$xp$17Urmgrid@TweInsert", + "@$xp$18Urdedit@TwDateEdit", + "@$xp$18Urdlgimg@TweImgDlg", + "@$xp$18Urgrids@TwEditKind", + "@$xp$18Urgrids@TwGridMode", + "@$xp$18Urgrids@TwSortMark", + "@$xp$18Urgrids@TweDrawRow", + "@$xp$18Urguard@URGuard__1", + "@$xp$18Urlists@TwItemList", + "@$xp$18Urmgrid@TwDataType", + "@$xp$18Urmgrid@TwRowInfos", + "@$xp$18Urmgrid@TwRowState", + "@$xp$18Urmgrid@TweGetText", + "@$xp$18Urutils@TwFitStyle", + "@$xp$18Urutils@TweCloseUp", + "@$xp$19Urdlgimg@TwInDlgImg", + "@$xp$19Urgrids@TwCellStyle", + "@$xp$19Urgrids@TwEditStyle", + "@$xp$19Urgrids@TwGridLines", + "@$xp$19Urgrids@TwGridState", + "@$xp$19Urgrids@TwInNumEdit", + "@$xp$19Urgrids@TwInSpecial", + "@$xp$19Urgrids@TwIndiState", + "@$xp$19Urgrids@TweDrawCell", + "@$xp$19Urgrids@TweDrawIndi", + "@$xp$19Urgrids@TweDrawMark", + "@$xp$19Urguard@TCodeStatus", + "@$xp$19Urmgrid@TwMemColumn", + "@$xp$19Urmgrid@TweGetImage", + "@$xp$19Urregs@TwGridEditor", + "@$xp$20Urdlgmemo@TweMemoDlg", + "@$xp$20Uredits@TwCustomEdit", + "@$xp$20Urgrids@TwCustomGrid", + "@$xp$20Urgrids@TwDrawObject", + "@$xp$20Urgrids@TwEditButton", + "@$xp$20Urgrids@TwFixedStyle", + "@$xp$20Urgrids@TwGridFooter", + "@$xp$20Urgrids@TwGridOption", + "@$xp$20Urgrids@TwGroupTitle", + "@$xp$20Urgrids@TwInBoolEdit", + "@$xp$20Urgrids@TwInDateEdit", + "@$xp$20Urgrids@TwInPickList", + "@$xp$20Urgrids@TwInTimeEdit", + "@$xp$20Urgrids@TwIndicators", + "@$xp$20Urguard@TGetKeyEvent", + "@$xp$20Urlists@TwListoption", + "@$xp$20Urmgrid@TwFindOption", + "@$xp$20Urmgrid@TweDeleteRow", + "@$xp$20Urutils@TweSpinClick", + "@$xp$21Urdlgmemo@TwInDlgMemo", + "@$xp$21Urfilegrid@TwFileGrid", + "@$xp$21Urgrids@TwColumnTitle", + "@$xp$21Urgrids@TwColumnValue", + "@$xp$21Urgrids@TwFixedOption", + "@$xp$21Urgrids@TwFooterTitle", + "@$xp$21Urgrids@TwGridExtents", + "@$xp$21Urgrids@TwGridFooters", + "@$xp$21Urgrids@TwGridHeaders", + "@$xp$21Urgrids@TwGridLinesEx", + "@$xp$21Urgrids@TwGridOptions", + "@$xp$21Urgrids@TwHeaderTitle", + "@$xp$21Urgrids@TwInCheckEdit", + "@$xp$21Urgrids@TwInMultiEdit", + "@$xp$21Urgrids@TwMarkerStyle", + "@$xp$21Urgrids@TwObjectValue", + "@$xp$21Urgrids@TweDrawFooter", + "@$xp$21Urgrids@TweImageIndex", + "@$xp$21Urguard@TGetCodeEvent", + "@$xp$21Urmgrid@TwFindOptions", + "@$xp$21Urutils@TwImageLayout", + "@$xp$21Urutils@TwUpDownState", + "@$xp$22Urgraphics@TwBackState", + "@$xp$22Urgrids@TwColumnFooter", + "@$xp$22Urgrids@TwColumnValues", + "@$xp$22Urgrids@TwFixedOptions", + "@$xp$22Urgrids@TwInRadioGroup", + "@$xp$22Urgrids@TwObjectValues", + "@$xp$22Urmgrid@TwFooterMethod", + "@$xp$22Urmgrid@TweCalcFooters", + "@$xp$23Urmgrid@TweValueChanged", + "@$xp$23Urnedit@TwCustomNumEdit", + "@$xp$24Uredits@TwCustomMaskEdit", + "@$xp$24Urgraphics@TwButtonState", + "@$xp$24Urgraphics@TwButtonStyle", + "@$xp$24Urguard@TChangeCodeEvent", + "@$xp$24Urlists@TwItemListOption", + "@$xp$24Urmgrid@TwFooterOperator", + "@$xp$24Urmgrid@TweValueChanging", + "@$xp$24Urutils@TweGetImageIndex", + "@$xp$25Urgrids@TwEditBorderStyle", + "@$xp$25Urgrids@TweCellEditChange", + "@$xp$25Urguard@EOnGuardException", + "@$xp$25Urguard@TCheckedCodeEvent", + "@$xp$25Urguard@TEsMachineInfoSet", + "@$xp$25Urguard@TGetModifierEvent", + "@$xp$25Urmgrid@TwMemColumnFooter", + "@$xp$26Urgrids@TwColumnListOption", + "@$xp$26Urgrids@TwCustomInDataList", + "@$xp$26Urgrids@TweRowHeightChange", + "@$xp$26Urguard@TGetRegStringEvent", + "@$xp$27Urgrids@TweGroupWidthChange", + "@$xp$28Urgrids@TwCustomInLookupList", + "@$xp$28Urgrids@TweColumnWidthChange", + "@$xp$28Urgrids@TweLevelHeightChange", + "@$xp$29Urgrids@TweHeaderHeightChange", + "@$xp$30Urmfootstyles@TwDlgMFootStyles", + "@GetPackageInfoTable", + "@Realgrid6@@GetPackageInfoTable$qqrv", + "@Realgrid6@@PackageLoad$qqrv", + "@Realgrid6@@PackageUnload$qqrv", + "@Realgrid6@initialization$qqrv", + "@Urdedit@Finalization$qqrv", + "@Urdedit@TwDateEdit@", + "@Urdedit@TwDateEdit@$bctr$qqrp18Classes@TComponent", + "@Urdedit@TwDateEdit@$bdtr$qqrv", + "@Urdedit@TwDateEdit@CMFontChanged$qqrr17Messages@TMessage", + "@Urdedit@TwDateEdit@CanModify$qqrv", + "@Urdedit@TwDateEdit@Change$qqrv", + "@Urdedit@TwDateEdit@Clear$qqrv", + "@Urdedit@TwDateEdit@CreateWnd$qqrv", + "@Urdedit@TwDateEdit@GetLong$qqrv", + "@Urdedit@TwDateEdit@GetString$qqrv", + "@Urdedit@TwDateEdit@Invalidate$qqrv", + "@Urdedit@TwDateEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urdedit@TwDateEdit@KeyPress$qqrrc", + "@Urdedit@TwDateEdit@Loaded$qqrv", + "@Urdedit@TwDateEdit@SetChecked$qqro", + "@Urdedit@TwDateEdit@SetEditFormat$qqrx17System@AnsiString", + "@Urdedit@TwDateEdit@SetEnableNull$qqro", + "@Urdedit@TwDateEdit@SetFocusRect$qqro", + "@Urdedit@TwDateEdit@SetIsNull$qqro", + "@Urdedit@TwDateEdit@SetLong$qqri", + "@Urdedit@TwDateEdit@SetNullText$qqr17System@AnsiString", + "@Urdedit@TwDateEdit@SetOutLine$qqro", + "@Urdedit@TwDateEdit@SetString$qqrx17System@AnsiString", + "@Urdedit@TwDateEdit@WmKillFocus$qqrr21Messages@TWMKillFocus", + "@Urdedit@TwDateEdit@WmPaint$qqrr17Messages@TWMPaint", + "@Urdedit@TwDateEdit@WmSetFocus$qqrr20Messages@TWMSetFocus", + "@Urdedit@initialization$qqrv", + "@Urdlgimg@Finalization$qqrv", + "@Urdlgimg@TwInDlgImg@", + "@Urdlgimg@TwInDlgImg@$bctr$qqrp18Classes@TComponent", + "@Urdlgimg@TwInDlgImg@CreateParams$qqrr22Controls@TCreateParams", + "@Urdlgimg@TwInDlgImg@KeyPress$qqrrc", + "@Urdlgimg@TwInDlgImg@SetImgBounds$qqrv", + "@Urdlgimg@TwInDlgImg@ShowDlg$qqrrx11Types@TRectp16Graphics@TBitmap", + "@Urdlgimg@TwInDlgImg@WmNcHitTest$qqrr21Messages@TWMNCHitTest", + "@Urdlgimg@TwInDlgImg@cmCancelClick$qqrp14System@TObject", + "@Urdlgimg@TwInDlgImg@cmClearClick$qqrp14System@TObject", + "@Urdlgimg@TwInDlgImg@cmLoadClick$qqrp14System@TObject", + "@Urdlgimg@TwInDlgImg@cmOkClick$qqrp14System@TObject", + "@Urdlgimg@TwInDlgImg@panMainResize$qqrp14System@TObject", + "@Urdlgimg@initialization$qqrv", + "@Urdlgmemo@Finalization$qqrv", + "@Urdlgmemo@TwInDlgMemo@", + "@Urdlgmemo@TwInDlgMemo@$bctr$qqrp18Classes@TComponent", + "@Urdlgmemo@TwInDlgMemo@CreateParams$qqrr22Controls@TCreateParams", + "@Urdlgmemo@TwInDlgMemo@FormShow$qqrp14System@TObject", + "@Urdlgmemo@TwInDlgMemo@KeyPress$qqrrc", + "@Urdlgmemo@TwInDlgMemo@SetMaxLength$qqrxi", + "@Urdlgmemo@TwInDlgMemo@SetMemoBounds$qqrv", + "@Urdlgmemo@TwInDlgMemo@ShowDlg$qqrrx11Types@TRectrx14System@Variant", + "@Urdlgmemo@TwInDlgMemo@WmNcHitTest$qqrr21Messages@TWMNCHitTest", + "@Urdlgmemo@TwInDlgMemo@cmCancelClick$qqrp14System@TObject", + "@Urdlgmemo@TwInDlgMemo@cmLoadClick$qqrp14System@TObject", + "@Urdlgmemo@TwInDlgMemo@cmOkClick$qqrp14System@TObject", + "@Urdlgmemo@TwInDlgMemo@panMainResize$qqrp14System@TObject", + "@Urdlgmemo@initialization$qqrv", + "@Uredits@Finalization$qqrv", + "@Uredits@TwCustomEdit@", + "@Uredits@TwCustomEdit@$bctr$qqrp18Classes@TComponent", + "@Uredits@TwCustomEdit@CmCtl3DChanged$qqrr17Messages@TMessage", + "@Uredits@TwCustomEdit@CmEnter$qqrr20Messages@TWMNoParams", + "@Uredits@TwCustomEdit@CmFontChanged$qqrr17Messages@TMessage", + "@Uredits@TwCustomEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Uredits@TwCustomEdit@CreateWnd$qqrv", + "@Uredits@TwCustomEdit@DrawCustom$qqruirx11Types@TRect", + "@Uredits@TwCustomEdit@GetCustomRect$qqrv", + "@Uredits@TwCustomEdit@GetEditRect$qqrv", + "@Uredits@TwCustomEdit@GetMargin$qqri", + "@Uredits@TwCustomEdit@InvalidateCustom$qqrv", + "@Uredits@TwCustomEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Uredits@TwCustomEdit@KeyPress$qqrrc", + "@Uredits@TwCustomEdit@PaintWindow$qqrui", + "@Uredits@TwCustomEdit@SetAlignment$qqr18Classes@TAlignment", + "@Uredits@TwCustomEdit@SetLayout$qqr20Stdctrls@TTextLayout", + "@Uredits@TwCustomEdit@SetMargin$qqrii", + "@Uredits@TwCustomEdit@SetMargins$qqrrx11Types@TRect", + "@Uredits@TwCustomEdit@UpdateEditRect$qqrv", + "@Uredits@TwCustomEdit@WmGetDlgCode$qqrr20Messages@TWMNoParams", + "@Uredits@TwCustomEdit@WmPaint$qqrr17Messages@TWMPaint", + "@Uredits@TwCustomEdit@WmSize$qqrr16Messages@TWMSize", + "@Uredits@TwCustomMaskEdit@", + "@Uredits@TwCustomMaskEdit@$bctr$qqrp18Classes@TComponent", + "@Uredits@TwCustomMaskEdit@CmCtl3DChanged$qqrr17Messages@TMessage", + "@Uredits@TwCustomMaskEdit@CmEnter$qqrr20Messages@TWMNoParams", + "@Uredits@TwCustomMaskEdit@CmFontChanged$qqrr17Messages@TMessage", + "@Uredits@TwCustomMaskEdit@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Uredits@TwCustomMaskEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Uredits@TwCustomMaskEdit@CreateWnd$qqrv", + "@Uredits@TwCustomMaskEdit@DrawCustom$qqruirx11Types@TRect", + "@Uredits@TwCustomMaskEdit@GetCustomRect$qqrv", + "@Uredits@TwCustomMaskEdit@GetEditRect$qqrv", + "@Uredits@TwCustomMaskEdit@GetMargin$qqri", + "@Uredits@TwCustomMaskEdit@InvalidateCustom$qqrv", + "@Uredits@TwCustomMaskEdit@PaintWindow$qqrui", + "@Uredits@TwCustomMaskEdit@SetAlignment$qqr18Classes@TAlignment", + "@Uredits@TwCustomMaskEdit@SetLayout$qqr20Stdctrls@TTextLayout", + "@Uredits@TwCustomMaskEdit@SetMargin$qqrii", + "@Uredits@TwCustomMaskEdit@SetMargins$qqrrx11Types@TRect", + "@Uredits@TwCustomMaskEdit@UpdateEditRect$qqrv", + "@Uredits@TwCustomMaskEdit@WmGetDlgCode$qqrr20Messages@TWMNoParams", + "@Uredits@TwCustomMaskEdit@WmImeComposition$qqrr17Messages@TMessage", + "@Uredits@TwCustomMaskEdit@WmPaint$qqrr17Messages@TWMPaint", + "@Uredits@TwCustomMaskEdit@WmSetCursor$qqrr21Messages@TWMSetCursor", + "@Uredits@TwCustomMaskEdit@WmSize$qqrr16Messages@TWMSize", + "@Uredits@initialization$qqrv", + "@Urfilegrid@Finalization$qqrv", + "@Urfilegrid@TwFileGrid@", + "@Urfilegrid@initialization$qqrv", + "@Urgraphics@Finalization$qqrv", + "@Urgraphics@RGCalcStrHeight$qqruirx11Types@TRectx17System@AnsiStringrx21Urgraphics@TwDrawInfo", + "@Urgraphics@RGDrawBoolean$qqrp16Graphics@TCanvasrx11Types@TRectoo", + "@Urgraphics@RGDrawBoolean$qqrp16Graphics@TCanvasrx11Types@TRectorx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawBox$qqrp16Graphics@TCanvasrx11Types@TRectrx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonStyle24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawCheckBox$qqrp16Graphics@TCanvasrx11Types@TRectoox17System@AnsiString18Classes@TAlignment20Stdctrls@TTextLayoutoo", + "@Urgraphics@RGDrawCheckBox$qqrp16Graphics@TCanvasrx11Types@TRectoox17System@AnsiStringrx21Urgraphics@TwDrawInfoo24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawComboButton$qqruirx11Types@TRectooo", + "@Urgraphics@RGDrawComboImageButton$qqruirx11Types@TRectoop16Graphics@TBitmap", + "@Urgraphics@RGDrawEllipsis$qqruirx11Types@TRecto", + "@Urgraphics@RGDrawImage$qqrp16Graphics@TCanvasrx11Types@TRectp16Graphics@TBitmap18Classes@TAlignment20Stdctrls@TTextLayouto", + "@Urgraphics@RGDrawImage$qqrp16Graphics@TCanvasrx11Types@TRectp16Graphics@TBitmaprx21Urgraphics@TwDrawInfoo24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawImageEx$qqrp16Graphics@TCanvasrx11Types@TRectp16Graphics@TBitmaprx21Urgraphics@TwDrawInfooo24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawImageList$qqrp16Graphics@TCanvasrx11Types@TRectp19Controls@TImageListirx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawRadioGroup$qqrp16Graphics@TCanvasrx11Types@TRectp16Classes@TStringsii18Classes@TAlignment20Stdctrls@TTextLayoutoo", + "@Urgraphics@RGDrawRadioGroup$qqrp16Graphics@TCanvasrx11Types@TRectp16Classes@TStringsiirx21Urgraphics@TwDrawInfoo24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawSizingLine$qqrp16Graphics@TCanvas15Graphics@TColoriiii", + "@Urgraphics@RGDrawSpinButton$qqruirx11Types@TRectioo", + "@Urgraphics@RGDrawText$qqrp16Graphics@TCanvasrx11Types@TRectx17System@AnsiStringp16Graphics@TBitmap21Urutils@TwImageLayoutirx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonStyle24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawText$qqrp16Graphics@TCanvasrx11Types@TRectx17System@AnsiStringp16Graphics@TBitmap21Urutils@TwImageLayoutrx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonStyle24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawText$qqrp16Graphics@TCanvasrx11Types@TRectx17System@AnsiStringp19Controls@TImageListi21Urutils@TwImageLayoutrx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonStyle24Urgraphics@TwButtonState", + "@Urgraphics@RGDrawText$qqrp16Graphics@TCanvasrx11Types@TRectx17System@AnsiStringrx21Urgraphics@TwDrawInfo24Urgraphics@TwButtonStyle24Urgraphics@TwButtonState", + "@Urgraphics@RGEffect3D$qqruirx11Types@TRectoo", + "@Urgraphics@RGEqualColors$qqrp16Graphics@TCanvas15Graphics@TColort2", + "@Urgraphics@RGEqualColors$qqrui15Graphics@TColort2", + "@Urgraphics@RGHorzXorLine$qqrp16Graphics@TCanvasiiii15Graphics@TColor", + "@Urgraphics@RGInitDrawInfo$qqrr21Urgraphics@TwDrawInfo", + "@Urgraphics@RGRadioItemRect$qqrp16Graphics@TCanvasrx11Types@TRectp16Classes@TStringsii20Stdctrls@TTextLayout", + "@Urgraphics@RGVertXorLine$qqrp16Graphics@TCanvasiiii15Graphics@TColor", + "@Urgraphics@RG_BtnWidth", + "@Urgraphics@_RGDrawText$qqrp16Graphics@TCanvasrx11Types@TRectx17System@AnsiString18Classes@TAlignment20Stdctrls@TTextLayout18Urutils@TwFitStyleo", + "@Urgraphics@initialization$qqrv", + "@Urgrids@Finalization$qqrv", + "@Urgrids@RGEqualCells$qqrrx14Urgrids@TwCellt1", + "@Urgrids@RGSetCell$qqrr14Urgrids@TwCelliii", + "@Urgrids@RGValidCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwColumn@", + "@Urgrids@TwColumn@$bctr$qqrp19Classes@TCollection", + "@Urgrids@TwColumn@$bdtr$qqrv", + "@Urgrids@TwColumn@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwColumn@CanEditShow$qqrv", + "@Urgrids@TwColumn@CanSelect$qqrv", + "@Urgrids@TwColumn@CreateFooter$qqrv", + "@Urgrids@TwColumn@CreateListOption$qqrv", + "@Urgrids@TwColumn@CreateTitle$qqrv", + "@Urgrids@TwColumn@DefaultAlignment$qqrv", + "@Urgrids@TwColumn@DefaultFont$qqrv", + "@Urgrids@TwColumn@DefaultImeMode$qqrv", + "@Urgrids@TwColumn@DefaultImeName$qqrv", + "@Urgrids@TwColumn@DefineProperties$qqrp14Classes@TFiler", + "@Urgrids@TwColumn@EditCanModify$qqrv", + "@Urgrids@TwColumn@FontChanged$qqrp14System@TObject", + "@Urgrids@TwColumn@GetAlignment$qqrv", + "@Urgrids@TwColumn@GetBoolStr$qqro", + "@Urgrids@TwColumn@GetBoolText$qqro", + "@Urgrids@TwColumn@GetCell$qqrv", + "@Urgrids@TwColumn@GetDisplayName$qqrv", + "@Urgrids@TwColumn@GetFont$qqrv", + "@Urgrids@TwColumn@GetGrid$qqrv", + "@Urgrids@TwColumn@GetImeMode$qqrv", + "@Urgrids@TwColumn@GetImeName$qqrv", + "@Urgrids@TwColumn@GetList$qqrv", + "@Urgrids@TwColumn@GetMargins$qqri", + "@Urgrids@TwColumn@GetMaxDate$qqrv", + "@Urgrids@TwColumn@GetMaxNum$qqrv", + "@Urgrids@TwColumn@GetMinDate$qqrv", + "@Urgrids@TwColumn@GetMinNum$qqrv", + "@Urgrids@TwColumn@GetPrecision$qqrv", + "@Urgrids@TwColumn@GetVCell$qqrv", + "@Urgrids@TwColumn@GetVIndex$qqrv", + "@Urgrids@TwColumn@GetWeight$qqrv", + "@Urgrids@TwColumn@GetWidth$qqrv", + "@Urgrids@TwColumn@HasThousandSep$qqrv", + "@Urgrids@TwColumn@ImagesChanged$qqrp14System@TObject", + "@Urgrids@TwColumn@IsAlignmentStored$qqrv", + "@Urgrids@TwColumn@IsFontStored$qqrv", + "@Urgrids@TwColumn@IsImeModeStored$qqrv", + "@Urgrids@TwColumn@IsImeNameStored$qqrv", + "@Urgrids@TwColumn@ItemsChanged$qqrp14System@TObject", + "@Urgrids@TwColumn@ItemsMode$qqrv", + "@Urgrids@TwColumn@ReadColWidth$qqrp15Classes@TReader", + "@Urgrids@TwColumn@ReadGrpWidth$qqrp15Classes@TReader", + "@Urgrids@TwColumn@SetAlignment$qqr18Classes@TAlignment", + "@Urgrids@TwColumn@SetAutoSize$qqro", + "@Urgrids@TwColumn@SetCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwColumn@SetColor$qqr15Graphics@TColor", + "@Urgrids@TwColumn@SetCtl3D$qqro", + "@Urgrids@TwColumn@SetDrawInfo$qqrv", + "@Urgrids@TwColumn@SetEditBorder$qqr25Urgrids@TwEditBorderStyle", + "@Urgrids@TwColumn@SetEditButton$qqro", + "@Urgrids@TwColumn@SetEditColor$qqro", + "@Urgrids@TwColumn@SetEditFormat$qqrx17System@AnsiString", + "@Urgrids@TwColumn@SetEditStyle$qqr19Urgrids@TwEditStyle", + "@Urgrids@TwColumn@SetEqualBlank$qqro", + "@Urgrids@TwColumn@SetFitStyle$qqr18Urutils@TwFitStyle", + "@Urgrids@TwColumn@SetFont$qqrp14Graphics@TFont", + "@Urgrids@TwColumn@SetFooter$qqrp22Urgrids@TwColumnFooter", + "@Urgrids@TwColumn@SetGroup$qqri", + "@Urgrids@TwColumn@SetImageLayout$qqr21Urutils@TwImageLayout", + "@Urgrids@TwColumn@SetImages$qqrp19Controls@TImageList", + "@Urgrids@TwColumn@SetImeMode$qqr17Controls@TImeMode", + "@Urgrids@TwColumn@SetImeName$qqr17System@AnsiString", + "@Urgrids@TwColumn@SetItems$qqrp16Classes@TStrings", + "@Urgrids@TwColumn@SetLayout$qqr20Stdctrls@TTextLayout", + "@Urgrids@TwColumn@SetLevel$qqri", + "@Urgrids@TwColumn@SetLevelIndex$qqri", + "@Urgrids@TwColumn@SetListOption$qqrp26Urgrids@TwColumnListOption", + "@Urgrids@TwColumn@SetMarginRect$qqrrx11Types@TRect", + "@Urgrids@TwColumn@SetMargins$qqriuc", + "@Urgrids@TwColumn@SetMaxLength$qqri", + "@Urgrids@TwColumn@SetName$qqrx17System@AnsiString", + "@Urgrids@TwColumn@SetPopupMenu$qqrp16Menus@TPopupMenu", + "@Urgrids@TwColumn@SetRadioColumns$qqri", + "@Urgrids@TwColumn@SetReadOnly$qqro", + "@Urgrids@TwColumn@SetTitle$qqrp21Urgrids@TwColumnTitle", + "@Urgrids@TwColumn@SetTransparent$qqro", + "@Urgrids@TwColumn@SetVIndex$qqri", + "@Urgrids@TwColumn@SetValues$qqrp16Classes@TStrings", + "@Urgrids@TwColumn@SetVisible$qqro", + "@Urgrids@TwColumn@SetWeight$qqruc", + "@Urgrids@TwColumn@SetWidth$qqri", + "@Urgrids@TwColumn@SetWordWrap$qqro", + "@Urgrids@TwColumn@ValuesChanged$qqrp14System@TObject", + "@Urgrids@TwColumn@WriteColWidth$qqrp15Classes@TWriter", + "@Urgrids@TwColumn@WriteGrpWidth$qqrp15Classes@TWriter", + "@Urgrids@TwColumnFooter@", + "@Urgrids@TwColumnFooter@$bctr$qqrp16Urgrids@TwColumn", + "@Urgrids@TwColumnFooter@$bdtr$qqrv", + "@Urgrids@TwColumnFooter@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwColumnFooter@Changed$qqrv", + "@Urgrids@TwColumnFooter@DefaultAlignment$qqrv", + "@Urgrids@TwColumnFooter@DefaultColor$qqrv", + "@Urgrids@TwColumnFooter@DefaultFitStyle$qqrv", + "@Urgrids@TwColumnFooter@DefaultFont$qqrv", + "@Urgrids@TwColumnFooter@DefaultLayout$qqrv", + "@Urgrids@TwColumnFooter@DefaultMarginBottom$qqrv", + "@Urgrids@TwColumnFooter@DefaultMarginLeft$qqrv", + "@Urgrids@TwColumnFooter@DefaultMarginRight$qqrv", + "@Urgrids@TwColumnFooter@DefaultMarginTop$qqrv", + "@Urgrids@TwColumnFooter@DefaultWordWrap$qqrv", + "@Urgrids@TwColumnFooter@Footering$qqri", + "@Urgrids@TwColumnFooter@FootersChanged$qqrv", + "@Urgrids@TwColumnFooter@GetGrid$qqrv", + "@Urgrids@TwColumnFooter@GetIndex$qqrv", + "@Urgrids@TwColumnFooter@GetText$qqri", + "@Urgrids@TwColumnFooter@GetValues$qqri", + "@Urgrids@TwColumnFooter@GridFooters$qqrv", + "@Urgrids@TwColumnFooter@SetDrawInfos$qqri", + "@Urgrids@TwColumnFooter@SetValues$qqrix17System@AnsiString", + "@Urgrids@TwColumnFooter@ValuesChanged$qqrp14System@TObject", + "@Urgrids@TwColumnListOption@", + "@Urgrids@TwColumnListOption@$bctr$qqrv", + "@Urgrids@TwColumnListOption@$bdtr$qqrv", + "@Urgrids@TwColumnListOption@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwColumnListOption@DefaultFont$qqrv", + "@Urgrids@TwColumnListOption@DefaultTitleFont$qqrv", + "@Urgrids@TwColumnListOption@ImagesChanged$qqrp14System@TObject", + "@Urgrids@TwColumnListOption@SetImages$qqrp19Controls@TImageList", + "@Urgrids@TwColumnListOption@ValuesIndexChanged$qqrv", + "@Urgrids@TwColumnTitle@", + "@Urgrids@TwColumnTitle@$bctr$qqrp16Urgrids@TwColumn", + "@Urgrids@TwColumnTitle@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwColumnTitle@Changed$qqrv", + "@Urgrids@TwColumnTitle@DefaultFont$qqrv", + "@Urgrids@TwColumnTitle@DefaultMarginBottom$qqrv", + "@Urgrids@TwColumnTitle@DefaultMarginLeft$qqrv", + "@Urgrids@TwColumnTitle@DefaultMarginRight$qqrv", + "@Urgrids@TwColumnTitle@DefaultMarginTop$qqrv", + "@Urgrids@TwColumnTitle@GetGrid$qqrv", + "@Urgrids@TwColumnTitle@SetDrawInfo$qqrv", + "@Urgrids@TwColumnTitle@SetSortMark$qqr18Urgrids@TwSortMark", + "@Urgrids@TwColumns@", + "@Urgrids@TwColumns@$bctr$qqrp20Urgrids@TwCustomGridp17System@TMetaClass", + "@Urgrids@TwColumns@$bdtr$qqrv", + "@Urgrids@TwColumns@Add$qqrv", + "@Urgrids@TwColumns@FirstCol$qqrv", + "@Urgrids@TwColumns@GetColumn$qqri", + "@Urgrids@TwColumns@GetOwner$qqrv", + "@Urgrids@TwColumns@GetVCount$qqrv", + "@Urgrids@TwColumns@GetVItems$qqri", + "@Urgrids@TwColumns@InitVIndices$qqrv", + "@Urgrids@TwColumns@LastCol$qqrv", + "@Urgrids@TwColumns@NextCol$qqri", + "@Urgrids@TwColumns@PrevCol$qqri", + "@Urgrids@TwColumns@RestoreColumnsFonts$qqrv", + "@Urgrids@TwColumns@RestoreFonts$qqrv", + "@Urgrids@TwColumns@RestoreWidths$qqrv", + "@Urgrids@TwColumns@SetColumn$qqrip16Urgrids@TwColumn", + "@Urgrids@TwColumns@Update$qqrp23Classes@TCollectionItem", + "@Urgrids@TwCustomGrid@", + "@Urgrids@TwCustomGrid@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwCustomGrid@$bdtr$qqrv", + "@Urgrids@TwCustomGrid@AdjustColumnWidth$qqrpx16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@BeginUpdate$qqrv", + "@Urgrids@TwCustomGrid@CanEditShow$qqrv", + "@Urgrids@TwCustomGrid@CellEnter$qqrv", + "@Urgrids@TwCustomGrid@CellExit$qqrv", + "@Urgrids@TwCustomGrid@CheckClickingState$qqriirir14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@CheckInCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@CheckInCol$qqri", + "@Urgrids@TwCustomGrid@CheckMovingState$qqriio", + "@Urgrids@TwCustomGrid@CheckSizingRange$qqrii", + "@Urgrids@TwCustomGrid@CheckSizingState$qqrii", + "@Urgrids@TwCustomGrid@ClearSortMarks$qqrv", + "@Urgrids@TwCustomGrid@CmCtl3DChanged$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@CmDesignHitTest$qqrr17Messages@TWMMouse", + "@Urgrids@TwCustomGrid@CmExit$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@CmShowingChanged$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Urgrids@TwCustomGrid@ColumnByCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@ColumnByName$qqrx17System@AnsiString", + "@Urgrids@TwCustomGrid@ColumnByVCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@ColumnSizing$qqrp16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@ColumnTitleClick$qqrp16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@ColumnWidthChanged$qqrp16Urgrids@TwColumni", + "@Urgrids@TwCustomGrid@CreateColumns$qqrv", + "@Urgrids@TwCustomGrid@CreateEditor$qqrp16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@CreateGroups$qqrv", + "@Urgrids@TwCustomGrid@CreateParams$qqrr22Controls@TCreateParams", + "@Urgrids@TwCustomGrid@CreateWnd$qqrv", + "@Urgrids@TwCustomGrid@DefaultHandler$qqrpv", + "@Urgrids@TwCustomGrid@DefineProperties$qqrp14Classes@TFiler", + "@Urgrids@TwCustomGrid@DeselectEditor$qqrv", + "@Urgrids@TwCustomGrid@DoCloseUp$qqro", + "@Urgrids@TwCustomGrid@DoDropDown$qqrv", + "@Urgrids@TwCustomGrid@DoEdit$qqrp16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@DoEditTextChange$qqrp14System@TObject", + "@Urgrids@TwCustomGrid@DoGetImageIndex$qqrp16Urgrids@TwColumniri", + "@Urgrids@TwCustomGrid@DoGetListImageIndex$qqrp16Urgrids@TwColumni", + "@Urgrids@TwCustomGrid@DrawCell$qqrp16Urgrids@TwColumnirx11Types@TRectoooo", + "@Urgrids@TwCustomGrid@DrawCellLines$qqrp16Urgrids@TwColumnirx11Types@TRect", + "@Urgrids@TwCustomGrid@DrawColumn$qqriiooo", + "@Urgrids@TwCustomGrid@DrawColumnFooter$qqriio", + "@Urgrids@TwCustomGrid@DrawColumnHeader$qqri", + "@Urgrids@TwCustomGrid@DrawFooterTitle$qqri", + "@Urgrids@TwCustomGrid@DrawFooters$qqrirx11Types@TRectoiio", + "@Urgrids@TwCustomGrid@DrawGroup$qqriiooo", + "@Urgrids@TwCustomGrid@DrawGroupFooter$qqriio", + "@Urgrids@TwCustomGrid@DrawGroupHeader$qqri", + "@Urgrids@TwCustomGrid@DrawHeaderTitle$qqrv", + "@Urgrids@TwCustomGrid@DrawHeaders$qqroii", + "@Urgrids@TwCustomGrid@DrawIndicator$qqrirx11Types@TRecto", + "@Urgrids@TwCustomGrid@DrawMarker$qqrirx11Types@TRecto", + "@Urgrids@TwCustomGrid@DrawMovingLine$qqrv", + "@Urgrids@TwCustomGrid@DrawMovingRect$qqrv", + "@Urgrids@TwCustomGrid@DrawRow$qqriooii", + "@Urgrids@TwCustomGrid@DrawSizingLine$qqrv", + "@Urgrids@TwCustomGrid@EditButtonClick$qqrp16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@Editing$qqrv", + "@Urgrids@TwCustomGrid@EndMovingState$qqrv", + "@Urgrids@TwCustomGrid@EndSizingState$qqrv", + "@Urgrids@TwCustomGrid@EndUpdate$qqro", + "@Urgrids@TwCustomGrid@FooterTitleClick$qqri", + "@Urgrids@TwCustomGrid@GetColCount$qqrv", + "@Urgrids@TwCustomGrid@GetColumnMode$qqrv", + "@Urgrids@TwCustomGrid@GetCurCell$qqrv", + "@Urgrids@TwCustomGrid@GetEditVal$qqrv", + "@Urgrids@TwCustomGrid@GetFixedCount$qqrv", + "@Urgrids@TwCustomGrid@GetGroupCount$qqrv", + "@Urgrids@TwCustomGrid@GetLeftCol$qqrv", + "@Urgrids@TwCustomGrid@GetRowHeight$qqrv", + "@Urgrids@TwCustomGrid@GetSelected$qqri", + "@Urgrids@TwCustomGrid@GetSelectedColumn$qqrv", + "@Urgrids@TwCustomGrid@GetSelectedCount$qqrv", + "@Urgrids@TwCustomGrid@GetSelectedIndex$qqrv", + "@Urgrids@TwCustomGrid@GetTopRow$qqrv", + "@Urgrids@TwCustomGrid@GetVColCount$qqrv", + "@Urgrids@TwCustomGrid@GetVColumns$qqri", + "@Urgrids@TwCustomGrid@GetVGroupCount$qqrv", + "@Urgrids@TwCustomGrid@GetVGroups$qqri", + "@Urgrids@TwCustomGrid@GroupSizing$qqrp15Urgrids@TwGroup", + "@Urgrids@TwCustomGrid@GroupTitleClick$qqrp15Urgrids@TwGroup", + "@Urgrids@TwCustomGrid@GroupWidthChanged$qqrp15Urgrids@TwGroupi", + "@Urgrids@TwCustomGrid@HeaderHeightChanged$qqri", + "@Urgrids@TwCustomGrid@HeaderTitleClick$qqrv", + "@Urgrids@TwCustomGrid@HideButton$qqrv", + "@Urgrids@TwCustomGrid@HideEditor$qqrv", + "@Urgrids@TwCustomGrid@InColCells$qqri", + "@Urgrids@TwCustomGrid@InGroupCells$qqrii", + "@Urgrids@TwCustomGrid@InIndicators$qqri", + "@Urgrids@TwCustomGrid@InMarkers$qqri", + "@Urgrids@TwCustomGrid@InRows$qqrii", + "@Urgrids@TwCustomGrid@InvalidateCell$qqrii", + "@Urgrids@TwCustomGrid@InvalidateCell$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwCustomGrid@InvalidateCol$qqriioo", + "@Urgrids@TwCustomGrid@InvalidateCol$qqrioo", + "@Urgrids@TwCustomGrid@InvalidateData$qqrv", + "@Urgrids@TwCustomGrid@InvalidateFootCell$qqrii", + "@Urgrids@TwCustomGrid@InvalidateFootCell$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwCustomGrid@InvalidateFootCol$qqri", + "@Urgrids@TwCustomGrid@InvalidateFootRow$qqriio", + "@Urgrids@TwCustomGrid@InvalidateFootRow$qqrio", + "@Urgrids@TwCustomGrid@InvalidateHeadCell$qqri", + "@Urgrids@TwCustomGrid@InvalidateHeadCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@InvalidateHeaders$qqro", + "@Urgrids@TwCustomGrid@InvalidateMovingRect$qqrv", + "@Urgrids@TwCustomGrid@InvalidateRow$qqriio", + "@Urgrids@TwCustomGrid@InvalidateRow$qqrio", + "@Urgrids@TwCustomGrid@InvalidateSelection$qqrv", + "@Urgrids@TwCustomGrid@IsActiveControl$qqrv", + "@Urgrids@TwCustomGrid@IsClickingState$qqr19Urgrids@TwGridState", + "@Urgrids@TwCustomGrid@IsMovingState$qqr19Urgrids@TwGridState", + "@Urgrids@TwCustomGrid@IsNullGrid$qqrv", + "@Urgrids@TwCustomGrid@IsSizingState$qqr19Urgrids@TwGridState", + "@Urgrids@TwCustomGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwCustomGrid@LevelHeightChanged$qqrp15Urgrids@TwGroupii", + "@Urgrids@TwCustomGrid@LevelSizing$qqrp15Urgrids@TwGroupi", + "@Urgrids@TwCustomGrid@LinesChanged$qqrp14System@TObject", + "@Urgrids@TwCustomGrid@Loaded$qqrv", + "@Urgrids@TwCustomGrid@MarkerClick$qqri", + "@Urgrids@TwCustomGrid@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwCustomGrid@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwCustomGrid@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwCustomGrid@MoveCurrent$qqrii", + "@Urgrids@TwCustomGrid@MoveCurrent$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwCustomGrid@MoveEditor$qqro", + "@Urgrids@TwCustomGrid@MoveNext$qqrv", + "@Urgrids@TwCustomGrid@MovePrev$qqrv", + "@Urgrids@TwCustomGrid@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urgrids@TwCustomGrid@Paint$qqrv", + "@Urgrids@TwCustomGrid@ReadColFixedCount$qqrp15Classes@TReader", + "@Urgrids@TwCustomGrid@ReadColRowHeight$qqrp15Classes@TReader", + "@Urgrids@TwCustomGrid@ReadGrpFixedCount$qqrp15Classes@TReader", + "@Urgrids@TwCustomGrid@ReadGrpRowHeight$qqrp15Classes@TReader", + "@Urgrids@TwCustomGrid@ResetEditor$qqrv", + "@Urgrids@TwCustomGrid@RestoreDefaultColWidths$qqrv", + "@Urgrids@TwCustomGrid@RowChanged$qqro", + "@Urgrids@TwCustomGrid@RowHeightChanged$qqri", + "@Urgrids@TwCustomGrid@ScrollHorz$qqrii", + "@Urgrids@TwCustomGrid@ScrollVert$qqrii", + "@Urgrids@TwCustomGrid@SelectEditor$qqrv", + "@Urgrids@TwCustomGrid@SelectionChanged$qqrv", + "@Urgrids@TwCustomGrid@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Urgrids@TwCustomGrid@SetChangeDelay$qqri", + "@Urgrids@TwCustomGrid@SetColumnMode$qqro", + "@Urgrids@TwCustomGrid@SetColumns$qqrp17Urgrids@TwColumns", + "@Urgrids@TwCustomGrid@SetCurCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@SetCurCol$qqri", + "@Urgrids@TwCustomGrid@SetEditValue$qqrv", + "@Urgrids@TwCustomGrid@SetEditorMode$qqro", + "@Urgrids@TwCustomGrid@SetEndLines$qqrp19Urgrids@TwGridLines", + "@Urgrids@TwCustomGrid@SetFixedCount$qqri", + "@Urgrids@TwCustomGrid@SetFixedStyle$qqrp20Urgrids@TwFixedStyle", + "@Urgrids@TwCustomGrid@SetFooters$qqrp21Urgrids@TwGridFooters", + "@Urgrids@TwCustomGrid@SetGroupMode$qqro", + "@Urgrids@TwCustomGrid@SetGroups$qqrp16Urgrids@TwGroups", + "@Urgrids@TwCustomGrid@SetHeaders$qqrp21Urgrids@TwGridHeaders", + "@Urgrids@TwCustomGrid@SetIme$qqrv", + "@Urgrids@TwCustomGrid@SetIndicators$qqrp20Urgrids@TwIndicators", + "@Urgrids@TwCustomGrid@SetLeftCol$qqri", + "@Urgrids@TwCustomGrid@SetLeftPos$qqri", + "@Urgrids@TwCustomGrid@SetLines$qqrp21Urgrids@TwGridLinesEx", + "@Urgrids@TwCustomGrid@SetMarkers$qqrp17Urgrids@TwMarkers", + "@Urgrids@TwCustomGrid@SetName$qqrx17System@AnsiString", + "@Urgrids@TwCustomGrid@SetNullColor$qqr15Graphics@TColor", + "@Urgrids@TwCustomGrid@SetNullRowColor$qqr15Graphics@TColor", + "@Urgrids@TwCustomGrid@SetOptions$qqr49System@%Set$t20Urgrids@TwGridOption$iuc$0$iuc$22%", + "@Urgrids@TwCustomGrid@SetRowHeight$qqri", + "@Urgrids@TwCustomGrid@SetScrollBars$qqr21Stdctrls@TScrollStyle", + "@Urgrids@TwCustomGrid@SetSelBgColor$qqr15Graphics@TColor", + "@Urgrids@TwCustomGrid@SetSelFgColor$qqr15Graphics@TColor", + "@Urgrids@TwCustomGrid@SetSelTrans$qqri", + "@Urgrids@TwCustomGrid@SetSelected$qqrio", + "@Urgrids@TwCustomGrid@SetSelectedColumn$qqrp16Urgrids@TwColumn", + "@Urgrids@TwCustomGrid@SetSelectedIndex$qqri", + "@Urgrids@TwCustomGrid@SetTopRow$qqri", + "@Urgrids@TwCustomGrid@ShowEditor$qqrv", + "@Urgrids@TwCustomGrid@ShowImageDlg$qqrv", + "@Urgrids@TwCustomGrid@ShowMemoDlg$qqrv", + "@Urgrids@TwCustomGrid@UpdateButton$qqrv", + "@Urgrids@TwCustomGrid@UpdateDesigner$qqrv", + "@Urgrids@TwCustomGrid@UpdateEditor$qqrv", + "@Urgrids@TwCustomGrid@UpdateIme$qqrv", + "@Urgrids@TwCustomGrid@UpdateRowCount$qqrv", + "@Urgrids@TwCustomGrid@UpdateScrollRange$qqrv", + "@Urgrids@TwCustomGrid@Updated$qqrv", + "@Urgrids@TwCustomGrid@Updating$qqrv", + "@Urgrids@TwCustomGrid@ValidCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwCustomGrid@WmChar$qqrr15Messages@TWMKey", + "@Urgrids@TwCustomGrid@WmCopy$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@WmEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Urgrids@TwCustomGrid@WmGetDlgCode$qqrr20Messages@TWMNoParams", + "@Urgrids@TwCustomGrid@WmHScroll$qqrr18Messages@TWMScroll", + "@Urgrids@TwCustomGrid@WmImeComposition$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@WmImeStartComposition$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@WmKillFocus$qqrr21Messages@TWMKillFocus", + "@Urgrids@TwCustomGrid@WmNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Urgrids@TwCustomGrid@WmPaste$qqrr17Messages@TMessage", + "@Urgrids@TwCustomGrid@WmSetCursor$qqrr21Messages@TWMSetCursor", + "@Urgrids@TwCustomGrid@WmSetFocus$qqrr20Messages@TWMSetFocus", + "@Urgrids@TwCustomGrid@WmSize$qqrr16Messages@TWMSize", + "@Urgrids@TwCustomGrid@WmTimer$qqrr17Messages@TWMTimer", + "@Urgrids@TwCustomGrid@WmVScroll$qqrr18Messages@TWMScroll", + "@Urgrids@TwCustomGrid@WriteColFixedCount$qqrp15Classes@TWriter", + "@Urgrids@TwCustomGrid@WriteColRowHeight$qqrp15Classes@TWriter", + "@Urgrids@TwCustomGrid@WriteGrpFixedCount$qqrp15Classes@TWriter", + "@Urgrids@TwCustomGrid@WriteGrpRowHeight$qqrp15Classes@TWriter", + "@Urgrids@TwCustomInDataList@", + "@Urgrids@TwCustomInDataList@GetImageIndex$qqrp14System@TObjectiri", + "@Urgrids@TwCustomInLookupList@", + "@Urgrids@TwCustomInLookupList@GetImageIndex$qqrp14System@TObjectiri", + "@Urgrids@TwDrawObject@", + "@Urgrids@TwDrawObject@$bctr$qqrv", + "@Urgrids@TwDrawObject@$bdtr$qqrv", + "@Urgrids@TwDrawObject@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwDrawObject@DefaultAlignment$qqrv", + "@Urgrids@TwDrawObject@DefaultColor$qqrv", + "@Urgrids@TwDrawObject@DefaultFitStyle$qqrv", + "@Urgrids@TwDrawObject@DefaultFont$qqrv", + "@Urgrids@TwDrawObject@DefaultLayout$qqrv", + "@Urgrids@TwDrawObject@DefaultMarginBottom$qqrv", + "@Urgrids@TwDrawObject@DefaultMarginLeft$qqrv", + "@Urgrids@TwDrawObject@DefaultMarginRight$qqrv", + "@Urgrids@TwDrawObject@DefaultMarginTop$qqrv", + "@Urgrids@TwDrawObject@DefaultWordWrap$qqrv", + "@Urgrids@TwDrawObject@FontChanged$qqrp14System@TObject", + "@Urgrids@TwDrawObject@GetAlignment$qqrv", + "@Urgrids@TwDrawObject@GetColor$qqrv", + "@Urgrids@TwDrawObject@GetFitStyle$qqrv", + "@Urgrids@TwDrawObject@GetFont$qqrv", + "@Urgrids@TwDrawObject@GetLayout$qqrv", + "@Urgrids@TwDrawObject@GetMarginBottom$qqrv", + "@Urgrids@TwDrawObject@GetMarginLeft$qqrv", + "@Urgrids@TwDrawObject@GetMarginRight$qqrv", + "@Urgrids@TwDrawObject@GetMarginTop$qqrv", + "@Urgrids@TwDrawObject@GetWordWrap$qqrv", + "@Urgrids@TwDrawObject@IsAlignmentStored$qqrv", + "@Urgrids@TwDrawObject@IsColorStored$qqrv", + "@Urgrids@TwDrawObject@IsFitStyleStored$qqrv", + "@Urgrids@TwDrawObject@IsFontStored$qqrv", + "@Urgrids@TwDrawObject@IsLayoutStored$qqrv", + "@Urgrids@TwDrawObject@IsMarginBottomStored$qqrv", + "@Urgrids@TwDrawObject@IsMarginLeftStored$qqrv", + "@Urgrids@TwDrawObject@IsMarginRightStored$qqrv", + "@Urgrids@TwDrawObject@IsMarginTopStored$qqrv", + "@Urgrids@TwDrawObject@IsWordWrapStored$qqrv", + "@Urgrids@TwDrawObject@SetAlignment$qqr18Classes@TAlignment", + "@Urgrids@TwDrawObject@SetCellStyle$qqr19Urgrids@TwCellStyle", + "@Urgrids@TwDrawObject@SetColor$qqr15Graphics@TColor", + "@Urgrids@TwDrawObject@SetDrawInfo$qqrv", + "@Urgrids@TwDrawObject@SetFitStyle$qqr18Urutils@TwFitStyle", + "@Urgrids@TwDrawObject@SetFont$qqrp14Graphics@TFont", + "@Urgrids@TwDrawObject@SetLayout$qqr20Stdctrls@TTextLayout", + "@Urgrids@TwDrawObject@SetMarginBottom$qqri", + "@Urgrids@TwDrawObject@SetMarginLeft$qqri", + "@Urgrids@TwDrawObject@SetMarginRect$qqrrx11Types@TRect", + "@Urgrids@TwDrawObject@SetMarginRight$qqri", + "@Urgrids@TwDrawObject@SetMarginTop$qqri", + "@Urgrids@TwDrawObject@SetWordWrap$qqro", + "@Urgrids@TwEditButton@", + "@Urgrids@TwEditButton@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwEditButton@Grid$qqrv", + "@Urgrids@TwEditButton@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwEditButton@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwEditButton@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwEditButton@Move$qqrp16Urgrids@TwColumni", + "@Urgrids@TwEditButton@Paint$qqrv", + "@Urgrids@TwEditButton@StopTracking$qqrv", + "@Urgrids@TwEditButton@TrackButton$qqrii", + "@Urgrids@TwFixedStyle@", + "@Urgrids@TwFixedStyle@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urgrids@TwFixedStyle@$bdtr$qqrv", + "@Urgrids@TwFixedStyle@Changed$qqrv", + "@Urgrids@TwFixedStyle@SetCellStyle$qqr19Urgrids@TwCellStyle", + "@Urgrids@TwFixedStyle@SetColor$qqr15Graphics@TColor", + "@Urgrids@TwFixedStyle@SetLines$qqrp21Urgrids@TwGridLinesEx", + "@Urgrids@TwFixedStyle@SetOptions$qqr49System@%Set$t21Urgrids@TwFixedOption$iuc$0$iuc$4%", + "@Urgrids@TwFixedStyle@SetSelBgColor$qqr15Graphics@TColor", + "@Urgrids@TwFixedStyle@SetSelFgColor$qqr15Graphics@TColor", + "@Urgrids@TwFooterTitle@", + "@Urgrids@TwFooterTitle@$bctr$qqrp20Urgrids@TwGridFooter", + "@Urgrids@TwFooterTitle@Changed$qqrv", + "@Urgrids@TwFooterTitle@GetGrid$qqrv", + "@Urgrids@TwFooterTitle@SetDrawInfo$qqrv", + "@Urgrids@TwGridExtents@", + "@Urgrids@TwGridExtents@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urgrids@TwGridExtents@$bdtr$qqrv", + "@Urgrids@TwGridExtents@GetBottoms$qqri", + "@Urgrids@TwGridExtents@GetCellBound$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwGridExtents@GetCellRect$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwGridExtents@GetColBound$qqrii", + "@Urgrids@TwGridExtents@GetColRect$qqrii", + "@Urgrids@TwGridExtents@GetColSize$qqri", + "@Urgrids@TwGridExtents@GetDataRect$qqrv", + "@Urgrids@TwGridExtents@GetFootBottoms$qqri", + "@Urgrids@TwGridExtents@GetFootCellBound$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwGridExtents@GetFootCellRect$qqrrx14Urgrids@TwCelli", + "@Urgrids@TwGridExtents@GetFootColBound$qqrii", + "@Urgrids@TwGridExtents@GetFootColRect$qqrii", + "@Urgrids@TwGridExtents@GetFootGroupBound$qqrii", + "@Urgrids@TwGridExtents@GetFootGroupRect$qqrii", + "@Urgrids@TwGridExtents@GetFootLevelBound$qqriii", + "@Urgrids@TwGridExtents@GetFootLevelRect$qqriii", + "@Urgrids@TwGridExtents@GetFootTops$qqri", + "@Urgrids@TwGridExtents@GetGroupBound$qqrii", + "@Urgrids@TwGridExtents@GetGroupRect$qqrii", + "@Urgrids@TwGridExtents@GetHeadBottom$qqrv", + "@Urgrids@TwGridExtents@GetHeadCellBound$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGridExtents@GetHeadCellRect$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGridExtents@GetHeadColBound$qqri", + "@Urgrids@TwGridExtents@GetHeadColRect$qqri", + "@Urgrids@TwGridExtents@GetHeadGroupBound$qqri", + "@Urgrids@TwGridExtents@GetHeadGroupRect$qqri", + "@Urgrids@TwGridExtents@GetHeadLevelBound$qqrii", + "@Urgrids@TwGridExtents@GetHeadLevelRect$qqrii", + "@Urgrids@TwGridExtents@GetHeadTop$qqrv", + "@Urgrids@TwGridExtents@GetLefts$qqri", + "@Urgrids@TwGridExtents@GetLevelBound$qqriii", + "@Urgrids@TwGridExtents@GetLevelRect$qqriii", + "@Urgrids@TwGridExtents@GetRights$qqri", + "@Urgrids@TwGridExtents@GetScrollWidth$qqrv", + "@Urgrids@TwGridExtents@GetTops$qqri", + "@Urgrids@TwGridExtents@MouseInHeaders$qqri", + "@Urgrids@TwGridExtents@MouseToCell$qqriii", + "@Urgrids@TwGridExtents@MouseToCol$qqri", + "@Urgrids@TwGridExtents@MouseToFootCell$qqriii", + "@Urgrids@TwGridExtents@MouseToFootRow$qqri", + "@Urgrids@TwGridExtents@MouseToGroupTitle$qqrii", + "@Urgrids@TwGridExtents@MouseToHeadCell$qqrii", + "@Urgrids@TwGridExtents@MouseToRow$qqri", + "@Urgrids@TwGridExtents@ReadHorz$qqrv", + "@Urgrids@TwGridExtents@ReadInfo$qqrrx11Types@TRect", + "@Urgrids@TwGridExtents@ReadVert$qqrv", + "@Urgrids@TwGridFooter@", + "@Urgrids@TwGridFooter@$bctr$qqrp19Classes@TCollection", + "@Urgrids@TwGridFooter@$bdtr$qqrv", + "@Urgrids@TwGridFooter@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwGridFooter@DefineProperties$qqrp14Classes@TFiler", + "@Urgrids@TwGridFooter@GetDisplayName$qqrv", + "@Urgrids@TwGridFooter@GetGrid$qqrv", + "@Urgrids@TwGridFooter@GetHeight$qqrv", + "@Urgrids@TwGridFooter@GetVIndex$qqrv", + "@Urgrids@TwGridFooter@ReadColHeight$qqrp15Classes@TReader", + "@Urgrids@TwGridFooter@ReadGrpHeight$qqrp15Classes@TReader", + "@Urgrids@TwGridFooter@SetColor$qqr15Graphics@TColor", + "@Urgrids@TwGridFooter@SetHeight$qqri", + "@Urgrids@TwGridFooter@SetTitle$qqrp21Urgrids@TwFooterTitle", + "@Urgrids@TwGridFooter@SetVisible$qqro", + "@Urgrids@TwGridFooter@WriteColHeight$qqrp15Classes@TWriter", + "@Urgrids@TwGridFooter@WriteGrpHeight$qqrp15Classes@TWriter", + "@Urgrids@TwGridFooters@", + "@Urgrids@TwGridFooters@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urgrids@TwGridFooters@$bdtr$qqrv", + "@Urgrids@TwGridFooters@Add$qqrv", + "@Urgrids@TwGridFooters@CalcVItems$qqrv", + "@Urgrids@TwGridFooters@GetFooter$qqri", + "@Urgrids@TwGridFooters@GetHeight$qqrv", + "@Urgrids@TwGridFooters@GetOwner$qqrv", + "@Urgrids@TwGridFooters@GetTops$qqri", + "@Urgrids@TwGridFooters@GetVCount$qqrv", + "@Urgrids@TwGridFooters@GetVItems$qqri", + "@Urgrids@TwGridFooters@SetDrawInfo$qqrv", + "@Urgrids@TwGridFooters@SetFooter$qqrip20Urgrids@TwGridFooter", + "@Urgrids@TwGridFooters@Update$qqrp23Classes@TCollectionItem", + "@Urgrids@TwGridHeaders@", + "@Urgrids@TwGridHeaders@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urgrids@TwGridHeaders@$bdtr$qqrv", + "@Urgrids@TwGridHeaders@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwGridHeaders@Changed$qqrv", + "@Urgrids@TwGridHeaders@DefineProperties$qqrp14Classes@TFiler", + "@Urgrids@TwGridHeaders@GetHeight$qqrv", + "@Urgrids@TwGridHeaders@LinesChanged$qqrp14System@TObject", + "@Urgrids@TwGridHeaders@ReadColHeight$qqrp15Classes@TReader", + "@Urgrids@TwGridHeaders@ReadGrpHeight$qqrp15Classes@TReader", + "@Urgrids@TwGridHeaders@SetHeight$qqri", + "@Urgrids@TwGridHeaders@SetLines$qqrp21Urgrids@TwGridLinesEx", + "@Urgrids@TwGridHeaders@SetTitle$qqrp21Urgrids@TwHeaderTitle", + "@Urgrids@TwGridHeaders@SetVisible$qqro", + "@Urgrids@TwGridHeaders@WriteColHeight$qqrp15Classes@TWriter", + "@Urgrids@TwGridHeaders@WriteGrpHeight$qqrp15Classes@TWriter", + "@Urgrids@TwGridLines@", + "@Urgrids@TwGridLines@$bctr$qqrv", + "@Urgrids@TwGridLines@Changed$qqrv", + "@Urgrids@TwGridLines@SetHorzColor$qqr15Graphics@TColor", + "@Urgrids@TwGridLines@SetHorzStyle$qqr18Graphics@TPenStyle", + "@Urgrids@TwGridLines@SetHorzWidth$qqrus", + "@Urgrids@TwGridLines@SetVertColor$qqr15Graphics@TColor", + "@Urgrids@TwGridLines@SetVertStyle$qqr18Graphics@TPenStyle", + "@Urgrids@TwGridLines@SetVertWidth$qqrus", + "@Urgrids@TwGridLinesEx@", + "@Urgrids@TwGridLinesEx@$bctr$qqrv", + "@Urgrids@TwGridLinesEx@SetCellColor$qqr15Graphics@TColor", + "@Urgrids@TwGridLinesEx@SetCellStyle$qqr18Graphics@TPenStyle", + "@Urgrids@TwGridLinesEx@SetCellWidth$qqrus", + "@Urgrids@TwGridLinesEx@SetLevelColor$qqr15Graphics@TColor", + "@Urgrids@TwGridLinesEx@SetLevelStyle$qqr18Graphics@TPenStyle", + "@Urgrids@TwGridLinesEx@SetLevelWidth$qqrus", + "@Urgrids@TwGroup@", + "@Urgrids@TwGroup@$bctr$qqrp19Classes@TCollection", + "@Urgrids@TwGroup@$bdtr$qqrv", + "@Urgrids@TwGroup@AllocTopLists$qqrv", + "@Urgrids@TwGroup@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwGroup@CreateTitle$qqrv", + "@Urgrids@TwGroup@DefineProperties$qqrp14Classes@TFiler", + "@Urgrids@TwGroup@FirstCell$qqrv", + "@Urgrids@TwGroup@GetBTops$qqri", + "@Urgrids@TwGroup@GetColCount$qqri", + "@Urgrids@TwGroup@GetColumns$qqrii", + "@Urgrids@TwGroup@GetCount$qqrv", + "@Urgrids@TwGroup@GetDisplayName$qqrv", + "@Urgrids@TwGroup@GetFTops$qqrii", + "@Urgrids@TwGroup@GetGrid$qqrv", + "@Urgrids@TwGroup@GetHTops$qqri", + "@Urgrids@TwGroup@GetLevelWeight$qqri", + "@Urgrids@TwGroup@GetLines$qqri", + "@Urgrids@TwGroup@GetMaxCount$qqrv", + "@Urgrids@TwGroup@GetVIndex$qqrv", + "@Urgrids@TwGroup@InitWeights$qqrv", + "@Urgrids@TwGroup@InsertItem$qqriip16Urgrids@TwColumn", + "@Urgrids@TwGroup@LastCell$qqrv", + "@Urgrids@TwGroup@LowerCell$qqrrx14Urgrids@TwCellr14Urgrids@TwCell", + "@Urgrids@TwGroup@LowerSelectCell$qqrrx14Urgrids@TwCellr14Urgrids@TwCell", + "@Urgrids@TwGroup@MoveItem$qqrp16Urgrids@TwColumni", + "@Urgrids@TwGroup@ReadExtents$qqrv", + "@Urgrids@TwGroup@ReadWeights$qqrp15Classes@TStream", + "@Urgrids@TwGroup@RemoveItem$qqrp16Urgrids@TwColumn", + "@Urgrids@TwGroup@ResetItemWidth$qqrp16Urgrids@TwColumni", + "@Urgrids@TwGroup@SetLevelWeight$qqriuc", + "@Urgrids@TwGroup@SetLevels$qqruc", + "@Urgrids@TwGroup@SetNoColTitles$qqro", + "@Urgrids@TwGroup@SetTitle$qqrp20Urgrids@TwGroupTitle", + "@Urgrids@TwGroup@SetVIndex$qqri", + "@Urgrids@TwGroup@SetVisible$qqro", + "@Urgrids@TwGroup@SetWeight$qqruc", + "@Urgrids@TwGroup@SetWidth$qqri", + "@Urgrids@TwGroup@UpperCell$qqrrx14Urgrids@TwCellr14Urgrids@TwCell", + "@Urgrids@TwGroup@UpperSelectCell$qqrrx14Urgrids@TwCellr14Urgrids@TwCell", + "@Urgrids@TwGroup@WriteWeights$qqrp15Classes@TStream", + "@Urgrids@TwGroupTitle@", + "@Urgrids@TwGroupTitle@$bctr$qqrp15Urgrids@TwGroup", + "@Urgrids@TwGroupTitle@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwGroupTitle@Changed$qqrv", + "@Urgrids@TwGroupTitle@GetGrid$qqrv", + "@Urgrids@TwGroupTitle@SetDrawInfo$qqrv", + "@Urgrids@TwGroupTitle@SetHeight$qqri", + "@Urgrids@TwGroupTitle@SetVisible$qqro", + "@Urgrids@TwGroups@", + "@Urgrids@TwGroups@$bctr$qqrp20Urgrids@TwCustomGridp17System@TMetaClass", + "@Urgrids@TwGroups@$bdtr$qqrv", + "@Urgrids@TwGroups@Add$qqrv", + "@Urgrids@TwGroups@FirstCell$qqrv", + "@Urgrids@TwGroups@FirstSelectCell$qqrv", + "@Urgrids@TwGroups@GetGroup$qqri", + "@Urgrids@TwGroups@GetOwner$qqrv", + "@Urgrids@TwGroups@GetVCount$qqrv", + "@Urgrids@TwGroups@GetVItems$qqri", + "@Urgrids@TwGroups@Init$qqrp17Urgrids@TwColumns", + "@Urgrids@TwGroups@InitVIndices$qqrv", + "@Urgrids@TwGroups@IsFirstCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@IsFirstSelectCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@IsLastCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@IsLastSelectCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@LastCell$qqrv", + "@Urgrids@TwGroups@LastSelectCell$qqrv", + "@Urgrids@TwGroups@NextCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@NextSelectCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@PrevCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@PrevSelectCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwGroups@RestoreFonts$qqrv", + "@Urgrids@TwGroups@SetGroup$qqrip15Urgrids@TwGroup", + "@Urgrids@TwGroups@Update$qqrp23Classes@TCollectionItem", + "@Urgrids@TwGroups@ValidCell$qqrrx14Urgrids@TwCell", + "@Urgrids@TwHeaderTitle@", + "@Urgrids@TwHeaderTitle@$bctr$qqrp21Urgrids@TwGridHeaders", + "@Urgrids@TwHeaderTitle@Changed$qqrv", + "@Urgrids@TwHeaderTitle@GetGrid$qqrv", + "@Urgrids@TwHeaderTitle@SetDrawInfo$qqrv", + "@Urgrids@TwInBoolEdit@", + "@Urgrids@TwInBoolEdit@Paint$qqrv", + "@Urgrids@TwInCheckEdit@", + "@Urgrids@TwInCheckEdit@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInCheckEdit@GetValue$qqrv", + "@Urgrids@TwInCheckEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInCheckEdit@KeyPress$qqrrc", + "@Urgrids@TwInCheckEdit@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwInCheckEdit@Paint$qqrv", + "@Urgrids@TwInCheckEdit@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInCombo@", + "@Urgrids@TwInCombo@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInCombo@Change$qqrv", + "@Urgrids@TwInCombo@CloseUp$qqro", + "@Urgrids@TwInCombo@DoDropDownKeys$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInCombo@DrawCustom$qqruirx11Types@TRect", + "@Urgrids@TwInCombo@DropDown$qqro", + "@Urgrids@TwInCombo@GetCustomRect$qqrv", + "@Urgrids@TwInCombo@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInCombo@KeyPress$qqrrc", + "@Urgrids@TwInCombo@ListCloseUp$qqrp14System@TObjecto", + "@Urgrids@TwInCombo@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwInCombo@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwInCombo@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwInCombo@StopTracking$qqrv", + "@Urgrids@TwInCombo@TrackButton$qqrii", + "@Urgrids@TwInCombo@WmCancelMode$qqrr17Messages@TMessage", + "@Urgrids@TwInCombo@WmImeComposition$qqrr17Messages@TMessage", + "@Urgrids@TwInCombo@WmKillFocus$qqrr17Messages@TMessage", + "@Urgrids@TwInCombo@WndProc$qqrr17Messages@TMessage", + "@Urgrids@TwInDateEdit@", + "@Urgrids@TwInDateEdit@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInDateEdit@CanModify$qqrv", + "@Urgrids@TwInDateEdit@Change$qqrv", + "@Urgrids@TwInDateEdit@CloseUp$qqrp14System@TObject", + "@Urgrids@TwInDateEdit@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Urgrids@TwInDateEdit@DblClick$qqrv", + "@Urgrids@TwInDateEdit@GetValue$qqrv", + "@Urgrids@TwInDateEdit@Hide$qqrv", + "@Urgrids@TwInDateEdit@Invalidate$qqrv", + "@Urgrids@TwInDateEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInDateEdit@KeyPress$qqrrc", + "@Urgrids@TwInDateEdit@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInDateEdit@Move$qqrrx11Types@TRecto", + "@Urgrids@TwInDateEdit@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInDateEdit@WndProc$qqrr17Messages@TMessage", + "@Urgrids@TwInEdit@", + "@Urgrids@TwInEdit@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInEdit@Change$qqrv", + "@Urgrids@TwInEdit@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Urgrids@TwInEdit@DblClick$qqrv", + "@Urgrids@TwInEdit@Deselect$qqrv", + "@Urgrids@TwInEdit@EditCanModify$qqrv", + "@Urgrids@TwInEdit@GetEditRect$qqrv", + "@Urgrids@TwInEdit@GetValue$qqrv", + "@Urgrids@TwInEdit@Hide$qqrv", + "@Urgrids@TwInEdit@Invalidate$qqrv", + "@Urgrids@TwInEdit@IsValidChar$qqrc", + "@Urgrids@TwInEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInEdit@KeyPress$qqrrc", + "@Urgrids@TwInEdit@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInEdit@Move$qqrrx11Types@TRecto", + "@Urgrids@TwInEdit@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInEdit@WmClear$qqrpv", + "@Urgrids@TwInEdit@WmCopy$qqrpv", + "@Urgrids@TwInEdit@WmCut$qqrpv", + "@Urgrids@TwInEdit@WmKillFocus$qqrr21Messages@TWMKillFocus", + "@Urgrids@TwInEdit@WmPaste$qqrpv", + "@Urgrids@TwInEdit@WmUndo$qqrpv", + "@Urgrids@TwInEdit@WndProc$qqrr17Messages@TMessage", + "@Urgrids@TwInMultiEdit@", + "@Urgrids@TwInMultiEdit@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInMultiEdit@Change$qqrv", + "@Urgrids@TwInMultiEdit@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Urgrids@TwInMultiEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Urgrids@TwInMultiEdit@DblClick$qqrv", + "@Urgrids@TwInMultiEdit@Deselect$qqrv", + "@Urgrids@TwInMultiEdit@EditCanModify$qqrv", + "@Urgrids@TwInMultiEdit@GetValue$qqrv", + "@Urgrids@TwInMultiEdit@Hide$qqrv", + "@Urgrids@TwInMultiEdit@InternalHeight$qqrv", + "@Urgrids@TwInMultiEdit@Invalidate$qqrv", + "@Urgrids@TwInMultiEdit@IsValidChar$qqrc", + "@Urgrids@TwInMultiEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInMultiEdit@KeyPress$qqrrc", + "@Urgrids@TwInMultiEdit@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInMultiEdit@Move$qqrrx11Types@TRecto", + "@Urgrids@TwInMultiEdit@SetAlignment$qqr18Classes@TAlignment", + "@Urgrids@TwInMultiEdit@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInMultiEdit@WmClear$qqrpv", + "@Urgrids@TwInMultiEdit@WmCut$qqrpv", + "@Urgrids@TwInMultiEdit@WmKillFocus$qqrr21Messages@TWMKillFocus", + "@Urgrids@TwInMultiEdit@WmPaste$qqrpv", + "@Urgrids@TwInMultiEdit@WndProc$qqrr17Messages@TMessage", + "@Urgrids@TwInNumEdit@", + "@Urgrids@TwInNumEdit@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInNumEdit@CanModify$qqrv", + "@Urgrids@TwInNumEdit@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Urgrids@TwInNumEdit@DblClick$qqrv", + "@Urgrids@TwInNumEdit@GetValue$qqrv", + "@Urgrids@TwInNumEdit@Hide$qqrv", + "@Urgrids@TwInNumEdit@Invalidate$qqrv", + "@Urgrids@TwInNumEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInNumEdit@KeyPress$qqrrc", + "@Urgrids@TwInNumEdit@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInNumEdit@Move$qqrrx11Types@TRecto", + "@Urgrids@TwInNumEdit@SetColumn$qqrp16Urgrids@TwColumn", + "@Urgrids@TwInNumEdit@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInNumEdit@WndProc$qqrr17Messages@TMessage", + "@Urgrids@TwInPickList@", + "@Urgrids@TwInPickList@CloseUp$qqro", + "@Urgrids@TwInPickList@CreateList$qqrv", + "@Urgrids@TwInPickList@DropDown$qqro", + "@Urgrids@TwInPickList@GetValue$qqrv", + "@Urgrids@TwInPickList@LocateItem$qqrv", + "@Urgrids@TwInPickList@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInRadioGroup@", + "@Urgrids@TwInRadioGroup@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInRadioGroup@GetValue$qqrv", + "@Urgrids@TwInRadioGroup@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInRadioGroup@KeyPress$qqrrc", + "@Urgrids@TwInRadioGroup@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urgrids@TwInRadioGroup@Paint$qqrv", + "@Urgrids@TwInRadioGroup@SetIndex$qqri", + "@Urgrids@TwInRadioGroup@SetValue$qqrrx14System@Variant", + "@Urgrids@TwInSpecial@", + "@Urgrids@TwInSpecial@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwInSpecial@CanModify$qqrv", + "@Urgrids@TwInSpecial@CmWantSpecialKey$qqrr15Messages@TWMKey", + "@Urgrids@TwInSpecial@DblClick$qqrv", + "@Urgrids@TwInSpecial@Hide$qqrv", + "@Urgrids@TwInSpecial@Invalidate$qqrv", + "@Urgrids@TwInSpecial@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInSpecial@Move$qqrrx11Types@TRecto", + "@Urgrids@TwInSpecial@ParentKeyDownEvent$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urgrids@TwInSpecial@WmGetDlgCode$qqrr20Messages@TWMNoParams", + "@Urgrids@TwInSpecial@WndProc$qqrr17Messages@TMessage", + "@Urgrids@TwInTimeEdit@", + "@Urgrids@TwInTimeEdit@$bctr$qqrp18Classes@TComponent", + "@Urgrids@TwIndicators@", + "@Urgrids@TwIndicators@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urgrids@TwIndicators@$bdtr$qqrv", + "@Urgrids@TwIndicators@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwIndicators@Changed$qqrv", + "@Urgrids@TwIndicators@GetGrid$qqrv", + "@Urgrids@TwIndicators@LinesChanged$qqrp14System@TObject", + "@Urgrids@TwIndicators@SetDrawInfo$qqrv", + "@Urgrids@TwIndicators@SetLines$qqrp19Urgrids@TwGridLines", + "@Urgrids@TwIndicators@SetSelBgColor$qqr15Graphics@TColor", + "@Urgrids@TwIndicators@SetSelDown$qqro", + "@Urgrids@TwIndicators@SetSelFgColor$qqr15Graphics@TColor", + "@Urgrids@TwIndicators@SetShowRowNo$qqro", + "@Urgrids@TwIndicators@SetShowState$qqro", + "@Urgrids@TwIndicators@SetVisible$qqro", + "@Urgrids@TwIndicators@SetWidth$qqri", + "@Urgrids@TwMarkers@", + "@Urgrids@TwMarkers@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urgrids@TwMarkers@$bdtr$qqrv", + "@Urgrids@TwMarkers@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwMarkers@Changed$qqrv", + "@Urgrids@TwMarkers@GetGrid$qqrv", + "@Urgrids@TwMarkers@ImagesChanged$qqrp14System@TObject", + "@Urgrids@TwMarkers@LinesChanged$qqrp14System@TObject", + "@Urgrids@TwMarkers@SetDrawInfo$qqrv", + "@Urgrids@TwMarkers@SetImageLayout$qqr21Urutils@TwImageLayout", + "@Urgrids@TwMarkers@SetImages$qqrp19Controls@TImageList", + "@Urgrids@TwMarkers@SetLines$qqrp19Urgrids@TwGridLines", + "@Urgrids@TwMarkers@SetStyle$qqr21Urgrids@TwMarkerStyle", + "@Urgrids@TwMarkers@SetVisible$qqro", + "@Urgrids@TwMarkers@SetWidth$qqri", + "@Urgrids@TwMarkers@Update$qqri", + "@Urgrids@TwTitle@", + "@Urgrids@TwTitle@$bctr$qqrv", + "@Urgrids@TwTitle@$bdtr$qqrv", + "@Urgrids@TwTitle@Assign$qqrp19Classes@TPersistent", + "@Urgrids@TwTitle@DefaultWordWrap$qqrv", + "@Urgrids@TwTitle@ImageChanged$qqrp14System@TObject", + "@Urgrids@TwTitle@SetCaption$qqrx17System@AnsiString", + "@Urgrids@TwTitle@SetImage$qqrp16Graphics@TBitmap", + "@Urgrids@TwTitle@SetImageLayout$qqr21Urutils@TwImageLayout", + "@Urgrids@WCell$qqriii", + "@Urgrids@initialization$qqrv", + "@Urguard@ApplyModifierToKeyPrim$qqripvui", + "@Urguard@BaseDate", + "@Urguard@CreateMachineIDA$qqr46System@%Set$t18Urguard@URGuard__1$iuc$0$iuc$3%", + "@Urguard@CreateMachineIDW$qqr46System@%Set$t18Urguard@URGuard__1$iuc$0$iuc$3%", + "@Urguard@DecDaysCode$qqrpxucr13Urguard@TCode", + "@Urguard@DecUsageCode$qqrpxucr13Urguard@TCode", + "@Urguard@EOnGuardException@", + "@Urguard@ExpandDate$qqrus", + "@Urguard@Finalization$qqrv", + "@Urguard@GenerateDateModifierPrim$qqr16System@TDateTime", + "@Urguard@GenerateMD5KeyPrim$qqrpucx17System@AnsiString", + "@Urguard@GenerateMachineModifierPrim$qqro", + "@Urguard@GenerateRandomKeyPrim$qqrpvui", + "@Urguard@GenerateStringModifierPrim$qqrx17System@AnsiString", + "@Urguard@GenerateTMDKeyPrim$qqrpvuix17System@AnsiString", + "@Urguard@GenerateUniqueModifierPrim$qqrv", + "@Urguard@GetCodeType$qqrpxucrx13Urguard@TCode", + "@Urguard@GetDateCodeValue$qqrpxucrx13Urguard@TCode", + "@Urguard@GetDaysCodeValue$qqrpxucrx13Urguard@TCode", + "@Urguard@GetExpirationDate$qqrpxucrx13Urguard@TCode", + "@Urguard@GetSerialNumberCodeValue$qqrpxucrx13Urguard@TCode", + "@Urguard@GetSpecialCodeValue$qqrpxucrx13Urguard@TCode", + "@Urguard@GetUsageCodeValue$qqrpxucrx13Urguard@TCode", + "@Urguard@InitDateCode$qqrpxuc16System@TDateTimet2r13Urguard@TCode", + "@Urguard@InitDaysCode$qqrpxucus16System@TDateTimer13Urguard@TCode", + "@Urguard@InitRegCode$qqrpxucx17System@AnsiString16System@TDateTimer13Urguard@TCode", + "@Urguard@InitSerialNumberCode$qqrpxuci16System@TDateTimer13Urguard@TCode", + "@Urguard@InitSpecialCode$qqrpxuci16System@TDateTimer13Urguard@TCode", + "@Urguard@InitUsageCode$qqrpxucus16System@TDateTimer13Urguard@TCode", + "@Urguard@IsDateCodeExpired$qqrpxucrx13Urguard@TCode", + "@Urguard@IsDateCodeValid$qqrpxucrx13Urguard@TCode", + "@Urguard@IsDaysCodeExpired$qqrpxucrx13Urguard@TCode", + "@Urguard@IsDaysCodeValid$qqrpxucrx13Urguard@TCode", + "@Urguard@IsRegCodeExpired$qqrpxucrx13Urguard@TCode", + "@Urguard@IsRegCodeValid$qqrpxucrx13Urguard@TCode", + "@Urguard@IsSerialNumberCodeExpired$qqrpxucrx13Urguard@TCode", + "@Urguard@IsSerialNumberCodeValid$qqrpxucrx13Urguard@TCode", + "@Urguard@IsSpecialCodeExpired$qqrpxucrx13Urguard@TCode", + "@Urguard@IsSpecialCodeValid$qqrpxucrx13Urguard@TCode", + "@Urguard@IsUsageCodeExpired$qqrpxucrx13Urguard@TCode", + "@Urguard@IsUsageCodeValid$qqrpxucrx13Urguard@TCode", + "@Urguard@MixBlock$qqrpxipvo", + "@Urguard@ShrinkDate$qqr16System@TDateTime", + "@Urguard@StringHashElf$qqrx17System@AnsiString", + "@Urguard@initialization$qqrv", + "@Urguardutil@BufferToHex$qqrpxvui", + "@Urguardutil@BufferToHexBytes$qqrpxvui", + "@Urguardutil@Finalization$qqrv", + "@Urguardutil@GetFileSize$qqrui", + "@Urguardutil@HexStringIsZero$qqrx17System@AnsiString", + "@Urguardutil@HexToBuffer$qqrx17System@AnsiStringpvui", + "@Urguardutil@Max$qqrii", + "@Urguardutil@Min$qqrii", + "@Urguardutil@OgFormatDate$qqr16System@TDateTime", + "@Urguardutil@XorMem$qqrpvpxvui", + "@Urguardutil@initialization$qqrv", + "@Urlists@Finalization$qqrv", + "@Urlists@TwItemList@", + "@Urlists@TwItemList@$bctr$qqrp18Classes@TComponent", + "@Urlists@TwItemList@$bdtr$qqrv", + "@Urlists@TwItemList@CalcExtents$qqrv", + "@Urlists@TwItemList@CmCtl3DChanged$qqrr17Messages@TMessage", + "@Urlists@TwItemList@CreateParams$qqrr22Controls@TCreateParams", + "@Urlists@TwItemList@CreateWnd$qqrv", + "@Urlists@TwItemList@GetCharWidth$qqrv", + "@Urlists@TwItemList@GetColCount$qqrv", + "@Urlists@TwItemList@GetColText$qqrii", + "@Urlists@TwItemList@GetColWidth$qqri", + "@Urlists@TwItemList@GetImageIndex$qqri", + "@Urlists@TwItemList@GetRowCount$qqrv", + "@Urlists@TwItemList@GetTitle$qqri", + "@Urlists@TwItemList@Invalidate$qqrv", + "@Urlists@TwItemList@InvalidateData$qqrv", + "@Urlists@TwItemList@InvalidateRow$qqri", + "@Urlists@TwItemList@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urlists@TwItemList@Locate$qqrx17System@AnsiStringo", + "@Urlists@TwItemList@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urlists@TwItemList@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urlists@TwItemList@MouseToRow$qqrii", + "@Urlists@TwItemList@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urlists@TwItemList@Paint$qqrv", + "@Urlists@TwItemList@ResetBounds$qqrv", + "@Urlists@TwItemList@SetItemIndex$qqri", + "@Urlists@TwItemList@SetOptions$qqrp24Urlists@TwItemListOptionp16Classes@TStringst2p19Controls@TImageListo", + "@Urlists@TwItemList@SetTopRow$qqri", + "@Urlists@TwItemList@UpdateScrollRange$qqrv", + "@Urlists@TwItemList@ValuesMode$qqrv", + "@Urlists@TwItemList@WmCaptureChanged$qqrr17Messages@TMessage", + "@Urlists@TwItemList@WmGetDlgCode$qqrr17Messages@TMessage", + "@Urlists@TwItemList@WmMouseWheel$qqrr22Messages@TWMMouseWheel", + "@Urlists@TwItemList@WmNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Urlists@TwItemList@WmVScroll$qqrr18Messages@TWMScroll", + "@Urlists@TwItemListOption@", + "@Urlists@TwItemListOption@$bctr$qqrv", + "@Urlists@TwItemListOption@Assign$qqrp19Classes@TPersistent", + "@Urlists@TwItemListOption@SetSeparator$qqrc", + "@Urlists@TwItemListOption@SetValuesIndex$qqri", + "@Urlists@TwItemListOption@ValuesIndexChanged$qqrv", + "@Urlists@TwListoption@", + "@Urlists@TwListoption@$bctr$qqrv", + "@Urlists@TwListoption@$bdtr$qqrv", + "@Urlists@TwListoption@Assign$qqrp19Classes@TPersistent", + "@Urlists@TwListoption@DefaultFont$qqrv", + "@Urlists@TwListoption@DefaultTitleFont$qqrv", + "@Urlists@TwListoption@FontChanged$qqrp14System@TObject", + "@Urlists@TwListoption@GetFont$qqrv", + "@Urlists@TwListoption@GetTitleFont$qqrv", + "@Urlists@TwListoption@SetFont$qqrp14Graphics@TFont", + "@Urlists@TwListoption@SetTitleFont$qqrp14Graphics@TFont", + "@Urlists@TwListoption@TitleFontChanged$qqrp14System@TObject", + "@Urlists@initialization$qqrv", + "@Urmfootstyles@EditMFootStyles$qqrp25Urmgrid@TwMemColumnFooter", + "@Urmfootstyles@Finalization$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@", + "@Urmfootstyles@TwDlgMFootStyles@$bctr$qqrp18Classes@TComponentp25Urmgrid@TwMemColumnFooter", + "@Urmfootstyles@TwDlgMFootStyles@$bdtr$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@Changed$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@CheckControls$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@GetMethod$qqri", + "@Urmfootstyles@TwDlgMFootStyles@GetOpColumn$qqri", + "@Urmfootstyles@TwDlgMFootStyles@GetOperand$qqri", + "@Urmfootstyles@TwDlgMFootStyles@GetOperator$qqri", + "@Urmfootstyles@TwDlgMFootStyles@ReadColumns$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@ReadStyle$qqri", + "@Urmfootstyles@TwDlgMFootStyles@ReadStyles$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@SetMethod$qqri22Urmgrid@TwFooterMethod", + "@Urmfootstyles@TwDlgMFootStyles@SetOpColumn$qqrii", + "@Urmfootstyles@TwDlgMFootStyles@SetOperand$qqrix17System@AnsiString", + "@Urmfootstyles@TwDlgMFootStyles@SetOperator$qqri24Urmgrid@TwFooterOperator", + "@Urmfootstyles@TwDlgMFootStyles@WriteStyle$qqri", + "@Urmfootstyles@TwDlgMFootStyles@WriteStyles$qqrv", + "@Urmfootstyles@TwDlgMFootStyles@cbColumnsClick$qqrp14System@TObject", + "@Urmfootstyles@TwDlgMFootStyles@cbFootersClick$qqrp14System@TObject", + "@Urmfootstyles@TwDlgMFootStyles@cbOperatorClick$qqrp14System@TObject", + "@Urmfootstyles@TwDlgMFootStyles@cmOkClick$qqrp14System@TObject", + "@Urmfootstyles@TwDlgMFootStyles@edOperandChange$qqrp14System@TObject", + "@Urmfootstyles@TwDlgMFootStyles@grpMethodsClick$qqrp14System@TObject", + "@Urmfootstyles@initialization$qqrv", + "@Urmgrid@Finalization$qqrv", + "@Urmgrid@TRealGrid@", + "@Urmgrid@TRealGrid@$bctr$qqrp18Classes@TComponent", + "@Urmgrid@TRealGrid@$bdtr$qqrv", + "@Urmgrid@TRealGrid@AddRow$qqrooo", + "@Urmgrid@TRealGrid@AdjustColumnWidth$qqrpx16Urgrids@TwColumn", + "@Urmgrid@TRealGrid@AfterCancel$qqrv", + "@Urmgrid@TRealGrid@AfterDelete$qqrv", + "@Urmgrid@TRealGrid@AfterEdit$qqrv", + "@Urmgrid@TRealGrid@AfterInsert$qqro", + "@Urmgrid@TRealGrid@AfterPost$qqrv", + "@Urmgrid@TRealGrid@AssignData$qqrp17Urmgrid@TRealGrid", + "@Urmgrid@TRealGrid@BeforeCancel$qqrv", + "@Urmgrid@TRealGrid@BeforeDelete$qqrv", + "@Urmgrid@TRealGrid@BeforeEdit$qqrv", + "@Urmgrid@TRealGrid@BeforeInsert$qqro", + "@Urmgrid@TRealGrid@BeforePost$qqrv", + "@Urmgrid@TRealGrid@CalcColumns$qqrv", + "@Urmgrid@TRealGrid@CalcFooters$qqrv", + "@Urmgrid@TRealGrid@Cancel$qqrv", + "@Urmgrid@TRealGrid@ChangeSelEnd$qqri", + "@Urmgrid@TRealGrid@CheckBool$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@CheckColBounds$qqrix17System@AnsiString", + "@Urmgrid@TRealGrid@CheckInRow$qqrv", + "@Urmgrid@TRealGrid@CheckList$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@CheckNull$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@Clear$qqrv", + "@Urmgrid@TRealGrid@ClearChanged$qqro", + "@Urmgrid@TRealGrid@ClearData$qqrv", + "@Urmgrid@TRealGrid@ClearRowStates$qqro", + "@Urmgrid@TRealGrid@ClearRowTypes$qqro", + "@Urmgrid@TRealGrid@ClearSelection$qqrv", + "@Urmgrid@TRealGrid@CmExit$qqrr17Messages@TMessage", + "@Urmgrid@TRealGrid@CreateColumns$qqrv", + "@Urmgrid@TRealGrid@DataChanged$qqrv", + "@Urmgrid@TRealGrid@Delete$qqrv", + "@Urmgrid@TRealGrid@DeleteMarkedRows$qqrv", + "@Urmgrid@TRealGrid@DeleteRow$qqriio", + "@Urmgrid@TRealGrid@DeleteSelection$qqrv", + "@Urmgrid@TRealGrid@DoGetText$qqrp19Urmgrid@TwMemColumnir17System@AnsiString", + "@Urmgrid@TRealGrid@DoInRow$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urmgrid@TRealGrid@DoMouseWheel$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%irx12Types@TPoint", + "@Urmgrid@TRealGrid@DoNewRow$qqrv", + "@Urmgrid@TRealGrid@Edit$qqrv", + "@Urmgrid@TRealGrid@Empty$qqrv", + "@Urmgrid@TRealGrid@EnableDeleting$qqrv", + "@Urmgrid@TRealGrid@EnableRowNo$qqrv", + "@Urmgrid@TRealGrid@ExchangeRows$qqrii", + "@Urmgrid@TRealGrid@Find$qqrirx14System@Variant", + "@Urmgrid@TRealGrid@Find$qqrix17System@AnsiString48System@%Set$t20Urmgrid@TwFindOption$iuc$0$iuc$1%", + "@Urmgrid@TRealGrid@GetCells$qqrii", + "@Urmgrid@TRealGrid@GetChanged$qqri", + "@Urmgrid@TRealGrid@GetChangedCount$qqrv", + "@Urmgrid@TRealGrid@GetCurRowData$qqrv", + "@Urmgrid@TRealGrid@GetDisplayImage$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@GetDisplayText$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@GetEditValue$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@GetGridMode$qqrv", + "@Urmgrid@TRealGrid@GetImageIndex$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@GetIndiState$qqri", + "@Urmgrid@TRealGrid@GetMemColumn$qqri", + "@Urmgrid@TRealGrid@GetRowCount$qqrv", + "@Urmgrid@TRealGrid@GetRowData$qqri", + "@Urmgrid@TRealGrid@GetRowNo$qqri", + "@Urmgrid@TRealGrid@GetRowState$qqri", + "@Urmgrid@TRealGrid@GetRowType$qqri", + "@Urmgrid@TRealGrid@GetSelected$qqri", + "@Urmgrid@TRealGrid@GetSelectedCount$qqrv", + "@Urmgrid@TRealGrid@GetStateCount$qqr18Urmgrid@TwRowState", + "@Urmgrid@TRealGrid@GetTopRow$qqrv", + "@Urmgrid@TRealGrid@GetTypeCount$qqrzc", + "@Urmgrid@TRealGrid@GetVMemColumn$qqri", + "@Urmgrid@TRealGrid@GetVertRange$qqrrx11Types@TRect", + "@Urmgrid@TRealGrid@ImgDlgOk$qqrp16Graphics@TBitmap", + "@Urmgrid@TRealGrid@Insert$qqro", + "@Urmgrid@TRealGrid@InsertFirst$qqrv", + "@Urmgrid@TRealGrid@InsertRow$qqriooo", + "@Urmgrid@TRealGrid@InvalidateSelection$qqrv", + "@Urmgrid@TRealGrid@IsEditingCell$qqrp16Urgrids@TwColumni", + "@Urmgrid@TRealGrid@IsLastRow$qqri", + "@Urmgrid@TRealGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urmgrid@TRealGrid@KeyPress$qqrrc", + "@Urmgrid@TRealGrid@LoadFromList$qqrip16Classes@TStringsio", + "@Urmgrid@TRealGrid@Loaded$qqrv", + "@Urmgrid@TRealGrid@MemoDlgOk$qqrx17System@AnsiString", + "@Urmgrid@TRealGrid@MoveRow$qqrii", + "@Urmgrid@TRealGrid@Post$qqrv", + "@Urmgrid@TRealGrid@Reset$qqrv", + "@Urmgrid@TRealGrid@RowEnter$qqrv", + "@Urmgrid@TRealGrid@RowExit$qqrv", + "@Urmgrid@TRealGrid@SaveToList$qqrip16Classes@TStringsii", + "@Urmgrid@TRealGrid@SelectionChanged$qqrv", + "@Urmgrid@TRealGrid@SetChanged$qqrio", + "@Urmgrid@TRealGrid@SetCurRow$qqri", + "@Urmgrid@TRealGrid@SetCurRowData$qqrpv", + "@Urmgrid@TRealGrid@SetEditValue$qqrv", + "@Urmgrid@TRealGrid@SetImage$qqrp16Urgrids@TwColumnip16Graphics@TBitmap", + "@Urmgrid@TRealGrid@SetMaxRowCount$qqri", + "@Urmgrid@TRealGrid@SetRowCount$qqri", + "@Urmgrid@TRealGrid@SetRowData$qqripv", + "@Urmgrid@TRealGrid@SetRowState$qqri18Urmgrid@TwRowState", + "@Urmgrid@TRealGrid@SetRowType$qqrizc", + "@Urmgrid@TRealGrid@SetSelEnd$qqrii", + "@Urmgrid@TRealGrid@SetSelected$qqrio", + "@Urmgrid@TRealGrid@SetTopRow$qqri", + "@Urmgrid@TRealGrid@Sort$qqrioo", + "@Urmgrid@TRealGrid@ValueChanged$qqrp19Urmgrid@TwMemColumn", + "@Urmgrid@TRealGrid@ValueChanging$qqrp19Urmgrid@TwMemColumnrx14System@Variant", + "@Urmgrid@TRealGrid@WmVScroll$qqrr18Messages@TWMScroll", + "@Urmgrid@TwCells@", + "@Urmgrid@TwCells@$bctr$qqrp17Urmgrid@TRealGrid", + "@Urmgrid@TwCells@Changed$qqrv", + "@Urmgrid@TwCells@GetBool$qqrv", + "@Urmgrid@TwCells@GetByte$qqrv", + "@Urmgrid@TwCells@GetDateTime$qqrv", + "@Urmgrid@TwCells@GetFloat$qqrv", + "@Urmgrid@TwCells@GetIndex$qqrv", + "@Urmgrid@TwCells@GetLong$qqrv", + "@Urmgrid@TwCells@GetNull$qqrv", + "@Urmgrid@TwCells@GetShort$qqrv", + "@Urmgrid@TwCells@GetSmall$qqrv", + "@Urmgrid@TwCells@GetString$qqrv", + "@Urmgrid@TwCells@GetText$qqrv", + "@Urmgrid@TwCells@GetValue$qqrv", + "@Urmgrid@TwCells@GetWord$qqrv", + "@Urmgrid@TwCells@SetBool$qqro", + "@Urmgrid@TwCells@SetByte$qqruc", + "@Urmgrid@TwCells@SetDateTime$qqr16System@TDateTime", + "@Urmgrid@TwCells@SetFloat$qqrd", + "@Urmgrid@TwCells@SetIndex$qqri", + "@Urmgrid@TwCells@SetLong$qqri", + "@Urmgrid@TwCells@SetNull$qqrv", + "@Urmgrid@TwCells@SetShort$qqrzc", + "@Urmgrid@TwCells@SetSmall$qqrs", + "@Urmgrid@TwCells@SetString$qqrx17System@AnsiString", + "@Urmgrid@TwCells@SetValue$qqrrx14System@Variant", + "@Urmgrid@TwCells@SetWord$qqrus", + "@Urmgrid@TwCells@_GetText$qqrp17System@TMetaClassp19Urmgrid@TwMemColumnx17System@AnsiString", + "@Urmgrid@TwMemColumn@", + "@Urmgrid@TwMemColumn@$bctr$qqrp19Classes@TCollection", + "@Urmgrid@TwMemColumn@$bdtr$qqrv", + "@Urmgrid@TwMemColumn@Assign$qqrp19Classes@TPersistent", + "@Urmgrid@TwMemColumn@CanSelect$qqrv", + "@Urmgrid@TwMemColumn@CreateFooter$qqrv", + "@Urmgrid@TwMemColumn@EditCanModify$qqrv", + "@Urmgrid@TwMemColumn@EqualValues$qqrv", + "@Urmgrid@TwMemColumn@GetBool$qqrv", + "@Urmgrid@TwMemColumn@GetByte$qqrv", + "@Urmgrid@TwMemColumn@GetDataWidth$qqrv", + "@Urmgrid@TwMemColumn@GetDateTime$qqrv", + "@Urmgrid@TwMemColumn@GetDefWidth$qqrv", + "@Urmgrid@TwMemColumn@GetDisplayName$qqrv", + "@Urmgrid@TwMemColumn@GetEditKind$qqrv", + "@Urmgrid@TwMemColumn@GetEditLimit$qqrv", + "@Urmgrid@TwMemColumn@GetFloat$qqrv", + "@Urmgrid@TwMemColumn@GetLong$qqrv", + "@Urmgrid@TwMemColumn@GetNull$qqrv", + "@Urmgrid@TwMemColumn@GetOldValue$qqrv", + "@Urmgrid@TwMemColumn@GetShort$qqrv", + "@Urmgrid@TwMemColumn@GetSmall$qqrv", + "@Urmgrid@TwMemColumn@GetString$qqrv", + "@Urmgrid@TwMemColumn@GetValue$qqrv", + "@Urmgrid@TwMemColumn@GetWord$qqrv", + "@Urmgrid@TwMemColumn@IsGraphic$qqrv", + "@Urmgrid@TwMemColumn@IsNumeric$qqrv", + "@Urmgrid@TwMemColumn@IsValidChar$qqrc", + "@Urmgrid@TwMemColumn@SaveValue$qqrv", + "@Urmgrid@TwMemColumn@SetBool$qqro", + "@Urmgrid@TwMemColumn@SetByte$qqruc", + "@Urmgrid@TwMemColumn@SetCalculated$qqro", + "@Urmgrid@TwMemColumn@SetDataType$qqr18Urmgrid@TwDataType", + "@Urmgrid@TwMemColumn@SetDataWidth$qqrus", + "@Urmgrid@TwMemColumn@SetDateTime$qqr16System@TDateTime", + "@Urmgrid@TwMemColumn@SetDefaults$qqrx17System@AnsiString", + "@Urmgrid@TwMemColumn@SetDisplayFormat$qqrx17System@AnsiString", + "@Urmgrid@TwMemColumn@SetFloat$qqrd", + "@Urmgrid@TwMemColumn@SetLong$qqri", + "@Urmgrid@TwMemColumn@SetNull$qqrv", + "@Urmgrid@TwMemColumn@SetRequired$qqro", + "@Urmgrid@TwMemColumn@SetShort$qqrzc", + "@Urmgrid@TwMemColumn@SetSmall$qqrs", + "@Urmgrid@TwMemColumn@SetString$qqrx17System@AnsiString", + "@Urmgrid@TwMemColumn@SetValue$qqrrx14System@Variant", + "@Urmgrid@TwMemColumn@SetWord$qqrus", + "@Urmgrid@TwMemColumn@Sort$qqroo", + "@Urmgrid@TwMemColumn@ValueChanged$qqrv", + "@Urmgrid@TwMemColumn@ValueChanging$qqrrx14System@Variant", + "@Urmgrid@TwMemColumn@_SetNull$qqro", + "@Urmgrid@TwMemColumnFooter@", + "@Urmgrid@TwMemColumnFooter@$bctr$qqrp16Urgrids@TwColumn", + "@Urmgrid@TwMemColumnFooter@$bdtr$qqrv", + "@Urmgrid@TwMemColumnFooter@Assign$qqrp19Classes@TPersistent", + "@Urmgrid@TwMemColumnFooter@AssignStyles$qqrp25Urmgrid@TwMemColumnFooter", + "@Urmgrid@TwMemColumnFooter@Changed$qqrv", + "@Urmgrid@TwMemColumnFooter@DefineProperties$qqrp14Classes@TFiler", + "@Urmgrid@TwMemColumnFooter@Footering$qqri", + "@Urmgrid@TwMemColumnFooter@FootersChanged$qqrv", + "@Urmgrid@TwMemColumnFooter@GetMethod$qqri", + "@Urmgrid@TwMemColumnFooter@GetOpColumn$qqri", + "@Urmgrid@TwMemColumnFooter@GetOperand$qqri", + "@Urmgrid@TwMemColumnFooter@GetOperator$qqri", + "@Urmgrid@TwMemColumnFooter@GetStyles$qqrv", + "@Urmgrid@TwMemColumnFooter@GetText$qqri", + "@Urmgrid@TwMemColumnFooter@ReadStyles$qqrp15Classes@TReader", + "@Urmgrid@TwMemColumnFooter@SetMethod$qqri22Urmgrid@TwFooterMethod", + "@Urmgrid@TwMemColumnFooter@SetOpColumn$qqrii", + "@Urmgrid@TwMemColumnFooter@SetOperand$qqrix17System@AnsiString", + "@Urmgrid@TwMemColumnFooter@SetOperator$qqri24Urmgrid@TwFooterOperator", + "@Urmgrid@TwMemColumnFooter@SetStyle$qqri22Urmgrid@TwFooterMethodi24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemColumnFooter@SetStyles$qqrx17System@AnsiString", + "@Urmgrid@TwMemColumnFooter@WriteStyles$qqrp15Classes@TWriter", + "@Urmgrid@TwMemPool@", + "@Urmgrid@TwMemPool@$bctr$qqrp19Urmgrid@TwMemColumn", + "@Urmgrid@TwMemPool@$bdtr$qqrv", + "@Urmgrid@TwMemPool@Assign$qqrp17Urmgrid@TwMemPool", + "@Urmgrid@TwMemPool@CalcAverage$qqrp17Urmgrid@TwMemPool24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemPool@CalcCount$qqrp17Urmgrid@TwMemPool24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemPool@CalcFooter$qqr22Urmgrid@TwFooterMethodp17Urmgrid@TwMemPool24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemPool@CalcMax$qqrp17Urmgrid@TwMemPool24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemPool@CalcMin$qqrp17Urmgrid@TwMemPool24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemPool@CalcSize$qqrv", + "@Urmgrid@TwMemPool@CalcSum$qqrp17Urmgrid@TwMemPool24Urmgrid@TwFooterOperatorx17System@AnsiString", + "@Urmgrid@TwMemPool@Clear$qqrv", + "@Urmgrid@TwMemPool@ClearData$qqrv", + "@Urmgrid@TwMemPool@ColumnChanged$qqrv", + "@Urmgrid@TwMemPool@Compare$qqrii", + "@Urmgrid@TwMemPool@Compare$qqrix17System@AnsiString", + "@Urmgrid@TwMemPool@CompareValue$qqrirx14System@Variant", + "@Urmgrid@TwMemPool@Delete$qqrii", + "@Urmgrid@TwMemPool@Exchange$qqrii", + "@Urmgrid@TwMemPool@GetBool$qqri", + "@Urmgrid@TwMemPool@GetByte$qqri", + "@Urmgrid@TwMemPool@GetCount$qqrv", + "@Urmgrid@TwMemPool@GetDateTime$qqri", + "@Urmgrid@TwMemPool@GetFloat$qqri", + "@Urmgrid@TwMemPool@GetLong$qqri", + "@Urmgrid@TwMemPool@GetNull$qqri", + "@Urmgrid@TwMemPool@GetShort$qqri", + "@Urmgrid@TwMemPool@GetSmall$qqri", + "@Urmgrid@TwMemPool@GetString$qqri", + "@Urmgrid@TwMemPool@GetValue$qqri", + "@Urmgrid@TwMemPool@GetWord$qqri", + "@Urmgrid@TwMemPool@Init$qqrv", + "@Urmgrid@TwMemPool@Insert$qqri", + "@Urmgrid@TwMemPool@Move$qqrii", + "@Urmgrid@TwMemPool@RowPos$qqri", + "@Urmgrid@TwMemPool@SetBool$qqrio", + "@Urmgrid@TwMemPool@SetByte$qqriuc", + "@Urmgrid@TwMemPool@SetCount$qqri", + "@Urmgrid@TwMemPool@SetDateTime$qqri16System@TDateTime", + "@Urmgrid@TwMemPool@SetFloat$qqrid", + "@Urmgrid@TwMemPool@SetLong$qqrii", + "@Urmgrid@TwMemPool@SetNull$qqrio", + "@Urmgrid@TwMemPool@SetShort$qqrizc", + "@Urmgrid@TwMemPool@SetSmall$qqris", + "@Urmgrid@TwMemPool@SetString$qqrix17System@AnsiString", + "@Urmgrid@TwMemPool@SetValue$qqrirx14System@Variant", + "@Urmgrid@TwMemPool@SetWord$qqrius", + "@Urmgrid@TwRowInfos@", + "@Urmgrid@TwRowInfos@$bctr$qqrp20Urgrids@TwCustomGrid", + "@Urmgrid@TwRowInfos@$bdtr$qqrv", + "@Urmgrid@TwRowInfos@Clear$qqrv", + "@Urmgrid@TwRowInfos@ClearChanged$qqrv", + "@Urmgrid@TwRowInfos@ClearChecked$qqrv", + "@Urmgrid@TwRowInfos@ClearSelection$qqrv", + "@Urmgrid@TwRowInfos@ClearState$qqrv", + "@Urmgrid@TwRowInfos@ClearType$qqrv", + "@Urmgrid@TwRowInfos@Delete$qqrii", + "@Urmgrid@TwRowInfos@Exchange$qqrii", + "@Urmgrid@TwRowInfos@GetChanged$qqri", + "@Urmgrid@TwRowInfos@GetChangedCount$qqrv", + "@Urmgrid@TwRowInfos@GetChecked$qqri", + "@Urmgrid@TwRowInfos@GetRowData$qqri", + "@Urmgrid@TwRowInfos@GetRowType$qqri", + "@Urmgrid@TwRowInfos@GetSelected$qqri", + "@Urmgrid@TwRowInfos@GetSelectedCount$qqrii", + "@Urmgrid@TwRowInfos@GetState$qqri", + "@Urmgrid@TwRowInfos@GetStateCount$qqr18Urmgrid@TwRowState", + "@Urmgrid@TwRowInfos@GetTypeCount$qqrzc", + "@Urmgrid@TwRowInfos@Init$qqrv", + "@Urmgrid@TwRowInfos@Insert$qqri", + "@Urmgrid@TwRowInfos@Move$qqrii", + "@Urmgrid@TwRowInfos@SelectionToChecked$qqrv", + "@Urmgrid@TwRowInfos@SetChanged$qqrio", + "@Urmgrid@TwRowInfos@SetChecked$qqrio", + "@Urmgrid@TwRowInfos@SetCount$qqri", + "@Urmgrid@TwRowInfos@SetRowData$qqripv", + "@Urmgrid@TwRowInfos@SetRowType$qqrizc", + "@Urmgrid@TwRowInfos@SetSelected$qqrio", + "@Urmgrid@TwRowInfos@SetState$qqri18Urmgrid@TwRowState", + "@Urmgrid@initialization$qqrv", + "@Urnedit@Finalization$qqrv", + "@Urnedit@TwCustomNumEdit@", + "@Urnedit@TwCustomNumEdit@$bctr$qqrp18Classes@TComponent", + "@Urnedit@TwCustomNumEdit@$bdtr$qqrv", + "@Urnedit@TwCustomNumEdit@CalcCaretExtents$qqrv", + "@Urnedit@TwCustomNumEdit@CalcCaretPos$qqrr12Types@TPoint", + "@Urnedit@TwCustomNumEdit@CanModify$qqrv", + "@Urnedit@TwCustomNumEdit@Changed$qqrv", + "@Urnedit@TwCustomNumEdit@CheckValue$qqrg", + "@Urnedit@TwCustomNumEdit@Clear$qqrv", + "@Urnedit@TwCustomNumEdit@ClearSelection$qqrv", + "@Urnedit@TwCustomNumEdit@CmCtl3DChanged$qqrr17Messages@TMessage", + "@Urnedit@TwCustomNumEdit@CmEnabledChanged$qqrr17Messages@TMessage", + "@Urnedit@TwCustomNumEdit@CmEnter$qqrr20Messages@TWMNoParams", + "@Urnedit@TwCustomNumEdit@CmExit$qqrr20Messages@TWMNoParams", + "@Urnedit@TwCustomNumEdit@CmFontChanged$qqrr17Messages@TMessage", + "@Urnedit@TwCustomNumEdit@CmTextChanged$qqrr17Messages@TMessage", + "@Urnedit@TwCustomNumEdit@CopyToClipboard$qqrv", + "@Urnedit@TwCustomNumEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Urnedit@TwCustomNumEdit@CreateWnd$qqrv", + "@Urnedit@TwCustomNumEdit@CurToPos$qqri", + "@Urnedit@TwCustomNumEdit@CutToClipboard$qqrv", + "@Urnedit@TwCustomNumEdit@DblClick$qqrv", + "@Urnedit@TwCustomNumEdit@DeleteSelection$qqrv", + "@Urnedit@TwCustomNumEdit@DisplayPos$qqri", + "@Urnedit@TwCustomNumEdit@DisplayText$qqrv", + "@Urnedit@TwCustomNumEdit@GetEditRect$qqrv", + "@Urnedit@TwCustomNumEdit@GetIsNull$qqrv", + "@Urnedit@TwCustomNumEdit@GetSpinRect$qqrv", + "@Urnedit@TwCustomNumEdit@GetState$qqrii", + "@Urnedit@TwCustomNumEdit@GetValue$qqrv", + "@Urnedit@TwCustomNumEdit@IsValidChar$qqrc", + "@Urnedit@TwCustomNumEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urnedit@TwCustomNumEdit@KeyPress$qqrrc", + "@Urnedit@TwCustomNumEdit@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urnedit@TwCustomNumEdit@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urnedit@TwCustomNumEdit@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urnedit@TwCustomNumEdit@Paint$qqrv", + "@Urnedit@TwCustomNumEdit@PasteFromClipboard$qqrv", + "@Urnedit@TwCustomNumEdit@PosToCur$qqri", + "@Urnedit@TwCustomNumEdit@ResetCaret$qqrv", + "@Urnedit@TwCustomNumEdit@SelLeft$qqrv", + "@Urnedit@TwCustomNumEdit@SelLength$qqrv", + "@Urnedit@TwCustomNumEdit@SelRight$qqrv", + "@Urnedit@TwCustomNumEdit@SelString$qqrv", + "@Urnedit@TwCustomNumEdit@SelectAll$qqro", + "@Urnedit@TwCustomNumEdit@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Urnedit@TwCustomNumEdit@SetCurr$qqri", + "@Urnedit@TwCustomNumEdit@SetLayout$qqr20Stdctrls@TTextLayout", + "@Urnedit@TwCustomNumEdit@SetMaxLength$qqri", + "@Urnedit@TwCustomNumEdit@SetPrecision$qqrus", + "@Urnedit@TwCustomNumEdit@SetSelEnd$qqri", + "@Urnedit@TwCustomNumEdit@SetSpinner$qqro", + "@Urnedit@TwCustomNumEdit@SetSpinner3D$qqro", + "@Urnedit@TwCustomNumEdit@SetThousandSep$qqro", + "@Urnedit@TwCustomNumEdit@SetValue$qqrg", + "@Urnedit@TwCustomNumEdit@SpinClick$qqri", + "@Urnedit@TwCustomNumEdit@StartSelection$qqri", + "@Urnedit@TwCustomNumEdit@WmGetDlgCode$qqrr17Messages@TMessage", + "@Urnedit@TwCustomNumEdit@WmKillFocus$qqrr21Messages@TWMKillFocus", + "@Urnedit@TwCustomNumEdit@WmSetFocus$qqrr20Messages@TWMSetFocus", + "@Urnedit@TwCustomNumEdit@WmSize$qqrr16Messages@TWMSize", + "@Urnedit@TwCustomNumEdit@ZeroPos$qqrv", + "@Urnedit@initialization$qqrv", + "@Urregs@Finalization$qqrv", + "@Urregs@Register$qqrv", + "@Urregs@TwGridEditor@", + "@Urregs@TwGridEditor@EditColumns$qqrv", + "@Urregs@TwGridEditor@EditColumnsProc$qqrx48System@%DelphiInterface$t20Designintf@IProperty%", + "@Urregs@TwGridEditor@EditFooters$qqrv", + "@Urregs@TwGridEditor@EditFootersProc$qqrx48System@%DelphiInterface$t20Designintf@IProperty%", + "@Urregs@TwGridEditor@EditGroups$qqrv", + "@Urregs@TwGridEditor@EditGroupsProc$qqrx48System@%DelphiInterface$t20Designintf@IProperty%", + "@Urregs@TwGridEditor@ExecuteVerb$qqri", + "@Urregs@TwGridEditor@GetVerb$qqri", + "@Urregs@TwGridEditor@GetVerbCount$qqrv", + "@Urregs@TwGridEditor@ShowAbout$qqrv", + "@Urregs@initialization$qqrv", + "@Urutils@CheckLicense$qqrv", + "@Urutils@CheckRegister$qqrv", + "@Urutils@DMax$qqrgg", + "@Urutils@DMin$qqrgg", + "@Urutils@Finalization$qqrv", + "@Urutils@IMax$qqrii", + "@Urutils@IMin$qqrii", + "@Urutils@RGButtonWidth$qqrv", + "@Urutils@RGDateToInt$qqr16System@TDateTime", + "@Urutils@RGDecodeDateTime$qqr16System@TDateTimer16System@TDateTimet2", + "@Urutils@RGEncodeDateTime$qqr16System@TDateTimet1", + "@Urutils@RGErrBeep$qqrv", + "@Urutils@RGExtractField$qqrx17System@AnsiStringri", + "@Urutils@RGGetCharHeight$qqrp14Graphics@TFont", + "@Urutils@RGGetCharMaxWidth$qqrp14Graphics@TFont", + "@Urutils@RGGetCharWidth$qqrp14Graphics@TFont", + "@Urutils@RGGetStrHeight$qqruirx11Types@TRectx17System@AnsiStringi", + "@Urutils@RGGetStrWidth$qqruix17System@AnsiString", + "@Urutils@RGGetSystemDir$qqrv", + "@Urutils@RGGetTocken$qqr17System@AnsiStringci", + "@Urutils@RGGetWindowsDir$qqrv", + "@Urutils@RGInflateMargins$qqrr11Types@TRectrx11Types@TRect", + "@Urutils@RGInitMargin$qqrr11Types@TRecti", + "@Urutils@RGIntToDate$qqri", + "@Urutils@RGIntToTime$qqri", + "@Urutils@RGIntersectRect$qqrrx11Types@TRectt1", + "@Urutils@RGMixBytes$qqrucucuc", + "@Urutils@RGMixColors$qqr15Graphics@TColort1uc", + "@Urutils@RGThisYear$qqrv", + "@Urutils@RGTimeToInt$qqr16System@TDateTime", + "@Urutils@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5663, + "domain_strings": [ + "@System@@ROUND$qqrv", + "AdjustWindowRectEx", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Designeditors@TPropertyEditor@Activate$qqrv", + "@Urgrids@TwColumns@Update$qqrp23Classes@TCollectionItem", + "@Urgrids@TwCustomGrid@AdjustColumnWidth$qqrpx16Urgrids@TwColumn", + "@Urgrids@TwGridFooters@Update$qqrp23Classes@TCollectionItem", + "@Urgrids@TwGroups@Update$qqrp23Classes@TCollectionItem", + "@Urgrids@TwMarkers@Update$qqri", + "@Urguard@GenerateDateModifierPrim$qqr16System@TDateTime", + "@Urguard@GenerateMD5KeyPrim$qqrpucx17System@AnsiString", + "@Urguard@GenerateMachineModifierPrim$qqro", + "@Urguard@GenerateRandomKeyPrim$qqrpvui", + "@Urguard@GenerateStringModifierPrim$qqrx17System@AnsiString", + "@Urguard@GenerateTMDKeyPrim$qqrpvuix17System@AnsiString", + "@Urguard@GenerateUniqueModifierPrim$qqrv", + "@Urmgrid@TRealGrid@AdjustColumnWidth$qqrpx16Urgrids@TwColumn", + "@Urmgrid@TRealGrid@Delete$qqrv", + "@Urmgrid@TRealGrid@Insert$qqro", + "@Urmgrid@TwMemPool@Delete$qqrii", + "@Urmgrid@TwMemPool@Insert$qqri", + "@Urmgrid@TwRowInfos@Delete$qqrii", + "@Urmgrid@TwRowInfos@Insert$qqri" + ] + }, + "RealGridDB6.bpl": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 45372, + "raw_off": 1024, + "raw_size": 45568 + }, + { + "name": "DATA", + "va": 53248, + "vsize": 84, + "raw_off": 46592, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 57344, + "vsize": 105, + "raw_off": 47104, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 61440, + "vsize": 36502, + "raw_off": 47104, + "raw_size": 36864 + }, + { + "name": ".edata", + "va": 98304, + "vsize": 14994, + "raw_off": 83968, + "raw_size": 15360 + }, + { + "name": ".rdata", + "va": 114688, + "vsize": 15, + "raw_off": 99328, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 118784, + "vsize": 5388, + "raw_off": 99840, + "raw_size": 5632 + }, + { + "name": ".rsrc", + "va": 126976, + "vsize": 5632, + "raw_off": 105472, + "raw_size": 5632 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridEX6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl" + ], + "exports": [ + "@$xp$19Urdbgrid@TwDBColumn", + "@$xp$19Urdblist@TwDataList", + "@$xp$20Urdbgrid@TRealDBGrid", + "@$xp$20Urdbgrid@TwDBColumns", + "@$xp$20Urdblist@TwPopupLink", + "@$xp$20Urgridex@TRealGridEx", + "@$xp$21Urdbgrid@TwSelections", + "@$xp$22Urgridex@TwMemColumnEx", + "@$xp$23Urdatacombo@TwDataCombo", + "@$xp$23Urdbgrid@TwGridDataLink", + "@$xp$23Urdbgrid@TwInLookupList", + "@$xp$24Urdbinedits@TwInDataList", + "@$xp$25Urdbgrid@TwDBColumnFooter", + "@$xp$27Urdbregs@TwDBStringProperty", + "@$xp$32Urdbfootstyles@TwDlgDBFootStyles", + "@$xp$33Urdatacombo@TwDataComboListOption", + "@GetPackageInfoTable", + "@Realgriddb6@@GetPackageInfoTable$qqrv", + "@Realgriddb6@@PackageLoad$qqrv", + "@Realgriddb6@@PackageUnload$qqrv", + "@Realgriddb6@initialization$qqrv", + "@Urdatacombo@Finalization$qqrv", + "@Urdatacombo@TwDataCombo@", + "@Urdatacombo@TwDataCombo@$bctr$qqrp18Classes@TComponent", + "@Urdatacombo@TwDataCombo@$bdtr$qqrv", + "@Urdatacombo@TwDataCombo@Change$qqrv", + "@Urdatacombo@TwDataCombo@CloseUp$qqro", + "@Urdatacombo@TwDataCombo@CreateList$qqrv", + "@Urdatacombo@TwDataCombo@CreateListOption$qqrv", + "@Urdatacombo@TwDataCombo@CreateWnd$qqrv", + "@Urdatacombo@TwDataCombo@DropDown$qqro", + "@Urdatacombo@TwDataCombo@Editable$qqrv", + "@Urdatacombo@TwDataCombo@ImagesChanged$qqrp14System@TObject", + "@Urdatacombo@TwDataCombo@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urdatacombo@TwDataCombo@ListCloseUp$qqrp14System@TObjecto", + "@Urdatacombo@TwDataCombo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urdatacombo@TwDataCombo@SetImages$qqrp19Controls@TImageList", + "@Urdatacombo@TwDataCombo@SetListSource$qqrp14Db@TDataSource", + "@Urdatacombo@TwDataComboListOption@", + "@Urdatacombo@TwDataComboListOption@$bctr$qqrv", + "@Urdatacombo@TwDataComboListOption@DefaultFont$qqrv", + "@Urdatacombo@TwDataComboListOption@DefaultTitleFont$qqrv", + "@Urdatacombo@initialization$qqrv", + "@Urdbfootstyles@EditDBFootStyles$qqrp25Urdbgrid@TwDBColumnFooter", + "@Urdbfootstyles@Finalization$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@", + "@Urdbfootstyles@TwDlgDBFootStyles@$bctr$qqrp18Classes@TComponentp25Urdbgrid@TwDBColumnFooter", + "@Urdbfootstyles@TwDlgDBFootStyles@$bdtr$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@Changed$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@GetValue$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@GetVisible$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@ReadStyle$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@ReadStyles$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@SetValue$qqrix17System@AnsiString", + "@Urdbfootstyles@TwDlgDBFootStyles@SetVisible$qqrio", + "@Urdbfootstyles@TwDlgDBFootStyles@WriteStyle$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@WriteStyles$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@cbFootersClick$qqrp14System@TObject", + "@Urdbfootstyles@TwDlgDBFootStyles@chkVisibleClick$qqrp14System@TObject", + "@Urdbfootstyles@TwDlgDBFootStyles@cmOkClick$qqrp14System@TObject", + "@Urdbfootstyles@TwDlgDBFootStyles@edValueChange$qqrp14System@TObject", + "@Urdbfootstyles@initialization$qqrv", + "@Urdbgrid@Finalization$qqrv", + "@Urdbgrid@TRealDBGrid@", + "@Urdbgrid@TRealDBGrid@$bctr$qqrp18Classes@TComponent", + "@Urdbgrid@TRealDBGrid@$bdtr$qqrv", + "@Urdbgrid@TRealDBGrid@BuildFromDataSet$qqrv", + "@Urdbgrid@TRealDBGrid@CheckBool$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@CheckList$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@CheckNull$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@ClearSelection$qqrv", + "@Urdbgrid@TRealDBGrid@CmExit$qqrr17Messages@TMessage", + "@Urdbgrid@TRealDBGrid@CreateColumns$qqrv", + "@Urdbgrid@TRealDBGrid@CreateDataList$qqrv", + "@Urdbgrid@TRealDBGrid@CreateLookupList$qqrv", + "@Urdbgrid@TRealDBGrid@CreateWnd$qqrv", + "@Urdbgrid@TRealDBGrid@DataSetChanged$qqrv", + "@Urdbgrid@TRealDBGrid@DataSetScrolled$qqri", + "@Urdbgrid@TRealDBGrid@Delete$qqrv", + "@Urdbgrid@TRealDBGrid@DeleteSelection$qqrv", + "@Urdbgrid@TRealDBGrid@DoInRow$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urdbgrid@TRealDBGrid@DoMouseWheel$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%irx12Types@TPoint", + "@Urdbgrid@TRealDBGrid@DrawRow$qqriooii", + "@Urdbgrid@TRealDBGrid@Edit$qqrv", + "@Urdbgrid@TRealDBGrid@EditingChanged$qqrv", + "@Urdbgrid@TRealDBGrid@EnableDeleting$qqrv", + "@Urdbgrid@TRealDBGrid@EnableRowNo$qqrv", + "@Urdbgrid@TRealDBGrid@GetDBColumn$qqri", + "@Urdbgrid@TRealDBGrid@GetDataSet$qqrv", + "@Urdbgrid@TRealDBGrid@GetDataSource$qqrv", + "@Urdbgrid@TRealDBGrid@GetDisplayImage$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@GetDisplayText$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@GetEditValue$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@GetGridMode$qqrv", + "@Urdbgrid@TRealDBGrid@GetImageIndex$qqrp16Urgrids@TwColumni", + "@Urdbgrid@TRealDBGrid@GetIndiState$qqri", + "@Urdbgrid@TRealDBGrid@GetRowCount$qqrv", + "@Urdbgrid@TRealDBGrid@GetRowNo$qqri", + "@Urdbgrid@TRealDBGrid@GetSelected$qqri", + "@Urdbgrid@TRealDBGrid@GetSelectedCount$qqrv", + "@Urdbgrid@TRealDBGrid@GetSelectedField$qqrv", + "@Urdbgrid@TRealDBGrid@GetVDBColumn$qqri", + "@Urdbgrid@TRealDBGrid@GetVertRange$qqrrx11Types@TRect", + "@Urdbgrid@TRealDBGrid@ImgDlgOk$qqrp16Graphics@TBitmap", + "@Urdbgrid@TRealDBGrid@InsertFirst$qqrv", + "@Urdbgrid@TRealDBGrid@InvalidateSelection$qqrv", + "@Urdbgrid@TRealDBGrid@IsLastRow$qqri", + "@Urdbgrid@TRealDBGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urdbgrid@TRealDBGrid@KeyPress$qqrrc", + "@Urdbgrid@TRealDBGrid@LayoutChanged$qqrv", + "@Urdbgrid@TRealDBGrid@LinkActive$qqro", + "@Urdbgrid@TRealDBGrid@Loaded$qqrv", + "@Urdbgrid@TRealDBGrid@MemoDlgOk$qqrx17System@AnsiString", + "@Urdbgrid@TRealDBGrid@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urdbgrid@TRealDBGrid@RecordChanged$qqrp9Db@TField", + "@Urdbgrid@TRealDBGrid@SetCurRow$qqri", + "@Urdbgrid@TRealDBGrid@SetDataSource$qqrp14Db@TDataSource", + "@Urdbgrid@TRealDBGrid@SetEditValue$qqrv", + "@Urdbgrid@TRealDBGrid@SetOptions$qqr49System@%Set$t20Urgrids@TwGridOption$iuc$0$iuc$22%", + "@Urdbgrid@TRealDBGrid@SetRowCount$qqri", + "@Urdbgrid@TRealDBGrid@SetSelected$qqrio", + "@Urdbgrid@TRealDBGrid@SetSelectedField$qqrp9Db@TField", + "@Urdbgrid@TRealDBGrid@UpdateActiveRow$qqrv", + "@Urdbgrid@TRealDBGrid@UpdateData$qqrv", + "@Urdbgrid@TRealDBGrid@UpdateRowCount$qqrv", + "@Urdbgrid@TRealDBGrid@UpdateVScrollBar$qqrv", + "@Urdbgrid@TRealDBGrid@WmSize$qqrr16Messages@TWMSize", + "@Urdbgrid@TRealDBGrid@WmVScroll$qqrr18Messages@TWMScroll", + "@Urdbgrid@TwDBColumn@", + "@Urdbgrid@TwDBColumn@$bctr$qqrp19Classes@TCollection", + "@Urdbgrid@TwDBColumn@$bdtr$qqrv", + "@Urdbgrid@TwDBColumn@Assign$qqrp19Classes@TPersistent", + "@Urdbgrid@TwDBColumn@CanEditShow$qqrv", + "@Urdbgrid@TwDBColumn@CanSelect$qqrv", + "@Urdbgrid@TwDBColumn@CreateFooter$qqrv", + "@Urdbgrid@TwDBColumn@EditCanModify$qqrv", + "@Urdbgrid@TwDBColumn@GetDBGrid$qqrv", + "@Urdbgrid@TwDBColumn@GetDefWidth$qqrv", + "@Urdbgrid@TwDBColumn@GetDisplayName$qqrv", + "@Urdbgrid@TwDBColumn@GetEditKind$qqrv", + "@Urdbgrid@TwDBColumn@GetEditLimit$qqrv", + "@Urdbgrid@TwDBColumn@GetField$qqrv", + "@Urdbgrid@TwDBColumn@IsGraphic$qqrv", + "@Urdbgrid@TwDBColumn@IsNumeric$qqrv", + "@Urdbgrid@TwDBColumn@IsValidChar$qqrc", + "@Urdbgrid@TwDBColumn@SetField$qqrp9Db@TField", + "@Urdbgrid@TwDBColumn@SetFieldName$qqrx17System@AnsiString", + "@Urdbgrid@TwDBColumn@SetListSource$qqrp14Db@TDataSource", + "@Urdbgrid@TwDBColumnFooter@", + "@Urdbgrid@TwDBColumnFooter@$bctr$qqrp16Urgrids@TwColumn", + "@Urdbgrid@TwDBColumnFooter@$bdtr$qqrv", + "@Urdbgrid@TwDBColumnFooter@Assign$qqrp19Classes@TPersistent", + "@Urdbgrid@TwDBColumnFooter@AssignStyles$qqrp25Urdbgrid@TwDBColumnFooter", + "@Urdbgrid@TwDBColumnFooter@DefineProperties$qqrp14Classes@TFiler", + "@Urdbgrid@TwDBColumnFooter@Footering$qqri", + "@Urdbgrid@TwDBColumnFooter@FootersChanged$qqrv", + "@Urdbgrid@TwDBColumnFooter@GetStyles$qqrv", + "@Urdbgrid@TwDBColumnFooter@GetValues$qqri", + "@Urdbgrid@TwDBColumnFooter@GetVisible$qqri", + "@Urdbgrid@TwDBColumnFooter@Loaded$qqrv", + "@Urdbgrid@TwDBColumnFooter@ReadStyles$qqrp15Classes@TReader", + "@Urdbgrid@TwDBColumnFooter@SetStyles$qqrx17System@AnsiString", + "@Urdbgrid@TwDBColumnFooter@SetValues$qqrix17System@AnsiString", + "@Urdbgrid@TwDBColumnFooter@SetVisible$qqrio", + "@Urdbgrid@TwDBColumnFooter@WriteStyles$qqrp15Classes@TWriter", + "@Urdbgrid@TwDBColumns@", + "@Urdbgrid@TwDBColumns@Update$qqrp23Classes@TCollectionItem", + "@Urdbgrid@TwGridDataLink@", + "@Urdbgrid@TwGridDataLink@$bctr$qqrp20Urdbgrid@TRealDBGrid", + "@Urdbgrid@TwGridDataLink@$bdtr$qqrv", + "@Urdbgrid@TwGridDataLink@ActiveChanged$qqrv", + "@Urdbgrid@TwGridDataLink@DataSetChanged$qqrv", + "@Urdbgrid@TwGridDataLink@DataSetScrolled$qqri", + "@Urdbgrid@TwGridDataLink@EditingChanged$qqrv", + "@Urdbgrid@TwGridDataLink@FocusControl$qqrpp9Db@TField", + "@Urdbgrid@TwGridDataLink@LayoutChanged$qqrv", + "@Urdbgrid@TwGridDataLink@Modified$qqrv", + "@Urdbgrid@TwGridDataLink@RecordChanged$qqrp9Db@TField", + "@Urdbgrid@TwGridDataLink@Reset$qqrv", + "@Urdbgrid@TwGridDataLink@UpdateData$qqrv", + "@Urdbgrid@TwInLookupList@", + "@Urdbgrid@TwInLookupList@$bctr$qqrp18Classes@TComponent", + "@Urdbgrid@TwInLookupList@CloseUp$qqro", + "@Urdbgrid@TwInLookupList@CreateList$qqrv", + "@Urdbgrid@TwInLookupList@DropDown$qqro", + "@Urdbgrid@TwInLookupList@LocateItem$qqrv", + "@Urdbgrid@TwSelections@", + "@Urdbgrid@TwSelections@$bctr$qqrp20Urdbgrid@TRealDBGrid", + "@Urdbgrid@TwSelections@$bdtr$qqrv", + "@Urdbgrid@TwSelections@Clear$qqrv", + "@Urdbgrid@TwSelections@Compare$qqrx17System@AnsiStringt1", + "@Urdbgrid@TwSelections@CurrentRow$qqrv", + "@Urdbgrid@TwSelections@Delete$qqrv", + "@Urdbgrid@TwSelections@Find$qqrx17System@AnsiStringri", + "@Urdbgrid@TwSelections@GetCount$qqrv", + "@Urdbgrid@TwSelections@GetCurRowSelected$qqrv", + "@Urdbgrid@TwSelections@GetItem$qqri", + "@Urdbgrid@TwSelections@IndexOf$qqrx17System@AnsiString", + "@Urdbgrid@TwSelections@LinkActive$qqro", + "@Urdbgrid@TwSelections@Refresh$qqrv", + "@Urdbgrid@TwSelections@SetCurRowSelected$qqro", + "@Urdbgrid@TwSelections@StringsChanged$qqrp14System@TObject", + "@Urdbgrid@initialization$qqrv", + "@Urdbinedits@Finalization$qqrv", + "@Urdbinedits@TwInDataList@", + "@Urdbinedits@TwInDataList@CloseUp$qqro", + "@Urdbinedits@TwInDataList@CreateList$qqrv", + "@Urdbinedits@TwInDataList@DropDown$qqro", + "@Urdbinedits@TwInDataList@LocateItem$qqrv", + "@Urdbinedits@initialization$qqrv", + "@Urdblist@Finalization$qqrv", + "@Urdblist@TwDataList@", + "@Urdblist@TwDataList@$bctr$qqrp18Classes@TComponent", + "@Urdblist@TwDataList@$bdtr$qqrv", + "@Urdblist@TwDataList@ActiveChanged$qqrv", + "@Urdblist@TwDataList@CmCtl3DChanged$qqrr17Messages@TMessage", + "@Urdblist@TwDataList@CreateParams$qqrr22Controls@TCreateParams", + "@Urdblist@TwDataList@CreateWnd$qqrv", + "@Urdblist@TwDataList@DataSetChanged$qqrv", + "@Urdblist@TwDataList@DataSetScrolled$qqri", + "@Urdblist@TwDataList@DrawRow$qqrioo", + "@Urdblist@TwDataList@DrawTitle$qqrv", + "@Urdblist@TwDataList@GetCellRect$qqrii", + "@Urdblist@TwDataList@GetColWidths$qqri", + "@Urdblist@TwDataList@GetColumns$qqri", + "@Urdblist@TwDataList@GetImageIndex$qqri", + "@Urdblist@TwDataList@GetKeyValue$qqrv", + "@Urdblist@TwDataList@GetListSource$qqrv", + "@Urdblist@TwDataList@GetRowRect$qqri", + "@Urdblist@TwDataList@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urdblist@TwDataList@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urdblist@TwDataList@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urdblist@TwDataList@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urdblist@TwDataList@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urdblist@TwDataList@Paint$qqrv", + "@Urdblist@TwDataList@ResetBounds$qqrv", + "@Urdblist@TwDataList@SelectItemAt$qqrii", + "@Urdblist@TwDataList@SetKeyValue$qqrrx14System@Variant", + "@Urdblist@TwDataList@SetListSource$qqrp14Db@TDataSource", + "@Urdblist@TwDataList@SetLookupValue$qqrrx14System@Variant", + "@Urdblist@TwDataList@SetTitleFont$qqrp14Graphics@TFont", + "@Urdblist@TwDataList@StopTimer$qqrv", + "@Urdblist@TwDataList@TimerScroll$qqrv", + "@Urdblist@TwDataList@UpdateScrollBar$qqrv", + "@Urdblist@TwDataList@WMGetDlgCode$qqrr17Messages@TMessage", + "@Urdblist@TwDataList@WMTimer$qqrr17Messages@TMessage", + "@Urdblist@TwDataList@WMVScroll$qqrr18Messages@TWMScroll", + "@Urdblist@TwDataList@WmNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Urdblist@TwPopupLink@", + "@Urdblist@TwPopupLink@ActiveChanged$qqrv", + "@Urdblist@TwPopupLink@DataSetChanged$qqrv", + "@Urdblist@TwPopupLink@DataSetScrolled$qqri", + "@Urdblist@initialization$qqrv", + "@Urdbregs@Finalization$qqrv", + "@Urdbregs@Register$qqrv", + "@Urdbregs@TwDBStringProperty@", + "@Urdbregs@TwDBStringProperty@GetAttributes$qqrv", + "@Urdbregs@TwDBStringProperty@GetValues$qqrynpqqrx17System@AnsiString$v", + "@Urdbregs@initialization$qqrv", + "@Urgridex@Finalization$qqrv", + "@Urgridex@TRealGridEx@", + "@Urgridex@TRealGridEx@CreateColumns$qqrv", + "@Urgridex@TRealGridEx@CreateDataList$qqrv", + "@Urgridex@TRealGridEx@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urgridex@TwMemColumnEx@", + "@Urgridex@TwMemColumnEx@GetEditKind$qqrv", + "@Urgridex@TwMemColumnEx@SetListFields$qqrx17System@AnsiString", + "@Urgridex@TwMemColumnEx@SetListIndex$qqri", + "@Urgridex@TwMemColumnEx@SetListSource$qqrp14Db@TDataSource", + "@Urgridex@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1728, + "domain_strings": [ + "TwDlgDBFootStyles", + "URDBFootStyles", + "TwDBFooterStyles", + "AdjustWindowRectEx", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Delete$qqrv", + "@Db@TDataSet@Insert$qqrv", + "@Urgrids@TwCustomGrid@AdjustColumnWidth$qqrpx16Urgrids@TwColumn", + "@Urgrids@TwColumns@Update$qqrp23Classes@TCollectionItem", + "@Urmgrid@TRealGrid@AdjustColumnWidth$qqrpx16Urgrids@TwColumn", + "@Urmgrid@TRealGrid@Delete$qqrv", + "@Designeditors@TPropertyEditor@Activate$qqrv", + "@$xp$32Urdbfootstyles@TwDlgDBFootStyles", + "@Urdbfootstyles@EditDBFootStyles$qqrp25Urdbgrid@TwDBColumnFooter", + "@Urdbfootstyles@Finalization$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@", + "@Urdbfootstyles@TwDlgDBFootStyles@$bctr$qqrp18Classes@TComponentp25Urdbgrid@TwDBColumnFooter", + "@Urdbfootstyles@TwDlgDBFootStyles@$bdtr$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@Changed$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@GetValue$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@GetVisible$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@ReadStyle$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@ReadStyles$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@SetValue$qqrix17System@AnsiString", + "@Urdbfootstyles@TwDlgDBFootStyles@SetVisible$qqrio", + "@Urdbfootstyles@TwDlgDBFootStyles@WriteStyle$qqri", + "@Urdbfootstyles@TwDlgDBFootStyles@WriteStyles$qqrv", + "@Urdbfootstyles@TwDlgDBFootStyles@cbFootersClick$qqrp14System@TObject", + "@Urdbfootstyles@TwDlgDBFootStyles@chkVisibleClick$qqrp14System@TObject", + "@Urdbfootstyles@TwDlgDBFootStyles@cmOkClick$qqrp14System@TObject", + "@Urdbfootstyles@TwDlgDBFootStyles@edValueChange$qqrp14System@TObject", + "@Urdbfootstyles@initialization$qqrv", + "@Urdbgrid@TRealDBGrid@Delete$qqrv", + "@Urdbgrid@TwDBColumns@Update$qqrp23Classes@TCollectionItem", + "@Urdbgrid@TwSelections@Delete$qqrv", + "wDlgDBFootStyles", + "TWDLGDBFOOTSTYLES", + "TwDlgDBFootStyles뵫@", + "뻌RDBFootStyles" + ] + }, + "RealGridEX6.bpl": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 28852, + "raw_off": 1024, + "raw_size": 29184 + }, + { + "name": "DATA", + "va": 36864, + "vsize": 56, + "raw_off": 30208, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 40960, + "vsize": 101, + "raw_off": 30720, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 45056, + "vsize": 22140, + "raw_off": 30720, + "raw_size": 22528 + }, + { + "name": ".edata", + "va": 69632, + "vsize": 7641, + "raw_off": 53248, + "raw_size": 7680 + }, + { + "name": ".rdata", + "va": 77824, + "vsize": 15, + "raw_off": 60928, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 81920, + "vsize": 3796, + "raw_off": 61440, + "raw_size": 4096 + }, + { + "name": ".rsrc", + "va": 86016, + "vsize": 6144, + "raw_off": 65536, + "raw_size": 6144 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl" + ], + "exports": [ + "@$xp$14Urctrls@TwEdit", + "@$xp$16Urcombos@TwCombo", + "@$xp$16Urlabels@TwLabel", + "@$xp$17Urctrls@TwNumEdit", + "@$xp$18Urctrls@TwMaskEdit", + "@$xp$19Urlabels@TwNumLabel", + "@$xp$21Urcombos@TwComboStyle", + "@$xp$22Urcombos@TwCustomCombo", + "@$xp$22Urlabels@TwCustomLabel", + "@$xp$26Urcombos@TwComboListOption", + "@$xp$26Urlabels@TwLabelChimaStyle", + "@$xp$27Urlabels@TwLabelBorderStyle", + "@GetPackageInfoTable", + "@Realgridex6@@GetPackageInfoTable$qqrv", + "@Realgridex6@@PackageLoad$qqrv", + "@Realgridex6@@PackageUnload$qqrv", + "@Realgridex6@initialization$qqrv", + "@Urcombos@Finalization$qqrv", + "@Urcombos@TwCombo@", + "@Urcombos@TwCombo@$bctr$qqrp18Classes@TComponent", + "@Urcombos@TwCombo@$bdtr$qqrv", + "@Urcombos@TwCombo@Change$qqrv", + "@Urcombos@TwCombo@Clear$qqrv", + "@Urcombos@TwCombo@CloseUp$qqro", + "@Urcombos@TwCombo@CmExit$qqrr20Messages@TWMNoParams", + "@Urcombos@TwCombo@CreateList$qqrv", + "@Urcombos@TwCombo@CreateListOption$qqrv", + "@Urcombos@TwCombo@DropDown$qqro", + "@Urcombos@TwCombo@Editable$qqrv", + "@Urcombos@TwCombo@GetFloat$qqrv", + "@Urcombos@TwCombo@GetImageIndex$qqri", + "@Urcombos@TwCombo@GetInteger$qqrv", + "@Urcombos@TwCombo@GetNull$qqrv", + "@Urcombos@TwCombo@GetString$qqrv", + "@Urcombos@TwCombo@ImagesChanged$qqrp14System@TObject", + "@Urcombos@TwCombo@ItemsChanged$qqrp14System@TObject", + "@Urcombos@TwCombo@ItemsMode$qqrv", + "@Urcombos@TwCombo@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urcombos@TwCombo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urcombos@TwCombo@SetFloat$qqrd", + "@Urcombos@TwCombo@SetImages$qqrp19Controls@TImageList", + "@Urcombos@TwCombo@SetInteger$qqri", + "@Urcombos@TwCombo@SetItems$qqrp16Classes@TStrings", + "@Urcombos@TwCombo@SetString$qqrx17System@AnsiString", + "@Urcombos@TwCombo@SetValueIndex$qqri", + "@Urcombos@TwCombo@SetValues$qqrp16Classes@TStrings", + "@Urcombos@TwCombo@ValueChanged$qqrv", + "@Urcombos@TwCombo@ValuesChanged$qqrp14System@TObject", + "@Urcombos@TwCombo@ValuesMode$qqrv", + "@Urcombos@TwComboListOption@", + "@Urcombos@TwComboListOption@$bctr$qqrv", + "@Urcombos@TwComboListOption@DefaultFont$qqrv", + "@Urcombos@TwComboListOption@DefaultTitleFont$qqrv", + "@Urcombos@TwComboListOption@ValuesIndexChanged$qqrv", + "@Urcombos@TwCustomCombo@", + "@Urcombos@TwCustomCombo@$bctr$qqrp18Classes@TComponent", + "@Urcombos@TwCustomCombo@$bdtr$qqrv", + "@Urcombos@TwCustomCombo@CloseUp$qqro", + "@Urcombos@TwCustomCombo@CmEnabledChanged$qqrr17Messages@TMessage", + "@Urcombos@TwCustomCombo@CreateListOption$qqrv", + "@Urcombos@TwCustomCombo@CreateParams$qqrr22Controls@TCreateParams", + "@Urcombos@TwCustomCombo@CreateWnd$qqrv", + "@Urcombos@TwCustomCombo@DoDropDownKeys$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urcombos@TwCustomCombo@DrawCustom$qqruirx11Types@TRect", + "@Urcombos@TwCustomCombo@DropDown$qqro", + "@Urcombos@TwCustomCombo@Editable$qqrv", + "@Urcombos@TwCustomCombo@EnableDropDown$qqrv", + "@Urcombos@TwCustomCombo@GetCustomRect$qqrv", + "@Urcombos@TwCustomCombo@GetEditRect$qqrv", + "@Urcombos@TwCustomCombo@GetMargin$qqri", + "@Urcombos@TwCustomCombo@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Urcombos@TwCustomCombo@KeyPress$qqrrc", + "@Urcombos@TwCustomCombo@ListCloseUp$qqrp14System@TObjecto", + "@Urcombos@TwCustomCombo@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urcombos@TwCustomCombo@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urcombos@TwCustomCombo@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Urcombos@TwCustomCombo@SetListOption$qqrp20Urlists@TwListoption", + "@Urcombos@TwCustomCombo@SetMargin$qqrii", + "@Urcombos@TwCustomCombo@SetMargins$qqrrx11Types@TRect", + "@Urcombos@TwCustomCombo@StopTracking$qqrv", + "@Urcombos@TwCustomCombo@TrackButton$qqrii", + "@Urcombos@TwCustomCombo@UpdateEditRect$qqrv", + "@Urcombos@TwCustomCombo@WmCancelMode$qqrr17Messages@TMessage", + "@Urcombos@TwCustomCombo@WmImeStartComposition$qqrr17Messages@TMessage", + "@Urcombos@TwCustomCombo@WmKillFocus$qqrr17Messages@TMessage", + "@Urcombos@TwCustomCombo@WmSetCursor$qqrr21Messages@TWMSetCursor", + "@Urcombos@TwCustomCombo@WndProc$qqrr17Messages@TMessage", + "@Urcombos@initialization$qqrv", + "@Urctrls@Finalization$qqrv", + "@Urctrls@TwEdit@", + "@Urctrls@TwMaskEdit@", + "@Urctrls@TwNumEdit@", + "@Urctrls@initialization$qqrv", + "@Urexregs@Finalization$qqrv", + "@Urexregs@Register$qqrv", + "@Urexregs@initialization$qqrv", + "@Urlabels@Finalization$qqrv", + "@Urlabels@TwCustomLabel@", + "@Urlabels@TwCustomLabel@$bctr$qqrp18Classes@TComponent", + "@Urlabels@TwCustomLabel@$bdtr$qqrv", + "@Urlabels@TwCustomLabel@CmDialogChar$qqrr15Messages@TWMKey", + "@Urlabels@TwCustomLabel@CmTextChanged$qqrr17Messages@TMessage", + "@Urlabels@TwCustomLabel@DrawBorder$qqrr11Types@TRect", + "@Urlabels@TwCustomLabel@GetMargins$qqri", + "@Urlabels@TwCustomLabel@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Urlabels@TwCustomLabel@Paint$qqrv", + "@Urlabels@TwCustomLabel@SetAlignment$qqr18Classes@TAlignment", + "@Urlabels@TwCustomLabel@SetBorderColor$qqr15Graphics@TColor", + "@Urlabels@TwCustomLabel@SetBorderStyle$qqr27Urlabels@TwLabelBorderStyle", + "@Urlabels@TwCustomLabel@SetBorderWidth$qqrus", + "@Urlabels@TwCustomLabel@SetCharExtra$qqrus", + "@Urlabels@TwCustomLabel@SetChima$qqro", + "@Urlabels@TwCustomLabel@SetChimaColor$qqr15Graphics@TColor", + "@Urlabels@TwCustomLabel@SetChimaStyle$qqr26Urlabels@TwLabelChimaStyle", + "@Urlabels@TwCustomLabel@SetFocusControl$qqrp20Controls@TWinControl", + "@Urlabels@TwCustomLabel@SetLayout$qqr20Stdctrls@TTextLayout", + "@Urlabels@TwCustomLabel@SetMarginRect$qqrrx11Types@TRect", + "@Urlabels@TwCustomLabel@SetMargins$qqrii", + "@Urlabels@TwCustomLabel@SetPasswordChar$qqrc", + "@Urlabels@TwCustomLabel@SetShadow$qqro", + "@Urlabels@TwCustomLabel@SetShadowColor$qqr15Graphics@TColor", + "@Urlabels@TwCustomLabel@SetShowAccelChar$qqro", + "@Urlabels@TwCustomLabel@SetTransparent$qqro", + "@Urlabels@TwCustomLabel@SetWordWrap$qqro", + "@Urlabels@TwCustomLabel@WmEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Urlabels@TwLabel@", + "@Urlabels@TwLabel@$bctr$qqrp18Classes@TComponent", + "@Urlabels@TwLabel@Clear$qqrv", + "@Urlabels@TwLabel@GetText$qqrv", + "@Urlabels@TwNumLabel@", + "@Urlabels@TwNumLabel@$bctr$qqrp18Classes@TComponent", + "@Urlabels@TwNumLabel@Changed$qqrv", + "@Urlabels@TwNumLabel@Clear$qqrv", + "@Urlabels@TwNumLabel@GetText$qqrv", + "@Urlabels@TwNumLabel@SetFormat$qqrx17System@AnsiString", + "@Urlabels@TwNumLabel@SetIsNull$qqro", + "@Urlabels@TwNumLabel@SetPrefix$qqrx17System@AnsiString", + "@Urlabels@TwNumLabel@SetSuffix$qqrx17System@AnsiString", + "@Urlabels@TwNumLabel@SetValue$qqrg", + "@Urlabels@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1083, + "domain_strings": [ + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv" + ] + }, + "RTL60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 390524, + "raw_off": 1024, + "raw_size": 390656 + }, + { + "name": "DATA", + "va": 397312, + "vsize": 10280, + "raw_off": 391680, + "raw_size": 10752 + }, + { + "name": "BSS", + "va": 409600, + "vsize": 3769, + "raw_off": 402432, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 413696, + "vsize": 6910, + "raw_off": 402432, + "raw_size": 7168 + }, + { + "name": ".edata", + "va": 421888, + "vsize": 225552, + "raw_off": 409600, + "raw_size": 225792 + }, + { + "name": ".rdata", + "va": 651264, + "vsize": 25, + "raw_off": 635392, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 655360, + "vsize": 26612, + "raw_off": 635904, + "raw_size": 26624 + }, + { + "name": ".rsrc", + "va": 684032, + "vsize": 22528, + "raw_off": 662528, + "raw_size": 22528 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "mpr.dll", + "gdi32.dll", + "user32.dll", + "ole32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "wsock32.dll" + ], + "exports": [ + "@$xp$10DBPROPINFO", + "@$xp$10IEnumNames", + "@$xp$10IErrorInfo", + "@$xp$10ILockBytes", + "@$xp$10IMallocSpy", + "@$xp$10IMtsEvents", + "@$xp$10IOleCache2", + "@$xp$10IOleObject", + "@$xp$10IOleWindow", + "@$xp$10ITypeInfo2", + "@$xp$10TComObject", + "@$xp$10TParamFlag", + "@$xp$10_xml_error", + "@$xp$10tagREGKIND", + "@$xp$11Adoint@_ADO", + "@$xp$11ContextInfo", + "@$xp$11DBPARAMINFO", + "@$xp$11IAdviseSink", + "@$xp$11ICrmMonitor", + "@$xp$11IDataObject", + "@$xp$11IDispatchEx", + "@$xp$11IDropSource", + "@$xp$11IDropTarget", + "@$xp$11IEnumString", + "@$xp$11IGetAppData", + "@$xp$11IMTSLocator", + "@$xp$11IOleControl", + "@$xp$11IReadCookie", + "@$xp$11IStringList", + "@$xp$11IViewObject", + "@$xp$11Masks@TMask", + "@$xp$11System@Byte", + "@$xp$11System@Char", + "@$xp$11System@Comp", + "@$xp$11System@Real", + "@$xp$11System@Word", + "@$xp$11TAutoObject", + "@$xp$11tagMULTI_QI", + "@$xp$11tagSTATDATA", + "@$xp$12ADDRESS_MODE", + "@$xp$12Adoint@Error", + "@$xp$12Adoint@Field", + "@$xp$12DBCOLUMNDESC", + "@$xp$12DBCOLUMNINFO", + "@$xp$12IAdviseSink2", + "@$xp$12IChannelHook", + "@$xp$12IComQCEvents", + "@$xp$12IEnumMoniker", + "@$xp$12IEnumOLEVERB", + "@$xp$12IEnumStatStg", + "@$xp$12IEnumUnknown", + "@$xp$12IEnumVariant", + "@$xp$12IEventServer", + "@$xp$12IOleDocument", + "@$xp$12IPersistFile", + "@$xp$12IPictureDisp", + "@$xp$12IPropertyBag", + "@$xp$12IRootStorage", + "@$xp$12ITransaction", + "@$xp$12IViewObject2", + "@$xp$12IWriteCookie", + "@$xp$12IXMLDocument", + "@$xp$12System@Int64", + "@$xp$12TFactoryProc", + "@$xp$12tagEXCEPINFO", + "@$xp$13Adoint@Errors", + "@$xp$13Adoint@Fields", + "@$xp$13Classes@TBits", + "@$xp$13Classes@TList", + "@$xp$13IClassFactory", + "@$xp$13IComAppEvents", + "@$xp$13IComCRMEvents", + "@$xp$13IComUserEvent", + "@$xp$13IContextState", + "@$xp$13IEnumSTATDATA", + "@$xp$13IMessageMover", + "@$xp$13IMtsEventInfo", + "@$xp$13IObjectSafety", + "@$xp$13IOleContainer", + "@$xp$13IPropertyPage", + "@$xp$13ObjectContext", + "@$xp$13ObjectControl", + "@$xp$13Oledb@IDBInfo", + "@$xp$13Oledb@IMDFind", + "@$xp$13Oledb@IRowset", + "@$xp$13System@Double", + "@$xp$13System@Single", + "@$xp$13System@String", + "@$xp$13TByteDynArray", + "@$xp$13TConnectEvent", + "@$xp$13TWordDynArray", + "@$xp$14Adoint@Field15", + "@$xp$14Classes@TFiler", + "@$xp$14Contnrs@TQueue", + "@$xp$14Contnrs@TStack", + "@$xp$14IClassFactory2", + "@$xp$14ICreateTypeLib", + "@$xp$14ICrmLogControl", + "@$xp$14IEnumFORMATETC", + "@$xp$14IFillLockBytes", + "@$xp$14IMessageFilter", + "@$xp$14IObjectContext", + "@$xp$14IObjectControl", + "@$xp$14IOleClientSite", + "@$xp$14IPersistStream", + "@$xp$14IPropertyPage2", + "@$xp$14IQuickActivate", + "@$xp$14IRpcStubBuffer", + "@$xp$14ISessionObject", + "@$xp$14Oledb@ICommand", + "@$xp$14System@Boolean", + "@$xp$14System@Integer", + "@$xp$14System@TObject", + "@$xp$14System@Variant", + "@$xp$14TInt64DynArray", + "@$xp$14TIntfFlagsBase", + "@$xp$14tagCONNECTDATA", + "@$xp$14tagQACONTAINER", + "@$xp$15Adoint@Fields15", + "@$xp$15Adoint@_ADODisp", + "@$xp$15Adoint@_Command", + "@$xp$15Classes@EThread", + "@$xp$15Classes@TParser", + "@$xp$15Classes@TReader", + "@$xp$15Classes@TRecall", + "@$xp$15Classes@TStream", + "@$xp$15Classes@TThread", + "@$xp$15Classes@TWriter", + "@$xp$15Contnrs@TBucket", + "@$xp$15IActiveDesigner", + "@$xp$15ICreateTypeInfo", + "@$xp$15ICreateTypeLib2", + "@$xp$15ICrmCompensator", + "@$xp$15IObjectWithSite", + "@$xp$15IOleControlSite", + "@$xp$15IOleInPlaceSite", + "@$xp$15IOleUndoManager", + "@$xp$15IPersistStorage", + "@$xp$15IReceiveAppData", + "@$xp$15IRpcProxyBuffer", + "@$xp$15IRunnableObject", + "@$xp$15ISharedProperty", + "@$xp$15IStdMarshalInfo", + "@$xp$15Math@TValueSign", + "@$xp$15Msxml@IXMLError", + "@$xp$15Oledb@IAccessor", + "@$xp$15Oledb@IDBInfoSC", + "@$xp$15Oledb@IMDFindSC", + "@$xp$15Oledb@IRowsetSC", + "@$xp$15Oledb@IViewSort", + "@$xp$15ShortStringBase", + "@$xp$15Stdvcl@IStrings", + "@$xp$15Syncobjs@TEvent", + "@$xp$15System@ByteBool", + "@$xp$15System@Cardinal", + "@$xp$15System@Currency", + "@$xp$15System@Extended", + "@$xp$15System@LongBool", + "@$xp$15System@Shortint", + "@$xp$15System@Smallint", + "@$xp$15System@UCS4Char", + "@$xp$15System@WideChar", + "@$xp$15System@WordBool", + "@$xp$15Sysutils@EAbort", + "@$xp$15TDoubleDynArray", + "@$xp$15TParamFlagsBase", + "@$xp$15TSingleDynArray", + "@$xp$15TStringDynArray", + "@$xp$15TTypedComObject", + "@$xp$16Activex@TOleEnum", + "@$xp$16Adoint@CoCommand", + "@$xp$16Adoint@Command15", + "@$xp$16Adoint@ErrorDisp", + "@$xp$16Adoint@FieldDisp", + "@$xp$16Adoint@Property_", + "@$xp$16Classes@TStrings", + "@$xp$16Comobj@EOleError", + "@$xp$16IComMethodEvents", + "@$xp$16IComObjectEvents", + "@$xp$16IComThreadEvents", + "@$xp$16IConnectionPoint", + "@$xp$16ICreateErrorInfo", + "@$xp$16ICreateTypeInfo2", + "@$xp$16IDispenserDriver", + "@$xp$16IEnumConnections", + "@$xp$16IEnumSTATPROPSTG", + "@$xp$16IObjectConstruct", + "@$xp$16IOleAdviseHolder", + "@$xp$16IOleCacheControl", + "@$xp$16IOleDocumentSite", + "@$xp$16IOleDocumentView", + "@$xp$16IOleInPlaceFrame", + "@$xp$16IPSFactoryBuffer", + "@$xp$16IPlaybackControl", + "@$xp$16IPropertyStorage", + "@$xp$16IServiceProvider", + "@$xp$16ISimpleFrameSite", + "@$xp$16Oledb@ICommandSC", + "@$xp$16SecurityProperty", + "@$xp$16Stdvcl@IProvider", + "@$xp$16System@TDateTime", + "@$xp$16TBooleanDynArray", + "@$xp$16TComClassManager", + "@$xp$16TIntegerDynArray", + "@$xp$16Typinfo@TOrdType", + "@$xp$16tagINTERFACEINFO", + "@$xp$17Activex@IEnumGUID", + "@$xp$17Adoint@ErrorsDisp", + "@$xp$17Adoint@FieldsDisp", + "@$xp$17Adoint@IDataspace", + "@$xp$17Adoint@Parameters", + "@$xp$17Adoint@Properties", + "@$xp$17Adoint@_Parameter", + "@$xp$17Adoint@_Recordset", + "@$xp$17Asptlb@IASPObject", + "@$xp$17Asptlb@TASPObject", + "@$xp$17Classes@TBiDiMode", + "@$xp$17Classes@TGetClass", + "@$xp$17Classes@THelpType", + "@$xp$17Classes@TShortCut", + "@$xp$17IContinueCallback", + "@$xp$17ICrmMonitorClerks", + "@$xp$17IDataAdviseHolder", + "@$xp$17IDispenserManager", + "@$xp$17IObjectContextTip", + "@$xp$17IOleCommandTarget", + "@$xp$17IOleInPlaceObject", + "@$xp$17IOleInPlaceSiteEx", + "@$xp$17IOleItemContainer", + "@$xp$17IParseDisplayName", + "@$xp$17IPropertyPageSite", + "@$xp$17IProvideClassInfo", + "@$xp$17IRpcChannelBuffer", + "@$xp$17IScriptingContext", + "@$xp$17ISecurityProperty", + "@$xp$17ISequentialStream", + "@$xp$17ISupportErrorInfo", + "@$xp$17Inifiles@TIniFile", + "@$xp$17Math@TPaymentTime", + "@$xp$17Msxml@IXMLDOMNode", + "@$xp$17Msxml@IXMLDOMText", + "@$xp$17Msxml@IXMLElement", + "@$xp$17Msxml@IXTLRuntime", + "@$xp$17Oledb@IAccessorSC", + "@$xp$17Oledb@IAlterIndex", + "@$xp$17Oledb@IAlterTable", + "@$xp$17Oledb@IOpenRowset", + "@$xp$17Oledb@IRowsetFind", + "@$xp$17Oledb@IRowsetInfo", + "@$xp$17Oledb@IRowsetView", + "@$xp$17Oledb@IViewFilter", + "@$xp$17Oledb@IViewRowset", + "@$xp$17Oledb@IViewSortSC", + "@$xp$17System@IInterface", + "@$xp$17System@IInvokable", + "@$xp$17System@OleVariant", + "@$xp$17System@Openstring", + "@$xp$17System@UCS4String", + "@$xp$17System@UTF8String", + "@$xp$17System@WideString", + "@$xp$17Sysutils@EOSError", + "@$xp$17Sysutils@TLangRec", + "@$xp$17TCardinalDynArray", + "@$xp$17TComObjectFactory", + "@$xp$17TLongWordDynArray", + "@$xp$17TShortIntDynArray", + "@$xp$17TSmallIntDynArray", + "@$xp$17Typinfo@TTypeKind", + "@$xp$18Adoint@CoParameter", + "@$xp$18Adoint@CoRecordset", + "@$xp$18Adoint@Field15Disp", + "@$xp$18Adoint@Recordset15", + "@$xp$18Adoint@Recordset20", + "@$xp$18Adoint@_Collection", + "@$xp$18Adoint@_Connection", + "@$xp$18Classes@Classes__1", + "@$xp$18Classes@EBitsError", + "@$xp$18Classes@EListError", + "@$xp$18Classes@EReadError", + "@$xp$18Classes@TAlignment", + "@$xp$18Classes@TComponent", + "@$xp$18Classes@TFilerFlag", + "@$xp$18Classes@TLeftRight", + "@$xp$18Classes@TOperation", + "@$xp$18Classes@TValueType", + "@$xp$18Classes@TWndMethod", + "@$xp$18Contnrs@TClassList", + "@$xp$18IApplicationObject", + "@$xp$18IComActivityEvents", + "@$xp$18IComIdentityEvents", + "@$xp$18IComInstanceEvents", + "@$xp$18IComResourceEvents", + "@$xp$18IComSecurityEvents", + "@$xp$18IPersistStreamInit", + "@$xp$18IPersistTextStream", + "@$xp$18IRequestDictionary", + "@$xp$18IVariantDictionary", + "@$xp$18Inifiles@THashItem", + "@$xp$18Math@TFPUException", + "@$xp$18Math@TRoundToRange", + "@$xp$18Msxml@IXMLElement2", + "@$xp$18Oledb@IColumnsInfo", + "@$xp$18Oledb@ICommandText", + "@$xp$18Oledb@IConvertType", + "@$xp$18Oledb@IErrorLookup", + "@$xp$18Oledb@IRowPosition", + "@$xp$18Oledb@IRowsetIndex", + "@$xp$18Oledb@ITransaction", + "@$xp$18Oledb@IViewChapter", + "@$xp$18Oledb@TDBPropArray", + "@$xp$18Registry@TRegistry", + "@$xp$18Stdvcl@IDataBroker", + "@$xp$18System@ShortString", + "@$xp$18System@TBoundArray", + "@$xp$18Sysutils@EControlC", + "@$xp$18Sysutils@EExternal", + "@$xp$18Sysutils@EIntError", + "@$xp$18Sysutils@EOverflow", + "@$xp$18Sysutils@Exception", + "@$xp$18Sysutils@TFileName", + "@$xp$18Sysutils@TNameType", + "@$xp$18TAutoObjectFactory", + "@$xp$18Typinfo@TFloatType", + "@$xp$18Typinfo@TIntfFlags", + "@$xp$18Typinfo@TTypeKinds", + "@$xp$18Typinfo@TypInfo__5", + "@$xp$19Activex@TOldOleEnum", + "@$xp$19Adoint@CoConnection", + "@$xp$19Adoint@Connection15", + "@$xp$19Adoint@Fields15Disp", + "@$xp$19Adoint@_CommandDisp", + "@$xp$19Classes@Classes__74", + "@$xp$19Classes@Classes__84", + "@$xp$19Classes@Classes__92", + "@$xp$19Classes@EFOpenError", + "@$xp$19Classes@EFilerError", + "@$xp$19Classes@EWriteError", + "@$xp$19Classes@TCollection", + "@$xp$19Classes@TDataModule", + "@$xp$19Classes@TDuplicates", + "@$xp$19Classes@TFileStream", + "@$xp$19Classes@TFilerFlags", + "@$xp$19Classes@TGetStrProc", + "@$xp$19Classes@TPersistent", + "@$xp$19Classes@TReaderProc", + "@$xp$19Classes@TSeekOrigin", + "@$xp$19Classes@TShiftState", + "@$xp$19Classes@TStreamProc", + "@$xp$19Classes@TStringItem", + "@$xp$19Classes@TStringList", + "@$xp$19Classes@TThreadList", + "@$xp$19Classes@TWriterProc", + "@$xp$19Comobj@EOleSysError", + "@$xp$19Contnrs@TBucketList", + "@$xp$19Contnrs@TObjectList", + "@$xp$19Convutils@TConvType", + "@$xp$19IComExceptionEvents", + "@$xp$19IEnumSTATPROPSETSTG", + "@$xp$19IExternalConnection", + "@$xp$19IOleInPlaceUIWindow", + "@$xp$19IPersistPropertyBag", + "@$xp$19IPropertyNotifySink", + "@$xp$19IPropertySetStorage", + "@$xp$19IProvideRuntimeText", + "@$xp$19IRunningObjectTable", + "@$xp$19ITransactionContext", + "@$xp$19Maskutils@TEditMask", + "@$xp$19Msxml@CoDOMDocument", + "@$xp$19Msxml@CoXMLDocument", + "@$xp$19Msxml@IXMLAttribute", + "@$xp$19Msxml@IXMLDOMEntity", + "@$xp$19Msxml@IXMLDocument2", + "@$xp$19Oledb@IAlterIndexSC", + "@$xp$19Oledb@IAlterTableSC", + "@$xp$19Oledb@IDBInitialize", + "@$xp$19Oledb@IDBProperties", + "@$xp$19Oledb@IOpenRowsetSC", + "@$xp$19Oledb@IParentRowset", + "@$xp$19Oledb@IRowsetChange", + "@$xp$19Oledb@IRowsetFindSC", + "@$xp$19Oledb@IRowsetInfoSC", + "@$xp$19Oledb@IRowsetLocate", + "@$xp$19Oledb@IRowsetScroll", + "@$xp$19Oledb@IRowsetUpdate", + "@$xp$19Oledb@IRowsetViewSC", + "@$xp$19Oledb@ISQLErrorInfo", + "@$xp$19Oledb@ISecurityInfo", + "@$xp$19Oledb@IViewFilterSC", + "@$xp$19Oledb@IViewRowsetSC", + "@$xp$19Stdvcl@IStringsDisp", + "@$xp$19Sysutils@EDivByZero", + "@$xp$19Sysutils@EInvalidOp", + "@$xp$19Sysutils@EMathError", + "@$xp$19Sysutils@EPrivilege", + "@$xp$19Sysutils@EUnderflow", + "@$xp$19Sysutils@TLanguages", + "@$xp$19Sysutils@TSearchRec", + "@$xp$19TWideStringDynArray", + "@$xp$19Typinfo@TMethodKind", + "@$xp$19Typinfo@TParamFlags", + "@$xp$20Activex@ICatRegister", + "@$xp$20Activex@TUnknownList", + "@$xp$20Adoint@Command15Disp", + "@$xp$20Adoint@Property_Disp", + "@$xp$20Asptlb@TASPMTSObject", + "@$xp$20Classes@EParserError", + "@$xp$20Classes@EResNotFound", + "@$xp$20Classes@EStreamError", + "@$xp$20Classes@TBasicAction", + "@$xp$20Classes@TClassFinder", + "@$xp$20Classes@THelpContext", + "@$xp$20Classes@TNotifyEvent", + "@$xp$20Classes@TReaderError", + "@$xp$20Comobj@EOleException", + "@$xp$20Contnrs@TBucketArray", + "@$xp$20Contnrs@TObjectQueue", + "@$xp$20Contnrs@TObjectStack", + "@$xp$20Contnrs@TOrderedList", + "@$xp$20IComObjectPoolEvents", + "@$xp$20ICrmFormatLogRecords", + "@$xp$20IPerPropertyBrowsing", + "@$xp$20ISecurityCallContext", + "@$xp$20ISecurityCallersColl", + "@$xp$20ISharedPropertyGroup", + "@$xp$20Inifiles@IniFiles__4", + "@$xp$20Inifiles@TMemIniFile", + "@$xp$20Inifiles@TStringHash", + "@$xp$20Masks@EMaskException", + "@$xp$20Msxml@IXMLDOMComment", + "@$xp$20Msxml@IXMLDOMElement", + "@$xp$20Msxml@IXMLDSOControl", + "@$xp$20Oledb@IColumnsInfoSC", + "@$xp$20Oledb@IColumnsRowset", + "@$xp$20Oledb@ICommandTextSC", + "@$xp$20Oledb@IConvertTypeSC", + "@$xp$20Oledb@IErrorLookupSC", + "@$xp$20Oledb@IGetDataSource", + "@$xp$20Oledb@IMDRangeRowset", + "@$xp$20Oledb@IRowPositionSC", + "@$xp$20Oledb@IRowsetIndexSC", + "@$xp$20Oledb@IRowsetRefresh", + "@$xp$20Oledb@IRowsetResynch", + "@$xp$20Oledb@ISourcesRowset", + "@$xp$20Oledb@ITransactionSC", + "@$xp$20Oledb@IViewChapterSC", + "@$xp$20Registry@TRegIniFile", + "@$xp$20Scktcomp@TAsyncStyle", + "@$xp$20Scktcomp@TClientType", + "@$xp$20Scktcomp@TErrorEvent", + "@$xp$20Scktcomp@TServerType", + "@$xp$20Stdvcl@IProviderDisp", + "@$xp$20Syncobjs@TWaitResult", + "@$xp$20System@TRuntimeError", + "@$xp$20Sysutils@EInOutError", + "@$xp$20Sysutils@ERangeError", + "@$xp$20Sysutils@EWin32Error", + "@$xp$20Sysutils@EZeroDivide", + "@$xp$20Sysutils@SysUtils__2", + "@$xp$20Sysutils@TFloatValue", + "@$xp$20Sysutils@TSysCharSet", + "@$xp$21Activex@TMultiQIArray", + "@$xp$21Activex@TTypeInfoList", + "@$xp$21Adoint@IDataspaceDisp", + "@$xp$21Adoint@ParametersDisp", + "@$xp$21Adoint@PropertiesDisp", + "@$xp$21Adoint@_ParameterDisp", + "@$xp$21Adoint@_RecordsetDisp", + "@$xp$21Classes@EFCreateError", + "@$xp$21Classes@EInvalidImage", + "@$xp$21Classes@IVCLComObject", + "@$xp$21Classes@TGetChildProc", + "@$xp$21Classes@THandleStream", + "@$xp$21Classes@TListAssignOp", + "@$xp$21Classes@TMemoryStream", + "@$xp$21Classes@TSetNameEvent", + "@$xp$21Classes@TStringStream", + "@$xp$21Classes@TThreadMethod", + "@$xp$21Convutils@TConvFamily", + "@$xp$21Helpintfs@IHelpSystem", + "@$xp$21IComObjectPoolEvents2", + "@$xp$21IComTransactionEvents", + "@$xp$21ICrmMonitorLogRecords", + "@$xp$21IEnumConnectionPoints", + "@$xp$21IEnumOleDocumentViews", + "@$xp$21IGetContextProperties", + "@$xp$21IGlobalInterfaceTable", + "@$xp$21ISecurityIdentityColl", + "@$xp$21ISpecifyPropertyPages", + "@$xp$21ITransactionContextEx", + "@$xp$21Maskutils@TMaskedText", + "@$xp$21Math@EInvalidArgument", + "@$xp$21Math@TFPURoundingMode", + "@$xp$21Msxml@CoXMLDSOControl", + "@$xp$21Msxml@IXMLDOMDocument", + "@$xp$21Msxml@IXMLDOMNodeDisp", + "@$xp$21Msxml@IXMLDOMNodeList", + "@$xp$21Msxml@IXMLDOMNotation", + "@$xp$21Msxml@IXMLDOMTextDisp", + "@$xp$21Msxml@IXMLElementDisp", + "@$xp$21Msxml@IXMLHttpRequest", + "@$xp$21Msxml@IXTLRuntimeDisp", + "@$xp$21Oledb@ICommandPersist", + "@$xp$21Oledb@ICommandPrepare", + "@$xp$21Oledb@IDBAsynchStatus", + "@$xp$21Oledb@IDBInitializeSC", + "@$xp$21Oledb@IDBPropertiesSC", + "@$xp$21Oledb@IDataInitialize", + "@$xp$21Oledb@IParentRowsetSC", + "@$xp$21Oledb@IRowsetChangeSC", + "@$xp$21Oledb@IRowsetLocateSC", + "@$xp$21Oledb@IRowsetScrollSC", + "@$xp$21Oledb@IRowsetUpdateSC", + "@$xp$21Oledb@ISQLErrorInfoSC", + "@$xp$21Oledb@ISecurityInfoSC", + "@$xp$21Oledb@TDBBindingArray", + "@$xp$21Registry@TRegDataType", + "@$xp$21Scktcomp@ESocketError", + "@$xp$21Scktcomp@TAsyncStyles", + "@$xp$21Scktcomp@TLookupState", + "@$xp$21Scktcomp@TSocketEvent", + "@$xp$21Syncobjs@TSimpleEvent", + "@$xp$21Sysutils@EIntOverflow", + "@$xp$21Sysutils@EInvalidCast", + "@$xp$21Sysutils@EOutOfMemory", + "@$xp$21Sysutils@SysUtils__04", + "@$xp$21Sysutils@SysUtils__14", + "@$xp$21Sysutils@SysUtils__24", + "@$xp$21Sysutils@SysUtils__34", + "@$xp$21Sysutils@SysUtils__44", + "@$xp$21Sysutils@SysUtils__54", + "@$xp$21Sysutils@SysUtils__83", + "@$xp$21Sysutils@SysUtils__93", + "@$xp$21Sysutils@TFloatFormat", + "@$xp$21Typinfo@TPropInfoProc", + "@$xp$22Adoint@Recordset15Disp", + "@$xp$22Adoint@Recordset20Disp", + "@$xp$22Adoint@RecordsetEvents", + "@$xp$22Adoint@_CollectionDisp", + "@$xp$22Adoint@_ConnectionDisp", + "@$xp$22Adoint@_DynaCollection", + "@$xp$22Classes@EClassNotFound", + "@$xp$22Classes@IInterfaceList", + "@$xp$22Classes@IStreamPersist", + "@$xp$22Classes@IVarStreamable", + "@$xp$22Classes@TComponentName", + "@$xp$22Classes@TGetModuleProc", + "@$xp$22Classes@TIdentMapEntry", + "@$xp$22Classes@TInterfaceList", + "@$xp$22Classes@TStreamAdapter", + "@$xp$22Comobj@TAutoIntfObject", + "@$xp$22Comobj@TThreadingModel", + "@$xp$22Contnrs@TComponentList", + "@$xp$22Helpintfs@IHelpManager", + "@$xp$22IObjectConstructString", + "@$xp$22IObjectContextActivity", + "@$xp$22Maskutils@MaskUtils__1", + "@$xp$22Math@TFPUExceptionMask", + "@$xp$22Math@TFPUPrecisionMode", + "@$xp$22Msxml@CoXMLHTTPRequest", + "@$xp$22Msxml@IXMLDOMAttribute", + "@$xp$22Msxml@IXMLDocumentDisp", + "@$xp$22Msxml@IXMLElement2Disp", + "@$xp$22Oledb@IColumnsRowsetSC", + "@$xp$22Oledb@IDBCreateCommand", + "@$xp$22Oledb@IDBCreateSession", + "@$xp$22Oledb@IGetDataSourceSC", + "@$xp$22Oledb@IIndexDefinition", + "@$xp$22Oledb@IMDRangeRowsetSC", + "@$xp$22Oledb@IMultipleResults", + "@$xp$22Oledb@IRowsetRefreshSC", + "@$xp$22Oledb@IRowsetResynchSC", + "@$xp$22Oledb@ISourcesRowsetSC", + "@$xp$22Oledb@ITableDefinition", + "@$xp$22Oledb@ITransactionJoin", + "@$xp$22Oledb@TDBPropInfoArray", + "@$xp$22Scktcomp@TClientSocket", + "@$xp$22Scktcomp@TCustomSocket", + "@$xp$22Scktcomp@TServerSocket", + "@$xp$22Stdvcl@IDataBrokerDisp", + "@$xp$22Syncobjs@THandleObject", + "@$xp$22Sysutils@EConvertError", + "@$xp$22Sysutils@EPackageError", + "@$xp$22Sysutils@EPropReadOnly", + "@$xp$22Sysutils@EVariantError", + "@$xp$22Sysutils@TMbcsByteType", + "@$xp$22Sysutils@TReplaceFlags", + "@$xp$22Sysutils@TSimpleRWSync", + "@$xp$22TTypedComObjectFactory", + "@$xp$22Typinfo@EPropertyError", + "@$xp$22Variants@TVarDataArray", + "@$xp$23Activex@ICatInformation", + "@$xp$23Adoint@Connection15Disp", + "@$xp$23Adoint@ConnectionEvents", + "@$xp$23Classes@EComponentError", + "@$xp$23Classes@EMethodNotFound", + "@$xp$23Classes@EOutOfResources", + "@$xp$23Classes@IDesignerNotify", + "@$xp$23Classes@IStringsAdapter", + "@$xp$23Classes@TActiveXRegType", + "@$xp$23Classes@TCollectionItem", + "@$xp$23Classes@TComponentState", + "@$xp$23Classes@TComponentStyle", + "@$xp$23Classes@TResourceStream", + "@$xp$23Classes@TStringItemList", + "@$xp$23Classes@TStringsDefined", + "@$xp$23Classes@TThreadPriority", + "@$xp$23Comadmin@ICatalogObject", + "@$xp$23Comobj@TClassInstancing", + "@$xp$23Comobj@TComServerObject", + "@$xp$23Convutils@TConvTypeInfo", + "@$xp$23Convutils@TConvTypeList", + "@$xp$23Helpintfs@IHelpSelector", + "@$xp$23ICrmCompensatorVariants", + "@$xp$23IGetSecurityCallContext", + "@$xp$23IOleInPlaceActiveObject", + "@$xp$23IProcessTerminateNotify", + "@$xp$23Inifiles@TCustomIniFile", + "@$xp$23Maskutils@TMaskCharType", + "@$xp$23Msxml@IXMLAttributeDisp", + "@$xp$23Msxml@IXMLDOMEntityDisp", + "@$xp$23Msxml@IXMLDOMParseError", + "@$xp$23Oledb@ICommandPersistSC", + "@$xp$23Oledb@ICommandPrepareSC", + "@$xp$23Oledb@IDBAsynchStatusSC", + "@$xp$23Oledb@IDataInitializeSC", + "@$xp$23Oledb@ITransactionLocal", + "@$xp$23Oledb@TDBParamInfoArray", + "@$xp$23Strutils@TSoundexLength", + "@$xp$23Syncobjs@TSynchroObject", + "@$xp$23System@TContainedObject", + "@$xp$23Sysutils@EAbstractError", + "@$xp$23Sysutils@EHeapException", + "@$xp$23Sysutils@EIntfCastError", + "@$xp$23Sysutils@EInvalidInsert", + "@$xp$23Sysutils@EPropWriteOnly", + "@$xp$23Sysutils@EStackOverflow", + "@$xp$23Sysutils@IReadWriteSync", + "@$xp$23Variants@IVarInvokeable", + "@$xp$23_IMAGEHLP_STATUS_REASON", + "@$xp$24Adoint@RecordsetEventsVt", + "@$xp$24Classes@EStringListError", + "@$xp$24Classes@TBasicActionLink", + "@$xp$24Classes@TFindMethodEvent", + "@$xp$24Classes@TOwnedCollection", + "@$xp$24Classes@TStreamOwnership", + "@$xp$24Contnrs@TBucketItemArray", + "@$xp$24Contnrs@TBucketListSizes", + "@$xp$24Convutils@TConvTypeArray", + "@$xp$24Convutils@TConvTypeProcs", + "@$xp$24ICreateWithTransactionEx", + "@$xp$24Msxml@IXMLDOMCommentDisp", + "@$xp$24Msxml@IXMLDOMElementDisp", + "@$xp$24Msxml@IXMLDSOControlDisp", + "@$xp$24Oledb@ICommandProperties", + "@$xp$24Oledb@IDBCreateCommandSC", + "@$xp$24Oledb@IDBCreateSessionSC", + "@$xp$24Oledb@IDBDataSourceAdmin", + "@$xp$24Oledb@IIndexDefinitionSC", + "@$xp$24Oledb@IMultipleResultsSC", + "@$xp$24Oledb@IRowPositionChange", + "@$xp$24Oledb@ISessionProperties", + "@$xp$24Oledb@ITableDefinitionSC", + "@$xp$24Oledb@ITransactionJoinSC", + "@$xp$24Oledb@ITransactionObject", + "@$xp$24Oledb@ITrusteeGroupAdmin", + "@$xp$24Oledb@TDBColumnDescArray", + "@$xp$24Oledb@TDBColumnInfoArray", + "@$xp$24Scktcomp@TAbstractSocket", + "@$xp$24Scktcomp@TGetSocketEvent", + "@$xp$24Scktcomp@TGetThreadEvent", + "@$xp$24System@TAggregatedObject", + "@$xp$24System@TInterfacedObject", + "@$xp$24Sysutils@EInvalidPointer", + "@$xp$24Types@TValueRelationship", + "@$xp$24Vclcom@TComponentFactory", + "@$xp$25Activex@IEnumCATEGORYINFO", + "@$xp$25Adoint@ConnectionEventsVt", + "@$xp$25Classes@EInvalidOperation", + "@$xp$25Classes@TListNotification", + "@$xp$25Comadmin@ICOMAdminCatalog", + "@$xp$25Contnrs@TCustomBucketList", + "@$xp$25Contnrs@TObjectBucketList", + "@$xp$25Convutils@TConvTypeFactor", + "@$xp$25IConnectionPointContainer", + "@$xp$25IOleInPlaceSiteWindowless", + "@$xp$25Maskutils@TMaskDirectives", + "@$xp$25Msxml@IXMLDOMCDATASection", + "@$xp$25Msxml@IXMLDOMDocumentDisp", + "@$xp$25Msxml@IXMLDOMDocumentType", + "@$xp$25Msxml@IXMLDOMNamedNodeMap", + "@$xp$25Msxml@IXMLDOMNodeListDisp", + "@$xp$25Msxml@IXMLDOMNotationDisp", + "@$xp$25Msxml@IXMLHttpRequestDisp", + "@$xp$25Oledb@IDBPromptInitialize", + "@$xp$25Oledb@ITransactionLocalSC", + "@$xp$25Oledb@ITransactionOptions", + "@$xp$25Registry@TRegistryIniFile", + "@$xp$25Scktcomp@TClientWinSocket", + "@$xp$25Scktcomp@TCustomWinSocket", + "@$xp$25Scktcomp@TServerWinSocket", + "@$xp$25Scktcomp@TWinSocketStream", + "@$xp$25Syncobjs@TCriticalSection", + "@$xp$25Sysutils@EAccessViolation", + "@$xp$25Sysutils@EAssertionFailed", + "@$xp$25Variants@TNullCompareRule", + "@$xp$26Adoint@_DynaCollectionDisp", + "@$xp$26Classes@TFindAncestorEvent", + "@$xp$26Convutils@EConversionError", + "@$xp$26Convutils@TConvFamilyArray", + "@$xp$26Inifiles@EIniFileException", + "@$xp$26Inifiles@THashedStringList", + "@$xp$26Msxml@IXMLDOMAttributeDisp", + "@$xp$26Msxml@IXMLDOMCharacterData", + "@$xp$26Msxml@XMLDOMDocumentEvents", + "@$xp$26Oledb@ICommandPropertiesSC", + "@$xp$26Oledb@IDBDataSourceAdminSC", + "@$xp$26Oledb@IObjectAccessControl", + "@$xp$26Oledb@IRowPositionChangeSC", + "@$xp$26Oledb@IRowsetChapterMember", + "@$xp$26Oledb@ISessionPropertiesSC", + "@$xp$26Oledb@ITransactionObjectSC", + "@$xp$26Oledb@ITrusteeGroupAdminSC", + "@$xp$26Scktcomp@TSocketErrorEvent", + "@$xp$26Scktcomp@TSocketEventEvent", + "@$xp$26Strutils@TSoundexIntLength", + "@$xp$26System@TTextLineBreakStyle", + "@$xp$26Sysutils@EInvalidContainer", + "@$xp$26Variants@TVarCompareResult", + "@$xp$27Classes@TCustomMemoryStream", + "@$xp$27Classes@TReadComponentsProc", + "@$xp$27Classes@TReferenceNameEvent", + "@$xp$27Comadmin@ICatalogCollection", + "@$xp$27Comadmin@ICatalogObjectDisp", + "@$xp$27Helpintfs@ICustomHelpViewer", + "@$xp$27ICreateWithTipTransactionEx", + "@$xp$27IOleInPlaceObjectWindowless", + "@$xp$27ISharedPropertyGroupManager", + "@$xp$27Msxml@IXMLDOMImplementation", + "@$xp$27Msxml@IXMLDOMParseErrorDisp", + "@$xp$27Msxml@IXMLElementCollection", + "@$xp$27Oledb@IDBPromptInitializeSC", + "@$xp$27Oledb@ITransactionDispenser", + "@$xp$27Oledb@ITransactionOptionsSC", + "@$xp$27Registry@ERegistryException", + "@$xp$27Scktcomp@TSocketNotifyEvent", + "@$xp$27Scktcomp@TThreadNotifyEvent", + "@$xp$27Strutils@TStringSeachOption", + "@$xp$27Sysutils@EExternalException", + "@$xp$27Sysutils@ESafecallException", + "@$xp$27Sysutils@TFilenameCaseMatch", + "@$xp$27Variants@TCustomVariantType", + "@$xp$28Comobj@EOleRegistrationError", + "@$xp$28IComObjectConstructionEvents", + "@$xp$28Msxml@IXMLDOMEntityReference", + "@$xp$28Oledb@ICommandWithParameters", + "@$xp$28Oledb@IObjectAccessControlSC", + "@$xp$28Oledb@IRowsetChapterMemberSC", + "@$xp$28Scktcomp@TCustomServerSocket", + "@$xp$28Scktcomp@TServerAcceptThread", + "@$xp$28Scktcomp@TServerClientThread", + "@$xp$28Sysutils@TThreadLocalCounter", + "@$xp$29Adoint@ADOCommandConstruction", + "@$xp$29Classes@TCreateComponentEvent", + "@$xp$29Classes@TInterfacedPersistent", + "@$xp$29Classes@TStreamOriginalFormat", + "@$xp$29Comadmin@ICOMAdminCatalogDisp", + "@$xp$29Helpintfs@IExtendedHelpViewer", + "@$xp$29Msxml@IXMLDOMCDATASectionDisp", + "@$xp$29Msxml@IXMLDOMDocumentFragment", + "@$xp$29Msxml@IXMLDOMDocumentTypeDisp", + "@$xp$29Msxml@IXMLDOMNamedNodeMapDisp", + "@$xp$29Oledb@ITransactionDispenserSC", + "@$xp$29Strutils@TStringSearchOptions", + "@$xp$29Typinfo@EPropertyConvertError", + "@$xp$29Variants@EVariantNotImplError", + "@$xp$29Variants@TBooleanToStringRule", + "@$xp$29Variants@TVariantRelationship", + "@$xp$30Classes@TAncestorNotFoundEvent", + "@$xp$30Comobj@IServerExceptionHandler", + "@$xp$30Helpintfs@EHelpSystemException", + "@$xp$30Msxml@IXMLDOMCharacterDataDisp", + "@$xp$30Oledb@ICommandWithParametersSC", + "@$xp$30Variants@EVariantBadIndexError", + "@$xp$30Variants@EVariantDispatchError", + "@$xp$30Variants@EVariantOverflowError", + "@$xp$30Variants@EVariantTypeCastError", + "@$xp$30Variants@IVarInstanceReference", + "@$xp$31Adoint@ADORecordsetConstruction", + "@$xp$31Classes@TCollectionNotification", + "@$xp$31Comadmin@ICatalogCollectionDisp", + "@$xp$31Helpintfs@ISpecialWinHelpViewer", + "@$xp$31Msxml@CoDOMFreeThreadedDocument", + "@$xp$31Msxml@IXMLDOMImplementationDisp", + "@$xp$31Msxml@IXMLElementCollectionDisp", + "@$xp$31Oledb@ITransactionOutcomeEvents", + "@$xp$31Scktcomp@TServerClientWinSocket", + "@$xp$31Typinfo@TPublishableVariantType", + "@$xp$31Variants@EVariantInvalidOpError", + "@$xp$31Variants@TInvokeableVariantType", + "@$xp$32Adoint@ADOConnectionConstruction", + "@$xp$32Classes@TFindComponentClassEvent", + "@$xp$32Msxml@IXMLDOMEntityReferenceDisp", + "@$xp$32Variants@EVariantBadVarTypeError", + "@$xp$32Variants@EVariantInvalidArgError", + "@$xp$32Variants@EVariantNotAnArrayError", + "@$xp$32Variants@EVariantRangeCheckError", + "@$xp$32Variants@EVariantUnexpectedError", + "@$xp$33Msxml@IXMLDOMDocumentFragmentDisp", + "@$xp$33Oledb@ITransactionOutcomeEventsSC", + "@$xp$33Variants@EVariantArrayCreateError", + "@$xp$33Variants@EVariantArrayLockedError", + "@$xp$33Variants@EVariantOutOfMemoryError", + "@$xp$34Adoint@ADOConnectionConstruction15", + "@$xp$34IDispenserManagerShutdownGuarantee", + "@$xp$34Msxml@IXMLDOMProcessingInstruction", + "@$xp$35Variants@EVariantInvalidNullOpError", + "@$xp$36Classes@IInterfaceComponentReference", + "@$xp$38Msxml@IXMLDOMProcessingInstructionDisp", + "@$xp$45Sysutils@TMultiReadExclusiveWriteSynchronizer", + "@$xp$5IFont", + "@$xp$6DBPROP", + "@$xp$6IMTxAS", + "@$xp$6IPrint", + "@$xp$7HRESULT", + "@$xp$7IHolder", + "@$xp$7IMalloc", + "@$xp$7IMtsGrp", + "@$xp$7IServer", + "@$xp$7IStream", + "@$xp$8HMONITOR", + "@$xp$8IBindCtx", + "@$xp$8IMarshal", + "@$xp$8IMoniker", + "@$xp$8IOleLink", + "@$xp$8IPersist", + "@$xp$8IPicture", + "@$xp$8IRequest", + "@$xp$8IStorage", + "@$xp$8ITypeLib", + "@$xp$8IWeakRef", + "@$xp$8SYM_TYPE", + "@$xp$9DBBINDING", + "@$xp$9IBindHost", + "@$xp$9IDispatch", + "@$xp$9IErrorLog", + "@$xp$9IFontDisp", + "@$xp$9ILBEvents", + "@$xp$9IOleCache", + "@$xp$9IResponse", + "@$xp$9ITypeComp", + "@$xp$9ITypeInfo", + "@$xp$9ITypeLib2", + "@$xp$9TIntfFlag", + "@Activex@CATID_Designer", + "@Activex@CATID_WebDesigntimeControl", + "@Activex@CLSID_CColorPropPage", + "@Activex@CLSID_CFontPropPage", + "@Activex@CLSID_CPicturePropPage", + "@Activex@CLSID_ConvertVBX", + "@Activex@CLSID_PersistPropset", + "@Activex@CLSID_StdComponentCategoryMgr", + "@Activex@CLSID_StdFont", + "@Activex@CLSID_StdMarshal", + "@Activex@CLSID_StdPicture", + "@Activex@Failed$qqrl", + "@Activex@Finalization$qqrv", + "@Activex@GUID_NULL", + "@Activex@GUID_OLE_COLOR", + "@Activex@IID_IDebug", + "@Activex@IID_IDebugStream", + "@Activex@IID_IEnumCallback", + "@Activex@IID_IEnumGeneric", + "@Activex@IID_IEnumHolder", + "@Activex@IID_IInternalMoniker", + "@Activex@IID_IOleManager", + "@Activex@IID_IOlePresObj", + "@Activex@IID_IPSFactory", + "@Activex@IID_IProxyManager", + "@Activex@IID_IRpcChannel", + "@Activex@IID_IRpcProxy", + "@Activex@IID_IRpcStub", + "@Activex@IID_IStubManager", + "@Activex@IsHashValCompatible$qqrii", + "@Activex@LHashValOfName$qqruipb", + "@Activex@MakeResult$qqriii", + "@Activex@PROPSETHDR_OSVER_KIND$qqrui", + "@Activex@PROPSETHDR_OSVER_MAJOR$qqrui", + "@Activex@PROPSETHDR_OSVER_MINOR$qqrui", + "@Activex@ResultCode$qqrl", + "@Activex@ResultFacility$qqrl", + "@Activex@ResultSeverity$qqrl", + "@Activex@Succeeded$qqrl", + "@Activex@WHashValOfLHashVal$qqri", + "@Activex@initialization$qqrv", + "@Adoint@CLASS_Command", + "@Adoint@CLASS_Connection", + "@Adoint@CLASS_DataFactory", + "@Adoint@CLASS_DataSpace", + "@Adoint@CLASS_Parameter", + "@Adoint@CLASS_Recordset", + "@Adoint@CoCommand@", + "@Adoint@CoCommand@Create$qqrp17System@TMetaClass", + "@Adoint@CoCommand@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Adoint@CoConnection@", + "@Adoint@CoConnection@Create$qqrp17System@TMetaClass", + "@Adoint@CoConnection@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Adoint@CoParameter@", + "@Adoint@CoParameter@Create$qqrp17System@TMetaClass", + "@Adoint@CoParameter@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Adoint@CoRecordset@", + "@Adoint@CoRecordset@Create$qqrp17System@TMetaClass", + "@Adoint@CoRecordset@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Adoint@DIID_ConnectionEvents", + "@Adoint@DIID_RecordsetEvents", + "@Adoint@Finalization$qqrv", + "@Adoint@IID_ADOCommandConstruction", + "@Adoint@IID_ADOConnectionConstruction", + "@Adoint@IID_ADOConnectionConstruction15", + "@Adoint@IID_ADORecordsetConstruction", + "@Adoint@IID_Command15", + "@Adoint@IID_Connection15", + "@Adoint@IID_ConnectionEventsVt", + "@Adoint@IID_Error", + "@Adoint@IID_Errors", + "@Adoint@IID_Field", + "@Adoint@IID_Field15", + "@Adoint@IID_Fields", + "@Adoint@IID_Fields15", + "@Adoint@IID_IDataspace", + "@Adoint@IID_Parameters", + "@Adoint@IID_Properties", + "@Adoint@IID_Property_", + "@Adoint@IID_Recordset15", + "@Adoint@IID_Recordset20", + "@Adoint@IID_RecordsetEventsVt", + "@Adoint@IID__ADO", + "@Adoint@IID__Collection", + "@Adoint@IID__Command", + "@Adoint@IID__Connection", + "@Adoint@IID__DynaCollection", + "@Adoint@IID__Parameter", + "@Adoint@IID__Recordset", + "@Adoint@LIBID_ADODB", + "@Adoint@initialization$qqrv", + "@Asptlb@Finalization$qqrv", + "@Asptlb@TASPMTSObject@", + "@Asptlb@TASPMTSObject@GetApplication$qqrv", + "@Asptlb@TASPMTSObject@GetObjectContext$qqrv", + "@Asptlb@TASPMTSObject@GetRequest$qqrv", + "@Asptlb@TASPMTSObject@GetResponse$qqrv", + "@Asptlb@TASPMTSObject@GetServer$qqrv", + "@Asptlb@TASPMTSObject@GetSession$qqrv", + "@Asptlb@TASPObject@", + "@Asptlb@TASPObject@GetApplication$qqrv", + "@Asptlb@TASPObject@GetRequest$qqrv", + "@Asptlb@TASPObject@GetResponse$qqrv", + "@Asptlb@TASPObject@GetScriptingContext$qqrv", + "@Asptlb@TASPObject@GetServer$qqrv", + "@Asptlb@TASPObject@GetSession$qqrv", + "@Asptlb@TASPObject@OnEndPage$qqsv", + "@Asptlb@TASPObject@OnStartPage$qqs45System@%DelphiInterface$t17System@IInterface%", + "@Asptlb@initialization$qqrv", + "@Classes@ActivateClassGroup$qqrp17System@TMetaClass", + "@Classes@AddDataModule", + "@Classes@AllocateHWnd$qqrynpqqrr17Messages@TMessage$v", + "@Classes@ApplicationHandleException", + "@Classes@ApplicationShowException", + "@Classes@BeginGlobalLoading$qqrv", + "@Classes@BinToHex$qqrpct1i", + "@Classes@Bounds$qqriiii", + "@Classes@CheckSynchronize$qqrv", + "@Classes@ClassGroupOf$qqrp17System@TMetaClass", + "@Classes@ClassGroupOf$qqrp19Classes@TPersistent", + "@Classes@CollectionsEqual$qqrp19Classes@TCollectiont1p18Classes@TComponentt3", + "@Classes@CountGenerations$qqrp17System@TMetaClasst1", + "@Classes@CreateVCLComObjectProc", + "@Classes@CurrentGroup", + "@Classes@DeallocateHWnd$qqrui", + "@Classes@EBitsError@", + "@Classes@EClassNotFound@", + "@Classes@EComponentError@", + "@Classes@EFCreateError@", + "@Classes@EFOpenError@", + "@Classes@EFilerError@", + "@Classes@EInvalidImage@", + "@Classes@EInvalidOperation@", + "@Classes@EListError@", + "@Classes@EMethodNotFound@", + "@Classes@EOutOfResources@", + "@Classes@EParserError@", + "@Classes@EReadError@", + "@Classes@EResNotFound@", + "@Classes@EStreamError@", + "@Classes@EStringListError@", + "@Classes@EThread@", + "@Classes@EWriteError@", + "@Classes@EndGlobalLoading$qqrv", + "@Classes@ExtractStrings$qqrrx29System@%Set$tc$iuc$0$iuc$255%t1pcp16Classes@TStrings", + "@Classes@Finalization$qqrv", + "@Classes@FindClass$qqrx17System@AnsiString", + "@Classes@FindGlobalComponent$qqrx17System@AnsiString", + "@Classes@FindIdentToInt$qqrpv", + "@Classes@FindIntToIdent$qqrpv", + "@Classes@FindNestedComponent$qqrp18Classes@TComponentx17System@AnsiString", + "@Classes@FindRootDesigner$qqrp19Classes@TPersistent", + "@Classes@FreeObjectInstance$qqrpv", + "@Classes@GetClass$qqrx17System@AnsiString", + "@Classes@GetFixupInstanceNames$qqrp18Classes@TComponentx17System@AnsiStringp16Classes@TStrings", + "@Classes@GetFixupReferenceNames$qqrp18Classes@TComponentp16Classes@TStrings", + "@Classes@GetUltimateOwner$qqrp19Classes@TCollection", + "@Classes@GetUltimateOwner$qqrp19Classes@TPersistent", + "@Classes@GetUltimateOwner$qqrp23Classes@TCollectionItem", + "@Classes@GlobalFixupReferences$qqrv", + "@Classes@GlobalNameSpace", + "@Classes@GroupDescendentsWith$qqrp17System@TMetaClasst1", + "@Classes@HexToBin$qqrpct1i", + "@Classes@IdentToInt$qqrx17System@AnsiStringripx22Classes@TIdentMapEntryxi", + "@Classes@InitComponentRes$qqrx17System@AnsiStringp18Classes@TComponent", + "@Classes@InitInheritedComponent$qqrp18Classes@TComponentp17System@TMetaClass", + "@Classes@IntToIdent$qqrir17System@AnsiStringpx22Classes@TIdentMapEntryxi", + "@Classes@InvalidPoint$qqrii", + "@Classes@InvalidPoint$qqrrx12Types@TPoint", + "@Classes@InvalidPoint$qqrx17Types@TSmallPoint", + "@Classes@IsUniqueGlobalComponentName$qqrx17System@AnsiString", + "@Classes@IsUniqueGlobalComponentNameProc", + "@Classes@LineStart$qqrpct1", + "@Classes@MakeObjectInstance$qqrynpqqrr17Messages@TMessage$v", + "@Classes@NotifyGlobalLoading$qqrv", + "@Classes@ObjectBinaryToText$qqrp15Classes@TStreamt1", + "@Classes@ObjectBinaryToText$qqrp15Classes@TStreamt1r29Classes@TStreamOriginalFormat", + "@Classes@ObjectResourceToText$qqrp15Classes@TStreamt1", + "@Classes@ObjectResourceToText$qqrp15Classes@TStreamt1r29Classes@TStreamOriginalFormat", + "@Classes@ObjectTextToBinary$qqrp15Classes@TStreamt1", + "@Classes@ObjectTextToBinary$qqrp15Classes@TStreamt1r29Classes@TStreamOriginalFormat", + "@Classes@ObjectTextToResource$qqrp15Classes@TStreamt1", + "@Classes@ObjectTextToResource$qqrp15Classes@TStreamt1r29Classes@TStreamOriginalFormat", + "@Classes@Point$qqrii", + "@Classes@PointsEqual$qqrrx12Types@TPointt1", + "@Classes@PointsEqual$qqrx17Types@TSmallPointt1", + "@Classes@ReadComponentRes$qqrx17System@AnsiStringp18Classes@TComponent", + "@Classes@ReadComponentResEx$qqruix17System@AnsiString", + "@Classes@ReadComponentResFile$qqrx17System@AnsiStringp18Classes@TComponent", + "@Classes@Rect$qqriiii", + "@Classes@Rect$qqrrx12Types@TPointt1", + "@Classes@RedirectFixupReferences$qqrp18Classes@TComponentx17System@AnsiStringt2", + "@Classes@RegisterClass$qqrp17System@TMetaClass", + "@Classes@RegisterClassAlias$qqrp17System@TMetaClassx17System@AnsiString", + "@Classes@RegisterClasses$qqrpxp17System@TMetaClassxi", + "@Classes@RegisterComponents$qqrx17System@AnsiStringpxp17System@TMetaClassxi", + "@Classes@RegisterComponentsProc", + "@Classes@RegisterFindGlobalComponentProc$qqrpqqrx17System@AnsiString$p18Classes@TComponent", + "@Classes@RegisterIntegerConsts$qqrpvpqqrx17System@AnsiStringri$opqqrir17System@AnsiString$o", + "@Classes@RegisterNoIcon$qqrpxp17System@TMetaClassxi", + "@Classes@RegisterNoIconProc", + "@Classes@RegisterNonActiveX$qqrpxp17System@TMetaClassxi23Classes@TActiveXRegType", + "@Classes@RegisterNonActiveXProc", + "@Classes@RemoveDataModule", + "@Classes@RemoveFixupReferences$qqrp18Classes@TComponentx17System@AnsiString", + "@Classes@RemoveFixups$qqrp19Classes@TPersistent", + "@Classes@SmallPoint$qqrss", + "@Classes@StartClassGroup$qqrp17System@TMetaClass", + "@Classes@TBasicAction@", + "@Classes@TBasicAction@$bctr$qqrp18Classes@TComponent", + "@Classes@TBasicAction@$bdtr$qqrv", + "@Classes@TBasicAction@Change$qqrv", + "@Classes@TBasicAction@Execute$qqrv", + "@Classes@TBasicAction@ExecuteTarget$qqrp14System@TObject", + "@Classes@TBasicAction@HandlesTarget$qqrp14System@TObject", + "@Classes@TBasicAction@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Classes@TBasicAction@RegisterChanges$qqrp24Classes@TBasicActionLink", + "@Classes@TBasicAction@SetOnExecute$qqrynpqqrp14System@TObject$v", + "@Classes@TBasicAction@UnRegisterChanges$qqrp24Classes@TBasicActionLink", + "@Classes@TBasicAction@Update$qqrv", + "@Classes@TBasicAction@UpdateTarget$qqrp14System@TObject", + "@Classes@TBasicActionLink@", + "@Classes@TBasicActionLink@$bctr$qqrp14System@TObject", + "@Classes@TBasicActionLink@$bdtr$qqrv", + "@Classes@TBasicActionLink@AssignClient$qqrp14System@TObject", + "@Classes@TBasicActionLink@Change$qqrv", + "@Classes@TBasicActionLink@Execute$qqrp18Classes@TComponent", + "@Classes@TBasicActionLink@IsOnExecuteLinked$qqrv", + "@Classes@TBasicActionLink@SetAction$qqrp20Classes@TBasicAction", + "@Classes@TBasicActionLink@SetOnExecute$qqrynpqqrp14System@TObject$v", + "@Classes@TBasicActionLink@Update$qqrv", + "@Classes@TBits@", + "@Classes@TBits@$bdtr$qqrv", + "@Classes@TBits@Error$qqrv", + "@Classes@TBits@GetBit$qqri", + "@Classes@TBits@OpenBit$qqrv", + "@Classes@TBits@SetBit$qqrio", + "@Classes@TBits@SetSize$qqri", + "@Classes@TClassFinder@", + "@Classes@TClassFinder@$bctr$qqrp17System@TMetaClasso", + "@Classes@TClassFinder@$bdtr$qqrv", + "@Classes@TClassFinder@GetClass$qqrx17System@AnsiString", + "@Classes@TClassFinder@GetClasses$qqrynpqqrp17System@TMetaClass$v", + "@Classes@TCollection@", + "@Classes@TCollection@$bctr$qqrp17System@TMetaClass", + "@Classes@TCollection@$bdtr$qqrv", + "@Classes@TCollection@Add$qqrv", + "@Classes@TCollection@Added$qqrrp23Classes@TCollectionItem", + "@Classes@TCollection@Assign$qqrp19Classes@TPersistent", + "@Classes@TCollection@BeginUpdate$qqrv", + "@Classes@TCollection@Changed$qqrv", + "@Classes@TCollection@Clear$qqrv", + "@Classes@TCollection@Delete$qqri", + "@Classes@TCollection@Deleting$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@EndUpdate$qqrv", + "@Classes@TCollection@FindItemID$qqri", + "@Classes@TCollection@GetAttr$qqri", + "@Classes@TCollection@GetAttrCount$qqrv", + "@Classes@TCollection@GetCount$qqrv", + "@Classes@TCollection@GetItem$qqri", + "@Classes@TCollection@GetItemAttr$qqrii", + "@Classes@TCollection@GetNamePath$qqrv", + "@Classes@TCollection@GetPropName$qqrv", + "@Classes@TCollection@Insert$qqri", + "@Classes@TCollection@InsertItem$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@Notify$qqrp23Classes@TCollectionItem31Classes@TCollectionNotification", + "@Classes@TCollection@Owner$qqrv", + "@Classes@TCollection@RemoveItem$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@SetItem$qqrip23Classes@TCollectionItem", + "@Classes@TCollection@SetItemName$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TCollectionItem@", + "@Classes@TCollectionItem@$bctr$qqrp19Classes@TCollection", + "@Classes@TCollectionItem@$bdtr$qqrv", + "@Classes@TCollectionItem@Changed$qqro", + "@Classes@TCollectionItem@GetDisplayName$qqrv", + "@Classes@TCollectionItem@GetIndex$qqrv", + "@Classes@TCollectionItem@GetNamePath$qqrv", + "@Classes@TCollectionItem@GetOwner$qqrv", + "@Classes@TCollectionItem@SetCollection$qqrp19Classes@TCollection", + "@Classes@TCollectionItem@SetDisplayName$qqrx17System@AnsiString", + "@Classes@TCollectionItem@SetIndex$qqri", + "@Classes@TComponent@", + "@Classes@TComponent@$bctr$qqrp18Classes@TComponent", + "@Classes@TComponent@$bdtr$qqrv", + "@Classes@TComponent@BeforeDestruction$qqrv", + "@Classes@TComponent@ChangeName$qqrx17System@AnsiString", + "@Classes@TComponent@DefineProperties$qqrp14Classes@TFiler", + "@Classes@TComponent@DestroyComponents$qqrv", + "@Classes@TComponent@Destroying$qqrv", + "@Classes@TComponent@ExecuteAction$qqrp20Classes@TBasicAction", + "@Classes@TComponent@FindComponent$qqrx17System@AnsiString", + "@Classes@TComponent@FreeNotification$qqrp18Classes@TComponent", + "@Classes@TComponent@FreeOnRelease$qqrv", + "@Classes@TComponent@GetChildOwner$qqrv", + "@Classes@TComponent@GetChildParent$qqrv", + "@Classes@TComponent@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Classes@TComponent@GetComObject$qqrv", + "@Classes@TComponent@GetComponent$qqri", + "@Classes@TComponent@GetComponentCount$qqrv", + "@Classes@TComponent@GetComponentIndex$qqrv", + "@Classes@TComponent@GetIDsOfNames$qqsrx5_GUIDpviit2", + "@Classes@TComponent@GetNamePath$qqrv", + "@Classes@TComponent@GetOwner$qqrv", + "@Classes@TComponent@GetParentComponent$qqrv", + "@Classes@TComponent@GetTypeInfo$qqsiipv", + "@Classes@TComponent@GetTypeInfoCount$qqsri", + "@Classes@TComponent@HasParent$qqrv", + "@Classes@TComponent@Insert$qqrp18Classes@TComponent", + "@Classes@TComponent@InsertComponent$qqrp18Classes@TComponent", + "@Classes@TComponent@IntfGetComponent$qqrv", + "@Classes@TComponent@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Classes@TComponent@IsImplementorOf$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TComponent@Loaded$qqrv", + "@Classes@TComponent@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Classes@TComponent@PaletteCreated$qqrv", + "@Classes@TComponent@QueryInterface$qqsrx5_GUIDpv", + "@Classes@TComponent@ReadLeft$qqrp15Classes@TReader", + "@Classes@TComponent@ReadState$qqrp15Classes@TReader", + "@Classes@TComponent@ReadTop$qqrp15Classes@TReader", + "@Classes@TComponent@ReferenceInterface$qqrx45System@%DelphiInterface$t17System@IInterface%18Classes@TOperation", + "@Classes@TComponent@Remove$qqrp18Classes@TComponent", + "@Classes@TComponent@RemoveComponent$qqrp18Classes@TComponent", + "@Classes@TComponent@RemoveFreeNotification$qqrp18Classes@TComponent", + "@Classes@TComponent@RemoveNotification$qqrp18Classes@TComponent", + "@Classes@TComponent@SafeCallException$qqrp14System@TObjectpv", + "@Classes@TComponent@SetAncestor$qqro", + "@Classes@TComponent@SetChildOrder$qqrp18Classes@TComponenti", + "@Classes@TComponent@SetComponentIndex$qqri", + "@Classes@TComponent@SetDesignInstance$qqro", + "@Classes@TComponent@SetDesigning$qqroo", + "@Classes@TComponent@SetInline$qqro", + "@Classes@TComponent@SetName$qqrx17System@AnsiString", + "@Classes@TComponent@SetParentComponent$qqrp18Classes@TComponent", + "@Classes@TComponent@SetReference$qqro", + "@Classes@TComponent@SetSubComponent$qqro", + "@Classes@TComponent@UpdateAction$qqrp20Classes@TBasicAction", + "@Classes@TComponent@UpdateRegistry$qqrp17System@TMetaClassox17System@AnsiStringt3", + "@Classes@TComponent@Updated$qqrv", + "@Classes@TComponent@Updating$qqrv", + "@Classes@TComponent@ValidateContainer$qqrp18Classes@TComponent", + "@Classes@TComponent@ValidateInsert$qqrp18Classes@TComponent", + "@Classes@TComponent@ValidateRename$qqrp18Classes@TComponentx17System@AnsiStringt2", + "@Classes@TComponent@WriteLeft$qqrp15Classes@TWriter", + "@Classes@TComponent@WriteState$qqrp15Classes@TWriter", + "@Classes@TComponent@WriteTop$qqrp15Classes@TWriter", + "@Classes@TComponent@_AddRef$qqsv", + "@Classes@TComponent@_Release$qqsv", + "@Classes@TCustomMemoryStream@", + "@Classes@TCustomMemoryStream@Read$qqrpvi", + "@Classes@TCustomMemoryStream@SaveToFile$qqrx17System@AnsiString", + "@Classes@TCustomMemoryStream@SaveToStream$qqrp15Classes@TStream", + "@Classes@TCustomMemoryStream@Seek$qqrius", + "@Classes@TCustomMemoryStream@SetPointer$qqrpvi", + "@Classes@TDataModule@", + "@Classes@TDataModule@$bctr$qqrp18Classes@TComponent", + "@Classes@TDataModule@$bctr$qqrp18Classes@TComponenti", + "@Classes@TDataModule@$bdtr$qqrv", + "@Classes@TDataModule@AfterConstruction$qqrv", + "@Classes@TDataModule@BeforeDestruction$qqrv", + "@Classes@TDataModule@DefineProperties$qqrp14Classes@TFiler", + "@Classes@TDataModule@DoCreate$qqrv", + "@Classes@TDataModule@DoDestroy$qqrv", + "@Classes@TDataModule@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Classes@TDataModule@HandleCreateException$qqrv", + "@Classes@TDataModule@ReadHeight$qqrp15Classes@TReader", + "@Classes@TDataModule@ReadHorizontalOffset$qqrp15Classes@TReader", + "@Classes@TDataModule@ReadState$qqrp15Classes@TReader", + "@Classes@TDataModule@ReadVerticalOffset$qqrp15Classes@TReader", + "@Classes@TDataModule@ReadWidth$qqrp15Classes@TReader", + "@Classes@TDataModule@WriteHeight$qqrp15Classes@TWriter", + "@Classes@TDataModule@WriteHorizontalOffset$qqrp15Classes@TWriter", + "@Classes@TDataModule@WriteVerticalOffset$qqrp15Classes@TWriter", + "@Classes@TDataModule@WriteWidth$qqrp15Classes@TWriter", + "@Classes@TFileStream@", + "@Classes@TFileStream@$bctr$qqrx17System@AnsiStringus", + "@Classes@TFileStream@$bctr$qqrx17System@AnsiStringusui", + "@Classes@TFileStream@$bdtr$qqrv", + "@Classes@TFiler@", + "@Classes@TFiler@$bctr$qqrp15Classes@TStreami", + "@Classes@TFiler@$bdtr$qqrv", + "@Classes@TFiler@SetRoot$qqrp18Classes@TComponent", + "@Classes@THandleStream@", + "@Classes@THandleStream@$bctr$qqri", + "@Classes@THandleStream@Read$qqrpvi", + "@Classes@THandleStream@Seek$qqrxj19Classes@TSeekOrigin", + "@Classes@THandleStream@SetSize$qqri", + "@Classes@THandleStream@SetSize$qqrxj", + "@Classes@THandleStream@Write$qqrpxvi", + "@Classes@TInterfaceList@", + "@Classes@TInterfaceList@$bctr$qqrv", + "@Classes@TInterfaceList@$bdtr$qqrv", + "@Classes@TInterfaceList@Add$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TInterfaceList@Clear$qqrv", + "@Classes@TInterfaceList@Delete$qqri", + "@Classes@TInterfaceList@Exchange$qqrii", + "@Classes@TInterfaceList@Expand$qqrv", + "@Classes@TInterfaceList@First$qqrv", + "@Classes@TInterfaceList@Get$qqri", + "@Classes@TInterfaceList@GetCapacity$qqrv", + "@Classes@TInterfaceList@GetCount$qqrv", + "@Classes@TInterfaceList@IndexOf$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TInterfaceList@Insert$qqrix45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TInterfaceList@Last$qqrv", + "@Classes@TInterfaceList@Lock$qqrv", + "@Classes@TInterfaceList@Put$qqrix45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TInterfaceList@Remove$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TInterfaceList@SetCapacity$qqri", + "@Classes@TInterfaceList@SetCount$qqri", + "@Classes@TInterfaceList@Unlock$qqrv", + "@Classes@TInterfacedPersistent@", + "@Classes@TInterfacedPersistent@AfterConstruction$qqrv", + "@Classes@TInterfacedPersistent@QueryInterface$qqsrx5_GUIDpv", + "@Classes@TInterfacedPersistent@_AddRef$qqsv", + "@Classes@TInterfacedPersistent@_Release$qqsv", + "@Classes@TList@", + "@Classes@TList@$bdtr$qqrv", + "@Classes@TList@Add$qqrpv", + "@Classes@TList@Assign$qqrp13Classes@TList21Classes@TListAssignOpt1", + "@Classes@TList@Clear$qqrv", + "@Classes@TList@Delete$qqri", + "@Classes@TList@Error$qqrp17System@TMetaClassp20System@TResStringReci", + "@Classes@TList@Error$qqrp17System@TMetaClassx17System@AnsiStringi", + "@Classes@TList@Exchange$qqrii", + "@Classes@TList@Expand$qqrv", + "@Classes@TList@Extract$qqrpv", + "@Classes@TList@First$qqrv", + "@Classes@TList@Get$qqri", + "@Classes@TList@Grow$qqrv", + "@Classes@TList@IndexOf$qqrpv", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Last$qqrv", + "@Classes@TList@Move$qqrii", + "@Classes@TList@Notify$qqrpv25Classes@TListNotification", + "@Classes@TList@Pack$qqrv", + "@Classes@TList@Put$qqripv", + "@Classes@TList@Remove$qqrpv", + "@Classes@TList@SetCapacity$qqri", + "@Classes@TList@SetCount$qqri", + "@Classes@TList@Sort$qqrpqqrpvt1$i", + "@Classes@TMemoryStream@", + "@Classes@TMemoryStream@$bdtr$qqrv", + "@Classes@TMemoryStream@Clear$qqrv", + "@Classes@TMemoryStream@LoadFromFile$qqrx17System@AnsiString", + "@Classes@TMemoryStream@LoadFromStream$qqrp15Classes@TStream", + "@Classes@TMemoryStream@Realloc$qqrri", + "@Classes@TMemoryStream@SetCapacity$qqri", + "@Classes@TMemoryStream@SetSize$qqri", + "@Classes@TMemoryStream@Write$qqrpxvi", + "@Classes@TOwnedCollection@", + "@Classes@TOwnedCollection@$bctr$qqrp19Classes@TPersistentp17System@TMetaClass", + "@Classes@TOwnedCollection@GetOwner$qqrv", + "@Classes@TParser@", + "@Classes@TParser@$bctr$qqrp15Classes@TStream", + "@Classes@TParser@$bdtr$qqrv", + "@Classes@TParser@CheckToken$qqrc", + "@Classes@TParser@CheckTokenSymbol$qqrx17System@AnsiString", + "@Classes@TParser@Error$qqrx17System@AnsiString", + "@Classes@TParser@ErrorFmt$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Classes@TParser@ErrorStr$qqrx17System@AnsiString", + "@Classes@TParser@HexToBinary$qqrp15Classes@TStream", + "@Classes@TParser@NextToken$qqrv", + "@Classes@TParser@ReadBuffer$qqrv", + "@Classes@TParser@SkipBlanks$qqrv", + "@Classes@TParser@SourcePos$qqrv", + "@Classes@TParser@TokenComponentIdent$qqrv", + "@Classes@TParser@TokenFloat$qqrv", + "@Classes@TParser@TokenInt$qqrv", + "@Classes@TParser@TokenString$qqrv", + "@Classes@TParser@TokenSymbolIs$qqrx17System@AnsiString", + "@Classes@TParser@TokenWideString$qqrv", + "@Classes@TPersistent@", + "@Classes@TPersistent@$bdtr$qqrv", + "@Classes@TPersistent@Assign$qqrp19Classes@TPersistent", + "@Classes@TPersistent@AssignError$qqrp19Classes@TPersistent", + "@Classes@TPersistent@AssignTo$qqrp19Classes@TPersistent", + "@Classes@TPersistent@DefineProperties$qqrp14Classes@TFiler", + "@Classes@TPersistent@GetNamePath$qqrv", + "@Classes@TPersistent@GetOwner$qqrv", + "@Classes@TReader@", + "@Classes@TReader@$bdtr$qqrv", + "@Classes@TReader@BeginReferences$qqrv", + "@Classes@TReader@CheckValue$qqr18Classes@TValueType", + "@Classes@TReader@CopyValue$qqrp15Classes@TWriter", + "@Classes@TReader@DefineBinaryProperty$qqrx17System@AnsiStringynpqqrp15Classes@TStream$vt2o", + "@Classes@TReader@DefineProperty$qqrx17System@AnsiStringynpqqrp15Classes@TReader$vynpqqrp15Classes@TWriter$vo", + "@Classes@TReader@DoFixupReferences$qqrv", + "@Classes@TReader@EndOfList$qqrv", + "@Classes@TReader@EndReferences$qqrv", + "@Classes@TReader@Error$qqrx17System@AnsiString", + "@Classes@TReader@FindAncestorComponent$qqrx17System@AnsiStringp17System@TMetaClass", + "@Classes@TReader@FindComponentClass$qqrx17System@AnsiString", + "@Classes@TReader@FindMethod$qqrp18Classes@TComponentx17System@AnsiString", + "@Classes@TReader@FixupReferences$qqrv", + "@Classes@TReader@FlushBuffer$qqrv", + "@Classes@TReader@FreeFixups$qqrv", + "@Classes@TReader@GetFieldClass$qqrp14System@TObjectx17System@AnsiString", + "@Classes@TReader@GetPosition$qqrv", + "@Classes@TReader@NextValue$qqrv", + "@Classes@TReader@PropertyError$qqrx17System@AnsiString", + "@Classes@TReader@Read$qqrpvi", + "@Classes@TReader@ReadBoolean$qqrv", + "@Classes@TReader@ReadBuffer$qqrv", + "@Classes@TReader@ReadChar$qqrv", + "@Classes@TReader@ReadCollection$qqrp19Classes@TCollection", + "@Classes@TReader@ReadComponent$qqrp18Classes@TComponent", + "@Classes@TReader@ReadComponents$qqrp18Classes@TComponentt1ynpqqrp18Classes@TComponent$v", + "@Classes@TReader@ReadCurrency$qqrv", + "@Classes@TReader@ReadData$qqrp18Classes@TComponent", + "@Classes@TReader@ReadDataInner$qqrp18Classes@TComponent", + "@Classes@TReader@ReadDate$qqrv", + "@Classes@TReader@ReadFloat$qqrv", + "@Classes@TReader@ReadIdent$qqrv", + "@Classes@TReader@ReadInt64$qqrv", + "@Classes@TReader@ReadInteger$qqrv", + "@Classes@TReader@ReadListBegin$qqrv", + "@Classes@TReader@ReadListEnd$qqrv", + "@Classes@TReader@ReadPrefix$qqrr46System@%Set$t18Classes@TFilerFlag$iuc$0$iuc$2%ri", + "@Classes@TReader@ReadPropValue$qqrp19Classes@TPersistentpv", + "@Classes@TReader@ReadProperty$qqrp19Classes@TPersistent", + "@Classes@TReader@ReadRootComponent$qqrp18Classes@TComponent", + "@Classes@TReader@ReadSet$qqrpv", + "@Classes@TReader@ReadSignature$qqrv", + "@Classes@TReader@ReadSingle$qqrv", + "@Classes@TReader@ReadStr$qqrv", + "@Classes@TReader@ReadString$qqrv", + "@Classes@TReader@ReadValue$qqrv", + "@Classes@TReader@ReadVariant$qqrv", + "@Classes@TReader@ReadWideString$qqrv", + "@Classes@TReader@ReferenceName$qqrr17System@AnsiString", + "@Classes@TReader@SetName$qqrp18Classes@TComponentr17System@AnsiString", + "@Classes@TReader@SetPosition$qqri", + "@Classes@TReader@SkipBytes$qqri", + "@Classes@TReader@SkipComponent$qqro", + "@Classes@TReader@SkipProperty$qqrv", + "@Classes@TReader@SkipSetBody$qqrv", + "@Classes@TReader@SkipValue$qqrv", + "@Classes@TRecall@", + "@Classes@TRecall@$bctr$qqrp19Classes@TPersistentt1", + "@Classes@TRecall@$bdtr$qqrv", + "@Classes@TRecall@Forget$qqrv", + "@Classes@TRecall@Store$qqrv", + "@Classes@TResourceStream@", + "@Classes@TResourceStream@$bctr$qqruiipc", + "@Classes@TResourceStream@$bctr$qqruix17System@AnsiStringpc", + "@Classes@TResourceStream@$bdtr$qqrv", + "@Classes@TResourceStream@Initialize$qqruipct2", + "@Classes@TResourceStream@Write$qqrpxvi", + "@Classes@TStream@", + "@Classes@TStream@CopyFrom$qqrp15Classes@TStreamj", + "@Classes@TStream@FixupResourceHeader$qqri", + "@Classes@TStream@GetPosition$qqrv", + "@Classes@TStream@GetSize$qqrv", + "@Classes@TStream@ReadBuffer$qqrpvi", + "@Classes@TStream@ReadComponent$qqrp18Classes@TComponent", + "@Classes@TStream@ReadComponentRes$qqrp18Classes@TComponent", + "@Classes@TStream@ReadResHeader$qqrv", + "@Classes@TStream@Seek$qqrius", + "@Classes@TStream@Seek$qqrxj19Classes@TSeekOrigin", + "@Classes@TStream@SetPosition$qqrxj", + "@Classes@TStream@SetSize$qqri", + "@Classes@TStream@SetSize$qqrxj", + "@Classes@TStream@SetSize64$qqrxj", + "@Classes@TStream@WriteBuffer$qqrpxvi", + "@Classes@TStream@WriteComponent$qqrp18Classes@TComponent", + "@Classes@TStream@WriteComponentRes$qqrx17System@AnsiStringp18Classes@TComponent", + "@Classes@TStream@WriteDescendent$qqrp18Classes@TComponentt1", + "@Classes@TStream@WriteDescendentRes$qqrx17System@AnsiStringp18Classes@TComponentt2", + "@Classes@TStream@WriteResourceHeader$qqrx17System@AnsiStringri", + "@Classes@TStreamAdapter@", + "@Classes@TStreamAdapter@$bctr$qqrp15Classes@TStream24Classes@TStreamOwnership", + "@Classes@TStreamAdapter@$bdtr$qqrv", + "@Classes@TStreamAdapter@Clone$qqsr34System@%DelphiInterface$t7IStream%", + "@Classes@TStreamAdapter@Commit$qqsi", + "@Classes@TStreamAdapter@CopyTo$qqs34System@%DelphiInterface$t7IStream%jrjt3", + "@Classes@TStreamAdapter@LockRegion$qqsjji", + "@Classes@TStreamAdapter@Read$qqspvipi", + "@Classes@TStreamAdapter@Revert$qqsv", + "@Classes@TStreamAdapter@Seek$qqsjirj", + "@Classes@TStreamAdapter@SetSize$qqsj", + "@Classes@TStreamAdapter@Stat$qqsr10tagSTATSTGi", + "@Classes@TStreamAdapter@UnlockRegion$qqsjji", + "@Classes@TStreamAdapter@Write$qqspvipi", + "@Classes@TStringList@", + "@Classes@TStringList@$bdtr$qqrv", + "@Classes@TStringList@Add$qqrx17System@AnsiString", + "@Classes@TStringList@AddObject$qqrx17System@AnsiStringp14System@TObject", + "@Classes@TStringList@Changed$qqrv", + "@Classes@TStringList@Changing$qqrv", + "@Classes@TStringList@Clear$qqrv", + "@Classes@TStringList@CompareStrings$qqrx17System@AnsiStringt1", + "@Classes@TStringList@CustomSort$qqrpqqrp19Classes@TStringListii$i", + "@Classes@TStringList@Delete$qqri", + "@Classes@TStringList@Exchange$qqrii", + "@Classes@TStringList@ExchangeItems$qqrii", + "@Classes@TStringList@Find$qqrx17System@AnsiStringri", + "@Classes@TStringList@Get$qqri", + "@Classes@TStringList@GetCapacity$qqrv", + "@Classes@TStringList@GetCount$qqrv", + "@Classes@TStringList@GetObject$qqri", + "@Classes@TStringList@Grow$qqrv", + "@Classes@TStringList@IndexOf$qqrx17System@AnsiString", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@InsertItem$qqrix17System@AnsiStringp14System@TObject", + "@Classes@TStringList@InsertObject$qqrix17System@AnsiStringp14System@TObject", + "@Classes@TStringList@Put$qqrix17System@AnsiString", + "@Classes@TStringList@PutObject$qqrip14System@TObject", + "@Classes@TStringList@QuickSort$qqriipqqrp19Classes@TStringListii$i", + "@Classes@TStringList@SetCapacity$qqri", + "@Classes@TStringList@SetCaseSensitive$qqrxo", + "@Classes@TStringList@SetSorted$qqro", + "@Classes@TStringList@SetUpdateState$qqro", + "@Classes@TStringList@Sort$qqrv", + "@Classes@TStringStream@", + "@Classes@TStringStream@$bctr$qqrx17System@AnsiString", + "@Classes@TStringStream@Read$qqrpvi", + "@Classes@TStringStream@ReadString$qqri", + "@Classes@TStringStream@Seek$qqrius", + "@Classes@TStringStream@SetSize$qqri", + "@Classes@TStringStream@Write$qqrpxvi", + "@Classes@TStringStream@WriteString$qqrx17System@AnsiString", + "@Classes@TStrings@", + "@Classes@TStrings@$bdtr$qqrv", + "@Classes@TStrings@Add$qqrx17System@AnsiString", + "@Classes@TStrings@AddObject$qqrx17System@AnsiStringp14System@TObject", + "@Classes@TStrings@AddStrings$qqrp16Classes@TStrings", + "@Classes@TStrings@Append$qqrx17System@AnsiString", + "@Classes@TStrings@Assign$qqrp19Classes@TPersistent", + "@Classes@TStrings@BeginUpdate$qqrv", + "@Classes@TStrings@CompareStrings$qqrx17System@AnsiStringt1", + "@Classes@TStrings@DefineProperties$qqrp14Classes@TFiler", + "@Classes@TStrings@EndUpdate$qqrv", + "@Classes@TStrings@Equals$qqrp16Classes@TStrings", + "@Classes@TStrings@Error$qqrp20System@TResStringReci", + "@Classes@TStrings@Error$qqrx17System@AnsiStringi", + "@Classes@TStrings@Exchange$qqrii", + "@Classes@TStrings@ExtractName$qqrx17System@AnsiString", + "@Classes@TStrings@GetCapacity$qqrv", + "@Classes@TStrings@GetCommaText$qqrv", + "@Classes@TStrings@GetDelimitedText$qqrv", + "@Classes@TStrings@GetDelimiter$qqrv", + "@Classes@TStrings@GetName$qqri", + "@Classes@TStrings@GetObject$qqri", + "@Classes@TStrings@GetQuoteChar$qqrv", + "@Classes@TStrings@GetText$qqrv", + "@Classes@TStrings@GetTextStr$qqrv", + "@Classes@TStrings@GetValue$qqrx17System@AnsiString", + "@Classes@TStrings@IndexOf$qqrx17System@AnsiString", + "@Classes@TStrings@IndexOfName$qqrx17System@AnsiString", + "@Classes@TStrings@IndexOfObject$qqrp14System@TObject", + "@Classes@TStrings@InsertObject$qqrix17System@AnsiStringp14System@TObject", + "@Classes@TStrings@LoadFromFile$qqrx17System@AnsiString", + "@Classes@TStrings@LoadFromStream$qqrp15Classes@TStream", + "@Classes@TStrings@Move$qqrii", + "@Classes@TStrings@Put$qqrix17System@AnsiString", + "@Classes@TStrings@PutObject$qqrip14System@TObject", + "@Classes@TStrings@ReadData$qqrp15Classes@TReader", + "@Classes@TStrings@SaveToFile$qqrx17System@AnsiString", + "@Classes@TStrings@SaveToStream$qqrp15Classes@TStream", + "@Classes@TStrings@SetCapacity$qqri", + "@Classes@TStrings@SetCommaText$qqrx17System@AnsiString", + "@Classes@TStrings@SetDelimitedText$qqrx17System@AnsiString", + "@Classes@TStrings@SetDelimiter$qqrxc", + "@Classes@TStrings@SetQuoteChar$qqrxc", + "@Classes@TStrings@SetStringsAdapter$qqrx51System@%DelphiInterface$t23Classes@IStringsAdapter%", + "@Classes@TStrings@SetText$qqrpc", + "@Classes@TStrings@SetTextStr$qqrx17System@AnsiString", + "@Classes@TStrings@SetUpdateState$qqro", + "@Classes@TStrings@SetValue$qqrx17System@AnsiStringt1", + "@Classes@TStrings@WriteData$qqrp15Classes@TWriter", + "@Classes@TThread@", + "@Classes@TThread@$bctr$qqro", + "@Classes@TThread@$bdtr$qqrv", + "@Classes@TThread@AfterConstruction$qqrv", + "@Classes@TThread@CallOnTerminate$qqrv", + "@Classes@TThread@CheckThreadError$qqri", + "@Classes@TThread@CheckThreadError$qqro", + "@Classes@TThread@DoTerminate$qqrv", + "@Classes@TThread@GetPriority$qqrv", + "@Classes@TThread@Resume$qqrv", + "@Classes@TThread@SetPriority$qqr23Classes@TThreadPriority", + "@Classes@TThread@SetSuspended$qqro", + "@Classes@TThread@Suspend$qqrv", + "@Classes@TThread@Synchronize$qqrynpqqrv$v", + "@Classes@TThread@Terminate$qqrv", + "@Classes@TThread@WaitFor$qqrv", + "@Classes@TThreadList@", + "@Classes@TThreadList@$bctr$qqrv", + "@Classes@TThreadList@$bdtr$qqrv", + "@Classes@TThreadList@Add$qqrpv", + "@Classes@TThreadList@Clear$qqrv", + "@Classes@TThreadList@LockList$qqrv", + "@Classes@TThreadList@Remove$qqrpv", + "@Classes@TThreadList@UnlockList$qqrv", + "@Classes@TWriter@", + "@Classes@TWriter@$bdtr$qqrv", + "@Classes@TWriter@AddAncestor$qqrp18Classes@TComponent", + "@Classes@TWriter@DefineBinaryProperty$qqrx17System@AnsiStringynpqqrp15Classes@TStream$vt2o", + "@Classes@TWriter@DefineProperty$qqrx17System@AnsiStringynpqqrp15Classes@TReader$vynpqqrp15Classes@TWriter$vo", + "@Classes@TWriter@FlushBuffer$qqrv", + "@Classes@TWriter@GetPosition$qqrv", + "@Classes@TWriter@SetPosition$qqri", + "@Classes@TWriter@SetRoot$qqrp18Classes@TComponent", + "@Classes@TWriter@Write$qqrpxvi", + "@Classes@TWriter@WriteBinary$qqrynpqqrp15Classes@TStream$v", + "@Classes@TWriter@WriteBoolean$qqro", + "@Classes@TWriter@WriteBuffer$qqrv", + "@Classes@TWriter@WriteChar$qqrc", + "@Classes@TWriter@WriteCollection$qqrp19Classes@TCollection", + "@Classes@TWriter@WriteComponent$qqrp18Classes@TComponent", + "@Classes@TWriter@WriteCurrency$qqrx15System@Currency", + "@Classes@TWriter@WriteData$qqrp18Classes@TComponent", + "@Classes@TWriter@WriteDate$qqrx16System@TDateTime", + "@Classes@TWriter@WriteDescendent$qqrp18Classes@TComponentt1", + "@Classes@TWriter@WriteFloat$qqrxg", + "@Classes@TWriter@WriteIdent$qqrx17System@AnsiString", + "@Classes@TWriter@WriteInteger$qqri", + "@Classes@TWriter@WriteInteger$qqrj", + "@Classes@TWriter@WriteListBegin$qqrv", + "@Classes@TWriter@WriteListEnd$qqrv", + "@Classes@TWriter@WriteMinStr$qqrx17System@AnsiStringt1", + "@Classes@TWriter@WritePrefix$qqr46System@%Set$t18Classes@TFilerFlag$iuc$0$iuc$2%i", + "@Classes@TWriter@WritePropName$qqrx17System@AnsiString", + "@Classes@TWriter@WriteProperties$qqrp19Classes@TPersistent", + "@Classes@TWriter@WriteProperty$qqrp19Classes@TPersistentp17Typinfo@TPropInfo", + "@Classes@TWriter@WriteRootComponent$qqrp18Classes@TComponent", + "@Classes@TWriter@WriteSignature$qqrv", + "@Classes@TWriter@WriteSingle$qqrxf", + "@Classes@TWriter@WriteStr$qqrx17System@AnsiString", + "@Classes@TWriter@WriteString$qqrx17System@AnsiString", + "@Classes@TWriter@WriteValue$qqr18Classes@TValueType", + "@Classes@TWriter@WriteVariant$qqrrx14System@Variant", + "@Classes@TWriter@WriteWideString$qqrx17System@WideString", + "@Classes@TestStreamFormat$qqrp15Classes@TStream", + "@Classes@UnRegisterClass$qqrp17System@TMetaClass", + "@Classes@UnRegisterClasses$qqrpxp17System@TMetaClassxi", + "@Classes@UnRegisterModuleClasses$qqrui", + "@Classes@UnregisterFindGlobalComponentProc$qqrpqqrx17System@AnsiString$p18Classes@TComponent", + "@Classes@UnregisterIntegerConsts$qqrpvpqqrx17System@AnsiStringri$opqqrir17System@AnsiString$o", + "@Classes@WakeMainThread", + "@Classes@WriteComponentResFile$qqrx17System@AnsiStringp18Classes@TComponent", + "@Classes@initialization$qqrv", + "@Comadmin@CLASS_COMAdminCatalog", + "@Comadmin@CLASS_COMAdminCatalogCollection", + "@Comadmin@CLASS_COMAdminCatalogObject", + "@Comadmin@Finalization$qqrv", + "@Comadmin@IID_ICOMAdminCatalog", + "@Comadmin@IID_ICatalogCollection", + "@Comadmin@IID_ICatalogObject", + "@Comadmin@LIBID_COMAdmin", + "@Comadmin@initialization$qqrv", + "@Comconst@Finalization$qqrv", + "@Comconst@_SAutomationWarning", + "@Comconst@_SBadTypeInfo", + "@Comconst@_SCreateRegKeyError", + "@Comconst@_SDAXError", + "@Comconst@_SDCOMNotInstalled", + "@Comconst@_SDispIntfMissing", + "@Comconst@_SNoCloseActiveServer1", + "@Comconst@_SNoCloseActiveServer2", + "@Comconst@_SNoMethod", + "@Comconst@_SObjectFactoryMissing", + "@Comconst@_SOleError", + "@Comconst@_STooManyParams", + "@Comconst@_STypeInfoMissing", + "@Comconst@_SVarNotObject", + "@Comconst@initialization$qqrv", + "@Comobj@ClassIDToProgID$qqrrx5_GUID", + "@Comobj@CoAddRefServerProcess", + "@Comobj@CoCreateInstanceEx", + "@Comobj@CoInitFlags", + "@Comobj@CoInitializeEx", + "@Comobj@CoReleaseServerProcess", + "@Comobj@CoResumeClassObjects", + "@Comobj@CoSuspendClassObjects", + "@Comobj@ComClassManager$qqrv", + "@Comobj@CreateClassID$qqrv", + "@Comobj@CreateComObject$qqrrx5_GUID", + "@Comobj@CreateOleObject$qqrx17System@AnsiString", + "@Comobj@CreateRegKey$qqrx17System@AnsiStringt1t1ui", + "@Comobj@CreateRemoteComObject$qqrx17System@WideStringrx5_GUID", + "@Comobj@DeleteRegKey$qqrx17System@AnsiStringui", + "@Comobj@DispatchInvoke$qqrx36System@%DelphiInterface$t9IDispatch%p16System@TCallDescpa65536$ipvp14System@Variant", + "@Comobj@DispatchInvokeError$qqrirx12tagEXCEPINFO", + "@Comobj@EOleError@", + "@Comobj@EOleException@", + "@Comobj@EOleException@$bctr$qqrx17System@AnsiStringlt1t1i", + "@Comobj@EOleRegistrationError@", + "@Comobj@EOleSysError@", + "@Comobj@EOleSysError@$bctr$qqrx17System@AnsiStringli", + "@Comobj@Finalization$qqrv", + "@Comobj@GUIDToString$qqrrx5_GUID", + "@Comobj@GetActiveOleObject$qqrx17System@AnsiString", + "@Comobj@GetDispatchPropValue$qqr36System@%DelphiInterface$t9IDispatch%17System@WideString", + "@Comobj@GetDispatchPropValue$qqr36System@%DelphiInterface$t9IDispatch%i", + "@Comobj@GetRegStringValue$qqrx17System@AnsiStringt1ui", + "@Comobj@HandleSafeCallException$qqrp14System@TObjectpvrx5_GUIDx17System@WideStringt4", + "@Comobj@InterfaceConnect$qqrx45System@%DelphiInterface$t17System@IInterface%rx5_GUIDt1ri", + "@Comobj@InterfaceDisconnect$qqrx45System@%DelphiInterface$t17System@IInterface%rx5_GUIDri", + "@Comobj@OleCheck$qqrl", + "@Comobj@OleError$qqrl", + "@Comobj@ProgIDToClassID$qqrx17System@AnsiString", + "@Comobj@RegisterAsService$qqrx17System@AnsiStringt1", + "@Comobj@RegisterComServer$qqrx17System@AnsiString", + "@Comobj@SetDispatchPropValue$qqr36System@%DelphiInterface$t9IDispatch%17System@WideStringrx17System@OleVariant", + "@Comobj@SetDispatchPropValue$qqr36System@%DelphiInterface$t9IDispatch%irx17System@OleVariant", + "@Comobj@StringToGUID$qqrx17System@AnsiString", + "@Comobj@StringToLPOLESTR$qqrx17System@AnsiString", + "@Comobj@TAutoIntfObject@", + "@Comobj@TAutoIntfObject@$bctr$qqrx35System@%DelphiInterface$t8ITypeLib%rx5_GUID", + "@Comobj@TAutoIntfObject@GetIDsOfNames$qqsrx5_GUIDpviit2", + "@Comobj@TAutoIntfObject@GetTypeInfo$qqsiipv", + "@Comobj@TAutoIntfObject@GetTypeInfoCount$qqsri", + "@Comobj@TAutoIntfObject@InterfaceSupportsErrorInfo$qqsrx5_GUID", + "@Comobj@TAutoIntfObject@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Comobj@TAutoIntfObject@SafeCallException$qqrp14System@TObjectpv", + "@Comobj@TAutoObject@", + "@Comobj@TAutoObject@EventConnect$qqrx45System@%DelphiInterface$t17System@IInterface%o", + "@Comobj@TAutoObject@EventSinkChanged$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Comobj@TAutoObject@GetIDsOfNames$qqsrx5_GUIDpviit2", + "@Comobj@TAutoObject@GetTypeInfo$qqsiipv", + "@Comobj@TAutoObject@GetTypeInfoCount$qqsri", + "@Comobj@TAutoObject@Initialize$qqrv", + "@Comobj@TAutoObject@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Comobj@TAutoObjectFactory@", + "@Comobj@TAutoObjectFactory@$bctr$qqrp23Comobj@TComServerObjectp17System@TMetaClassrx5_GUID23Comobj@TClassInstancing22Comobj@TThreadingModel", + "@Comobj@TAutoObjectFactory@GetIntfEntry$qqrrx5_GUID", + "@Comobj@TComClassManager@", + "@Comobj@TComClassManager@$bctr$qqrv", + "@Comobj@TComClassManager@$bdtr$qqrv", + "@Comobj@TComClassManager@AddObjectFactory$qqrp17TComObjectFactory", + "@Comobj@TComClassManager@ForEachFactory$qqrp23Comobj@TComServerObjectynpqqrp17TComObjectFactory$v", + "@Comobj@TComClassManager@GetFactoryFromClass$qqrp17System@TMetaClass", + "@Comobj@TComClassManager@GetFactoryFromClassID$qqrrx5_GUID", + "@Comobj@TComClassManager@RemoveObjectFactory$qqrp17TComObjectFactory", + "@Comobj@TComObject@", + "@Comobj@TComObject@$bctr$qqrp17TComObjectFactoryx45System@%DelphiInterface$t17System@IInterface%", + "@Comobj@TComObject@$bctr$qqrv", + "@Comobj@TComObject@$bctr$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Comobj@TComObject@$bdtr$qqrv", + "@Comobj@TComObject@GetController$qqrv", + "@Comobj@TComObject@Initialize$qqrv", + "@Comobj@TComObject@InterfaceSupportsErrorInfo$qqsrx5_GUID", + "@Comobj@TComObject@ObjAddRef$qqsv", + "@Comobj@TComObject@ObjQueryInterface$qqsrx5_GUIDpv", + "@Comobj@TComObject@ObjRelease$qqsv", + "@Comobj@TComObject@QueryInterface$qqsrx5_GUIDpv", + "@Comobj@TComObject@SafeCallException$qqrp14System@TObjectpv", + "@Comobj@TComObject@_AddRef$qqsv", + "@Comobj@TComObject@_Release$qqsv", + "@Comobj@TComObjectFactory@", + "@Comobj@TComObjectFactory@$bctr$qqrp23Comobj@TComServerObjectp17System@TMetaClassrx5_GUIDx17System@AnsiStringt423Comobj@TClassInstancing22Comobj@TThreadingModel", + "@Comobj@TComObjectFactory@$bdtr$qqrv", + "@Comobj@TComObjectFactory@CreateComObject$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Comobj@TComObjectFactory@CreateInstance$qqsx45System@%DelphiInterface$t17System@IInterface%rx5_GUIDpv", + "@Comobj@TComObjectFactory@CreateInstanceLic$qqsx45System@%DelphiInterface$t17System@IInterface%t1rx5_GUIDx17System@WideStringpv", + "@Comobj@TComObjectFactory@GetLicInfo$qqsr10tagLICINFO", + "@Comobj@TComObjectFactory@GetLicenseString$qqrv", + "@Comobj@TComObjectFactory@GetProgID$qqrv", + "@Comobj@TComObjectFactory@HasMachineLicense$qqrv", + "@Comobj@TComObjectFactory@LockServer$qqsi", + "@Comobj@TComObjectFactory@QueryInterface$qqsrx5_GUIDpv", + "@Comobj@TComObjectFactory@RegisterClassObject$qqrv", + "@Comobj@TComObjectFactory@RequestLicKey$qqsir17System@WideString", + "@Comobj@TComObjectFactory@UpdateRegistry$qqro", + "@Comobj@TComObjectFactory@ValidateUserLicense$qqrx17System@WideString", + "@Comobj@TComObjectFactory@_AddRef$qqsv", + "@Comobj@TComObjectFactory@_Release$qqsv", + "@Comobj@TComServerObject@", + "@Comobj@TTypedComObject@", + "@Comobj@TTypedComObject@GetClassInfo$qqsr36System@%DelphiInterface$t9ITypeInfo%", + "@Comobj@TTypedComObjectFactory@", + "@Comobj@TTypedComObjectFactory@$bctr$qqrp23Comobj@TComServerObjectp17System@TMetaClassrx5_GUID23Comobj@TClassInstancing22Comobj@TThreadingModel", + "@Comobj@TTypedComObjectFactory@GetInterfaceTypeInfo$qqri", + "@Comobj@TTypedComObjectFactory@UpdateRegistry$qqro", + "@Comobj@initialization$qqrv", + "@Comsvcs@CLASS_AppServer", + "@Comsvcs@CLASS_ByotServerEx", + "@Comsvcs@CLASS_COMEvents", + "@Comsvcs@CLASS_CRMClerk", + "@Comsvcs@CLASS_CRMRecoveryClerk", + "@Comsvcs@CLASS_CoMTSLocator", + "@Comsvcs@CLASS_ComServiceEvents", + "@Comsvcs@CLASS_DispenserManager", + "@Comsvcs@CLASS_Dummy30040732", + "@Comsvcs@CLASS_EventServer", + "@Comsvcs@CLASS_GetSecurityCallContextAppObject", + "@Comsvcs@CLASS_LBEvents", + "@Comsvcs@CLASS_MessageMover", + "@Comsvcs@CLASS_MtsGrp", + "@Comsvcs@CLASS_SecurityCallContext", + "@Comsvcs@CLASS_SecurityCallers", + "@Comsvcs@CLASS_SecurityCertificate", + "@Comsvcs@CLASS_SecurityIdentity", + "@Comsvcs@CLASS_TrackerServer", + "@Comsvcs@Finalization$qqrv", + "@Comsvcs@IID_ContextInfo", + "@Comsvcs@IID_IComActivityEvents", + "@Comsvcs@IID_IComAppEvents", + "@Comsvcs@IID_IComCRMEvents", + "@Comsvcs@IID_IComExceptionEvents", + "@Comsvcs@IID_IComIdentityEvents", + "@Comsvcs@IID_IComInstanceEvents", + "@Comsvcs@IID_IComMethodEvents", + "@Comsvcs@IID_IComObjectConstructionEvents", + "@Comsvcs@IID_IComObjectEvents", + "@Comsvcs@IID_IComObjectPoolEvents", + "@Comsvcs@IID_IComObjectPoolEvents2", + "@Comsvcs@IID_IComQCEvents", + "@Comsvcs@IID_IComResourceEvents", + "@Comsvcs@IID_IComSecurityEvents", + "@Comsvcs@IID_IComThreadEvents", + "@Comsvcs@IID_IComTransactionEvents", + "@Comsvcs@IID_IComUserEvent", + "@Comsvcs@IID_IContextState", + "@Comsvcs@IID_ICreateWithTipTransactionEx", + "@Comsvcs@IID_ICreateWithTransactionEx", + "@Comsvcs@IID_ICrmCompensator", + "@Comsvcs@IID_ICrmCompensatorVariants", + "@Comsvcs@IID_ICrmFormatLogRecords", + "@Comsvcs@IID_ICrmLogControl", + "@Comsvcs@IID_ICrmMonitor", + "@Comsvcs@IID_ICrmMonitorClerks", + "@Comsvcs@IID_ICrmMonitorLogRecords", + "@Comsvcs@IID_IDispenserDriver", + "@Comsvcs@IID_IDispenserManager", + "@Comsvcs@IID_IDispenserManagerShutdownGuarantee", + "@Comsvcs@IID_IEventServer", + "@Comsvcs@IID_IGetAppData", + "@Comsvcs@IID_IGetSecurityCallContext", + "@Comsvcs@IID_IHolder", + "@Comsvcs@IID_ILBEvents", + "@Comsvcs@IID_IMTSLocator", + "@Comsvcs@IID_IMTxAS", + "@Comsvcs@IID_IMessageMover", + "@Comsvcs@IID_IMtsEventInfo", + "@Comsvcs@IID_IMtsEvents", + "@Comsvcs@IID_IMtsGrp", + "@Comsvcs@IID_IObjectConstruct", + "@Comsvcs@IID_IObjectConstructString", + "@Comsvcs@IID_IObjectContextInfo", + "@Comsvcs@IID_IObjectContextTip", + "@Comsvcs@IID_IPlaybackControl", + "@Comsvcs@IID_IProcessTerminateNotify", + "@Comsvcs@IID_IReceiveAppData", + "@Comsvcs@IID_ISecurityCallContext", + "@Comsvcs@IID_ISecurityCallersColl", + "@Comsvcs@IID_ISecurityCertificateColl", + "@Comsvcs@IID_ISecurityIdentityColl", + "@Comsvcs@IID_ITransaction", + "@Comsvcs@IID_ObjectContext", + "@Comsvcs@IID_ObjectControl", + "@Comsvcs@IID_SecurityProperty", + "@Comsvcs@LIBID_COMSVCSLib", + "@Comsvcs@initialization$qqrv", + "@Contnrs@Finalization$qqrv", + "@Contnrs@RaiseListError$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Contnrs@TBucketList@", + "@Contnrs@TBucketList@$bctr$qqr24Contnrs@TBucketListSizes", + "@Contnrs@TBucketList@BucketFor$qqrpv", + "@Contnrs@TClassList@", + "@Contnrs@TClassList@Add$qqrp17System@TMetaClass", + "@Contnrs@TClassList@Extract$qqrp17System@TMetaClass", + "@Contnrs@TClassList@First$qqrv", + "@Contnrs@TClassList@GetItems$qqri", + "@Contnrs@TClassList@IndexOf$qqrp17System@TMetaClass", + "@Contnrs@TClassList@Insert$qqrip17System@TMetaClass", + "@Contnrs@TClassList@Last$qqrv", + "@Contnrs@TClassList@Remove$qqrp17System@TMetaClass", + "@Contnrs@TClassList@SetItems$qqrip17System@TMetaClass", + "@Contnrs@TComponentList@", + "@Contnrs@TComponentList@$bdtr$qqrv", + "@Contnrs@TComponentList@Add$qqrp18Classes@TComponent", + "@Contnrs@TComponentList@Extract$qqrp18Classes@TComponent", + "@Contnrs@TComponentList@First$qqrv", + "@Contnrs@TComponentList@GetItems$qqri", + "@Contnrs@TComponentList@HandleFreeNotify$qqrp14System@TObjectp18Classes@TComponent", + "@Contnrs@TComponentList@IndexOf$qqrp18Classes@TComponent", + "@Contnrs@TComponentList@Insert$qqrip18Classes@TComponent", + "@Contnrs@TComponentList@Last$qqrv", + "@Contnrs@TComponentList@Notify$qqrpv25Classes@TListNotification", + "@Contnrs@TComponentList@Remove$qqrp18Classes@TComponent", + "@Contnrs@TComponentList@SetItems$qqrip18Classes@TComponent", + "@Contnrs@TCustomBucketList@", + "@Contnrs@TCustomBucketList@$bdtr$qqrv", + "@Contnrs@TCustomBucketList@Add$qqrpvt1", + "@Contnrs@TCustomBucketList@AddItem$qqripvt2", + "@Contnrs@TCustomBucketList@Assign$qqrp25Contnrs@TCustomBucketList", + "@Contnrs@TCustomBucketList@Clear$qqrv", + "@Contnrs@TCustomBucketList@DeleteItem$qqrii", + "@Contnrs@TCustomBucketList@Exists$qqrpv", + "@Contnrs@TCustomBucketList@Find$qqrpvrpv", + "@Contnrs@TCustomBucketList@FindItem$qqrpvrit2", + "@Contnrs@TCustomBucketList@ForEach$qqrpqqrpvt1t1ro$vpv", + "@Contnrs@TCustomBucketList@GetData$qqrpv", + "@Contnrs@TCustomBucketList@Remove$qqrpv", + "@Contnrs@TCustomBucketList@SetBucketCount$qqrxi", + "@Contnrs@TCustomBucketList@SetData$qqrpvpxv", + "@Contnrs@TObjectBucketList@", + "@Contnrs@TObjectBucketList@Add$qqrp14System@TObjectt1", + "@Contnrs@TObjectBucketList@GetData$qqrp14System@TObject", + "@Contnrs@TObjectBucketList@Remove$qqrp14System@TObject", + "@Contnrs@TObjectBucketList@SetData$qqrp14System@TObjectpx14System@TObject", + "@Contnrs@TObjectList@", + "@Contnrs@TObjectList@$bctr$qqro", + "@Contnrs@TObjectList@$bctr$qqrv", + "@Contnrs@TObjectList@Add$qqrp14System@TObject", + "@Contnrs@TObjectList@Extract$qqrp14System@TObject", + "@Contnrs@TObjectList@FindInstanceOf$qqrp17System@TMetaClassoi", + "@Contnrs@TObjectList@First$qqrv", + "@Contnrs@TObjectList@GetItem$qqri", + "@Contnrs@TObjectList@IndexOf$qqrp14System@TObject", + "@Contnrs@TObjectList@Insert$qqrip14System@TObject", + "@Contnrs@TObjectList@Last$qqrv", + "@Contnrs@TObjectList@Notify$qqrpv25Classes@TListNotification", + "@Contnrs@TObjectList@Remove$qqrp14System@TObject", + "@Contnrs@TObjectList@SetItem$qqrip14System@TObject", + "@Contnrs@TObjectQueue@", + "@Contnrs@TObjectQueue@Peek$qqrv", + "@Contnrs@TObjectQueue@Pop$qqrv", + "@Contnrs@TObjectQueue@Push$qqrp14System@TObject", + "@Contnrs@TObjectStack@", + "@Contnrs@TObjectStack@Peek$qqrv", + "@Contnrs@TObjectStack@Pop$qqrv", + "@Contnrs@TObjectStack@Push$qqrp14System@TObject", + "@Contnrs@TOrderedList@", + "@Contnrs@TOrderedList@$bctr$qqrv", + "@Contnrs@TOrderedList@$bdtr$qqrv", + "@Contnrs@TOrderedList@AtLeast$qqri", + "@Contnrs@TOrderedList@Count$qqrv", + "@Contnrs@TOrderedList@Peek$qqrv", + "@Contnrs@TOrderedList@PeekItem$qqrv", + "@Contnrs@TOrderedList@Pop$qqrv", + "@Contnrs@TOrderedList@PopItem$qqrv", + "@Contnrs@TOrderedList@Push$qqrpv", + "@Contnrs@TQueue@", + "@Contnrs@TQueue@PushItem$qqrpv", + "@Contnrs@TStack@", + "@Contnrs@TStack@PushItem$qqrpv", + "@Contnrs@initialization$qqrv", + "@Convutils@CIllegalConvFamily", + "@Convutils@CIllegalConvType", + "@Convutils@CompatibleConversionType$qqrxusxus", + "@Convutils@CompatibleConversionTypes$qqrxusxus", + "@Convutils@ConvFamilyToDescription$qqrxus", + "@Convutils@ConvTypeToDescription$qqrxus", + "@Convutils@ConvTypeToFamily$qqrxus", + "@Convutils@ConvTypeToFamily$qqrxusxus", + "@Convutils@ConvUnitAdd$qqrxdxusxdxusxus", + "@Convutils@ConvUnitCompareValue$qqrxdxusxdxus", + "@Convutils@ConvUnitDec$qqrxdxusxdxus", + "@Convutils@ConvUnitDec$qqrxdxusxus", + "@Convutils@ConvUnitDiff$qqrxdxusxdxusxus", + "@Convutils@ConvUnitInc$qqrxdxusxdxus", + "@Convutils@ConvUnitInc$qqrxdxusxus", + "@Convutils@ConvUnitSameValue$qqrxdxusxdxus", + "@Convutils@ConvUnitToStr$qqrxdxus", + "@Convutils@ConvUnitWithinNext$qqrxdxdxusxdxus", + "@Convutils@ConvUnitWithinPrevious$qqrxdxdxusxdxus", + "@Convutils@Convert$qqrxdxusxus", + "@Convutils@Convert$qqrxdxusxusxusxus", + "@Convutils@ConvertFrom$qqrxusxd", + "@Convutils@ConvertTo$qqrxdxus", + "@Convutils@DescriptionToConvFamily$qqrx17System@AnsiStringrus", + "@Convutils@DescriptionToConvType$qqrx17System@AnsiStringrus", + "@Convutils@DescriptionToConvType$qqrxusx17System@AnsiStringrus", + "@Convutils@EConversionError@", + "@Convutils@Finalization$qqrv", + "@Convutils@GConvUnitToStrFmt", + "@Convutils@GetConvFamilies$qqrr25System@%DynamicArray$tus%", + "@Convutils@GetConvTypes$qqrxusr25System@%DynamicArray$tus%", + "@Convutils@RaiseConversionError$qqrx17System@AnsiString", + "@Convutils@RaiseConversionError$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Convutils@RaiseConversionRegError$qqrusx17System@AnsiString", + "@Convutils@RegisterConversionFamily$qqrx17System@AnsiString", + "@Convutils@RegisterConversionType$qqrp23Convutils@TConvTypeInforus", + "@Convutils@RegisterConversionType$qqrxusx17System@AnsiStringxd", + "@Convutils@RegisterConversionType$qqrxusx17System@AnsiStringxpqqrxd$dt3", + "@Convutils@StrToConvUnit$qqr17System@AnsiStringrus", + "@Convutils@TConvTypeFactor@", + "@Convutils@TConvTypeFactor@$bctr$qqrxusx17System@AnsiStringxd", + "@Convutils@TConvTypeFactor@FromCommon$qqrxd", + "@Convutils@TConvTypeFactor@ToCommon$qqrxd", + "@Convutils@TConvTypeInfo@", + "@Convutils@TConvTypeInfo@$bctr$qqrxusx17System@AnsiString", + "@Convutils@TConvTypeProcs@", + "@Convutils@TConvTypeProcs@$bctr$qqrxusx17System@AnsiStringxpqqrxd$dt3", + "@Convutils@TConvTypeProcs@FromCommon$qqrxd", + "@Convutils@TConvTypeProcs@ToCommon$qqrxd", + "@Convutils@TryConvTypeToFamily$qqrxusrus", + "@Convutils@TryConvTypeToFamily$qqrxusxusrus", + "@Convutils@TryStrToConvUnit$qqr17System@AnsiStringrdrus", + "@Convutils@UnregisterConversionFamily$qqrxus", + "@Convutils@UnregisterConversionType$qqrxus", + "@Convutils@initialization$qqrv", + "@Cpl@Finalization$qqrv", + "@Cpl@initialization$qqrv", + "@Dateutils@ApproxDaysPerMonth", + "@Dateutils@ApproxDaysPerYear", + "@Dateutils@CompareDate$qqrx16System@TDateTimet1", + "@Dateutils@CompareDateTime$qqrx16System@TDateTimet1", + "@Dateutils@CompareTime$qqrx16System@TDateTimet1", + "@Dateutils@DateOf$qqrx16System@TDateTime", + "@Dateutils@DateTimeToJulianDate$qqrx16System@TDateTime", + "@Dateutils@DateTimeToModifiedJulianDate$qqrx16System@TDateTime", + "@Dateutils@DateTimeToUnix$qqrx16System@TDateTime", + "@Dateutils@DayOf$qqrx16System@TDateTime", + "@Dateutils@DayOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@DayOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@DayOfTheYear$qqrx16System@TDateTime", + "@Dateutils@DaySpan$qqrx16System@TDateTimet1", + "@Dateutils@DaysBetween$qqrx16System@TDateTimet1", + "@Dateutils@DaysInAMonth$qqrxusxus", + "@Dateutils@DaysInAYear$qqrxus", + "@Dateutils@DaysInMonth$qqrx16System@TDateTime", + "@Dateutils@DaysInYear$qqrx16System@TDateTime", + "@Dateutils@DaysPerYear", + "@Dateutils@DecodeDateDay$qqrx16System@TDateTimerust2", + "@Dateutils@DecodeDateMonthWeek$qqrx16System@TDateTimerust2t2t2", + "@Dateutils@DecodeDateTime$qqrx16System@TDateTimerust2t2t2t2t2t2", + "@Dateutils@DecodeDateWeek$qqrx16System@TDateTimerust2t2", + "@Dateutils@DecodeDayOfWeekInMonth$qqrx16System@TDateTimerust2t2t2", + "@Dateutils@EncodeDateDay$qqrxusxus", + "@Dateutils@EncodeDateMonthWeek$qqrxusxusxusxus", + "@Dateutils@EncodeDateTime$qqrxusxusxusxusxusxusxus", + "@Dateutils@EncodeDateWeek$qqrxusxusxus", + "@Dateutils@EncodeDayOfWeekInMonth$qqrxusxusxusxus", + "@Dateutils@EndOfADay$qqrxusxus", + "@Dateutils@EndOfADay$qqrxusxusxus", + "@Dateutils@EndOfAMonth$qqrxusxus", + "@Dateutils@EndOfAWeek$qqrxusxusxus", + "@Dateutils@EndOfAYear$qqrxus", + "@Dateutils@EndOfTheDay$qqrx16System@TDateTime", + "@Dateutils@EndOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@EndOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@EndOfTheYear$qqrx16System@TDateTime", + "@Dateutils@Finalization$qqrv", + "@Dateutils@HourOf$qqrx16System@TDateTime", + "@Dateutils@HourOfTheDay$qqrx16System@TDateTime", + "@Dateutils@HourOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@HourOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@HourOfTheYear$qqrx16System@TDateTime", + "@Dateutils@HourSpan$qqrx16System@TDateTimet1", + "@Dateutils@HoursBetween$qqrx16System@TDateTimet1", + "@Dateutils@IncDay$qqrx16System@TDateTimexi", + "@Dateutils@IncHour$qqrx16System@TDateTimexj", + "@Dateutils@IncMilliSecond$qqrx16System@TDateTimexj", + "@Dateutils@IncMinute$qqrx16System@TDateTimexj", + "@Dateutils@IncSecond$qqrx16System@TDateTimexj", + "@Dateutils@IncWeek$qqrx16System@TDateTimexi", + "@Dateutils@IncYear$qqrx16System@TDateTimexi", + "@Dateutils@InvalidDateDayError$qqrxusxus", + "@Dateutils@InvalidDateMonthWeekError$qqrxusxusxusxus", + "@Dateutils@InvalidDateTimeError$qqrxusxusxusxusxusxusxusx16System@TDateTime", + "@Dateutils@InvalidDateWeekError$qqrxusxusxus", + "@Dateutils@InvalidDayOfWeekInMonthError$qqrxusxusxusxus", + "@Dateutils@IsInLeapYear$qqrx16System@TDateTime", + "@Dateutils@IsPM$qqrx16System@TDateTime", + "@Dateutils@IsSameDay$qqrx16System@TDateTimet1", + "@Dateutils@IsToday$qqrx16System@TDateTime", + "@Dateutils@IsValidDate$qqrxusxusxus", + "@Dateutils@IsValidDateDay$qqrxusxus", + "@Dateutils@IsValidDateMonthWeek$qqrxusxusxusxus", + "@Dateutils@IsValidDateTime$qqrxusxusxusxusxusxusxus", + "@Dateutils@IsValidDateWeek$qqrxusxusxus", + "@Dateutils@IsValidTime$qqrxusxusxusxus", + "@Dateutils@JulianDateToDateTime$qqrxd", + "@Dateutils@MilliSecondOf$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheDay$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheHour$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheMinute$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheSecond$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@MilliSecondOfTheYear$qqrx16System@TDateTime", + "@Dateutils@MilliSecondSpan$qqrx16System@TDateTimet1", + "@Dateutils@MilliSecondsBetween$qqrx16System@TDateTimet1", + "@Dateutils@MinuteOf$qqrx16System@TDateTime", + "@Dateutils@MinuteOfTheDay$qqrx16System@TDateTime", + "@Dateutils@MinuteOfTheHour$qqrx16System@TDateTime", + "@Dateutils@MinuteOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@MinuteOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@MinuteOfTheYear$qqrx16System@TDateTime", + "@Dateutils@MinuteSpan$qqrx16System@TDateTimet1", + "@Dateutils@MinutesBetween$qqrx16System@TDateTimet1", + "@Dateutils@ModifiedJulianDateToDateTime$qqrxd", + "@Dateutils@MonthOf$qqrx16System@TDateTime", + "@Dateutils@MonthOfTheYear$qqrx16System@TDateTime", + "@Dateutils@MonthSpan$qqrx16System@TDateTimet1", + "@Dateutils@MonthsBetween$qqrx16System@TDateTimet1", + "@Dateutils@NthDayOfWeek$qqrx16System@TDateTime", + "@Dateutils@RecodeDate$qqrx16System@TDateTimexusxusxus", + "@Dateutils@RecodeDateTime$qqrx16System@TDateTimexusxusxusxusxusxusxus", + "@Dateutils@RecodeDay$qqrx16System@TDateTimexus", + "@Dateutils@RecodeHour$qqrx16System@TDateTimexus", + "@Dateutils@RecodeMilliSecond$qqrx16System@TDateTimexus", + "@Dateutils@RecodeMinute$qqrx16System@TDateTimexus", + "@Dateutils@RecodeMonth$qqrx16System@TDateTimexus", + "@Dateutils@RecodeSecond$qqrx16System@TDateTimexus", + "@Dateutils@RecodeTime$qqrx16System@TDateTimexusxusxusxus", + "@Dateutils@RecodeYear$qqrx16System@TDateTimexus", + "@Dateutils@SameDate$qqrx16System@TDateTimet1", + "@Dateutils@SameDateTime$qqrx16System@TDateTimet1", + "@Dateutils@SameTime$qqrx16System@TDateTimet1", + "@Dateutils@SecondOf$qqrx16System@TDateTime", + "@Dateutils@SecondOfTheDay$qqrx16System@TDateTime", + "@Dateutils@SecondOfTheHour$qqrx16System@TDateTime", + "@Dateutils@SecondOfTheMinute$qqrx16System@TDateTime", + "@Dateutils@SecondOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@SecondOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@SecondOfTheYear$qqrx16System@TDateTime", + "@Dateutils@SecondSpan$qqrx16System@TDateTimet1", + "@Dateutils@SecondsBetween$qqrx16System@TDateTimet1", + "@Dateutils@StartOfADay$qqrxusxus", + "@Dateutils@StartOfADay$qqrxusxusxus", + "@Dateutils@StartOfAMonth$qqrxusxus", + "@Dateutils@StartOfAWeek$qqrxusxusxus", + "@Dateutils@StartOfAYear$qqrxus", + "@Dateutils@StartOfTheDay$qqrx16System@TDateTime", + "@Dateutils@StartOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@StartOfTheWeek$qqrx16System@TDateTime", + "@Dateutils@StartOfTheYear$qqrx16System@TDateTime", + "@Dateutils@TimeOf$qqrx16System@TDateTime", + "@Dateutils@Today$qqrv", + "@Dateutils@Tomorrow$qqrv", + "@Dateutils@TryEncodeDateDay$qqrxusxusr16System@TDateTime", + "@Dateutils@TryEncodeDateMonthWeek$qqrxusxusxusxusr16System@TDateTime", + "@Dateutils@TryEncodeDateTime$qqrxusxusxusxusxusxusxusr16System@TDateTime", + "@Dateutils@TryEncodeDateWeek$qqrxusxusr16System@TDateTimexus", + "@Dateutils@TryEncodeDayOfWeekInMonth$qqrxusxusxusxusr16System@TDateTime", + "@Dateutils@TryJulianDateToDateTime$qqrxdr16System@TDateTime", + "@Dateutils@TryModifiedJulianDateToDateTime$qqrxdr16System@TDateTime", + "@Dateutils@TryRecodeDateTime$qqrx16System@TDateTimexusxusxusxusxusxusxusr16System@TDateTime", + "@Dateutils@UnixToDateTime$qqrxj", + "@Dateutils@WeekOf$qqrx16System@TDateTime", + "@Dateutils@WeekOfTheMonth$qqrx16System@TDateTime", + "@Dateutils@WeekOfTheMonth$qqrx16System@TDateTimerust2", + "@Dateutils@WeekOfTheYear$qqrx16System@TDateTime", + "@Dateutils@WeekOfTheYear$qqrx16System@TDateTimerus", + "@Dateutils@WeekSpan$qqrx16System@TDateTimet1", + "@Dateutils@WeeksBetween$qqrx16System@TDateTimet1", + "@Dateutils@WeeksInAYear$qqrxus", + "@Dateutils@WeeksInYear$qqrx16System@TDateTime", + "@Dateutils@WithinPastDays$qqrx16System@TDateTimet1xi", + "@Dateutils@WithinPastHours$qqrx16System@TDateTimet1xj", + "@Dateutils@WithinPastMilliSeconds$qqrx16System@TDateTimet1xj", + "@Dateutils@WithinPastMinutes$qqrx16System@TDateTimet1xj", + "@Dateutils@WithinPastMonths$qqrx16System@TDateTimet1xi", + "@Dateutils@WithinPastSeconds$qqrx16System@TDateTimet1xj", + "@Dateutils@WithinPastWeeks$qqrx16System@TDateTimet1xi", + "@Dateutils@WithinPastYears$qqrx16System@TDateTimet1xi", + "@Dateutils@YearOf$qqrx16System@TDateTime", + "@Dateutils@YearSpan$qqrx16System@TDateTimet1", + "@Dateutils@YearsBetween$qqrx16System@TDateTimet1", + "@Dateutils@Yesterday$qqrv", + "@Dateutils@initialization$qqrv", + "@Flatsb@Finalization$qqrv", + "@Flatsb@FlatSB_EnableScrollBar", + "@Flatsb@FlatSB_GetScrollInfo", + "@Flatsb@FlatSB_GetScrollPos", + "@Flatsb@FlatSB_GetScrollProp$qqsuiipi", + "@Flatsb@FlatSB_GetScrollRange", + "@Flatsb@FlatSB_SetScrollInfo", + "@Flatsb@FlatSB_SetScrollPos", + "@Flatsb@FlatSB_SetScrollProp$qqsuiiii", + "@Flatsb@FlatSB_SetScrollRange", + "@Flatsb@FlatSB_ShowScrollBar", + "@Flatsb@InitializeFlatSB$qqsui", + "@Flatsb@UninitializeFlatSB$qqsui", + "@Flatsb@initialization$qqrv", + "@GetPackageInfoTable", + "@Helpintfs@EHelpSystemException@", + "@Helpintfs@Finalization$qqrv", + "@Helpintfs@GetHelpSystem$qqrr49System@%DelphiInterface$t21Helpintfs@IHelpSystem%", + "@Helpintfs@RegisterViewer$qqr55System@%DelphiInterface$t27Helpintfs@ICustomHelpViewer%r50System@%DelphiInterface$t22Helpintfs@IHelpManager%", + "@Helpintfs@initialization$qqrv", + "@Imagehlp@Finalization$qqrv", + "@Imagehlp@initialization$qqrv", + "@Inifiles@EIniFileException@", + "@Inifiles@Finalization$qqrv", + "@Inifiles@TCustomIniFile@", + "@Inifiles@TCustomIniFile@$bctr$qqrx17System@AnsiString", + "@Inifiles@TCustomIniFile@ReadBinaryStream$qqrx17System@AnsiStringt1p15Classes@TStream", + "@Inifiles@TCustomIniFile@ReadBool$qqrx17System@AnsiStringt1o", + "@Inifiles@TCustomIniFile@ReadDate$qqrx17System@AnsiStringt116System@TDateTime", + "@Inifiles@TCustomIniFile@ReadDateTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Inifiles@TCustomIniFile@ReadFloat$qqrx17System@AnsiStringt1d", + "@Inifiles@TCustomIniFile@ReadInteger$qqrx17System@AnsiStringt1i", + "@Inifiles@TCustomIniFile@ReadTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Inifiles@TCustomIniFile@SectionExists$qqrx17System@AnsiString", + "@Inifiles@TCustomIniFile@ValueExists$qqrx17System@AnsiStringt1", + "@Inifiles@TCustomIniFile@WriteBinaryStream$qqrx17System@AnsiStringt1p15Classes@TStream", + "@Inifiles@TCustomIniFile@WriteBool$qqrx17System@AnsiStringt1o", + "@Inifiles@TCustomIniFile@WriteDate$qqrx17System@AnsiStringt116System@TDateTime", + "@Inifiles@TCustomIniFile@WriteDateTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Inifiles@TCustomIniFile@WriteFloat$qqrx17System@AnsiStringt1d", + "@Inifiles@TCustomIniFile@WriteInteger$qqrx17System@AnsiStringt1i", + "@Inifiles@TCustomIniFile@WriteTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Inifiles@THashedStringList@", + "@Inifiles@THashedStringList@$bdtr$qqrv", + "@Inifiles@THashedStringList@Changed$qqrv", + "@Inifiles@THashedStringList@IndexOf$qqrx17System@AnsiString", + "@Inifiles@THashedStringList@IndexOfName$qqrx17System@AnsiString", + "@Inifiles@THashedStringList@UpdateNameHash$qqrv", + "@Inifiles@THashedStringList@UpdateValueHash$qqrv", + "@Inifiles@TIniFile@", + "@Inifiles@TIniFile@$bdtr$qqrv", + "@Inifiles@TIniFile@DeleteKey$qqrx17System@AnsiStringt1", + "@Inifiles@TIniFile@EraseSection$qqrx17System@AnsiString", + "@Inifiles@TIniFile@ReadSection$qqrx17System@AnsiStringp16Classes@TStrings", + "@Inifiles@TIniFile@ReadSectionValues$qqrx17System@AnsiStringp16Classes@TStrings", + "@Inifiles@TIniFile@ReadSections$qqrp16Classes@TStrings", + "@Inifiles@TIniFile@ReadString$qqrx17System@AnsiStringt1t1", + "@Inifiles@TIniFile@UpdateFile$qqrv", + "@Inifiles@TIniFile@WriteString$qqrx17System@AnsiStringt1t1", + "@Inifiles@TMemIniFile@", + "@Inifiles@TMemIniFile@$bctr$qqrx17System@AnsiString", + "@Inifiles@TMemIniFile@$bdtr$qqrv", + "@Inifiles@TMemIniFile@AddSection$qqrx17System@AnsiString", + "@Inifiles@TMemIniFile@Clear$qqrv", + "@Inifiles@TMemIniFile@DeleteKey$qqrx17System@AnsiStringt1", + "@Inifiles@TMemIniFile@EraseSection$qqrx17System@AnsiString", + "@Inifiles@TMemIniFile@GetCaseSensitive$qqrv", + "@Inifiles@TMemIniFile@GetStrings$qqrp16Classes@TStrings", + "@Inifiles@TMemIniFile@LoadValues$qqrv", + "@Inifiles@TMemIniFile@ReadSection$qqrx17System@AnsiStringp16Classes@TStrings", + "@Inifiles@TMemIniFile@ReadSectionValues$qqrx17System@AnsiStringp16Classes@TStrings", + "@Inifiles@TMemIniFile@ReadSections$qqrp16Classes@TStrings", + "@Inifiles@TMemIniFile@ReadString$qqrx17System@AnsiStringt1t1", + "@Inifiles@TMemIniFile@Rename$qqrx17System@AnsiStringo", + "@Inifiles@TMemIniFile@SetCaseSensitive$qqro", + "@Inifiles@TMemIniFile@SetStrings$qqrp16Classes@TStrings", + "@Inifiles@TMemIniFile@UpdateFile$qqrv", + "@Inifiles@TMemIniFile@WriteString$qqrx17System@AnsiStringt1t1", + "@Inifiles@TStringHash@", + "@Inifiles@TStringHash@$bctr$qqri", + "@Inifiles@TStringHash@$bdtr$qqrv", + "@Inifiles@TStringHash@Add$qqrx17System@AnsiStringi", + "@Inifiles@TStringHash@Clear$qqrv", + "@Inifiles@TStringHash@Find$qqrx17System@AnsiString", + "@Inifiles@TStringHash@HashOf$qqrx17System@AnsiString", + "@Inifiles@TStringHash@Modify$qqrx17System@AnsiStringi", + "@Inifiles@TStringHash@Remove$qqrx17System@AnsiString", + "@Inifiles@TStringHash@ValueOf$qqrx17System@AnsiString", + "@Inifiles@initialization$qqrv", + "@Mapi@Finalization$qqrv", + "@Mapi@MAPIDLL", + "@Mapi@MapiAddress$qqruiuipcuit3uir13MapiRecipDescuiuipuirp13MapiRecipDesc", + "@Mapi@MapiDeleteMail$qqruiuipcuiui", + "@Mapi@MapiDetails$qqruiuir13MapiRecipDescuiui", + "@Mapi@MapiFindNext$qqruiuipct3uiuit3", + "@Mapi@MapiFreeBuffer$qqrpv", + "@Mapi@MapiLogOff$qqruiuiuiui", + "@Mapi@MapiLogOn$qqruipct2uiuipui", + "@Mapi@MapiReadMail$qqruiuipcuiuirp11MapiMessage", + "@Mapi@MapiResolveName$qqruiuipcuiuirp13MapiRecipDesc", + "@Mapi@MapiSaveMail$qqruiuir11MapiMessageuiuipc", + "@Mapi@MapiSendDocuments$qqruipct2t2ui", + "@Mapi@MapiSendMail$qqruiuir11MapiMessageuiui", + "@Mapi@initialization$qqrv", + "@Masks@EMaskException@", + "@Masks@Finalization$qqrv", + "@Masks@MatchesMask$qqrx17System@AnsiStringt1", + "@Masks@TMask@", + "@Masks@TMask@$bctr$qqrx17System@AnsiString", + "@Masks@TMask@$bdtr$qqrv", + "@Masks@TMask@Matches$qqrx17System@AnsiString", + "@Masks@initialization$qqrv", + "@Maskutils@DefaultBlank", + "@Maskutils@Finalization$qqrv", + "@Maskutils@FormatMaskText$qqrx17System@AnsiStringt1", + "@Maskutils@IsLiteralChar$qqrx17System@AnsiStringi", + "@Maskutils@MaskDoFormatText$qqrx17System@AnsiStringt1c", + "@Maskutils@MaskFieldSeparator", + "@Maskutils@MaskGetCharType$qqrx17System@AnsiStringi", + "@Maskutils@MaskGetCurrentDirectives$qqrx17System@AnsiStringi", + "@Maskutils@MaskGetFldSeparator$qqrx17System@AnsiString", + "@Maskutils@MaskGetMaskBlank$qqrx17System@AnsiString", + "@Maskutils@MaskGetMaskSave$qqrx17System@AnsiString", + "@Maskutils@MaskIntlLiteralToChar$qqrc", + "@Maskutils@MaskNoSave", + "@Maskutils@MaskOffsetToOffset$qqrx17System@AnsiStringi", + "@Maskutils@MaskOffsetToWideOffset$qqrx17System@AnsiStringi", + "@Maskutils@OffsetToMaskOffset$qqrx17System@AnsiStringi", + "@Maskutils@PadInputLiterals$qqrx17System@AnsiStringt1c", + "@Maskutils@initialization$qqrv", + "@Math@ArcCos$qqrxg", + "@Math@ArcCosh$qqrxg", + "@Math@ArcCot$qqrxg", + "@Math@ArcCotH$qqrxg", + "@Math@ArcCsc$qqrxg", + "@Math@ArcCscH$qqrxg", + "@Math@ArcSec$qqrxg", + "@Math@ArcSecH$qqrxg", + "@Math@ArcSin$qqrxg", + "@Math@ArcSinh$qqrxg", + "@Math@ArcTan2$qqrxgxg", + "@Math@ArcTanh$qqrxg", + "@Math@Ceil$qqrxg", + "@Math@ClearExceptions$qqrv", + "@Math@CompareValue$qqrxdxdd", + "@Math@CompareValue$qqrxfxff", + "@Math@CompareValue$qqrxgxgg", + "@Math@CompareValue$qqrxixi", + "@Math@CompareValue$qqrxjxj", + "@Math@Cosecant$qqrxg", + "@Math@Cosh$qqrxg", + "@Math@Cot$qqrxg", + "@Math@CotH$qqrxg", + "@Math@Cotan$qqrxg", + "@Math@Csc$qqrxg", + "@Math@CscH$qqrxg", + "@Math@CycleToDeg$qqrxg", + "@Math@CycleToGrad$qqrxg", + "@Math@CycleToRad$qqrxg", + "@Math@DegToCycle$qqrxg", + "@Math@DegToGrad$qqrxg", + "@Math@DegToRad$qqrxg", + "@Math@DivMod$qqriusrust3", + "@Math@DoubleDecliningBalance$qqrxgxgii", + "@Math@EInvalidArgument@", + "@Math@EnsureRange$qqrxdxdxd", + "@Math@EnsureRange$qqrxixixi", + "@Math@EnsureRange$qqrxjxjxj", + "@Math@Finalization$qqrv", + "@Math@Floor$qqrxg", + "@Math@Frexp$qqrxgrgri", + "@Math@FutureValue$qqrxgixgxg17Math@TPaymentTime", + "@Math@GetExceptionMask$qqrv", + "@Math@GetPrecisionMode$qqrv", + "@Math@GetRoundMode$qqrv", + "@Math@GradToCycle$qqrxg", + "@Math@GradToDeg$qqrxg", + "@Math@GradToRad$qqrxg", + "@Math@Hypot$qqrxgxg", + "@Math@IfThen$qqroxdxd", + "@Math@IfThen$qqroxixi", + "@Math@IfThen$qqroxjxj", + "@Math@InRange$qqrxdxdxd", + "@Math@InRange$qqrxixixi", + "@Math@InRange$qqrxjxjxj", + "@Math@IntPower$qqrxgxi", + "@Math@InterestPayment$qqrxgiixgxg17Math@TPaymentTime", + "@Math@InterestRate$qqrixgxgxg17Math@TPaymentTime", + "@Math@InternalRateOfReturn$qqrxgpxdxi", + "@Math@IsInfinite$qqrxd", + "@Math@IsNan$qqrxd", + "@Math@IsZero$qqrxdd", + "@Math@IsZero$qqrxff", + "@Math@IsZero$qqrxgg", + "@Math@Ldexp$qqrxgxi", + "@Math@LnXP1$qqrxg", + "@Math@Log10$qqrxg", + "@Math@Log2$qqrxg", + "@Math@LogN$qqrxgxg", + "@Math@Max$qqrxdxd", + "@Math@Max$qqrxfxf", + "@Math@Max$qqrxgxg", + "@Math@Max$qqrxixi", + "@Math@Max$qqrxjxj", + "@Math@MaxIntValue$qqrpxixi", + "@Math@MaxValue$qqrpxdxi", + "@Math@Mean$qqrpxdxi", + "@Math@MeanAndStdDev$qqrpxdxirgt3", + "@Math@Min$qqrxdxd", + "@Math@Min$qqrxfxf", + "@Math@Min$qqrxgxg", + "@Math@Min$qqrxixi", + "@Math@Min$qqrxjxj", + "@Math@MinIntValue$qqrpxixi", + "@Math@MinValue$qqrpxdxi", + "@Math@MomentSkewKurtosis$qqrpxdxirgt3t3t3t3t3", + "@Math@NetPresentValue$qqrxgpxdxi17Math@TPaymentTime", + "@Math@Norm$qqrpxdxi", + "@Math@NumberOfPeriods$qqrxggxgxg17Math@TPaymentTime", + "@Math@Payment$qqrgixgxg17Math@TPaymentTime", + "@Math@PeriodPayment$qqrxgiixgxg17Math@TPaymentTime", + "@Math@Poly$qqrxgpxdxi", + "@Math@PopnStdDev$qqrpxdxi", + "@Math@PopnVariance$qqrpxdxi", + "@Math@Power$qqrxgxg", + "@Math@PresentValue$qqrxgixgxg17Math@TPaymentTime", + "@Math@RadToCycle$qqrxg", + "@Math@RadToDeg$qqrxg", + "@Math@RadToGrad$qqrxg", + "@Math@RandG$qqrgg", + "@Math@RandomFrom$qqrpxdxi", + "@Math@RandomFrom$qqrpxixi", + "@Math@RandomFrom$qqrpxjxi", + "@Math@RandomRange$qqrxixi", + "@Math@RoundTo$qqrxdxzc", + "@Math@SLNDepreciation$qqrxgxgi", + "@Math@SYDDepreciation$qqrxgxgii", + "@Math@SameValue$qqrxdxdd", + "@Math@SameValue$qqrxfxff", + "@Math@SameValue$qqrxgxgg", + "@Math@Sec$qqrxg", + "@Math@SecH$qqrxg", + "@Math@Secant$qqrxg", + "@Math@SetExceptionMask$qqrx46System@%Set$t18Math@TFPUException$iuc$0$iuc$5%", + "@Math@SetPrecisionMode$qqrx22Math@TFPUPrecisionMode", + "@Math@SetRoundMode$qqrx21Math@TFPURoundingMode", + "@Math@Sign$qqrxd", + "@Math@Sign$qqrxi", + "@Math@Sign$qqrxj", + "@Math@SimpleRoundTo$qqrxdxzc", + "@Math@SinCos$qqrxgrgt2", + "@Math@Sinh$qqrxg", + "@Math@StdDev$qqrpxdxi", + "@Math@Sum$qqrpxdxi", + "@Math@SumInt$qqrpxixi", + "@Math@SumOfSquares$qqrpxdxi", + "@Math@SumsAndSquares$qqrpxdxirgt3", + "@Math@Tan$qqrxg", + "@Math@Tanh$qqrxg", + "@Math@TotalVariance$qqrpxdxi", + "@Math@Variance$qqrpxdxi", + "@Math@initialization$qqrv", + "@Msxml@CLASS_DOMDocument", + "@Msxml@CLASS_DOMFreeThreadedDocument", + "@Msxml@CLASS_XMLDSOControl", + "@Msxml@CLASS_XMLDocument", + "@Msxml@CLASS_XMLHTTPRequest", + "@Msxml@CoDOMDocument@", + "@Msxml@CoDOMDocument@Create$qqrp17System@TMetaClass", + "@Msxml@CoDOMDocument@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Msxml@CoDOMFreeThreadedDocument@", + "@Msxml@CoDOMFreeThreadedDocument@Create$qqrp17System@TMetaClass", + "@Msxml@CoDOMFreeThreadedDocument@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Msxml@CoXMLDSOControl@", + "@Msxml@CoXMLDSOControl@Create$qqrp17System@TMetaClass", + "@Msxml@CoXMLDSOControl@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Msxml@CoXMLDocument@", + "@Msxml@CoXMLDocument@Create$qqrp17System@TMetaClass", + "@Msxml@CoXMLDocument@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Msxml@CoXMLHTTPRequest@", + "@Msxml@CoXMLHTTPRequest@Create$qqrp17System@TMetaClass", + "@Msxml@CoXMLHTTPRequest@CreateRemote$qqrp17System@TMetaClassx17System@AnsiString", + "@Msxml@DIID_XMLDOMDocumentEvents", + "@Msxml@Finalization$qqrv", + "@Msxml@IID_IXMLAttribute", + "@Msxml@IID_IXMLDOMAttribute", + "@Msxml@IID_IXMLDOMCDATASection", + "@Msxml@IID_IXMLDOMCharacterData", + "@Msxml@IID_IXMLDOMComment", + "@Msxml@IID_IXMLDOMDocument", + "@Msxml@IID_IXMLDOMDocumentFragment", + "@Msxml@IID_IXMLDOMDocumentType", + "@Msxml@IID_IXMLDOMElement", + "@Msxml@IID_IXMLDOMEntity", + "@Msxml@IID_IXMLDOMEntityReference", + "@Msxml@IID_IXMLDOMImplementation", + "@Msxml@IID_IXMLDOMNamedNodeMap", + "@Msxml@IID_IXMLDOMNode", + "@Msxml@IID_IXMLDOMNodeList", + "@Msxml@IID_IXMLDOMNotation", + "@Msxml@IID_IXMLDOMParseError", + "@Msxml@IID_IXMLDOMProcessingInstruction", + "@Msxml@IID_IXMLDOMText", + "@Msxml@IID_IXMLDSOControl", + "@Msxml@IID_IXMLDocument", + "@Msxml@IID_IXMLDocument2", + "@Msxml@IID_IXMLElement", + "@Msxml@IID_IXMLElement2", + "@Msxml@IID_IXMLElementCollection", + "@Msxml@IID_IXMLError", + "@Msxml@IID_IXMLHttpRequest", + "@Msxml@IID_IXTLRuntime", + "@Msxml@LIBID_MSXML", + "@Msxml@initialization$qqrv", + "@Mtx@CLASS_SharedPropertyGroupManager", + "@Mtx@CLASS_TransactionContext", + "@Mtx@CLASS_TransactionContextEx", + "@Mtx@CreateSharedPropertyGroup$qqrx17System@WideString", + "@Mtx@CreateSharedPropertyGroupManager$qqrv", + "@Mtx@CreateTransactionContext$qqrv", + "@Mtx@CreateTransactionContextEx$qqrv", + "@Mtx@Finalization$qqrv", + "@Mtx@GetObjectContext$qqrv", + "@Mtx@SafeRef$qqrrx5_GUID45System@%DelphiInterface$t17System@IInterface%", + "@Mtx@initialization$qqrv", + "@Multimon@EnumDisplayMonitors", + "@Multimon@Finalization$qqrv", + "@Multimon@GetMonitorInfo", + "@Multimon@GetMonitorInfoA", + "@Multimon@GetMonitorInfoW", + "@Multimon@GetSystemMetrics", + "@Multimon@MonitorFromPoint", + "@Multimon@MonitorFromRect", + "@Multimon@MonitorFromWindow", + "@Multimon@initialization$qqrv", + "@Nb30@Finalization$qqrv", + "@Nb30@initialization$qqrv", + "@Oledb@CLSID_DATALINKS", + "@Oledb@CLSID_EXTENDEDERRORINFO", + "@Oledb@CLSID_MSDAVTM", + "@Oledb@CLSID_OLEDB_CONVERSIONLIBRARY", + "@Oledb@CLSID_OLEDB_ENUMERATOR", + "@Oledb@CLSID_OLEDB_ROWPOSITIONLIBRARY", + "@Oledb@DBCIDGUID", + "@Oledb@DBCOLUMN_BASECATALOGNAME", + "@Oledb@DBCOLUMN_BASECOLUMNNAME", + "@Oledb@DBCOLUMN_BASESCHEMANAME", + "@Oledb@DBCOLUMN_BASETABLENAME", + "@Oledb@DBCOLUMN_BASETABLEVERSION", + "@Oledb@DBCOLUMN_CLSID", + "@Oledb@DBCOLUMN_COLLATINGSEQUENCE", + "@Oledb@DBCOLUMN_COLUMNSIZE", + "@Oledb@DBCOLUMN_COMPUTEMODE", + "@Oledb@DBCOLUMN_DATETIMEPRECISION", + "@Oledb@DBCOLUMN_DEFAULTVALUE", + "@Oledb@DBCOLUMN_DOMAINCATALOG", + "@Oledb@DBCOLUMN_DOMAINNAME", + "@Oledb@DBCOLUMN_DOMAINSCHEMA", + "@Oledb@DBCOLUMN_FLAGS", + "@Oledb@DBCOLUMN_GUID", + "@Oledb@DBCOLUMN_HASDEFAULT", + "@Oledb@DBCOLUMN_IDNAME", + "@Oledb@DBCOLUMN_ISAUTOINCREMENT", + "@Oledb@DBCOLUMN_ISCASESENSITIVE", + "@Oledb@DBCOLUMN_ISSEARCHABLE", + "@Oledb@DBCOLUMN_ISUNIQUE", + "@Oledb@DBCOLUMN_KEYCOLUMN", + "@Oledb@DBCOLUMN_MAYSORT", + "@Oledb@DBCOLUMN_NAME", + "@Oledb@DBCOLUMN_NUMBER", + "@Oledb@DBCOLUMN_NUMERICPRECISIONRADIX", + "@Oledb@DBCOLUMN_OCTETLENGTH", + "@Oledb@DBCOLUMN_PRECISION", + "@Oledb@DBCOLUMN_PROPID", + "@Oledb@DBCOLUMN_SCALE", + "@Oledb@DBCOLUMN_TYPE", + "@Oledb@DBCOLUMN_TYPEINFO", + "@Oledb@DBCOL_SELFCOLUMNS", + "@Oledb@DBCOL_SPECIALCOL", + "@Oledb@DBGUID_DEFAULT", + "@Oledb@DBGUID_LIKE_DOS", + "@Oledb@DBGUID_LIKE_MAPI", + "@Oledb@DBGUID_LIKE_OFS", + "@Oledb@DBGUID_LIKE_SQL", + "@Oledb@DBGUID_MDX", + "@Oledb@DBGUID_SQL", + "@Oledb@DBOBJECT_CHARACTERSET", + "@Oledb@DBOBJECT_COLLATION", + "@Oledb@DBOBJECT_COLUMN", + "@Oledb@DBOBJECT_DATABASE", + "@Oledb@DBOBJECT_DOMAIN", + "@Oledb@DBOBJECT_PROCEDURE", + "@Oledb@DBOBJECT_SCHEMA", + "@Oledb@DBOBJECT_SCHEMAROWSET", + "@Oledb@DBOBJECT_TABLE", + "@Oledb@DBOBJECT_TRANSLATION", + "@Oledb@DBOBJECT_TRUSTEE", + "@Oledb@DBOBJECT_VIEW", + "@Oledb@DBPROPSET_COLUMN", + "@Oledb@DBPROPSET_DATASOURCE", + "@Oledb@DBPROPSET_DATASOURCEALL", + "@Oledb@DBPROPSET_DATASOURCEINFO", + "@Oledb@DBPROPSET_DATASOURCEINFOALL", + "@Oledb@DBPROPSET_DBINIT", + "@Oledb@DBPROPSET_DBINITALL", + "@Oledb@DBPROPSET_INDEX", + "@Oledb@DBPROPSET_PROPERTIESINERROR", + "@Oledb@DBPROPSET_ROWSET", + "@Oledb@DBPROPSET_ROWSETALL", + "@Oledb@DBPROPSET_SESSION", + "@Oledb@DBPROPSET_SESSIONALL", + "@Oledb@DBPROPSET_TABLE", + "@Oledb@DBPROPSET_TRUSTEE", + "@Oledb@DBPROPSET_VIEW", + "@Oledb@DBSCHEMA_ASSERTIONS", + "@Oledb@DBSCHEMA_CATALOGS", + "@Oledb@DBSCHEMA_CHARACTER_SETS", + "@Oledb@DBSCHEMA_CHECK_CONSTRAINTS", + "@Oledb@DBSCHEMA_COLLATIONS", + "@Oledb@DBSCHEMA_COLUMNS", + "@Oledb@DBSCHEMA_COLUMN_DOMAIN_USAGE", + "@Oledb@DBSCHEMA_COLUMN_PRIVILEGES", + "@Oledb@DBSCHEMA_CONSTRAINT_COLUMN_USAGE", + "@Oledb@DBSCHEMA_CONSTRAINT_TABLE_USAGE", + "@Oledb@DBSCHEMA_FOREIGN_KEYS", + "@Oledb@DBSCHEMA_INDEXES", + "@Oledb@DBSCHEMA_KEY_COLUMN_USAGE", + "@Oledb@DBSCHEMA_PRIMARY_KEYS", + "@Oledb@DBSCHEMA_PROCEDURES", + "@Oledb@DBSCHEMA_PROCEDURE_COLUMNS", + "@Oledb@DBSCHEMA_PROCEDURE_PARAMETERS", + "@Oledb@DBSCHEMA_PROVIDER_TYPES", + "@Oledb@DBSCHEMA_REFERENTIAL_CONSTRAINTS", + "@Oledb@DBSCHEMA_SCHEMATA", + "@Oledb@DBSCHEMA_SQL_LANGUAGES", + "@Oledb@DBSCHEMA_STATISTICS", + "@Oledb@DBSCHEMA_TABLES", + "@Oledb@DBSCHEMA_TABLES_INFO", + "@Oledb@DBSCHEMA_TABLE_CONSTRAINTS", + "@Oledb@DBSCHEMA_TABLE_PRIVILEGES", + "@Oledb@DBSCHEMA_TRANSLATIONS", + "@Oledb@DBSCHEMA_USAGE_PRIVILEGES", + "@Oledb@DBSCHEMA_VIEWS", + "@Oledb@DBSCHEMA_VIEW_COLUMN_USAGE", + "@Oledb@DBSCHEMA_VIEW_TABLE_USAGE", + "@Oledb@DB_NULLGUID", + "@Oledb@DB_NULLID", + "@Oledb@DB_PROPERTY_AUTOMATICUPDATE", + "@Oledb@DB_PROPERTY_BTREE", + "@Oledb@DB_PROPERTY_CHECK_OPTION", + "@Oledb@DB_PROPERTY_CLUSTERED", + "@Oledb@DB_PROPERTY_CONSTRAINT_CHECK_DEFERRED", + "@Oledb@DB_PROPERTY_DISALLOWNULL", + "@Oledb@DB_PROPERTY_DROP_CASCADE", + "@Oledb@DB_PROPERTY_EXPLICITUPDATE", + "@Oledb@DB_PROPERTY_FILLFACTOR", + "@Oledb@DB_PROPERTY_HASH", + "@Oledb@DB_PROPERTY_IGNOREANYNULL", + "@Oledb@DB_PROPERTY_IGNORENULL", + "@Oledb@DB_PROPERTY_INITIALSIZE", + "@Oledb@DB_PROPERTY_NONCLUSTERED", + "@Oledb@DB_PROPERTY_ON_COMMIT_PRESERVE_ROWS", + "@Oledb@DB_PROPERTY_PRIMARY", + "@Oledb@DB_PROPERTY_SORTBOOKMARKS", + "@Oledb@DB_PROPERTY_UNIQUE", + "@Oledb@Finalization$qqrv", + "@Oledb@IID_IAccessor", + "@Oledb@IID_IAlterIndex", + "@Oledb@IID_IAlterTable", + "@Oledb@IID_IColumnsInfo", + "@Oledb@IID_IColumnsRowset", + "@Oledb@IID_ICommand", + "@Oledb@IID_ICommandPersist", + "@Oledb@IID_ICommandPrepare", + "@Oledb@IID_ICommandProperties", + "@Oledb@IID_ICommandText", + "@Oledb@IID_ICommandWithParameters", + "@Oledb@IID_IConvertType", + "@Oledb@IID_IDBAsynchStatus", + "@Oledb@IID_IDBCreateCommand", + "@Oledb@IID_IDBCreateSession", + "@Oledb@IID_IDBDataSourceAdmin", + "@Oledb@IID_IDBInfo", + "@Oledb@IID_IDBInitialize", + "@Oledb@IID_IDBPromptInitialize", + "@Oledb@IID_IDBProperties", + "@Oledb@IID_IDataInitialize", + "@Oledb@IID_IErrorLookup", + "@Oledb@IID_IGetDataSource", + "@Oledb@IID_IIndexDefinition", + "@Oledb@IID_IMDFind", + "@Oledb@IID_IMDRangeRowset", + "@Oledb@IID_IMultipleResults", + "@Oledb@IID_IObjectAccessControl", + "@Oledb@IID_IOpenRowset", + "@Oledb@IID_IParentRowset", + "@Oledb@IID_IRowPosition", + "@Oledb@IID_IRowPositionChange", + "@Oledb@IID_IRowset", + "@Oledb@IID_IRowsetChange", + "@Oledb@IID_IRowsetChapterMember", + "@Oledb@IID_IRowsetFind", + "@Oledb@IID_IRowsetIndex", + "@Oledb@IID_IRowsetInfo", + "@Oledb@IID_IRowsetLocate", + "@Oledb@IID_IRowsetRefresh", + "@Oledb@IID_IRowsetResynch", + "@Oledb@IID_IRowsetScroll", + "@Oledb@IID_IRowsetUpdate", + "@Oledb@IID_IRowsetView", + "@Oledb@IID_ISQLErrorInfo", + "@Oledb@IID_ISecurityInfo", + "@Oledb@IID_ISessionProperties", + "@Oledb@IID_ISourcesRowset", + "@Oledb@IID_ITableDefinition", + "@Oledb@IID_ITransaction", + "@Oledb@IID_ITransactionDispenser", + "@Oledb@IID_ITransactionJoin", + "@Oledb@IID_ITransactionLocal", + "@Oledb@IID_ITransactionObject", + "@Oledb@IID_ITransactionOptions", + "@Oledb@IID_ITransactionOutcomeEvents", + "@Oledb@IID_ITrusteeGroupAdmin", + "@Oledb@IID_IViewChapter", + "@Oledb@IID_IViewFilter", + "@Oledb@IID_IViewRowset", + "@Oledb@IID_IViewSort", + "@Oledb@MDGUID_MDX", + "@Oledb@MDSCHEMA_CUBES", + "@Oledb@MDSCHEMA_DIMENSIONS", + "@Oledb@MDSCHEMA_HIERARCHIES", + "@Oledb@MDSCHEMA_LEVELS", + "@Oledb@MDSCHEMA_MEASURES", + "@Oledb@MDSCHEMA_MEMBERS", + "@Oledb@MDSCHEMA_PROPERTIES", + "@Oledb@PSGUID_QUERY", + "@Oledb@initialization$qqrv", + "@Opengl@Finalization$qqrv", + "@Opengl@initialization$qqrv", + "@Registry@ERegistryException@", + "@Registry@Finalization$qqrv", + "@Registry@TRegIniFile@", + "@Registry@TRegIniFile@$bctr$qqrx17System@AnsiString", + "@Registry@TRegIniFile@$bctr$qqrx17System@AnsiStringui", + "@Registry@TRegIniFile@DeleteKey$qqrx17System@AnsiStringt1", + "@Registry@TRegIniFile@EraseSection$qqrx17System@AnsiString", + "@Registry@TRegIniFile@ReadBool$qqrx17System@AnsiStringt1o", + "@Registry@TRegIniFile@ReadInteger$qqrx17System@AnsiStringt1i", + "@Registry@TRegIniFile@ReadSection$qqrx17System@AnsiStringp16Classes@TStrings", + "@Registry@TRegIniFile@ReadSectionValues$qqrx17System@AnsiStringp16Classes@TStrings", + "@Registry@TRegIniFile@ReadSections$qqrp16Classes@TStrings", + "@Registry@TRegIniFile@ReadString$qqrx17System@AnsiStringt1t1", + "@Registry@TRegIniFile@WriteBool$qqrx17System@AnsiStringt1o", + "@Registry@TRegIniFile@WriteInteger$qqrx17System@AnsiStringt1i", + "@Registry@TRegIniFile@WriteString$qqrx17System@AnsiStringt1t1", + "@Registry@TRegistry@", + "@Registry@TRegistry@$bctr$qqrui", + "@Registry@TRegistry@$bctr$qqrv", + "@Registry@TRegistry@$bdtr$qqrv", + "@Registry@TRegistry@ChangeKey$qqruix17System@AnsiString", + "@Registry@TRegistry@CloseKey$qqrv", + "@Registry@TRegistry@CreateKey$qqrx17System@AnsiString", + "@Registry@TRegistry@DeleteKey$qqrx17System@AnsiString", + "@Registry@TRegistry@DeleteValue$qqrx17System@AnsiString", + "@Registry@TRegistry@GetBaseKey$qqro", + "@Registry@TRegistry@GetData$qqrx17System@AnsiStringpvir21Registry@TRegDataType", + "@Registry@TRegistry@GetDataInfo$qqrx17System@AnsiStringr21Registry@TRegDataInfo", + "@Registry@TRegistry@GetDataSize$qqrx17System@AnsiString", + "@Registry@TRegistry@GetDataType$qqrx17System@AnsiString", + "@Registry@TRegistry@GetKey$qqrx17System@AnsiString", + "@Registry@TRegistry@GetKeyInfo$qqrr20Registry@TRegKeyInfo", + "@Registry@TRegistry@GetKeyNames$qqrp16Classes@TStrings", + "@Registry@TRegistry@GetValueNames$qqrp16Classes@TStrings", + "@Registry@TRegistry@HasSubKeys$qqrv", + "@Registry@TRegistry@KeyExists$qqrx17System@AnsiString", + "@Registry@TRegistry@LoadKey$qqrx17System@AnsiStringt1", + "@Registry@TRegistry@MoveKey$qqrx17System@AnsiStringt1o", + "@Registry@TRegistry@OpenKey$qqrx17System@AnsiStringo", + "@Registry@TRegistry@OpenKeyReadOnly$qqrx17System@AnsiString", + "@Registry@TRegistry@PutData$qqrx17System@AnsiStringpvi21Registry@TRegDataType", + "@Registry@TRegistry@ReadBinaryData$qqrx17System@AnsiStringpvi", + "@Registry@TRegistry@ReadBool$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadCurrency$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadDate$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadDateTime$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadFloat$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadInteger$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadString$qqrx17System@AnsiString", + "@Registry@TRegistry@ReadTime$qqrx17System@AnsiString", + "@Registry@TRegistry@RegistryConnect$qqrx17System@AnsiString", + "@Registry@TRegistry@RenameValue$qqrx17System@AnsiStringt1", + "@Registry@TRegistry@ReplaceKey$qqrx17System@AnsiStringt1t1", + "@Registry@TRegistry@RestoreKey$qqrx17System@AnsiStringt1", + "@Registry@TRegistry@SaveKey$qqrx17System@AnsiStringt1", + "@Registry@TRegistry@SetCurrentKey$qqrui", + "@Registry@TRegistry@SetRootKey$qqrui", + "@Registry@TRegistry@UnLoadKey$qqrx17System@AnsiString", + "@Registry@TRegistry@ValueExists$qqrx17System@AnsiString", + "@Registry@TRegistry@WriteBinaryData$qqrx17System@AnsiStringpvi", + "@Registry@TRegistry@WriteBool$qqrx17System@AnsiStringo", + "@Registry@TRegistry@WriteCurrency$qqrx17System@AnsiString15System@Currency", + "@Registry@TRegistry@WriteDate$qqrx17System@AnsiString16System@TDateTime", + "@Registry@TRegistry@WriteDateTime$qqrx17System@AnsiString16System@TDateTime", + "@Registry@TRegistry@WriteExpandString$qqrx17System@AnsiStringt1", + "@Registry@TRegistry@WriteFloat$qqrx17System@AnsiStringd", + "@Registry@TRegistry@WriteInteger$qqrx17System@AnsiStringi", + "@Registry@TRegistry@WriteString$qqrx17System@AnsiStringt1", + "@Registry@TRegistry@WriteTime$qqrx17System@AnsiString16System@TDateTime", + "@Registry@TRegistryIniFile@", + "@Registry@TRegistryIniFile@$bctr$qqrx17System@AnsiString", + "@Registry@TRegistryIniFile@$bctr$qqrx17System@AnsiStringui", + "@Registry@TRegistryIniFile@$bdtr$qqrv", + "@Registry@TRegistryIniFile@DeleteKey$qqrx17System@AnsiStringt1", + "@Registry@TRegistryIniFile@EraseSection$qqrx17System@AnsiString", + "@Registry@TRegistryIniFile@ReadBinaryStream$qqrx17System@AnsiStringt1p15Classes@TStream", + "@Registry@TRegistryIniFile@ReadDate$qqrx17System@AnsiStringt116System@TDateTime", + "@Registry@TRegistryIniFile@ReadDateTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Registry@TRegistryIniFile@ReadFloat$qqrx17System@AnsiStringt1d", + "@Registry@TRegistryIniFile@ReadInteger$qqrx17System@AnsiStringt1i", + "@Registry@TRegistryIniFile@ReadSection$qqrx17System@AnsiStringp16Classes@TStrings", + "@Registry@TRegistryIniFile@ReadSectionValues$qqrx17System@AnsiStringp16Classes@TStrings", + "@Registry@TRegistryIniFile@ReadSections$qqrp16Classes@TStrings", + "@Registry@TRegistryIniFile@ReadString$qqrx17System@AnsiStringt1t1", + "@Registry@TRegistryIniFile@ReadTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Registry@TRegistryIniFile@UpdateFile$qqrv", + "@Registry@TRegistryIniFile@WriteBinaryStream$qqrx17System@AnsiStringt1p15Classes@TStream", + "@Registry@TRegistryIniFile@WriteDate$qqrx17System@AnsiStringt116System@TDateTime", + "@Registry@TRegistryIniFile@WriteDateTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Registry@TRegistryIniFile@WriteFloat$qqrx17System@AnsiStringt1d", + "@Registry@TRegistryIniFile@WriteInteger$qqrx17System@AnsiStringt1i", + "@Registry@TRegistryIniFile@WriteString$qqrx17System@AnsiStringt1t1", + "@Registry@TRegistryIniFile@WriteTime$qqrx17System@AnsiStringt116System@TDateTime", + "@Registry@initialization$qqrv", + "@Rtl@@GetPackageInfoTable$qqrv", + "@Rtl@@PackageLoad$qqrv", + "@Rtl@@PackageUnload$qqrv", + "@Rtl@initialization$qqrv", + "@Rtlconsts@Finalization$qqrv", + "@Rtlconsts@_SAncestorNotFound", + "@Rtlconsts@_SAssignError", + "@Rtlconsts@_SBitsIndexError", + "@Rtlconsts@_SBucketListLocked", + "@Rtlconsts@_SCantWriteResourceStreamError", + "@Rtlconsts@_SCharExpected", + "@Rtlconsts@_SCheckSynchronizeError", + "@Rtlconsts@_SClassNotFound", + "@Rtlconsts@_SComponentNameTooLong", + "@Rtlconsts@_SConvDuplicateFamily", + "@Rtlconsts@_SConvDuplicateType", + "@Rtlconsts@_SConvFactorZero", + "@Rtlconsts@_SConvIllegalFamily", + "@Rtlconsts@_SConvIllegalType", + "@Rtlconsts@_SConvIncompatibleTypes2", + "@Rtlconsts@_SConvIncompatibleTypes3", + "@Rtlconsts@_SConvIncompatibleTypes4", + "@Rtlconsts@_SConvStrParseError", + "@Rtlconsts@_SConvUnknownDescription", + "@Rtlconsts@_SConvUnknownFamily", + "@Rtlconsts@_SConvUnknownType", + "@Rtlconsts@_SDelimiterQuoteCharError", + "@Rtlconsts@_SDuplicateClass", + "@Rtlconsts@_SDuplicateItem", + "@Rtlconsts@_SDuplicateName", + "@Rtlconsts@_SDuplicateString", + "@Rtlconsts@_SFCreateError", + "@Rtlconsts@_SFOpenError", + "@Rtlconsts@_SFailedToCallConstructor", + "@Rtlconsts@_SFixedColTooBig", + "@Rtlconsts@_SFixedRowTooBig", + "@Rtlconsts@_SGridTooLarge", + "@Rtlconsts@_SIdentifierExpected", + "@Rtlconsts@_SIndexOutOfRange", + "@Rtlconsts@_SIniFileWriteError", + "@Rtlconsts@_SInvalidActionCreation", + "@Rtlconsts@_SInvalidActionEnumeration", + "@Rtlconsts@_SInvalidActionRegistration", + "@Rtlconsts@_SInvalidActionUnregistration", + "@Rtlconsts@_SInvalidBinary", + "@Rtlconsts@_SInvalidDate", + "@Rtlconsts@_SInvalidDateDay", + "@Rtlconsts@_SInvalidDateMonthWeek", + "@Rtlconsts@_SInvalidDateTime", + "@Rtlconsts@_SInvalidDateWeek", + "@Rtlconsts@_SInvalidDayOfWeekInMonth", + "@Rtlconsts@_SInvalidFileName", + "@Rtlconsts@_SInvalidImage", + "@Rtlconsts@_SInvalidInteger", + "@Rtlconsts@_SInvalidJulianDate", + "@Rtlconsts@_SInvalidMask", + "@Rtlconsts@_SInvalidName", + "@Rtlconsts@_SInvalidProperty", + "@Rtlconsts@_SInvalidPropertyElement", + "@Rtlconsts@_SInvalidPropertyPath", + "@Rtlconsts@_SInvalidPropertyType", + "@Rtlconsts@_SInvalidPropertyValue", + "@Rtlconsts@_SInvalidRegType", + "@Rtlconsts@_SInvalidString", + "@Rtlconsts@_SInvalidStringGridOp", + "@Rtlconsts@_SInvalidTime", + "@Rtlconsts@_SItemNotFound", + "@Rtlconsts@_SLineTooLong", + "@Rtlconsts@_SListCapacityError", + "@Rtlconsts@_SListCountError", + "@Rtlconsts@_SListIndexError", + "@Rtlconsts@_SMaskEditErr", + "@Rtlconsts@_SMaskErr", + "@Rtlconsts@_SMemoryStreamError", + "@Rtlconsts@_SMissingDateTimeField", + "@Rtlconsts@_SNoComSupport", + "@Rtlconsts@_SNotPrinting", + "@Rtlconsts@_SNumberExpected", + "@Rtlconsts@_SParseError", + "@Rtlconsts@_SPrinting", + "@Rtlconsts@_SPropertyException", + "@Rtlconsts@_SReadError", + "@Rtlconsts@_SReadOnlyProperty", + "@Rtlconsts@_SRegCreateFailed", + "@Rtlconsts@_SRegGetDataFailed", + "@Rtlconsts@_SRegSetDataFailed", + "@Rtlconsts@_SRegisterError", + "@Rtlconsts@_SResNotFound", + "@Rtlconsts@_SSeekNotImplemented", + "@Rtlconsts@_SSortedListError", + "@Rtlconsts@_SStreamSetSize", + "@Rtlconsts@_SStringExpected", + "@Rtlconsts@_SSymbolExpected", + "@Rtlconsts@_SThreadCreateError", + "@Rtlconsts@_SThreadError", + "@Rtlconsts@_STimeEncodeError", + "@Rtlconsts@_STooManyDeleted", + "@Rtlconsts@_SUnknownGroup", + "@Rtlconsts@_SUnknownProperty", + "@Rtlconsts@_SWriteError", + "@Rtlconsts@_sAsyncSocketError", + "@Rtlconsts@_sCannotCreateSocket", + "@Rtlconsts@_sCannotListenOnOpen", + "@Rtlconsts@_sCantChangeWhileActive", + "@Rtlconsts@_sNoAddress", + "@Rtlconsts@_sSocketAlreadyOpen", + "@Rtlconsts@_sSocketIOError", + "@Rtlconsts@_sSocketMustBeBlocking", + "@Rtlconsts@_sSocketRead", + "@Rtlconsts@_sSocketWrite", + "@Rtlconsts@_sWindowsSocketError", + "@Rtlconsts@initialization$qqrv", + "@Scktcomp@ESocketError@", + "@Scktcomp@Finalization$qqrv", + "@Scktcomp@SetErrorProc$qqrpqqri$v", + "@Scktcomp@TAbstractSocket@", + "@Scktcomp@TAbstractSocket@Close$qqrv", + "@Scktcomp@TAbstractSocket@DoError$qqrp14System@TObjectp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri", + "@Scktcomp@TAbstractSocket@DoEvent$qqrp14System@TObjectp25Scktcomp@TCustomWinSocket21Scktcomp@TSocketEvent", + "@Scktcomp@TAbstractSocket@InitSocket$qqrp25Scktcomp@TCustomWinSocket", + "@Scktcomp@TAbstractSocket@Loaded$qqrv", + "@Scktcomp@TAbstractSocket@Open$qqrv", + "@Scktcomp@TAbstractSocket@SetActive$qqro", + "@Scktcomp@TAbstractSocket@SetAddress$qqr17System@AnsiString", + "@Scktcomp@TAbstractSocket@SetHost$qqr17System@AnsiString", + "@Scktcomp@TAbstractSocket@SetPort$qqri", + "@Scktcomp@TAbstractSocket@SetService$qqr17System@AnsiString", + "@Scktcomp@TClientSocket@", + "@Scktcomp@TClientSocket@$bctr$qqrp18Classes@TComponent", + "@Scktcomp@TClientSocket@$bdtr$qqrv", + "@Scktcomp@TClientSocket@DoActivate$qqro", + "@Scktcomp@TClientSocket@GetClientType$qqrv", + "@Scktcomp@TClientSocket@SetClientType$qqr20Scktcomp@TClientType", + "@Scktcomp@TClientWinSocket@", + "@Scktcomp@TClientWinSocket@Connect$qqri", + "@Scktcomp@TClientWinSocket@SetClientType$qqr20Scktcomp@TClientType", + "@Scktcomp@TCustomServerSocket@", + "@Scktcomp@TCustomServerSocket@$bdtr$qqrv", + "@Scktcomp@TCustomServerSocket@DoActivate$qqro", + "@Scktcomp@TCustomServerSocket@GetGetSocketEvent$qqrv", + "@Scktcomp@TCustomServerSocket@GetGetThreadEvent$qqrv", + "@Scktcomp@TCustomServerSocket@GetOnClientError$qqrv", + "@Scktcomp@TCustomServerSocket@GetOnClientEvent$qqri", + "@Scktcomp@TCustomServerSocket@GetOnThreadEnd$qqrv", + "@Scktcomp@TCustomServerSocket@GetOnThreadStart$qqrv", + "@Scktcomp@TCustomServerSocket@GetServerType$qqrv", + "@Scktcomp@TCustomServerSocket@GetThreadCacheSize$qqrv", + "@Scktcomp@TCustomServerSocket@SetGetSocketEvent$qqrynpqqrp14System@TObjectirp31Scktcomp@TServerClientWinSocket$v", + "@Scktcomp@TCustomServerSocket@SetGetThreadEvent$qqrynpqqrp14System@TObjectp31Scktcomp@TServerClientWinSocketrp28Scktcomp@TServerClientThread$v", + "@Scktcomp@TCustomServerSocket@SetOnClientError$qqrynpqqrp14System@TObjectp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri$v", + "@Scktcomp@TCustomServerSocket@SetOnClientEvent$qqriynpqqrp14System@TObjectp25Scktcomp@TCustomWinSocket$v", + "@Scktcomp@TCustomServerSocket@SetOnThreadEnd$qqrynpqqrp14System@TObjectp28Scktcomp@TServerClientThread$v", + "@Scktcomp@TCustomServerSocket@SetOnThreadStart$qqrynpqqrp14System@TObjectp28Scktcomp@TServerClientThread$v", + "@Scktcomp@TCustomServerSocket@SetServerType$qqr20Scktcomp@TServerType", + "@Scktcomp@TCustomServerSocket@SetThreadCacheSize$qqri", + "@Scktcomp@TCustomSocket@", + "@Scktcomp@TCustomSocket@Error$qqrp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri", + "@Scktcomp@TCustomSocket@Event$qqrp25Scktcomp@TCustomWinSocket21Scktcomp@TSocketEvent", + "@Scktcomp@TCustomWinSocket@", + "@Scktcomp@TCustomWinSocket@$bctr$qqri", + "@Scktcomp@TCustomWinSocket@$bdtr$qqrv", + "@Scktcomp@TCustomWinSocket@Accept$qqri", + "@Scktcomp@TCustomWinSocket@AsyncInitSocket$qqrx17System@AnsiStringt1t1usio", + "@Scktcomp@TCustomWinSocket@CMDeferFree$qqrpv", + "@Scktcomp@TCustomWinSocket@CMLookupComplete$qqrr26Scktcomp@TCMLookupComplete", + "@Scktcomp@TCustomWinSocket@CMSocketMessage$qqrr25Scktcomp@TCMSocketMessage", + "@Scktcomp@TCustomWinSocket@Close$qqrv", + "@Scktcomp@TCustomWinSocket@Connect$qqri", + "@Scktcomp@TCustomWinSocket@DefaultHandler$qqrpv", + "@Scktcomp@TCustomWinSocket@DeferFree$qqrv", + "@Scktcomp@TCustomWinSocket@Disconnect$qqri", + "@Scktcomp@TCustomWinSocket@DoListen$qqri", + "@Scktcomp@TCustomWinSocket@DoOpen$qqrv", + "@Scktcomp@TCustomWinSocket@DoSetAsyncStyles$qqrv", + "@Scktcomp@TCustomWinSocket@Error$qqrp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri", + "@Scktcomp@TCustomWinSocket@Event$qqrp25Scktcomp@TCustomWinSocket21Scktcomp@TSocketEvent", + "@Scktcomp@TCustomWinSocket@GetHandle$qqrv", + "@Scktcomp@TCustomWinSocket@GetLocalAddress$qqrv", + "@Scktcomp@TCustomWinSocket@GetLocalHost$qqrv", + "@Scktcomp@TCustomWinSocket@GetLocalPort$qqrv", + "@Scktcomp@TCustomWinSocket@GetRemoteAddr$qqrv", + "@Scktcomp@TCustomWinSocket@GetRemoteAddress$qqrv", + "@Scktcomp@TCustomWinSocket@GetRemoteHost$qqrv", + "@Scktcomp@TCustomWinSocket@GetRemotePort$qqrv", + "@Scktcomp@TCustomWinSocket@InitSocket$qqrx17System@AnsiStringt1t1uso", + "@Scktcomp@TCustomWinSocket@Listen$qqrx17System@AnsiStringt1t1usio", + "@Scktcomp@TCustomWinSocket@Lock$qqrv", + "@Scktcomp@TCustomWinSocket@LookupName$qqrx17System@AnsiString", + "@Scktcomp@TCustomWinSocket@LookupService$qqrx17System@AnsiString", + "@Scktcomp@TCustomWinSocket@Open$qqrx17System@AnsiStringt1t1uso", + "@Scktcomp@TCustomWinSocket@Read$qqri", + "@Scktcomp@TCustomWinSocket@ReceiveBuf$qqrpvi", + "@Scktcomp@TCustomWinSocket@ReceiveLength$qqrv", + "@Scktcomp@TCustomWinSocket@ReceiveText$qqrv", + "@Scktcomp@TCustomWinSocket@SendBuf$qqrpvi", + "@Scktcomp@TCustomWinSocket@SendStream$qqrp15Classes@TStream", + "@Scktcomp@TCustomWinSocket@SendStreamPiece$qqrv", + "@Scktcomp@TCustomWinSocket@SendStreamThenDrop$qqrp15Classes@TStream", + "@Scktcomp@TCustomWinSocket@SendText$qqrx17System@AnsiString", + "@Scktcomp@TCustomWinSocket@SetAsyncStyles$qqr48System@%Set$t20Scktcomp@TAsyncStyle$iuc$0$iuc$5%", + "@Scktcomp@TCustomWinSocket@Unlock$qqrv", + "@Scktcomp@TCustomWinSocket@WndProc$qqrr17Messages@TMessage", + "@Scktcomp@TCustomWinSocket@Write$qqri", + "@Scktcomp@TServerAcceptThread@", + "@Scktcomp@TServerAcceptThread@$bctr$qqrop25Scktcomp@TServerWinSocket", + "@Scktcomp@TServerAcceptThread@Execute$qqrv", + "@Scktcomp@TServerClientThread@", + "@Scktcomp@TServerClientThread@$bctr$qqrop31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerClientThread@$bdtr$qqrv", + "@Scktcomp@TServerClientThread@ClientExecute$qqrv", + "@Scktcomp@TServerClientThread@DoHandleException$qqrv", + "@Scktcomp@TServerClientThread@DoRead$qqrv", + "@Scktcomp@TServerClientThread@DoTerminate$qqrv", + "@Scktcomp@TServerClientThread@DoWrite$qqrv", + "@Scktcomp@TServerClientThread@EndConnect$qqrv", + "@Scktcomp@TServerClientThread@Error$qqr20Scktcomp@TErrorEventri", + "@Scktcomp@TServerClientThread@Event$qqr21Scktcomp@TSocketEvent", + "@Scktcomp@TServerClientThread@Execute$qqrv", + "@Scktcomp@TServerClientThread@HandleError$qqrp14System@TObjectp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri", + "@Scktcomp@TServerClientThread@HandleEvent$qqrp14System@TObjectp25Scktcomp@TCustomWinSocket21Scktcomp@TSocketEvent", + "@Scktcomp@TServerClientThread@HandleException$qqrv", + "@Scktcomp@TServerClientThread@ReActivate$qqrp31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerClientThread@StartConnect$qqrv", + "@Scktcomp@TServerClientWinSocket@", + "@Scktcomp@TServerClientWinSocket@$bctr$qqrip25Scktcomp@TServerWinSocket", + "@Scktcomp@TServerClientWinSocket@$bdtr$qqrv", + "@Scktcomp@TServerSocket@", + "@Scktcomp@TServerSocket@$bctr$qqrp18Classes@TComponent", + "@Scktcomp@TServerWinSocket@", + "@Scktcomp@TServerWinSocket@$bctr$qqri", + "@Scktcomp@TServerWinSocket@$bdtr$qqrv", + "@Scktcomp@TServerWinSocket@Accept$qqri", + "@Scktcomp@TServerWinSocket@AddClient$qqrp31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerWinSocket@AddThread$qqrp28Scktcomp@TServerClientThread", + "@Scktcomp@TServerWinSocket@ClientConnect$qqrp25Scktcomp@TCustomWinSocket", + "@Scktcomp@TServerWinSocket@ClientDisconnect$qqrp25Scktcomp@TCustomWinSocket", + "@Scktcomp@TServerWinSocket@ClientError$qqrp14System@TObjectp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri", + "@Scktcomp@TServerWinSocket@ClientErrorEvent$qqrp25Scktcomp@TCustomWinSocket20Scktcomp@TErrorEventri", + "@Scktcomp@TServerWinSocket@ClientEvent$qqrp14System@TObjectp25Scktcomp@TCustomWinSocket21Scktcomp@TSocketEvent", + "@Scktcomp@TServerWinSocket@ClientRead$qqrp25Scktcomp@TCustomWinSocket", + "@Scktcomp@TServerWinSocket@ClientWrite$qqrp25Scktcomp@TCustomWinSocket", + "@Scktcomp@TServerWinSocket@Disconnect$qqri", + "@Scktcomp@TServerWinSocket@DoCreateThread$qqrp31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerWinSocket@GetActiveConnections$qqrv", + "@Scktcomp@TServerWinSocket@GetActiveThreads$qqrv", + "@Scktcomp@TServerWinSocket@GetClientSocket$qqri", + "@Scktcomp@TServerWinSocket@GetClientThread$qqrp31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerWinSocket@GetConnections$qqri", + "@Scktcomp@TServerWinSocket@GetIdleThreads$qqrv", + "@Scktcomp@TServerWinSocket@GetServerThread$qqrp31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerWinSocket@Listen$qqrr17System@AnsiStringt1t1usi", + "@Scktcomp@TServerWinSocket@RemoveClient$qqrp31Scktcomp@TServerClientWinSocket", + "@Scktcomp@TServerWinSocket@RemoveThread$qqrp28Scktcomp@TServerClientThread", + "@Scktcomp@TServerWinSocket@SetServerType$qqr20Scktcomp@TServerType", + "@Scktcomp@TServerWinSocket@SetThreadCacheSize$qqri", + "@Scktcomp@TServerWinSocket@ThreadEnd$qqrp28Scktcomp@TServerClientThread", + "@Scktcomp@TServerWinSocket@ThreadStart$qqrp28Scktcomp@TServerClientThread", + "@Scktcomp@TWinSocketStream@", + "@Scktcomp@TWinSocketStream@$bctr$qqrp25Scktcomp@TCustomWinSocketi", + "@Scktcomp@TWinSocketStream@$bdtr$qqrv", + "@Scktcomp@TWinSocketStream@Read$qqrpvi", + "@Scktcomp@TWinSocketStream@Seek$qqrius", + "@Scktcomp@TWinSocketStream@WaitForData$qqri", + "@Scktcomp@TWinSocketStream@Write$qqrpxvi", + "@Scktcomp@initialization$qqrv", + "@Shfolder@Finalization$qqrv", + "@Shfolder@initialization$qqrv", + "@Stdconvs@CelsiusToFahrenheit$qqrxd", + "@Stdconvs@FahrenheitToCelsius$qqrxd", + "@Stdconvs@Finalization$qqrv", + "@Stdconvs@_SAcreFeetDescription", + "@Stdconvs@_SAcreInchesDescription", + "@Stdconvs@_SAcresDescription", + "@Stdconvs@_SAngstromsDescription", + "@Stdconvs@_SAreaDescription", + "@Stdconvs@_SAresDescription", + "@Stdconvs@_SAstronomicalUnitsDescription", + "@Stdconvs@_SCelsiusDescription", + "@Stdconvs@_SCentaresDescription", + "@Stdconvs@_SCentiLitersDescription", + "@Stdconvs@_SCentigramsDescription", + "@Stdconvs@_SCentimetersDescription", + "@Stdconvs@_SCenturiesDescription", + "@Stdconvs@_SChainsDescription", + "@Stdconvs@_SCordFeetDescription", + "@Stdconvs@_SCordsDescription", + "@Stdconvs@_SCubicCentimetersDescription", + "@Stdconvs@_SCubicDecametersDescription", + "@Stdconvs@_SCubicDecimetersDescription", + "@Stdconvs@_SCubicFeetDescription", + "@Stdconvs@_SCubicHectometersDescription", + "@Stdconvs@_SCubicInchesDescription", + "@Stdconvs@_SCubicKilometersDescription", + "@Stdconvs@_SCubicMetersDescription", + "@Stdconvs@_SCubicMilesDescription", + "@Stdconvs@_SCubicMillimetersDescription", + "@Stdconvs@_SCubicYardsDescription", + "@Stdconvs@_SCubitsDescription", + "@Stdconvs@_SDateTimeDescription", + "@Stdconvs@_SDaysDescription", + "@Stdconvs@_SDecaLitersDescription", + "@Stdconvs@_SDecadesDescription", + "@Stdconvs@_SDecagramsDescription", + "@Stdconvs@_SDecametersDescription", + "@Stdconvs@_SDecasteresDescription", + "@Stdconvs@_SDeciLitersDescription", + "@Stdconvs@_SDecigramsDescription", + "@Stdconvs@_SDecimetersDescription", + "@Stdconvs@_SDecisteresDescription", + "@Stdconvs@_SDistanceDescription", + "@Stdconvs@_SDramsDescription", + "@Stdconvs@_SDryBucketsDescription", + "@Stdconvs@_SDryBushelsDescription", + "@Stdconvs@_SDryGallonsDescription", + "@Stdconvs@_SDryPecksDescription", + "@Stdconvs@_SDryPintsDescription", + "@Stdconvs@_SDryQuartsDescription", + "@Stdconvs@_SFahrenheitDescription", + "@Stdconvs@_SFathomsDescription", + "@Stdconvs@_SFeetDescription", + "@Stdconvs@_SFluidCupsDescription", + "@Stdconvs@_SFluidGallonsDescription", + "@Stdconvs@_SFluidGillsDescription", + "@Stdconvs@_SFluidOuncesDescription", + "@Stdconvs@_SFluidPintsDescription", + "@Stdconvs@_SFluidQuartsDescription", + "@Stdconvs@_SFluidTablespoonsDescription", + "@Stdconvs@_SFluidTeaspoonsDescription", + "@Stdconvs@_SFortnightsDescription", + "@Stdconvs@_SFurlongsDescription", + "@Stdconvs@_SGigametersDescription", + "@Stdconvs@_SGrainsDescription", + "@Stdconvs@_SGramsDescription", + "@Stdconvs@_SHandsDescription", + "@Stdconvs@_SHectaresDescription", + "@Stdconvs@_SHectoLitersDescription", + "@Stdconvs@_SHectogramsDescription", + "@Stdconvs@_SHectometersDescription", + "@Stdconvs@_SHoursDescription", + "@Stdconvs@_SInchesDescription", + "@Stdconvs@_SJulianDateDescription", + "@Stdconvs@_SKelvinDescription", + "@Stdconvs@_SKiloLitersDescription", + "@Stdconvs@_SKilogramsDescription", + "@Stdconvs@_SKilometersDescription", + "@Stdconvs@_SLightYearsDescription", + "@Stdconvs@_SLinksDescription", + "@Stdconvs@_SLitersDescription", + "@Stdconvs@_SLongTonsDescription", + "@Stdconvs@_SMassDescription", + "@Stdconvs@_SMegametersDescription", + "@Stdconvs@_SMetersDescription", + "@Stdconvs@_SMetricTonsDescription", + "@Stdconvs@_SMicrogramsDescription", + "@Stdconvs@_SMicromicronsDescription", + "@Stdconvs@_SMicronsDescription", + "@Stdconvs@_SMilesDescription", + "@Stdconvs@_SMillenniaDescription", + "@Stdconvs@_SMilliLitersDescription", + "@Stdconvs@_SMilliSecondsDescription", + "@Stdconvs@_SMilligramsDescription", + "@Stdconvs@_SMillimetersDescription", + "@Stdconvs@_SMillimicronsDescription", + "@Stdconvs@_SMinutesDescription", + "@Stdconvs@_SModifiedJulianDateDescription", + "@Stdconvs@_SMonthsDescription", + "@Stdconvs@_SNanogramsDescription", + "@Stdconvs@_SNauticalMilesDescription", + "@Stdconvs@_SOuncesDescription", + "@Stdconvs@_SPacesDescription", + "@Stdconvs@_SParsecsDescription", + "@Stdconvs@_SPicasDescription", + "@Stdconvs@_SPointsDescription", + "@Stdconvs@_SPoundsDescription", + "@Stdconvs@_SRankineDescription", + "@Stdconvs@_SReaumurDescription", + "@Stdconvs@_SRodsDescription", + "@Stdconvs@_SSecondsDescription", + "@Stdconvs@_SSquareCentimetersDescription", + "@Stdconvs@_SSquareDecametersDescription", + "@Stdconvs@_SSquareDecimetersDescription", + "@Stdconvs@_SSquareFeetDescription", + "@Stdconvs@_SSquareHectometersDescription", + "@Stdconvs@_SSquareInchesDescription", + "@Stdconvs@_SSquareKilometersDescription", + "@Stdconvs@_SSquareMetersDescription", + "@Stdconvs@_SSquareMilesDescription", + "@Stdconvs@_SSquareMillimetersDescription", + "@Stdconvs@_SSquareRodsDescription", + "@Stdconvs@_SSquareYardsDescription", + "@Stdconvs@_SSteresDescription", + "@Stdconvs@_STemperatureDescription", + "@Stdconvs@_STimeDescription", + "@Stdconvs@_STonsDescription", + "@Stdconvs@_SUKBucketsDescription", + "@Stdconvs@_SUKBushelsDescription", + "@Stdconvs@_SUKGallonsDescription", + "@Stdconvs@_SUKGillsDescription", + "@Stdconvs@_SUKOuncesDescription", + "@Stdconvs@_SUKPecksDescription", + "@Stdconvs@_SUKPintsDescription", + "@Stdconvs@_SUKPottlesDescription", + "@Stdconvs@_SUKQuartsDescription", + "@Stdconvs@_SVolumeDescription", + "@Stdconvs@_SWeeksDescription", + "@Stdconvs@_SYardsDescription", + "@Stdconvs@_SYearsDescription", + "@Stdconvs@auAcres", + "@Stdconvs@auAres", + "@Stdconvs@auCentares", + "@Stdconvs@auHectares", + "@Stdconvs@auSquareCentimeters", + "@Stdconvs@auSquareDecameters", + "@Stdconvs@auSquareDecimeters", + "@Stdconvs@auSquareFeet", + "@Stdconvs@auSquareHectometers", + "@Stdconvs@auSquareInches", + "@Stdconvs@auSquareKilometers", + "@Stdconvs@auSquareMeters", + "@Stdconvs@auSquareMiles", + "@Stdconvs@auSquareMillimeters", + "@Stdconvs@auSquareRods", + "@Stdconvs@auSquareYards", + "@Stdconvs@cbArea", + "@Stdconvs@cbDistance", + "@Stdconvs@cbMass", + "@Stdconvs@cbTemperature", + "@Stdconvs@cbTime", + "@Stdconvs@cbVolume", + "@Stdconvs@duAngstroms", + "@Stdconvs@duAstronomicalUnits", + "@Stdconvs@duCentimeters", + "@Stdconvs@duChains", + "@Stdconvs@duCubits", + "@Stdconvs@duDecameters", + "@Stdconvs@duDecimeters", + "@Stdconvs@duFathoms", + "@Stdconvs@duFeet", + "@Stdconvs@duFurlongs", + "@Stdconvs@duGigameters", + "@Stdconvs@duHands", + "@Stdconvs@duHectometers", + "@Stdconvs@duInches", + "@Stdconvs@duKilometers", + "@Stdconvs@duLightYears", + "@Stdconvs@duLinks", + "@Stdconvs@duMegameters", + "@Stdconvs@duMeters", + "@Stdconvs@duMicromicrons", + "@Stdconvs@duMicrons", + "@Stdconvs@duMiles", + "@Stdconvs@duMillimeters", + "@Stdconvs@duMillimicrons", + "@Stdconvs@duNauticalMiles", + "@Stdconvs@duPaces", + "@Stdconvs@duParsecs", + "@Stdconvs@duPicas", + "@Stdconvs@duPoints", + "@Stdconvs@duRods", + "@Stdconvs@duYards", + "@Stdconvs@initialization$qqrv", + "@Stdconvs@muCentigrams", + "@Stdconvs@muDecagrams", + "@Stdconvs@muDecigrams", + "@Stdconvs@muDrams", + "@Stdconvs@muGrains", + "@Stdconvs@muGrams", + "@Stdconvs@muHectograms", + "@Stdconvs@muKilograms", + "@Stdconvs@muLongTons", + "@Stdconvs@muMetricTons", + "@Stdconvs@muMicrograms", + "@Stdconvs@muMilligrams", + "@Stdconvs@muNanograms", + "@Stdconvs@muOunces", + "@Stdconvs@muPounds", + "@Stdconvs@muStones", + "@Stdconvs@muTons", + "@Stdconvs@tuCelsius", + "@Stdconvs@tuCenturies", + "@Stdconvs@tuDateTime", + "@Stdconvs@tuDays", + "@Stdconvs@tuDecades", + "@Stdconvs@tuFahrenheit", + "@Stdconvs@tuFortnights", + "@Stdconvs@tuHours", + "@Stdconvs@tuJulianDate", + "@Stdconvs@tuKelvin", + "@Stdconvs@tuMillennia", + "@Stdconvs@tuMilliSeconds", + "@Stdconvs@tuMinutes", + "@Stdconvs@tuModifiedJulianDate", + "@Stdconvs@tuMonths", + "@Stdconvs@tuRankine", + "@Stdconvs@tuReaumur", + "@Stdconvs@tuSeconds", + "@Stdconvs@tuWeeks", + "@Stdconvs@tuYears", + "@Stdconvs@vuAcreFeet", + "@Stdconvs@vuAcreInches", + "@Stdconvs@vuCentiLiters", + "@Stdconvs@vuCordFeet", + "@Stdconvs@vuCords", + "@Stdconvs@vuCubicCentimeters", + "@Stdconvs@vuCubicDecameters", + "@Stdconvs@vuCubicDecimeters", + "@Stdconvs@vuCubicFeet", + "@Stdconvs@vuCubicHectometers", + "@Stdconvs@vuCubicInches", + "@Stdconvs@vuCubicKilometers", + "@Stdconvs@vuCubicMeters", + "@Stdconvs@vuCubicMiles", + "@Stdconvs@vuCubicMillimeters", + "@Stdconvs@vuCubicYards", + "@Stdconvs@vuDecaLiters", + "@Stdconvs@vuDecasteres", + "@Stdconvs@vuDeciLiters", + "@Stdconvs@vuDecisteres", + "@Stdconvs@vuDryBuckets", + "@Stdconvs@vuDryBushels", + "@Stdconvs@vuDryGallons", + "@Stdconvs@vuDryPecks", + "@Stdconvs@vuDryPints", + "@Stdconvs@vuDryQuarts", + "@Stdconvs@vuFluidCups", + "@Stdconvs@vuFluidGallons", + "@Stdconvs@vuFluidGills", + "@Stdconvs@vuFluidOunces", + "@Stdconvs@vuFluidPints", + "@Stdconvs@vuFluidQuarts", + "@Stdconvs@vuFluidTablespoons", + "@Stdconvs@vuFluidTeaspoons", + "@Stdconvs@vuHectoLiters", + "@Stdconvs@vuKiloLiters", + "@Stdconvs@vuLiters", + "@Stdconvs@vuMilliLiters", + "@Stdconvs@vuSteres", + "@Stdconvs@vuUKBuckets", + "@Stdconvs@vuUKBushels", + "@Stdconvs@vuUKGallons", + "@Stdconvs@vuUKGills", + "@Stdconvs@vuUKOunces", + "@Stdconvs@vuUKPecks", + "@Stdconvs@vuUKPints", + "@Stdconvs@vuUKPottles", + "@Stdconvs@vuUKQuarts", + "@Stdvcl@Finalization$qqrv", + "@Stdvcl@IID_IDataBroker", + "@Stdvcl@IID_IProvider", + "@Stdvcl@IID_IStrings", + "@Stdvcl@LIBID_StdVCL", + "@Stdvcl@initialization$qqrv", + "@Strutils@AnsiContainsStr$qqrx17System@AnsiStringt1", + "@Strutils@AnsiContainsText$qqrx17System@AnsiStringt1", + "@Strutils@AnsiEndsStr$qqrx17System@AnsiStringt1", + "@Strutils@AnsiEndsText$qqrx17System@AnsiStringt1", + "@Strutils@AnsiIndexStr$qqrx17System@AnsiStringpx17System@AnsiStringxi", + "@Strutils@AnsiIndexText$qqrx17System@AnsiStringpx17System@AnsiStringxi", + "@Strutils@AnsiMatchStr$qqrx17System@AnsiStringpx17System@AnsiStringxi", + "@Strutils@AnsiMatchText$qqrx17System@AnsiStringpx17System@AnsiStringxi", + "@Strutils@AnsiReplaceStr$qqrx17System@AnsiStringt1t1", + "@Strutils@AnsiReplaceText$qqrx17System@AnsiStringt1t1", + "@Strutils@AnsiResemblesProc", + "@Strutils@AnsiResemblesText$qqrx17System@AnsiStringt1", + "@Strutils@AnsiStartsStr$qqrx17System@AnsiStringt1", + "@Strutils@AnsiStartsText$qqrx17System@AnsiStringt1", + "@Strutils@DecodeSoundexInt$qqri", + "@Strutils@DecodeSoundexWord$qqrus", + "@Strutils@DupeString$qqrx17System@AnsiStringi", + "@Strutils@Finalization$qqrv", + "@Strutils@IfThen$qqrox17System@AnsiStringt2", + "@Strutils@LeftStr$qqrx17System@AnsiStringxi", + "@Strutils@MidStr$qqrx17System@AnsiStringxixi", + "@Strutils@RandomFrom$qqrpx17System@AnsiStringxi", + "@Strutils@ReverseString$qqrx17System@AnsiString", + "@Strutils@RightStr$qqrx17System@AnsiStringxi", + "@Strutils@SearchBuf$qqrpciii17System@AnsiString55System@%Set$t27Strutils@TStringSeachOption$iuc$0$iuc$2%", + "@Strutils@Soundex$qqrx17System@AnsiStringi", + "@Strutils@SoundexCompare$qqrx17System@AnsiStringt1i", + "@Strutils@SoundexInt$qqrx17System@AnsiStringzc", + "@Strutils@SoundexProc$qqrx17System@AnsiStringt1", + "@Strutils@SoundexSimilar$qqrx17System@AnsiStringt1i", + "@Strutils@SoundexWord$qqrx17System@AnsiString", + "@Strutils@StuffString$qqrx17System@AnsiStringuiuit1", + "@Strutils@WordDelimiters", + "@Strutils@initialization$qqrv", + "@Syncobjs@Finalization$qqrv", + "@Syncobjs@TCriticalSection@", + "@Syncobjs@TCriticalSection@$bctr$qqrv", + "@Syncobjs@TCriticalSection@$bdtr$qqrv", + "@Syncobjs@TCriticalSection@Acquire$qqrv", + "@Syncobjs@TCriticalSection@Enter$qqrv", + "@Syncobjs@TCriticalSection@Leave$qqrv", + "@Syncobjs@TCriticalSection@Release$qqrv", + "@Syncobjs@TEvent@", + "@Syncobjs@TEvent@$bctr$qqrp20_SECURITY_ATTRIBUTESoox17System@AnsiString", + "@Syncobjs@TEvent@ResetEvent$qqrv", + "@Syncobjs@TEvent@SetEvent$qqrv", + "@Syncobjs@TEvent@WaitFor$qqrui", + "@Syncobjs@THandleObject@", + "@Syncobjs@THandleObject@$bdtr$qqrv", + "@Syncobjs@TSimpleEvent@", + "@Syncobjs@TSimpleEvent@$bctr$qqrv", + "@Syncobjs@TSynchroObject@", + "@Syncobjs@TSynchroObject@Acquire$qqrv", + "@Syncobjs@TSynchroObject@Release$qqrv", + "@Syncobjs@initialization$qqrv", + "@Sysconst@Finalization$qqrv", + "@Sysconst@_SAbstractError", + "@Sysconst@_SAccessDenied", + "@Sysconst@_SAccessViolation", + "@Sysconst@_SArgumentMissing", + "@Sysconst@_SAssertError", + "@Sysconst@_SAssertionFailed", + "@Sysconst@_SCannotCreateDir", + "@Sysconst@_SCannotReadPackageInfo", + "@Sysconst@_SControlC", + "@Sysconst@_SConvDuplicateFamily", + "@Sysconst@_SConvDuplicateType", + "@Sysconst@_SConvFactorZero", + "@Sysconst@_SConvIllegalFamily", + "@Sysconst@_SConvIllegalType", + "@Sysconst@_SConvIncompatibleTypes2", + "@Sysconst@_SConvIncompatibleTypes3", + "@Sysconst@_SConvIncompatibleTypes4", + "@Sysconst@_SConvUnknownDescription", + "@Sysconst@_SConvUnknownFamily", + "@Sysconst@_SConvUnknownType", + "@Sysconst@_SDateEncodeError", + "@Sysconst@_SDiskFull", + "@Sysconst@_SDispatchError", + "@Sysconst@_SDivByZero", + "@Sysconst@_SDuplicatePackageUnit", + "@Sysconst@_SEndOfFile", + "@Sysconst@_SExceptTitle", + "@Sysconst@_SException", + "@Sysconst@_SExternalException", + "@Sysconst@_SFileNotFound", + "@Sysconst@_SFormatTooLong", + "@Sysconst@_SInOutError", + "@Sysconst@_SIntOverflow", + "@Sysconst@_SIntfCastError", + "@Sysconst@_SInvalidBoolean", + "@Sysconst@_SInvalidCast", + "@Sysconst@_SInvalidCurrency", + "@Sysconst@_SInvalidDate", + "@Sysconst@_SInvalidDateTime", + "@Sysconst@_SInvalidDateTimeFloat", + "@Sysconst@_SInvalidFilename", + "@Sysconst@_SInvalidFloat", + "@Sysconst@_SInvalidFormat", + "@Sysconst@_SInvalidGUID", + "@Sysconst@_SInvalidInput", + "@Sysconst@_SInvalidInteger", + "@Sysconst@_SInvalidOp", + "@Sysconst@_SInvalidPackageFile", + "@Sysconst@_SInvalidPackageHandle", + "@Sysconst@_SInvalidPointer", + "@Sysconst@_SInvalidTime", + "@Sysconst@_SInvalidTimeStamp", + "@Sysconst@_SInvalidVarCast", + "@Sysconst@_SInvalidVarNullOp", + "@Sysconst@_SInvalidVarOp", + "@Sysconst@_SInvalidVarOpWithHResult", + "@Sysconst@_SLongDayNameFri", + "@Sysconst@_SLongDayNameMon", + "@Sysconst@_SLongDayNameSat", + "@Sysconst@_SLongDayNameSun", + "@Sysconst@_SLongDayNameThu", + "@Sysconst@_SLongDayNameTue", + "@Sysconst@_SLongDayNameWed", + "@Sysconst@_SLongMonthNameApr", + "@Sysconst@_SLongMonthNameAug", + "@Sysconst@_SLongMonthNameDec", + "@Sysconst@_SLongMonthNameFeb", + "@Sysconst@_SLongMonthNameJan", + "@Sysconst@_SLongMonthNameJul", + "@Sysconst@_SLongMonthNameJun", + "@Sysconst@_SLongMonthNameMar", + "@Sysconst@_SLongMonthNameMay", + "@Sysconst@_SLongMonthNameNov", + "@Sysconst@_SLongMonthNameOct", + "@Sysconst@_SLongMonthNameSep", + "@Sysconst@_SModuleAccessViolation", + "@Sysconst@_SNL", + "@Sysconst@_SOSError", + "@Sysconst@_SOperationAborted", + "@Sysconst@_SOutOfMemory", + "@Sysconst@_SOverflow", + "@Sysconst@_SPrivilege", + "@Sysconst@_SQuit", + "@Sysconst@_SRangeError", + "@Sysconst@_SReadAccess", + "@Sysconst@_SResultTooLong", + "@Sysconst@_SSafecallException", + "@Sysconst@_SShortDayNameFri", + "@Sysconst@_SShortDayNameMon", + "@Sysconst@_SShortDayNameSat", + "@Sysconst@_SShortDayNameSun", + "@Sysconst@_SShortDayNameThu", + "@Sysconst@_SShortDayNameTue", + "@Sysconst@_SShortDayNameWed", + "@Sysconst@_SShortMonthNameApr", + "@Sysconst@_SShortMonthNameAug", + "@Sysconst@_SShortMonthNameDec", + "@Sysconst@_SShortMonthNameFeb", + "@Sysconst@_SShortMonthNameJan", + "@Sysconst@_SShortMonthNameJul", + "@Sysconst@_SShortMonthNameJun", + "@Sysconst@_SShortMonthNameMar", + "@Sysconst@_SShortMonthNameMay", + "@Sysconst@_SShortMonthNameNov", + "@Sysconst@_SShortMonthNameOct", + "@Sysconst@_SShortMonthNameSep", + "@Sysconst@_SStackOverflow", + "@Sysconst@_STimeEncodeError", + "@Sysconst@_STooManyOpenFiles", + "@Sysconst@_SUnderflow", + "@Sysconst@_SUnkOSError", + "@Sysconst@_SUnkWin32Error", + "@Sysconst@_SUnknown", + "@Sysconst@_SVarArrayBounds", + "@Sysconst@_SVarArrayCreate", + "@Sysconst@_SVarArrayLocked", + "@Sysconst@_SVarBadType", + "@Sysconst@_SVarDataCastToRecursing", + "@Sysconst@_SVarDataClearRecursing", + "@Sysconst@_SVarDataCopyNoIndRecursing", + "@Sysconst@_SVarDataCopyRecursing", + "@Sysconst@_SVarDataInitRecursing", + "@Sysconst@_SVarInvalid", + "@Sysconst@_SVarIsEmpty", + "@Sysconst@_SVarNotArray", + "@Sysconst@_SVarNotImplemented", + "@Sysconst@_SVarOutOfMemory", + "@Sysconst@_SVarOverflow", + "@Sysconst@_SVarTypeAlreadyUsed", + "@Sysconst@_SVarTypeConvertOverflow", + "@Sysconst@_SVarTypeCouldNotConvert", + "@Sysconst@_SVarTypeNotUsable", + "@Sysconst@_SVarTypeOutOfRange", + "@Sysconst@_SVarTypeRangeCheck1", + "@Sysconst@_SVarTypeRangeCheck2", + "@Sysconst@_SVarTypeTooManyCustom", + "@Sysconst@_SVarTypeUnknown", + "@Sysconst@_SVarUnexpected", + "@Sysconst@_SWin32Error", + "@Sysconst@_SWriteAccess", + "@Sysconst@_SZeroDivide", + "@Sysconst@_sErrorLoadingPackage", + "@Sysconst@_sUnknownFromType", + "@Sysconst@_sUnknownToType", + "@Sysconst@initialization$qqrv", + "@System@@AStrCmp$qqrv", + "@System@@AbstractError$qqrv", + "@System@@AddRef$qqrv", + "@System@@AddRefArray$qqrv", + "@System@@AddRefRecord$qqrv", + "@System@@AfterConstruction$qqrp14System@TObject", + "@System@@Append$qqrr15System@TTextRec", + "@System@@AsClass$qqrp14System@TObjectp17System@TMetaClass", + "@System@@Assert$qqrx17System@AnsiStringt1i", + "@System@@Assign$qqrr15System@TTextRecx17System@AnsiString", + "@System@@BeforeDestruction$qqrp14System@TObjectzc", + "@System@@BlockRead$qqrr15System@TFileRecpviri", + "@System@@BlockWrite$qqrr15System@TFileRecpviri", + "@System@@BoundErr$qqrv", + "@System@@COS$qqrv", + "@System@@CallDynaClass$qqrv", + "@System@@CallDynaInst$qqrv", + "@System@@CheckAutoResult$qqrl", + "@System@@ClassCreate$qqrp17System@TMetaClasso", + "@System@@ClassDestroy$qqrp14System@TObject", + "@System@@Close$qqrr15System@TTextRec", + "@System@@Copy$qqrv", + "@System@@CopyArray$qqrv", + "@System@@CopyObject$qqrv", + "@System@@CopyRecord$qqrv", + "@System@@Delete$qqrv", + "@System@@DispInvoke$qv", + "@System@@Dispose$qqrpvt1", + "@System@@DoneExcept$qqrv", + "@System@@DynArrayAddRef$qqrv", + "@System@@DynArrayAsg$qqrv", + "@System@@DynArrayClear$qqrrpvpv", + "@System@@DynArrayCopy$qqrpvt1rpv", + "@System@@DynArrayCopyRange$qqrpvt1iirpv", + "@System@@DynArrayHigh$qqrv", + "@System@@DynArrayLength$qqrv", + "@System@@DynArraySetLength$qqrv", + "@System@@EXP$qqrv", + "@System@@EofFile$qqrr15System@TFileRec", + "@System@@EofText$qqrr15System@TTextRec", + "@System@@Eoln$qqrr15System@TTextRec", + "@System@@Erase$qqrr15System@TFileRec", + "@System@@Ext2Real$qqrv", + "@System@@FRAC$qqrv", + "@System@@FSafeDivide$qqrv", + "@System@@FSafeDivideR$qqrv", + "@System@@Fail$qqrv", + "@System@@FilePos$qqrr15System@TFileRec", + "@System@@FileSize$qqrr15System@TFileRec", + "@System@@FillChar$qqrpvic", + "@System@@Finalize$qqrpvt1", + "@System@@FinalizeArray$qqrpvt1ui", + "@System@@FinalizeRecord$qqrpvt1", + "@System@@FindDynaClass$qqrv", + "@System@@FindDynaInst$qqrv", + "@System@@Flush$qqrr15System@TTextRec", + "@System@@FreeMem$qqrpv", + "@System@@GetMem$qqri", + "@System@@Halt$qqri", + "@System@@Halt0$qqrv", + "@System@@HandleAnyException$qqrv", + "@System@@HandleAutoException$qqrv", + "@System@@HandleFinally$qqrv", + "@System@@HandleOnException$qqrv", + "@System@@INT$qqrv", + "@System@@InitImports$qqrv", + "@System@@InitResStringImports$qqrv", + "@System@@InitResStrings$qqrv", + "@System@@InitWideStrings$qqrv", + "@System@@Initialize$qqrpvt1", + "@System@@InitializeArray$qqrpvt1ui", + "@System@@InitializeRecord$qqrpvt1", + "@System@@Insert$qqrv", + "@System@@IntOver$qqrv", + "@System@@IntfAddRef$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@System@@IntfCast$qqrr45System@%DelphiInterface$t17System@IInterface%x45System@%DelphiInterface$t17System@IInterface%rx5_GUID", + "@System@@IntfClear$qqrr45System@%DelphiInterface$t17System@IInterface%", + "@System@@IntfCopy$qqrr45System@%DelphiInterface$t17System@IInterface%x45System@%DelphiInterface$t17System@IInterface%", + "@System@@IntfDispCall$qv", + "@System@@IntfVarCall$qv", + "@System@@IsClass$qqrp14System@TObjectp17System@TMetaClass", + "@System@@LGetDir$qqrucr17System@AnsiString", + "@System@@LStrAddRef$qqrpv", + "@System@@LStrArrayClr$qqrpvi", + "@System@@LStrAsg$qqrpvpxv", + "@System@@LStrCat$qqrv", + "@System@@LStrCat3$qqrv", + "@System@@LStrCatN$qqrv", + "@System@@LStrClr$qqrpv", + "@System@@LStrCmp$qqrv", + "@System@@LStrCopy$qqrv", + "@System@@LStrDelete$qqrv", + "@System@@LStrFromArray$qqrr17System@AnsiStringpci", + "@System@@LStrFromChar$qqrr17System@AnsiStringc", + "@System@@LStrFromPChar$qqrr17System@AnsiStringpc", + "@System@@LStrFromPCharLen$qqrr17System@AnsiStringpci", + "@System@@LStrFromPWChar$qqrr17System@AnsiStringpb", + "@System@@LStrFromPWCharLen$qqrr17System@AnsiStringpbi", + "@System@@LStrFromString$qqrr17System@AnsiStringrx28System@%SmallString$iuc$255%", + "@System@@LStrFromWArray$qqrr17System@AnsiStringpbi", + "@System@@LStrFromWChar$qqrr17System@AnsiStringb", + "@System@@LStrFromWStr$qqrr17System@AnsiStringx17System@WideString", + "@System@@LStrInsert$qqrv", + "@System@@LStrLAsg$qqrpvpxv", + "@System@@LStrLen$qqrx17System@AnsiString", + "@System@@LStrOfChar$qqrv", + "@System@@LStrPos$qqrv", + "@System@@LStrSetLength$qqrv", + "@System@@LStrToPChar$qqrx17System@AnsiString", + "@System@@LStrToString$qqrv", + "@System@@New$qqripv", + "@System@@NewAnsiString$qqri", + "@System@@NewWideString$qqri", + "@System@@ObjCopy$qqrv", + "@System@@ObjSetup$qqrv", + "@System@@OleVarFromInt$qqrr17System@OleVariantxixi", + "@System@@OleVarFromLStr$qqrr17System@OleVariantx17System@AnsiString", + "@System@@OleVarFromPStr$qqrr17System@OleVariantrx28System@%SmallString$iuc$255%", + "@System@@OleVarFromVar$qqrr17System@OleVariantrx14System@Variant", + "@System@@PStrCat$qqrv", + "@System@@PStrCmp$qqrv", + "@System@@PStrCpy$qqrp28System@%SmallString$iuc$255%t1", + "@System@@PStrNCat$qqrv", + "@System@@PStrNCpy$qqrp28System@%SmallString$iuc$255%t1uc", + "@System@@PackageLoad$qqrpx23System@PackageInfoTablep17System@TLibModule", + "@System@@PackageUnload$qqrpx23System@PackageInfoTablep17System@TLibModule", + "@System@@Pos$qqrv", + "@System@@Pow10$qqrv", + "@System@@ROUND$qqrv", + "@System@@RaiseAgain$qqrv", + "@System@@RaiseExcept$qqrv", + "@System@@RandExt$qqrv", + "@System@@RandInt$qqrv", + "@System@@ReadCString$qqrr15System@TTextRecpci", + "@System@@ReadChar$qqrr15System@TTextRec", + "@System@@ReadExt$qqrr15System@TTextRec", + "@System@@ReadInt64$qqrv", + "@System@@ReadLString$qqrr15System@TTextRecr17System@AnsiString", + "@System@@ReadLn$qqrr15System@TTextRec", + "@System@@ReadLong$qqrr15System@TTextRec", + "@System@@ReadRec$qqrr15System@TFileRecpv", + "@System@@ReadString$qqrr15System@TTextRecp28System@%SmallString$iuc$255%i", + "@System@@ReadWCString$qqrr15System@TTextRecpbi", + "@System@@ReadWChar$qqrr15System@TTextRec", + "@System@@ReadWString$qqrr15System@TTextRecr17System@WideString", + "@System@@Real2Ext$qqrv", + "@System@@ReallocMem$qqrrpvi", + "@System@@Rename$qqrr15System@TFileRecpc", + "@System@@ResetFile$qqrr15System@TFileReci", + "@System@@ResetText$qqrr15System@TTextRec", + "@System@@RewritFile$qqrr15System@TFileReci", + "@System@@RewritText$qqrr15System@TTextRec", + "@System@@Run0Error$qqrv", + "@System@@RunError$qqruc", + "@System@@SGetDir$qqrucr28System@%SmallString$iuc$255%xi", + "@System@@SIN$qqrv", + "@System@@Seek$qqrr15System@TFileRecui", + "@System@@SeekEof$qqrr15System@TTextRec", + "@System@@SeekEoln$qqrr15System@TTextRec", + "@System@@SetElem$qqrv", + "@System@@SetEq$qqrv", + "@System@@SetExpand$qqrv", + "@System@@SetIntersect$qqrv", + "@System@@SetIntersect3$qqrv", + "@System@@SetLe$qqrv", + "@System@@SetLength$qqrp28System@%SmallString$iuc$255%uc", + "@System@@SetRange$qqrv", + "@System@@SetString$qqrp28System@%SmallString$iuc$255%pcuc", + "@System@@SetSub$qqrv", + "@System@@SetSub3$qqrv", + "@System@@SetTextBuf$qqrr15System@TTextRecpvi", + "@System@@SetUnion$qqrv", + "@System@@SetUnion3$qqrv", + "@System@@StartExe$qqrp23System@PackageInfoTablep17System@TLibModule", + "@System@@StartLib$qqrv", + "@System@@Str0Ext$qqrv", + "@System@@Str0Int64$qqrj", + "@System@@Str0Long$qqrip28System@%SmallString$iuc$255%", + "@System@@Str1Ext$qqrv", + "@System@@Str2Ext$qqrv", + "@System@@StrInt64$qqrji", + "@System@@StrLong$qqriip28System@%SmallString$iuc$255%", + "@System@@TRUNC$qqrv", + "@System@@Truncate$qqrr15System@TFileRec", + "@System@@TryFinallyExit$qqrv", + "@System@@UniqueStringA$qqrr17System@AnsiString", + "@System@@UniqueStringW$qqrr17System@WideString", + "@System@@ValExt$qqrv", + "@System@@ValInt64$qqrx17System@AnsiStringri", + "@System@@ValLong$qqrx17System@AnsiStringri", + "@System@@VarAdd$qqrr14System@Variantrx14System@Variant", + "@System@@VarAddRef$qqrr14System@Variant", + "@System@@VarAnd$qqrr14System@Variantrx14System@Variant", + "@System@@VarArrayGet$qr14System@Variantii", + "@System@@VarArrayPut$qr14System@Variantrx14System@Variantii", + "@System@@VarArrayRedim$qqrr14System@Varianti", + "@System@@VarCast$qqrr14System@Variantrx14System@Varianti", + "@System@@VarCastOle$qqrr14System@Variantrx14System@Varianti", + "@System@@VarClear$qqrr14System@Variant", + "@System@@VarClr$qqrr14System@Variant", + "@System@@VarCmpEQ$qqrrx14System@Variantt1", + "@System@@VarCmpGE$qqrrx14System@Variantt1", + "@System@@VarCmpGT$qqrrx14System@Variantt1", + "@System@@VarCmpLE$qqrrx14System@Variantt1", + "@System@@VarCmpLT$qqrrx14System@Variantt1", + "@System@@VarCmpNE$qqrrx14System@Variantt1", + "@System@@VarCopy$qqrr14System@Variantrx14System@Variant", + "@System@@VarCopyNoInd$qqrv", + "@System@@VarDiv$qqrr14System@Variantrx14System@Variant", + "@System@@VarFromBool$qqrr14System@Variantxo", + "@System@@VarFromCurr$qqrv", + "@System@@VarFromDisp$qqrr14System@Variantx36System@%DelphiInterface$t9IDispatch%", + "@System@@VarFromDynArray$qqrr14System@Variantpxvpv", + "@System@@VarFromInt$qqrr14System@Variantxixi", + "@System@@VarFromInt64$qqrr14System@Variantxj", + "@System@@VarFromIntf$qqrr14System@Variantx45System@%DelphiInterface$t17System@IInterface%", + "@System@@VarFromLStr$qqrr14System@Variantx17System@AnsiString", + "@System@@VarFromPStr$qqrr14System@Variantrx28System@%SmallString$iuc$255%", + "@System@@VarFromReal$qqrv", + "@System@@VarFromTDateTime$qqrv", + "@System@@VarFromWStr$qqrr14System@Variantx17System@WideString", + "@System@@VarMod$qqrr14System@Variantrx14System@Variant", + "@System@@VarMul$qqrr14System@Variantrx14System@Variant", + "@System@@VarNeg$qqrr14System@Variant", + "@System@@VarNot$qqrr14System@Variant", + "@System@@VarOr$qqrr14System@Variantrx14System@Variant", + "@System@@VarRDiv$qqrr14System@Variantrx14System@Variant", + "@System@@VarShl$qqrr14System@Variantrx14System@Variant", + "@System@@VarShr$qqrr14System@Variantrx14System@Variant", + "@System@@VarSub$qqrr14System@Variantrx14System@Variant", + "@System@@VarToBool$qqrrx14System@Variant", + "@System@@VarToCurr$qqrrx14System@Variant", + "@System@@VarToDisp$qqrr36System@%DelphiInterface$t9IDispatch%rx14System@Variant", + "@System@@VarToDynArray$qqrrpvrx14System@Variantpv", + "@System@@VarToInt$qqrrx14System@Variant", + "@System@@VarToInt64$qqrrx14System@Variant", + "@System@@VarToIntf$qqrr45System@%DelphiInterface$t17System@IInterface%rx14System@Variant", + "@System@@VarToLStr$qqrr17System@AnsiStringrx14System@Variant", + "@System@@VarToPStr$qqrpvrx14System@Variant", + "@System@@VarToReal$qqrrx14System@Variant", + "@System@@VarToWStr$qqrr17System@WideStringrx14System@Variant", + "@System@@VarXor$qqrr14System@Variantrx14System@Variant", + "@System@@WStrAddRef$qqrr17System@WideString", + "@System@@WStrArrayClr$qqrpvi", + "@System@@WStrAsg$qqrr17System@WideStringx17System@WideString", + "@System@@WStrCat$qqrr17System@WideStringx17System@WideString", + "@System@@WStrCat3$qqrr17System@WideStringx17System@WideStringt2", + "@System@@WStrCatN$qqrv", + "@System@@WStrClr$qqrpv", + "@System@@WStrCmp$qqrv", + "@System@@WStrCopy$qqrx17System@WideStringii", + "@System@@WStrDelete$qqrr17System@WideStringii", + "@System@@WStrFromArray$qqrr17System@WideStringpci", + "@System@@WStrFromChar$qqrr17System@WideStringc", + "@System@@WStrFromLStr$qqrr17System@WideStringx17System@AnsiString", + "@System@@WStrFromPChar$qqrr17System@WideStringpc", + "@System@@WStrFromPCharLen$qqrr17System@WideStringpci", + "@System@@WStrFromPWChar$qqrr17System@WideStringpb", + "@System@@WStrFromPWCharLen$qqrr17System@WideStringpbi", + "@System@@WStrFromString$qqrr17System@WideStringrx28System@%SmallString$iuc$255%", + "@System@@WStrFromWArray$qqrr17System@WideStringpbi", + "@System@@WStrFromWChar$qqrr17System@WideStringb", + "@System@@WStrInsert$qqrx17System@WideStringr17System@WideStringi", + "@System@@WStrLAsg$qqrr17System@WideStringx17System@WideString", + "@System@@WStrLen$qqrx17System@WideString", + "@System@@WStrOfWChar$qqrbi", + "@System@@WStrPos$qqrv", + "@System@@WStrSetLength$qqrr17System@WideStringi", + "@System@@WStrToPWChar$qqrx17System@WideString", + "@System@@WStrToString$qqrp28System@%SmallString$iuc$255%x17System@WideStringi", + "@System@@Write0Bool$qqrr15System@TTextReco", + "@System@@Write0CString$qqrr15System@TTextRecpc", + "@System@@Write0Char$qqrr15System@TTextRecc", + "@System@@Write0Ext$qqrv", + "@System@@Write0Int64$qqrv", + "@System@@Write0LString$qqrr15System@TTextRecx17System@AnsiString", + "@System@@Write0Long$qqrr15System@TTextReci", + "@System@@Write0String$qqrr15System@TTextRecrx28System@%SmallString$iuc$255%", + "@System@@Write0Variant$qqrrpvrx14System@Variant", + "@System@@Write0WCString$qqrr15System@TTextRecpb", + "@System@@Write0WChar$qqrr15System@TTextRecb", + "@System@@Write0WString$qqrr15System@TTextRecx17System@WideString", + "@System@@Write1Ext$qqrv", + "@System@@Write2Ext$qqrv", + "@System@@WriteBool$qqrr15System@TTextRecoi", + "@System@@WriteCString$qqrr15System@TTextRecpci", + "@System@@WriteChar$qqrr15System@TTextRecci", + "@System@@WriteInt64$qqrv", + "@System@@WriteLString$qqrr15System@TTextRecx17System@AnsiStringi", + "@System@@WriteLn$qqrr15System@TTextRec", + "@System@@WriteLong$qqrr15System@TTextRecii", + "@System@@WriteRec$qqrr15System@TFileRecpv", + "@System@@WriteString$qqrr15System@TTextRecrx28System@%SmallString$iuc$255%i", + "@System@@WriteVariant$qqrrpvrx14System@Varianti", + "@System@@WriteWCString$qqrr15System@TTextRecpbi", + "@System@@WriteWChar$qqrr15System@TTextRecbi", + "@System@@WriteWString$qqrr15System@TTextRecx17System@WideStringi", + "@System@@_ArrayToPasStr$qqrp28System@%SmallString$iuc$255%pxci", + "@System@@_CLenToPasStr$qqrp28System@%SmallString$iuc$255%pxci", + "@System@@_CToPasStr$qqrp28System@%SmallString$iuc$255%pxc", + "@System@@_IOTest$qqrv", + "@System@@_PasToCStr$qqrpx28System@%SmallString$iuc$255%pxc", + "@System@@_lldiv$qqrv", + "@System@@_lldivo$qqrv", + "@System@@_llmod$qqrv", + "@System@@_llmodo$qqrv", + "@System@@_llmul$qqrv", + "@System@@_llmulo$qqrv", + "@System@@_llshl$qqrv", + "@System@@_lludiv$qqrv", + "@System@@_llumod$qqrv", + "@System@@_llushr$qqrv", + "@System@AbstractErrorProc", + "@System@AcquireExceptionObject$qqrv", + "@System@AddModuleUnloadProc$qqrpqqri$v", + "@System@AddModuleUnloadProc$qqrpqqrui$v", + "@System@AllocMemCount", + "@System@AllocMemSize", + "@System@AnsiToUtf8$qqrx17System@AnsiString", + "@System@AssertErrorProc", + "@System@BeginThread$qqrpvuipqqrpv$it1uirui", + "@System@ChDir$qqrpc", + "@System@ChDir$qqrx17System@AnsiString", + "@System@CmdLine", + "@System@CmdShow", + "@System@CompToCurrency$q11System@Comp", + "@System@CompToDouble$q11System@Comp", + "@System@CurrencyToComp$q15System@Currencyr11System@Comp", + "@System@DebugHook", + "@System@Default8087CW", + "@System@DefaultTextLineBreakStyle", + "@System@DispCallByIDProc", + "@System@DoubleToComp$qdr11System@Comp", + "@System@DynArrayClear$qqrrpvpv", + "@System@DynArrayDim$qqrp17TDynArrayTypeInfo", + "@System@DynArraySetLength$qqrrpvpvipi", + "@System@EndThread$qqri", + "@System@EnumModules$qqrpqqripv$opv", + "@System@EnumModules$qqrpqqruipv$opv", + "@System@EnumResourceModules$qqrpqqripv$opv", + "@System@EnumResourceModules$qqrpqqruipv$opv", + "@System@ErrOutput", + "@System@Error$qqr20System@TRuntimeError", + "@System@ErrorAddr", + "@System@ErrorProc", + "@System@ExceptAddr$qqrv", + "@System@ExceptClsProc", + "@System@ExceptObjProc", + "@System@ExceptObject$qqrv", + "@System@ExceptProc", + "@System@ExceptionClass", + "@System@ExitCode", + "@System@ExitProc", + "@System@ExitProcessProc", + "@System@FPower10$qqrv", + "@System@FileMode", + "@System@Finalization$qqrv", + "@System@FindClassHInstance$qqrp17System@TMetaClass", + "@System@FindHInstance$qqrpv", + "@System@FindResourceHInstance$qqrui", + "@System@Flush$qqrrpv", + "@System@FreeMemory$qpv", + "@System@Get8087CW$qqrv", + "@System@GetHeapStatus$qqrv", + "@System@GetMemory$qi", + "@System@GetMemoryManager$qqrr21System@TMemoryManager", + "@System@GetVariantManager$qqrr15TVariantManager", + "@System@HPrevInst", + "@System@HeapAllocFlags", + "@System@IOResult$qqrv", + "@System@InitProc", + "@System@Input", + "@System@IsConsole", + "@System@IsLibrary", + "@System@IsMemoryManagerSet$qqrv", + "@System@IsMultiThread", + "@System@IsVariantManagerSet$qqrv", + "@System@JITEnable", + "@System@LibModuleList", + "@System@LoadResString$qqrp20System@TResStringRec", + "@System@LoadResourceModule$qqrpco", + "@System@MainInstance", + "@System@MainThreadID", + "@System@Mark$qqrv", + "@System@MkDir$qqrpc", + "@System@MkDir$qqrx17System@AnsiString", + "@System@ModuleUnloadList", + "@System@Move$qqrpxvpvi", + "@System@NoErrMsg", + "@System@OleStrToStrVar$qqrpbr17System@AnsiString", + "@System@OleStrToString$qqrpb", + "@System@Output", + "@System@PUCS4Chars$qqrx25System@%DynamicArray$tui%", + "@System@ParamCount$qqrv", + "@System@ParamStr$qqri", + "@System@RTLUnwindProc", + "@System@RaiseExceptionProc", + "@System@RaiseList$qqrv", + "@System@RandSeed", + "@System@Randomize$qqrv", + "@System@ReallocMemory$qpvi", + "@System@RegisterModule$qqrp17System@TLibModule", + "@System@Release$qqrv", + "@System@ReleaseExceptionObject$qqrv", + "@System@RemoveModuleUnloadProc$qqrpqqri$v", + "@System@RemoveModuleUnloadProc$qqrpqqrui$v", + "@System@RmDir$qqrpc", + "@System@RmDir$qqrx17System@AnsiString", + "@System@SafeCallErrorProc", + "@System@Set8087CW$qqrus", + "@System@SetInOutRes$qqri", + "@System@SetLineBreakStyle$qqrrpv26System@TTextLineBreakStyle", + "@System@SetMemoryManager$qqrrx21System@TMemoryManager", + "@System@SetRaiseList$qqrpv", + "@System@SetVariantManager$qqrrx15TVariantManager", + "@System@StringToOleStr$qqrx17System@AnsiString", + "@System@StringToWideChar$qqrx17System@AnsiStringpbi", + "@System@SysFreeMem$qqrpv", + "@System@SysGetMem$qqri", + "@System@SysReallocMem$qqrpvi", + "@System@TAggregatedObject@", + "@System@TAggregatedObject@$bctr$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@System@TAggregatedObject@GetController$qqrv", + "@System@TAggregatedObject@QueryInterface$qqsrx5_GUIDpv", + "@System@TAggregatedObject@_AddRef$qqsv", + "@System@TAggregatedObject@_Release$qqsv", + "@System@TContainedObject@", + "@System@TContainedObject@QueryInterface$qqsrx5_GUIDpv", + "@System@TInterfacedObject@", + "@System@TInterfacedObject@AfterConstruction$qqrv", + "@System@TInterfacedObject@BeforeDestruction$qqrv", + "@System@TInterfacedObject@NewInstance$qqrp17System@TMetaClass", + "@System@TInterfacedObject@QueryInterface$qqsrx5_GUIDpv", + "@System@TInterfacedObject@_AddRef$qqsv", + "@System@TInterfacedObject@_Release$qqsv", + "@System@TObject@", + "@System@TObject@$bctr$qqrv", + "@System@TObject@$bdtr$qqrv", + "@System@TObject@AfterConstruction$qqrv", + "@System@TObject@BeforeDestruction$qqrv", + "@System@TObject@ClassInfo$qqrp17System@TMetaClass", + "@System@TObject@ClassName$qqrp17System@TMetaClass", + "@System@TObject@ClassNameIs$qqrp17System@TMetaClassx17System@AnsiString", + "@System@TObject@ClassParent$qqrp17System@TMetaClass", + "@System@TObject@ClassType$qqrv", + "@System@TObject@CleanupInstance$qqrv", + "@System@TObject@DefaultHandler$qqrpv", + "@System@TObject@Dispatch$qqrpv", + "@System@TObject@FieldAddress$qqrrx28System@%SmallString$iuc$255%", + "@System@TObject@Free$qqrv", + "@System@TObject@FreeInstance$qqrv", + "@System@TObject@GetInterface$qqrrx5_GUIDpv", + "@System@TObject@GetInterfaceEntry$qqrp17System@TMetaClassrx5_GUID", + "@System@TObject@GetInterfaceTable$qqrp17System@TMetaClass", + "@System@TObject@InheritsFrom$qqrp17System@TMetaClasst1", + "@System@TObject@InitInstance$qqrp17System@TMetaClasspv", + "@System@TObject@InstanceSize$qqrp17System@TMetaClass", + "@System@TObject@MethodAddress$qqrp17System@TMetaClassrx28System@%SmallString$iuc$255%", + "@System@TObject@MethodName$qqrp17System@TMetaClasspv", + "@System@TObject@NewInstance$qqrp17System@TMetaClass", + "@System@TObject@SafeCallException$qqrp14System@TObjectpv", + "@System@Test8086", + "@System@Test8087", + "@System@TestFDIV", + "@System@TextStart$qqrv", + "@System@UCS4StringToWideString$qqrx25System@%DynamicArray$tui%", + "@System@UTF8Decode$qqrx17System@AnsiString", + "@System@UTF8Encode$qqrx17System@WideString", + "@System@UnicodeToUtf8$qqrpcpbi", + "@System@UnicodeToUtf8$qqrpcuipbui", + "@System@UniqueString$qqrr17System@AnsiString", + "@System@UniqueString$qqrr17System@WideString", + "@System@UnregisterModule$qqrp17System@TLibModule", + "@System@UpCase$qqrc", + "@System@Utf8ToAnsi$qqrx17System@AnsiString", + "@System@Utf8ToUnicode$qqrpbpci", + "@System@Utf8ToUnicode$qqrpbuipcui", + "@System@WideCharLenToStrVar$qqrpbir17System@AnsiString", + "@System@WideCharLenToString$qqrpbi", + "@System@WideCharToStrVar$qqrpbr17System@AnsiString", + "@System@WideCharToString$qqrpb", + "@System@WideStringToUCS4String$qqrx17System@WideString", + "@System@envp", + "@System@initialization$qqrv", + "@Sysutils@Abort$qqrv", + "@Sysutils@AddExitProc$qqrpqqrv$v", + "@Sysutils@AddTerminateProc$qqrpqqrv$o", + "@Sysutils@AdjustLineBreaks$qqrx17System@AnsiString26System@TTextLineBreakStyle", + "@Sysutils@AllocMem$qqrui", + "@Sysutils@AnsiCompareFileName$qqrx17System@AnsiStringt1", + "@Sysutils@AnsiCompareStr$qqrx17System@AnsiStringt1", + "@Sysutils@AnsiCompareText$qqrx17System@AnsiStringt1", + "@Sysutils@AnsiDequotedStr$qqrx17System@AnsiStringc", + "@Sysutils@AnsiExtractQuotedStr$qqrrpcc", + "@Sysutils@AnsiLastChar$qqrx17System@AnsiString", + "@Sysutils@AnsiLowerCase$qqrx17System@AnsiString", + "@Sysutils@AnsiLowerCaseFileName$qqrx17System@AnsiString", + "@Sysutils@AnsiPos$qqrx17System@AnsiStringt1", + "@Sysutils@AnsiQuotedStr$qqrx17System@AnsiStringc", + "@Sysutils@AnsiSameStr$qqrx17System@AnsiStringt1", + "@Sysutils@AnsiSameText$qqrx17System@AnsiStringt1", + "@Sysutils@AnsiStrComp$qqrpct1", + "@Sysutils@AnsiStrIComp$qqrpct1", + "@Sysutils@AnsiStrLComp$qqrpct1ui", + "@Sysutils@AnsiStrLIComp$qqrpct1ui", + "@Sysutils@AnsiStrLastChar$qqrpc", + "@Sysutils@AnsiStrLower$qqrpc", + "@Sysutils@AnsiStrPos$qqrpct1", + "@Sysutils@AnsiStrRScan$qqrpcc", + "@Sysutils@AnsiStrScan$qqrpcc", + "@Sysutils@AnsiStrUpper$qqrpc", + "@Sysutils@AnsiUpperCase$qqrx17System@AnsiString", + "@Sysutils@AnsiUpperCaseFileName$qqrx17System@AnsiString", + "@Sysutils@AppendStr$qqrr17System@AnsiStringx17System@AnsiString", + "@Sysutils@AssignStr$qqrrp17System@AnsiStringx17System@AnsiString", + "@Sysutils@Beep$qqrv", + "@Sysutils@BoolToStr$qqroo", + "@Sysutils@ByteToCharIndex$qqrx17System@AnsiStringi", + "@Sysutils@ByteToCharLen$qqrx17System@AnsiStringi", + "@Sysutils@ByteType$qqrx17System@AnsiStringi", + "@Sysutils@CallTerminateProcs$qqrv", + "@Sysutils@ChangeFileExt$qqrx17System@AnsiStringt1", + "@Sysutils@CharLength$qqrx17System@AnsiStringi", + "@Sysutils@CharToByteIndex$qqrx17System@AnsiStringi", + "@Sysutils@CharToByteLen$qqrx17System@AnsiStringi", + "@Sysutils@CheckWin32Version$qqrii", + "@Sysutils@CompareMem$qqrpvt1i", + "@Sysutils@CompareStr$qqrx17System@AnsiStringt1", + "@Sysutils@CompareText$qqrx17System@AnsiStringt1", + "@Sysutils@CreateDir$qqrx17System@AnsiString", + "@Sysutils@CreateGUID$qqsr5_GUID", + "@Sysutils@CurrToStr$qqr15System@Currency", + "@Sysutils@CurrToStrF$qqr15System@Currency21Sysutils@TFloatFormati", + "@Sysutils@CurrencyDecimals", + "@Sysutils@CurrencyFormat", + "@Sysutils@CurrencyString", + "@Sysutils@CurrentYear$qqrv", + "@Sysutils@Date$qqrv", + "@Sysutils@DateSeparator", + "@Sysutils@DateTimeToFileDate$qqr16System@TDateTime", + "@Sysutils@DateTimeToStr$qqrx16System@TDateTime", + "@Sysutils@DateTimeToString$qqrr17System@AnsiStringx17System@AnsiString16System@TDateTime", + "@Sysutils@DateTimeToSystemTime$qqrx16System@TDateTimer11_SYSTEMTIME", + "@Sysutils@DateTimeToTimeStamp$qqr16System@TDateTime", + "@Sysutils@DateToStr$qqrx16System@TDateTime", + "@Sysutils@DayOfWeek$qqrx16System@TDateTime", + "@Sysutils@DecimalSeparator", + "@Sysutils@DecodeDate$qqrx16System@TDateTimerust2t2", + "@Sysutils@DecodeDateFully$qqrx16System@TDateTimerust2t2t2", + "@Sysutils@DecodeTime$qqrx16System@TDateTimerust2t2t2", + "@Sysutils@DeleteFile$qqrx17System@AnsiString", + "@Sysutils@DirectoryExists$qqrx17System@AnsiString", + "@Sysutils@DiskFree$qqruc", + "@Sysutils@DiskSize$qqruc", + "@Sysutils@DisposeStr$qqrp17System@AnsiString", + "@Sysutils@EAbort@", + "@Sysutils@EAbstractError@", + "@Sysutils@EAccessViolation@", + "@Sysutils@EAssertionFailed@", + "@Sysutils@EControlC@", + "@Sysutils@EConvertError@", + "@Sysutils@EDivByZero@", + "@Sysutils@EExternal@", + "@Sysutils@EExternalException@", + "@Sysutils@EHeapException@", + "@Sysutils@EHeapException@FreeInstance$qqrv", + "@Sysutils@EInOutError@", + "@Sysutils@EIntError@", + "@Sysutils@EIntOverflow@", + "@Sysutils@EIntfCastError@", + "@Sysutils@EInvalidCast@", + "@Sysutils@EInvalidContainer@", + "@Sysutils@EInvalidInsert@", + "@Sysutils@EInvalidOp@", + "@Sysutils@EInvalidPointer@", + "@Sysutils@EMathError@", + "@Sysutils@EOSError@", + "@Sysutils@EOutOfMemory@", + "@Sysutils@EOverflow@", + "@Sysutils@EPackageError@", + "@Sysutils@EPrivilege@", + "@Sysutils@EPropReadOnly@", + "@Sysutils@EPropWriteOnly@", + "@Sysutils@ERangeError@", + "@Sysutils@ESafecallException@", + "@Sysutils@EStackOverflow@", + "@Sysutils@EUnderflow@", + "@Sysutils@EVariantError@", + "@Sysutils@EWin32Error@", + "@Sysutils@EZeroDivide@", + "@Sysutils@EmptyStr", + "@Sysutils@EmptyWideStr", + "@Sysutils@EncodeDate$qqrususus", + "@Sysutils@EncodeTime$qqrusususus", + "@Sysutils@EraNames", + "@Sysutils@EraYearOffsets", + "@Sysutils@Exception@", + "@Sysutils@Exception@$bctr$qqri", + "@Sysutils@Exception@$bctr$qqrii", + "@Sysutils@Exception@$bctr$qqripx14System@TVarRecxi", + "@Sysutils@Exception@$bctr$qqripx14System@TVarRecxii", + "@Sysutils@Exception@$bctr$qqrp20System@TResStringRec", + "@Sysutils@Exception@$bctr$qqrp20System@TResStringReci", + "@Sysutils@Exception@$bctr$qqrp20System@TResStringRecpx14System@TVarRecxi", + "@Sysutils@Exception@$bctr$qqrp20System@TResStringRecpx14System@TVarRecxii", + "@Sysutils@Exception@$bctr$qqrx17System@AnsiString", + "@Sysutils@Exception@$bctr$qqrx17System@AnsiStringi", + "@Sysutils@Exception@$bctr$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Sysutils@Exception@$bctr$qqrx17System@AnsiStringpx14System@TVarRecxii", + "@Sysutils@ExceptionErrorMessage$qqrp14System@TObjectpvpci", + "@Sysutils@ExcludeTrailingBackslash$qqrx17System@AnsiString", + "@Sysutils@ExcludeTrailingPathDelimiter$qqrx17System@AnsiString", + "@Sysutils@ExpandFileName$qqrx17System@AnsiString", + "@Sysutils@ExpandFileNameCase$qqrx17System@AnsiStringr27Sysutils@TFilenameCaseMatch", + "@Sysutils@ExpandUNCFileName$qqrx17System@AnsiString", + "@Sysutils@ExtractFileDir$qqrx17System@AnsiString", + "@Sysutils@ExtractFileDrive$qqrx17System@AnsiString", + "@Sysutils@ExtractFileExt$qqrx17System@AnsiString", + "@Sysutils@ExtractFileName$qqrx17System@AnsiString", + "@Sysutils@ExtractFilePath$qqrx17System@AnsiString", + "@Sysutils@ExtractRelativePath$qqrx17System@AnsiStringt1", + "@Sysutils@ExtractShortPathName$qqrx17System@AnsiString", + "@Sysutils@FalseBoolStrs", + "@Sysutils@FileAge$qqrx17System@AnsiString", + "@Sysutils@FileClose$qqri", + "@Sysutils@FileCreate$qqrx17System@AnsiString", + "@Sysutils@FileCreate$qqrx17System@AnsiStringi", + "@Sysutils@FileDateToDateTime$qqri", + "@Sysutils@FileExists$qqrx17System@AnsiString", + "@Sysutils@FileGetAttr$qqrx17System@AnsiString", + "@Sysutils@FileGetDate$qqri", + "@Sysutils@FileIsReadOnly$qqrx17System@AnsiString", + "@Sysutils@FileOpen$qqrx17System@AnsiStringui", + "@Sysutils@FileRead$qqripvui", + "@Sysutils@FileSearch$qqrx17System@AnsiStringt1", + "@Sysutils@FileSeek$qqriii", + "@Sysutils@FileSeek$qqrixji", + "@Sysutils@FileSetAttr$qqrx17System@AnsiStringi", + "@Sysutils@FileSetDate$qqrii", + "@Sysutils@FileSetDate$qqrx17System@AnsiStringi", + "@Sysutils@FileSetReadOnly$qqrx17System@AnsiStringo", + "@Sysutils@FileWrite$qqripxvui", + "@Sysutils@Finalization$qqrv", + "@Sysutils@FinalizePackage$qqrui", + "@Sysutils@FindClose$qqrr19Sysutils@TSearchRec", + "@Sysutils@FindCmdLineSwitch$qqrx17System@AnsiString", + "@Sysutils@FindCmdLineSwitch$qqrx17System@AnsiStringo", + "@Sysutils@FindCmdLineSwitch$qqrx17System@AnsiStringrx29System@%Set$tc$iuc$0$iuc$255%o", + "@Sysutils@FindFirst$qqrx17System@AnsiStringir19Sysutils@TSearchRec", + "@Sysutils@FindNext$qqrr19Sysutils@TSearchRec", + "@Sysutils@FloatToCurr$qqrxg", + "@Sysutils@FloatToDateTime$qqrxg", + "@Sysutils@FloatToDecimal$qqrr18Sysutils@TFloatRecpxv20Sysutils@TFloatValueii", + "@Sysutils@FloatToStr$qqrg", + "@Sysutils@FloatToStrF$qqrg21Sysutils@TFloatFormatii", + "@Sysutils@FloatToText$qqrpcpxv20Sysutils@TFloatValue21Sysutils@TFloatFormatii", + "@Sysutils@FloatToTextFmt$qqrpcpxv20Sysutils@TFloatValuet1", + "@Sysutils@FmtLoadStr$qqripx14System@TVarRecxi", + "@Sysutils@FmtStr$qqrr17System@AnsiStringx17System@AnsiStringpx14System@TVarRecxi", + "@Sysutils@ForceDirectories$qqr17System@AnsiString", + "@Sysutils@Format$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Sysutils@FormatBuf$qqrpvuipxvuipx14System@TVarRecxi", + "@Sysutils@FormatCurr$qqrx17System@AnsiString15System@Currency", + "@Sysutils@FormatDateTime$qqrx17System@AnsiString16System@TDateTime", + "@Sysutils@FormatFloat$qqrx17System@AnsiStringg", + "@Sysutils@FreeAndNil$qqrpv", + "@Sysutils@GDAL$qqrv", + "@Sysutils@GUIDToString$qqrrx5_GUID", + "@Sysutils@GetCurrentDir$qqrv", + "@Sysutils@GetDiskFreeSpaceEx", + "@Sysutils@GetEnvironmentVariable$qqrx17System@AnsiString", + "@Sysutils@GetFormatSettings$qqrv", + "@Sysutils@GetLocaleChar$qqriic", + "@Sysutils@GetLocaleStr$qqriix17System@AnsiString", + "@Sysutils@GetModuleName$qqrui", + "@Sysutils@GetPackageDescription$qqrpc", + "@Sysutils@GetPackageInfo$qqruipvripqqrx17System@AnsiString18Sysutils@TNameTypeucpv$v", + "@Sysutils@HexDisplayPrefix", + "@Sysutils@IncAMonth$qqrrust1t1i", + "@Sysutils@IncMonth$qqrx16System@TDateTimei", + "@Sysutils@IncludeTrailingBackslash$qqrx17System@AnsiString", + "@Sysutils@IncludeTrailingPathDelimiter$qqrx17System@AnsiString", + "@Sysutils@InitializePackage$qqrui", + "@Sysutils@IntToHex$qqrii", + "@Sysutils@IntToHex$qqrji", + "@Sysutils@IntToStr$qqri", + "@Sysutils@IntToStr$qqrj", + "@Sysutils@IsDelimiter$qqrx17System@AnsiStringt1i", + "@Sysutils@IsLeapYear$qqrus", + "@Sysutils@IsPathDelimiter$qqrx17System@AnsiStringi", + "@Sysutils@IsValidIdent$qqrx17System@AnsiString", + "@Sysutils@Languages$qqrv", + "@Sysutils@LastDelimiter$qqrx17System@AnsiStringt1", + "@Sysutils@LeadBytes", + "@Sysutils@ListSeparator", + "@Sysutils@LoadPackage$qqrx17System@AnsiString", + "@Sysutils@LoadStr$qqri", + "@Sysutils@LongDateFormat", + "@Sysutils@LongDayNames", + "@Sysutils@LongMonthNames", + "@Sysutils@LongTimeFormat", + "@Sysutils@LowerCase$qqrx17System@AnsiString", + "@Sysutils@MSecsToTimeStamp$qqr11System@Comp", + "@Sysutils@MaxCurrency", + "@Sysutils@MaxDateTime", + "@Sysutils@MinCurrency", + "@Sysutils@MinDateTime", + "@Sysutils@MonthDays", + "@Sysutils@NegCurrFormat", + "@Sysutils@NewStr$qqrx17System@AnsiString", + "@Sysutils@NextCharIndex$qqrx17System@AnsiStringi", + "@Sysutils@Now$qqrv", + "@Sysutils@NullStr", + "@Sysutils@NullWideStr", + "@Sysutils@OutOfMemoryError$qqrv", + "@Sysutils@QuotedStr$qqrx17System@AnsiString", + "@Sysutils@RCS$qqrv", + "@Sysutils@RPR$qqrv", + "@Sysutils@RaiseLastOSError$qqrv", + "@Sysutils@RaiseLastWin32Error$qqrv", + "@Sysutils@RemoveDir$qqrx17System@AnsiString", + "@Sysutils@RenameFile$qqrx17System@AnsiStringt1", + "@Sysutils@ReplaceDate$qqrr16System@TDateTimex16System@TDateTime", + "@Sysutils@ReplaceTime$qqrr16System@TDateTimex16System@TDateTime", + "@Sysutils@SafeLoadLibrary$qqrx17System@AnsiStringui", + "@Sysutils@SameFileName$qqrx17System@AnsiStringt1", + "@Sysutils@SameText$qqrx17System@AnsiStringt1", + "@Sysutils@SetCurrentDir$qqrx17System@AnsiString", + "@Sysutils@ShortDateFormat", + "@Sysutils@ShortDayNames", + "@Sysutils@ShortMonthNames", + "@Sysutils@ShortTimeFormat", + "@Sysutils@ShowException$qqrp14System@TObjectpv", + "@Sysutils@StrAlloc$qqrui", + "@Sysutils@StrBufSize$qqrpxc", + "@Sysutils@StrByteType$qqrpcui", + "@Sysutils@StrCat$qqrpcpxc", + "@Sysutils@StrCharLength$qqrpxc", + "@Sysutils@StrComp$qqrpxct1", + "@Sysutils@StrCopy$qqrpcpxc", + "@Sysutils@StrDispose$qqrpc", + "@Sysutils@StrECopy$qqrpcpxc", + "@Sysutils@StrEnd$qqrpxc", + "@Sysutils@StrFmt$qqrpct1px14System@TVarRecxi", + "@Sysutils@StrIComp$qqrpxct1", + "@Sysutils@StrLCat$qqrpcpxcui", + "@Sysutils@StrLComp$qqrpxct1ui", + "@Sysutils@StrLCopy$qqrpcpxcui", + "@Sysutils@StrLFmt$qqrpcuit1px14System@TVarRecxi", + "@Sysutils@StrLIComp$qqrpxct1ui", + "@Sysutils@StrLen$qqrpxc", + "@Sysutils@StrLower$qqrpc", + "@Sysutils@StrMove$qqrpcpxcui", + "@Sysutils@StrNew$qqrpxc", + "@Sysutils@StrNextChar$qqrpxc", + "@Sysutils@StrPCopy$qqrpcx17System@AnsiString", + "@Sysutils@StrPLCopy$qqrpcx17System@AnsiStringui", + "@Sysutils@StrPas$qqrpxc", + "@Sysutils@StrPos$qqrpxct1", + "@Sysutils@StrRScan$qqrpxcc", + "@Sysutils@StrScan$qqrpxcc", + "@Sysutils@StrToBool$qqrx17System@AnsiString", + "@Sysutils@StrToBoolDef$qqrx17System@AnsiStringxo", + "@Sysutils@StrToCurr$qqrx17System@AnsiString", + "@Sysutils@StrToCurrDef$qqrx17System@AnsiStringx15System@Currency", + "@Sysutils@StrToDate$qqrx17System@AnsiString", + "@Sysutils@StrToDateDef$qqrx17System@AnsiStringx16System@TDateTime", + "@Sysutils@StrToDateTime$qqrx17System@AnsiString", + "@Sysutils@StrToDateTimeDef$qqrx17System@AnsiStringx16System@TDateTime", + "@Sysutils@StrToFloat$qqrx17System@AnsiString", + "@Sysutils@StrToFloatDef$qqrx17System@AnsiStringxg", + "@Sysutils@StrToInt$qqrx17System@AnsiString", + "@Sysutils@StrToInt64$qqrx17System@AnsiString", + "@Sysutils@StrToInt64Def$qqrx17System@AnsiStringxj", + "@Sysutils@StrToIntDef$qqrx17System@AnsiStringi", + "@Sysutils@StrToTime$qqrx17System@AnsiString", + "@Sysutils@StrToTimeDef$qqrx17System@AnsiStringx16System@TDateTime", + "@Sysutils@StrUpper$qqrpc", + "@Sysutils@StringReplace$qqrx17System@AnsiStringt1t149System@%Set$t21Sysutils@SysUtils__54$iuc$0$iuc$1%", + "@Sysutils@StringToGUID$qqrx17System@AnsiString", + "@Sysutils@Supports$qqrp17System@TMetaClassrx5_GUID", + "@Sysutils@Supports$qqrpx14System@TObjectrx5_GUID", + "@Sysutils@Supports$qqrpx14System@TObjectrx5_GUIDpv", + "@Sysutils@Supports$qqrx45System@%DelphiInterface$t17System@IInterface%rx5_GUID", + "@Sysutils@Supports$qqrx45System@%DelphiInterface$t17System@IInterface%rx5_GUIDpv", + "@Sysutils@SysErrorMessage$qqri", + "@Sysutils@SysLocale", + "@Sysutils@SystemTimeToDateTime$qqrrx11_SYSTEMTIME", + "@Sysutils@TLanguages@", + "@Sysutils@TLanguages@$bctr$qqrv", + "@Sysutils@TLanguages@GetCount$qqrv", + "@Sysutils@TLanguages@GetExt$qqri", + "@Sysutils@TLanguages@GetID$qqri", + "@Sysutils@TLanguages@GetLCID$qqri", + "@Sysutils@TLanguages@GetName$qqri", + "@Sysutils@TLanguages@GetNameFromLCID$qqrx17System@AnsiString", + "@Sysutils@TLanguages@GetNameFromLocaleID$qqrui", + "@Sysutils@TLanguages@IndexOf$qqrui", + "@Sysutils@TLanguages@LocalesCallback$qqspc", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@$bctr$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@$bdtr$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@BeginRead$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@BeginWrite$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@BlockReaders$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@EndRead$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@EndWrite$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@UnblockOneWriter$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@UnblockReaders$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@WaitForReadSignal$qqrv", + "@Sysutils@TMultiReadExclusiveWriteSynchronizer@WaitForWriteSignal$qqrv", + "@Sysutils@TSimpleRWSync@", + "@Sysutils@TSimpleRWSync@$bctr$qqrv", + "@Sysutils@TSimpleRWSync@$bdtr$qqrv", + "@Sysutils@TSimpleRWSync@BeginRead$qqrv", + "@Sysutils@TSimpleRWSync@BeginWrite$qqrv", + "@Sysutils@TSimpleRWSync@EndRead$qqrv", + "@Sysutils@TSimpleRWSync@EndWrite$qqrv", + "@Sysutils@TThreadLocalCounter@", + "@Sysutils@TThreadLocalCounter@$bctr$qqrv", + "@Sysutils@TThreadLocalCounter@$bdtr$qqrv", + "@Sysutils@TThreadLocalCounter@Close$qqrrp20Sysutils@TThreadInfo", + "@Sysutils@TThreadLocalCounter@Delete$qqrrp20Sysutils@TThreadInfo", + "@Sysutils@TThreadLocalCounter@HashIndex$qqrv", + "@Sysutils@TThreadLocalCounter@Open$qqrrp20Sysutils@TThreadInfo", + "@Sysutils@TThreadLocalCounter@Reattach$qqrp20Sysutils@TThreadInfo", + "@Sysutils@TThreadLocalCounter@Recycle$qqrv", + "@Sysutils@TextToFloat$qqrpcpv20Sysutils@TFloatValue", + "@Sysutils@ThousandSeparator", + "@Sysutils@Time$qqrv", + "@Sysutils@TimeAMString", + "@Sysutils@TimePMString", + "@Sysutils@TimeSeparator", + "@Sysutils@TimeStampToDateTime$qqrrx19Sysutils@TTimeStamp", + "@Sysutils@TimeStampToMSecs$qqrrx19Sysutils@TTimeStamp", + "@Sysutils@TimeToStr$qqrx16System@TDateTime", + "@Sysutils@Trim$qqrx17System@AnsiString", + "@Sysutils@Trim$qqrx17System@WideString", + "@Sysutils@TrimLeft$qqrx17System@AnsiString", + "@Sysutils@TrimLeft$qqrx17System@WideString", + "@Sysutils@TrimRight$qqrx17System@AnsiString", + "@Sysutils@TrimRight$qqrx17System@WideString", + "@Sysutils@TrueBoolStrs", + "@Sysutils@TryEncodeDate$qqrusususr16System@TDateTime", + "@Sysutils@TryEncodeTime$qqrususususr16System@TDateTime", + "@Sysutils@TryFloatToCurr$qqrxgr15System@Currency", + "@Sysutils@TryFloatToDateTime$qqrxgr16System@TDateTime", + "@Sysutils@TryStrToBool$qqrx17System@AnsiStringro", + "@Sysutils@TryStrToCurr$qqrx17System@AnsiStringr15System@Currency", + "@Sysutils@TryStrToDate$qqrx17System@AnsiStringr16System@TDateTime", + "@Sysutils@TryStrToDateTime$qqrx17System@AnsiStringr16System@TDateTime", + "@Sysutils@TryStrToFloat$qqrx17System@AnsiStringrd", + "@Sysutils@TryStrToFloat$qqrx17System@AnsiStringrf", + "@Sysutils@TryStrToFloat$qqrx17System@AnsiStringrg", + "@Sysutils@TryStrToInt$qqrx17System@AnsiStringri", + "@Sysutils@TryStrToInt64$qqrx17System@AnsiStringrj", + "@Sysutils@TryStrToTime$qqrx17System@AnsiStringr16System@TDateTime", + "@Sysutils@TwoDigitYearCenturyWindow", + "@Sysutils@UnloadPackage$qqrui", + "@Sysutils@UpperCase$qqrx17System@AnsiString", + "@Sysutils@WideCompareStr$qqrx17System@WideStringt1", + "@Sysutils@WideCompareText$qqrx17System@WideStringt1", + "@Sysutils@WideFmtStr$qqrr17System@WideStringx17System@WideStringpx14System@TVarRecxi", + "@Sysutils@WideFormat$qqrx17System@WideStringpx14System@TVarRecxi", + "@Sysutils@WideFormatBuf$qqrpvuipxvuipx14System@TVarRecxi", + "@Sysutils@WideLowerCase$qqrx17System@WideString", + "@Sysutils@WideSameStr$qqrx17System@WideStringt1", + "@Sysutils@WideSameText$qqrx17System@WideStringt1", + "@Sysutils@WideUpperCase$qqrx17System@WideString", + "@Sysutils@Win32BuildNumber", + "@Sysutils@Win32CSDVersion", + "@Sysutils@Win32Check$qqri", + "@Sysutils@Win32MajorVersion", + "@Sysutils@Win32MinorVersion", + "@Sysutils@Win32Platform", + "@Sysutils@WrapText$qqrx17System@AnsiStringi", + "@Sysutils@WrapText$qqrx17System@AnsiStringt1rx29System@%Set$tc$iuc$0$iuc$255%i", + "@Sysutils@initialization$qqrv", + "@Types@Bounds$qqriiii", + "@Types@CenterPoint$qqrrx11Types@TRect", + "@Types@EqualRect$qqrrx11Types@TRectt1", + "@Types@Finalization$qqrv", + "@Types@IntersectRect$qqrr11Types@TRectrx11Types@TRectt2", + "@Types@IsRectEmpty$qqrrx11Types@TRect", + "@Types@OffsetRect$qqrr11Types@TRectii", + "@Types@Point$qqrii", + "@Types@PtInRect$qqrrx11Types@TRectrx12Types@TPoint", + "@Types@Rect$qqriiii", + "@Types@UnionRect$qqrr11Types@TRectrx11Types@TRectt2", + "@Types@initialization$qqrv", + "@Typinfo@BooleanIdents", + "@Typinfo@DotSep", + "@Typinfo@EPropertyConvertError@", + "@Typinfo@EPropertyError@", + "@Typinfo@Finalization$qqrv", + "@Typinfo@FreeAndNilProperties$qqrp14System@TObject", + "@Typinfo@GetEnumName$qqrp17Typinfo@TTypeInfoi", + "@Typinfo@GetEnumProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetEnumProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetEnumValue$qqrp17Typinfo@TTypeInfox17System@AnsiString", + "@Typinfo@GetFloatProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetFloatProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetInt64Prop$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetInt64Prop$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetInterfaceProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetInterfaceProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetMethodProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetMethodProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetObjectProp$qqrp14System@TObjectp17Typinfo@TPropInfop17System@TMetaClass", + "@Typinfo@GetObjectProp$qqrp14System@TObjectx17System@AnsiStringp17System@TMetaClass", + "@Typinfo@GetObjectPropClass$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetObjectPropClass$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetObjectPropClass$qqrp17Typinfo@TPropInfo", + "@Typinfo@GetOrdProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetOrdProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetPropInfo$qqrp14System@TObjectx17System@AnsiString46System@%Set$t17Typinfo@TTypeKind$iuc$0$iuc$17%", + "@Typinfo@GetPropInfo$qqrp17System@TMetaClassx17System@AnsiString46System@%Set$t17Typinfo@TTypeKind$iuc$0$iuc$17%", + "@Typinfo@GetPropInfo$qqrp17Typinfo@TTypeInfox17System@AnsiString", + "@Typinfo@GetPropInfo$qqrp17Typinfo@TTypeInfox17System@AnsiString46System@%Set$t17Typinfo@TTypeKind$iuc$0$iuc$17%", + "@Typinfo@GetPropInfos$qqrp17Typinfo@TTypeInfopa16380$p17Typinfo@TPropInfo", + "@Typinfo@GetPropList$qqrp14System@TObjectrpa16380$p17Typinfo@TPropInfo", + "@Typinfo@GetPropList$qqrp17Typinfo@TTypeInfo46System@%Set$t17Typinfo@TTypeKind$iuc$0$iuc$17%pa16380$p17Typinfo@TPropInfoo", + "@Typinfo@GetPropList$qqrp17Typinfo@TTypeInforpa16380$p17Typinfo@TPropInfo", + "@Typinfo@GetPropValue$qqrp14System@TObjectx17System@AnsiStringo", + "@Typinfo@GetSetProp$qqrp14System@TObjectp17Typinfo@TPropInfoo", + "@Typinfo@GetSetProp$qqrp14System@TObjectx17System@AnsiStringo", + "@Typinfo@GetStrProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetStrProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetTypeData$qqrp17Typinfo@TTypeInfo", + "@Typinfo@GetVariantProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetVariantProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@GetWideStrProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@GetWideStrProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@IsPublishedProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@IsPublishedProp$qqrp17System@TMetaClassx17System@AnsiString", + "@Typinfo@IsStoredProp$qqrp14System@TObjectp17Typinfo@TPropInfo", + "@Typinfo@IsStoredProp$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@PropIsType$qqrp14System@TObjectx17System@AnsiString17Typinfo@TTypeKind", + "@Typinfo@PropIsType$qqrp17System@TMetaClassx17System@AnsiString17Typinfo@TTypeKind", + "@Typinfo@PropType$qqrp14System@TObjectx17System@AnsiString", + "@Typinfo@PropType$qqrp17System@TMetaClassx17System@AnsiString", + "@Typinfo@SetEnumProp$qqrp14System@TObjectp17Typinfo@TPropInfox17System@AnsiString", + "@Typinfo@SetEnumProp$qqrp14System@TObjectx17System@AnsiStringt2", + "@Typinfo@SetFloatProp$qqrp14System@TObjectp17Typinfo@TPropInfoxg", + "@Typinfo@SetFloatProp$qqrp14System@TObjectx17System@AnsiStringxg", + "@Typinfo@SetInt64Prop$qqrp14System@TObjectp17Typinfo@TPropInfoxj", + "@Typinfo@SetInt64Prop$qqrp14System@TObjectx17System@AnsiStringxj", + "@Typinfo@SetInterfaceProp$qqrp14System@TObjectp17Typinfo@TPropInfox45System@%DelphiInterface$t17System@IInterface%", + "@Typinfo@SetInterfaceProp$qqrp14System@TObjectx17System@AnsiStringx45System@%DelphiInterface$t17System@IInterface%", + "@Typinfo@SetMethodProp$qqrp14System@TObjectp17Typinfo@TPropInforx14System@TMethod", + "@Typinfo@SetMethodProp$qqrp14System@TObjectx17System@AnsiStringrx14System@TMethod", + "@Typinfo@SetObjectProp$qqrp14System@TObjectp17Typinfo@TPropInfot1o", + "@Typinfo@SetObjectProp$qqrp14System@TObjectx17System@AnsiStringt1", + "@Typinfo@SetOrdProp$qqrp14System@TObjectp17Typinfo@TPropInfoi", + "@Typinfo@SetOrdProp$qqrp14System@TObjectx17System@AnsiStringi", + "@Typinfo@SetPropValue$qqrp14System@TObjectx17System@AnsiStringrx14System@Variant", + "@Typinfo@SetSetProp$qqrp14System@TObjectp17Typinfo@TPropInfox17System@AnsiString", + "@Typinfo@SetSetProp$qqrp14System@TObjectx17System@AnsiStringt2", + "@Typinfo@SetStrProp$qqrp14System@TObjectp17Typinfo@TPropInfox17System@AnsiString", + "@Typinfo@SetStrProp$qqrp14System@TObjectx17System@AnsiStringt2", + "@Typinfo@SetToString$qqrp17Typinfo@TPropInfoio", + "@Typinfo@SetVariantProp$qqrp14System@TObjectp17Typinfo@TPropInforx14System@Variant", + "@Typinfo@SetVariantProp$qqrp14System@TObjectx17System@AnsiStringrx14System@Variant", + "@Typinfo@SetWideStrProp$qqrp14System@TObjectp17Typinfo@TPropInfox17System@WideString", + "@Typinfo@SetWideStrProp$qqrp14System@TObjectx17System@AnsiStringx17System@WideString", + "@Typinfo@SortPropList$qqrpa16380$p17Typinfo@TPropInfoi", + "@Typinfo@StringToSet$qqrp17Typinfo@TPropInfox17System@AnsiString", + "@Typinfo@TPublishableVariantType@", + "@Typinfo@TPublishableVariantType@GetProperty$qqrr8TVarDatarx8TVarDatax17System@AnsiString", + "@Typinfo@TPublishableVariantType@SetProperty$qqrrx8TVarDatax17System@AnsiStringt1", + "@Typinfo@initialization$qqrv", + "@Varcmplx@ComplexNumberSymbol", + "@Varcmplx@ComplexNumberSymbolBeforeImaginary", + "@Varcmplx@Finalization$qqrv", + "@Varcmplx@VarAsComplex$qqrrx14System@Variant", + "@Varcmplx@VarComplex$qqrv", + "@Varcmplx@VarComplexAbs$qqrrx14System@Variant", + "@Varcmplx@VarComplexAbsSqr$qqrrx14System@Variant", + "@Varcmplx@VarComplexAngle$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcCos$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcCosH$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcCot$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcCotH$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcCsc$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcCscH$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcSec$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcSecH$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcSin$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcSinH$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcTan$qqrrx14System@Variant", + "@Varcmplx@VarComplexArcTanH$qqrrx14System@Variant", + "@Varcmplx@VarComplexConjugate$qqrrx14System@Variant", + "@Varcmplx@VarComplexCos$qqrrx14System@Variant", + "@Varcmplx@VarComplexCosH$qqrrx14System@Variant", + "@Varcmplx@VarComplexCot$qqrrx14System@Variant", + "@Varcmplx@VarComplexCotH$qqrrx14System@Variant", + "@Varcmplx@VarComplexCreate$qqrv", + "@Varcmplx@VarComplexCreate$qqrx17System@AnsiString", + "@Varcmplx@VarComplexCreate$qqrxd", + "@Varcmplx@VarComplexCreate$qqrxdxd", + "@Varcmplx@VarComplexCsc$qqrrx14System@Variant", + "@Varcmplx@VarComplexCscH$qqrrx14System@Variant", + "@Varcmplx@VarComplexExp$qqrrx14System@Variant", + "@Varcmplx@VarComplexFromPolar$qqrxdxd", + "@Varcmplx@VarComplexInverse$qqrrx14System@Variant", + "@Varcmplx@VarComplexLn$qqrrx14System@Variant", + "@Varcmplx@VarComplexPower$qqrrx14System@Variantt1", + "@Varcmplx@VarComplexSec$qqrrx14System@Variant", + "@Varcmplx@VarComplexSecH$qqrrx14System@Variant", + "@Varcmplx@VarComplexSimplify$qqrrx14System@Variant", + "@Varcmplx@VarComplexSin$qqrrx14System@Variant", + "@Varcmplx@VarComplexSinH$qqrrx14System@Variant", + "@Varcmplx@VarComplexSqr$qqrrx14System@Variant", + "@Varcmplx@VarComplexSqrt$qqrrx14System@Variant", + "@Varcmplx@VarComplexTan$qqrrx14System@Variant", + "@Varcmplx@VarComplexTanH$qqrrx14System@Variant", + "@Varcmplx@VarComplexTimesNegI$qqrrx14System@Variant", + "@Varcmplx@VarComplexTimesPosI$qqrrx14System@Variant", + "@Varcmplx@VarComplexToPolar$qqrrx14System@Variantrdt2o", + "@Varcmplx@VarIsComplex$qqrrx14System@Variant", + "@Varcmplx@initialization$qqrv", + "@Varconv@Finalization$qqrv", + "@Varconv@VarAsConvert$qqrrx14System@Variant", + "@Varconv@VarAsConvert$qqrrx14System@Variantxus", + "@Varconv@VarConvert$qqrv", + "@Varconv@VarConvertCreate$qqrx17System@AnsiString", + "@Varconv@VarConvertCreate$qqrxdxus", + "@Varconv@VarIsConvert$qqrrx14System@Variant", + "@Varconv@initialization$qqrv", + "@Variants@BooleanToStringRule", + "@Variants@ChangeAnyProc", + "@Variants@ClearAnyProc", + "@Variants@DynArrayFromVariant$qqrrpvrx14System@Variantpv", + "@Variants@DynArrayToVariant$qqrr14System@Variantpxvpv", + "@Variants@EVariantArrayCreateError@", + "@Variants@EVariantArrayLockedError@", + "@Variants@EVariantBadIndexError@", + "@Variants@EVariantBadVarTypeError@", + "@Variants@EVariantDispatchError@", + "@Variants@EVariantInvalidArgError@", + "@Variants@EVariantInvalidNullOpError@", + "@Variants@EVariantInvalidOpError@", + "@Variants@EVariantNotAnArrayError@", + "@Variants@EVariantNotImplError@", + "@Variants@EVariantOutOfMemoryError@", + "@Variants@EVariantOverflowError@", + "@Variants@EVariantRangeCheckError@", + "@Variants@EVariantTypeCastError@", + "@Variants@EVariantUnexpectedError@", + "@Variants@EmptyParam", + "@Variants@Finalization$qqrv", + "@Variants@FindCustomVariantType$qqrx17System@AnsiStringrp27Variants@TCustomVariantType", + "@Variants@FindCustomVariantType$qqrxusrp27Variants@TCustomVariantType", + "@Variants@FindVarData$qqrrx14System@Variant", + "@Variants@HandleConversionException$qqrxusxus", + "@Variants@Null$qqrv", + "@Variants@NullAsStringValue", + "@Variants@NullEqualityRule", + "@Variants@NullMagnitudeRule", + "@Variants@NullStrictConvert", + "@Variants@PackVarCreation", + "@Variants@RefAnyProc", + "@Variants@TCustomVariantType@", + "@Variants@TCustomVariantType@$bctr$qqrus", + "@Variants@TCustomVariantType@$bctr$qqrv", + "@Variants@TCustomVariantType@$bdtr$qqrv", + "@Variants@TCustomVariantType@BinaryOp$qqrr8TVarDatarx8TVarDataxi", + "@Variants@TCustomVariantType@Cast$qqrr8TVarDatarx8TVarData", + "@Variants@TCustomVariantType@CastTo$qqrr8TVarDatarx8TVarDataxus", + "@Variants@TCustomVariantType@CastToOle$qqrr8TVarDatarx8TVarData", + "@Variants@TCustomVariantType@Compare$qqrrx8TVarDatat1r26Variants@TVarCompareResult", + "@Variants@TCustomVariantType@CompareOp$qqrrx8TVarDatat1xi", + "@Variants@TCustomVariantType@DispInvoke$qqrr8TVarDatarx8TVarDatap16System@TCallDescpv", + "@Variants@TCustomVariantType@IsClear$qqrrx8TVarData", + "@Variants@TCustomVariantType@LeftPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@OlePromotion$qqrrx8TVarDatarus", + "@Variants@TCustomVariantType@QueryInterface$qqsrx5_GUIDpv", + "@Variants@TCustomVariantType@RaiseCastError$qqrv", + "@Variants@TCustomVariantType@RaiseDispError$qqrv", + "@Variants@TCustomVariantType@RaiseInvalidOp$qqrv", + "@Variants@TCustomVariantType@RightPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@SimplisticClear$qqrr8TVarData", + "@Variants@TCustomVariantType@SimplisticCopy$qqrr8TVarDatarx8TVarDataxo", + "@Variants@TCustomVariantType@UnaryOp$qqrr8TVarDataxi", + "@Variants@TCustomVariantType@VarDataCast$qqrr8TVarDatarx8TVarData", + "@Variants@TCustomVariantType@VarDataCastTo$qqrr8TVarDatarx8TVarDataxus", + "@Variants@TCustomVariantType@VarDataCastTo$qqrr8TVarDataxus", + "@Variants@TCustomVariantType@VarDataCastToOleStr$qqrr8TVarData", + "@Variants@TCustomVariantType@VarDataClear$qqrr8TVarData", + "@Variants@TCustomVariantType@VarDataCopy$qqrr8TVarDatarx8TVarData", + "@Variants@TCustomVariantType@VarDataCopyNoInd$qqrr8TVarDatarx8TVarData", + "@Variants@TCustomVariantType@VarDataFromOleStr$qqrr8TVarDatax17System@WideString", + "@Variants@TCustomVariantType@VarDataFromStr$qqrr8TVarDatax17System@AnsiString", + "@Variants@TCustomVariantType@VarDataInit$qqrr8TVarData", + "@Variants@TCustomVariantType@VarDataIsArray$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataIsByRef$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataIsEmptyParam$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataIsFloat$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataIsNumeric$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataIsOrdinal$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataIsStr$qqrrx8TVarData", + "@Variants@TCustomVariantType@VarDataToStr$qqrrx8TVarData", + "@Variants@TCustomVariantType@_AddRef$qqsv", + "@Variants@TCustomVariantType@_Release$qqsv", + "@Variants@TInvokeableVariantType@", + "@Variants@TInvokeableVariantType@DispInvoke$qqrr8TVarDatarx8TVarDatap16System@TCallDescpv", + "@Variants@TInvokeableVariantType@DoFunction$qqrr8TVarDatarx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TInvokeableVariantType@DoProcedure$qqrrx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TInvokeableVariantType@GetProperty$qqrr8TVarDatarx8TVarDatax17System@AnsiString", + "@Variants@TInvokeableVariantType@SetProperty$qqrrx8TVarDatax17System@AnsiStringt1", + "@Variants@Unassigned$qqrv", + "@Variants@VarArrayCreate$qqrpxixius", + "@Variants@VarArrayCreateError$qqrv", + "@Variants@VarArrayDimCount$qqrrx14System@Variant", + "@Variants@VarArrayGet$qqrrx14System@Variantpxixi", + "@Variants@VarArrayHighBound$qqrrx14System@Varianti", + "@Variants@VarArrayLock$qqrrx14System@Variant", + "@Variants@VarArrayLowBound$qqrrx14System@Varianti", + "@Variants@VarArrayOf$qqrpx14System@Variantxi", + "@Variants@VarArrayPut$qqrr14System@Variantrx14System@Variantpxixi", + "@Variants@VarArrayRef$qqrrx14System@Variant", + "@Variants@VarArrayUnlock$qqrrx14System@Variant", + "@Variants@VarAsError$qqrl", + "@Variants@VarAsType$qqrrx14System@Variantus", + "@Variants@VarCastError$qqrv", + "@Variants@VarCastError$qqrxusxus", + "@Variants@VarCheckEmpty$qqrrx14System@Variant", + "@Variants@VarCompareValue$qqrrx14System@Variantt1", + "@Variants@VarCopyNoInd$qqrr14System@Variantrx14System@Variant", + "@Variants@VarDispProc", + "@Variants@VarEnsureRange$qqrrx14System@Variantt1t1", + "@Variants@VarFromDateTime$qqrx16System@TDateTime", + "@Variants@VarInRange$qqrrx14System@Variantt1t1", + "@Variants@VarInvalidNullOp$qqrv", + "@Variants@VarInvalidOp$qqrv", + "@Variants@VarIsArray$qqrrx14System@Variant", + "@Variants@VarIsArray$qqrrx14System@Varianto", + "@Variants@VarIsByRef$qqrrx14System@Variant", + "@Variants@VarIsClear$qqrrx14System@Variant", + "@Variants@VarIsCustom$qqrrx14System@Variant", + "@Variants@VarIsEmpty$qqrrx14System@Variant", + "@Variants@VarIsEmptyParam$qqrrx14System@Variant", + "@Variants@VarIsError$qqrrx14System@Variant", + "@Variants@VarIsError$qqrrx14System@Variantrl", + "@Variants@VarIsFloat$qqrrx14System@Variant", + "@Variants@VarIsNull$qqrrx14System@Variant", + "@Variants@VarIsNumeric$qqrrx14System@Variant", + "@Variants@VarIsOrdinal$qqrrx14System@Variant", + "@Variants@VarIsStr$qqrrx14System@Variant", + "@Variants@VarIsType$qqrrx14System@Variantpxusxi", + "@Variants@VarIsType$qqrrx14System@Variantus", + "@Variants@VarOverflowError$qqrxusxus", + "@Variants@VarRangeCheckError$qqrxusxus", + "@Variants@VarResultCheck$qqrl", + "@Variants@VarResultCheck$qqrlusus", + "@Variants@VarSameValue$qqrrx14System@Variantt1", + "@Variants@VarSupports$qqrrx14System@Variantrx5_GUID", + "@Variants@VarSupports$qqrrx14System@Variantrx5_GUIDpv", + "@Variants@VarToDateTime$qqrrx14System@Variant", + "@Variants@VarToStr$qqrrx14System@Variant", + "@Variants@VarToStrDef$qqrrx14System@Variantx17System@AnsiString", + "@Variants@VarToWideStr$qqrrx14System@Variant", + "@Variants@VarToWideStrDef$qqrrx14System@Variantx17System@WideString", + "@Variants@VarType$qqrrx14System@Variant", + "@Variants@VarTypeAsText$qqrxus", + "@Variants@VarTypeIsValidArrayType$qqrxus", + "@Variants@VarTypeIsValidElementType$qqrxus", + "@Variants@initialization$qqrv", + "@Varutils@CVarTypeToElementInfo", + "@Varutils@Finalization$qqrv", + "@Varutils@VarAdd$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarAnd$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarBoolFromStr$qqsx17System@WideStringiirus", + "@Varutils@VarBstrFromBool$qqsusiir17System@WideString", + "@Varutils@VarBstrFromCy$qqs15System@Currencyiir17System@WideString", + "@Varutils@VarBstrFromDate$qqs16System@TDateTimeiir17System@WideString", + "@Varutils@VarCmp$qqsrx8TVarDatat1iui", + "@Varutils@VarCyFromStr$qqsx17System@WideStringuiir15System@Currency", + "@Varutils@VarDateFromStr$qqsx17System@WideStringuiir16System@TDateTime", + "@Varutils@VarDiv$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarExceptionToResult$qqrpx18Sysutils@Exception", + "@Varutils@VarI4FromStr$qqsx17System@WideStringiiri", + "@Varutils@VarIDiv$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarMod$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarMul$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarNeg$qqsrx8TVarDatar8TVarData", + "@Varutils@VarNot$qqsrx8TVarDatar8TVarData", + "@Varutils@VarOr$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarR4FromStr$qqsx17System@WideStringiirf", + "@Varutils@VarR8FromStr$qqsx17System@WideStringiird", + "@Varutils@VarSub$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VarXor$qqsrx8TVarDatat1r8TVarData", + "@Varutils@VariantChangeTypeEx$qqsr8TVarDatarx8TVarDataiusus", + "@Varutils@initialization$qqrv", + "@Vclcom@Finalization$qqrv", + "@Vclcom@TComponentFactory@", + "@Vclcom@TComponentFactory@$bctr$qqrp23Comobj@TComServerObjectp17System@TMetaClassrx5_GUID23Comobj@TClassInstancing22Comobj@TThreadingModel", + "@Vclcom@TComponentFactory@CreateComObject$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Vclcom@TComponentFactory@CreateInstance$qqsx45System@%DelphiInterface$t17System@IInterface%rx5_GUIDpv", + "@Vclcom@TComponentFactory@UpdateRegistry$qqro", + "@Vclcom@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 10869, + "domain_strings": [ + "IMarshal", + "IStdMarshalInfo", + "IQuickActivate", + "vaTrue", + "TRoundToRange", + "TFPURoundingMode", + "InternalRateOfReturn", + "InterestRate", + "BindRvaToVaFailed", + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "CoMarshalInterThreadInterfaceInStream", + "select", + "@$xp$14IQuickActivate", + "@$xp$15IStdMarshalInfo", + "@$xp$18Math@TRoundToRange", + "@$xp$21Math@TFPURoundingMode", + "@$xp$8IMarshal", + "@Activex@CLSID_StdMarshal", + "@Classes@ActivateClassGroup$qqrp17System@TMetaClass", + "@Classes@TBasicAction@Update$qqrv", + "@Classes@TBasicActionLink@Update$qqrv", + "@Classes@TCollection@Delete$qqri", + "@Classes@TCollection@Insert$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TComponent@Insert$qqrp18Classes@TComponent", + "@Classes@TInterfaceList@Delete$qqri", + "@Classes@TInterfaceList@Insert$qqrix45System@%DelphiInterface$t17System@IInterface%", + "@Classes@TList@Delete$qqri", + "@Classes@TList@Insert$qqripv", + "@Classes@TStringList@Delete$qqri", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Contnrs@TClassList@Insert$qqrip17System@TMetaClass", + "@Contnrs@TComponentList@Insert$qqrip18Classes@TComponent", + "@Contnrs@TObjectList@Insert$qqrip14System@TObject", + "@Math@GetRoundMode$qqrv", + "@Math@InterestRate$qqrixgxgxg17Math@TPaymentTime", + "@Math@InternalRateOfReturn$qqrxgpxdxi", + "@Math@RoundTo$qqrxdxzc", + "@Math@SetRoundMode$qqrx21Math@TFPURoundingMode", + "@Math@SimpleRoundTo$qqrxdxzc", + "@Scktcomp@TClientSocket@DoActivate$qqro", + "@Scktcomp@TCustomServerSocket@DoActivate$qqro", + "@Scktcomp@TServerClientThread@ReActivate$qqrp31Scktcomp@TServerClientWinSocket", + "@System@@Delete$qqrv", + "@System@@Halt$qqri", + "@System@@Halt0$qqrv", + "@System@@Insert$qqrv", + "@System@@ROUND$qqrv", + "@Sysutils@AdjustLineBreaks$qqrx17System@AnsiString26System@TTextLineBreakStyle", + "@Sysutils@TThreadLocalCounter@Delete$qqrrp20Sysutils@TThreadInfo", + "@Typinfo@TPublishableVariantType@GetProperty$qqrr8TVarDatarx8TVarDatax17System@AnsiString", + "@Typinfo@TPublishableVariantType@SetProperty$qqrrx8TVarDatax17System@AnsiStringt1", + "@Variants@TCustomVariantType@BinaryOp$qqrr8TVarDatarx8TVarDataxi", + "@Variants@TCustomVariantType@CastTo$qqrr8TVarDatarx8TVarDataxus", + "@Variants@TCustomVariantType@LeftPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@RightPromotion$qqrrx8TVarDataxirus", + "@Variants@TCustomVariantType@SimplisticCopy$qqrr8TVarDatarx8TVarDataxo", + "@Variants@TCustomVariantType@UnaryOp$qqrr8TVarDataxi", + "@Variants@TCustomVariantType@VarDataCastTo$qqrr8TVarDatarx8TVarDataxus", + "@Variants@TCustomVariantType@VarDataCastTo$qqrr8TVarDataxus", + "@Variants@TCustomVariantType@VarDataFromOleStr$qqrr8TVarDatax17System@WideString", + "@Variants@TCustomVariantType@VarDataFromStr$qqrr8TVarDatax17System@AnsiString", + "@Variants@TInvokeableVariantType@DoFunction$qqrr8TVarDatarx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TInvokeableVariantType@DoProcedure$qqrrx8TVarDatax17System@AnsiStringx32System@%DynamicArray$t8TVarData%", + "@Variants@TInvokeableVariantType@GetProperty$qqrr8TVarDatarx8TVarDatax17System@AnsiString", + "@Variants@TInvokeableVariantType@SetProperty$qqrrx8TVarDatax17System@AnsiStringt1", + "QTypInfo", + "Invalid string constant&Cannot insert or delete rows from grid" + ] + }, + "SDE32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 72944, + "raw_off": 1024, + "raw_size": 73216 + }, + { + "name": ".rdata", + "va": 77824, + "vsize": 5393, + "raw_off": 74240, + "raw_size": 5632 + }, + { + "name": ".data", + "va": 86016, + "vsize": 705172, + "raw_off": 79872, + "raw_size": 19456 + }, + { + "name": ".idata", + "va": 794624, + "vsize": 2116, + "raw_off": 99328, + "raw_size": 2560 + }, + { + "name": ".rsrc", + "va": 798720, + "vsize": 23112, + "raw_off": 101888, + "raw_size": 23552 + }, + { + "name": ".reloc", + "va": 823296, + "vsize": 6514, + "raw_off": 125440, + "raw_size": 6656 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "?sx_DTADataMessage@@YGXF@Z", + "?sx_DTAKill@@YGXPAX@Z", + "?sx_DTARegister@@YGXPAXPAEF@Z", + "?sx_DTARequest@@YGHXZ", + "?sx_DTASendMessage@@YGXPAXGG@Z", + "GetFieldIndex", + "IsTaskYours", + "NotifyUse", + "RDEchildEnd", + "RDEchildStart", + "RDEchildSync", + "RDErelEval", + "TaskPtr", + "_sx_SetLockMode@4", + "lmemcmp", + "lnextchar", + "lprevchar", + "lstrchr", + "sxError", + "sxErrorMsg", + "sxErrorString", + "sx_Alias", + "sx_Append", + "sx_AppendBlank", + "sx_AppendBlankEx", + "sx_AppendEx", + "sx_AppendFrom", + "sx_BaseDate", + "sx_BaseName", + "sx_BigRedConnect", + "sx_BigRedDisconnect", + "sx_BlobToFile", + "sx_Bof", + "sx_Close", + "sx_CloseAll", + "sx_CloseIndexes", + "sx_Commit", + "sx_CopyFile", + "sx_CopyFileText", + "sx_CopyStructure", + "sx_CopyStructureExtended", + "sx_Count", + "sx_CreateExec", + "sx_CreateField", + "sx_CreateFrom", + "sx_CreateNew", + "sx_DBFilter", + "sx_DBRlockList", + "sx_DbfDecrypt", + "sx_DbfEncrypt", + "sx_Decrypt", + "sx_Delete", + "sx_Deleted", + "sx_Descend", + "sx_Empty", + "sx_Encrypt", + "sx_Eof", + "sx_ErrorLevel", + "sx_ErrorTest", + "sx_EvalLogical", + "sx_EvalNumeric", + "sx_EvalString", + "sx_EvalTest", + "sx_FieldCount", + "sx_FieldDecimals", + "sx_FieldName", + "sx_FieldNum", + "sx_FieldOffset", + "sx_FieldType", + "sx_FieldWidth", + "sx_FilterAlias", + "sx_FilterDlg", + "sx_Flock", + "sx_Found", + "sx_GetBitMap", + "sx_GetBlob", + "sx_GetBlobLength", + "sx_GetByte", + "sx_GetDateJulian", + "sx_GetDateString", + "sx_GetDouble", + "sx_GetInteger", + "sx_GetLogical", + "sx_GetLong", + "sx_GetMemo", + "sx_GetPrinter", + "sx_GetQueryBit", + "sx_GetRecord", + "sx_GetScope", + "sx_GetString", + "sx_GetTrimString", + "sx_GetVariant", + "sx_Go", + "sx_GoBottom", + "sx_GoTop", + "sx_Index", + "sx_IndexClose", + "sx_IndexCondition", + "sx_IndexFlip", + "sx_IndexKey", + "sx_IndexKeyField", + "sx_IndexName", + "sx_IndexOpen", + "sx_IndexOrd", + "sx_IndexTag", + "sx_IndexType", + "sx_IsEncrypted", + "sx_KeyAdd", + "sx_KeyData", + "sx_KeyDrop", + "sx_KeyLength", + "sx_Locate", + "sx_LockCount", + "sx_Locked", + "sx_MemAlloc", + "sx_MemDealloc", + "sx_MemRealloc", + "sx_OrderPosGet", + "sx_OrderPosSet", + "sx_OrderRecNo", + "sx_Pack", + "sx_PutBlob", + "sx_PutRecord", + "sx_PutVariant", + "sx_Query", + "sx_QueryRecCount", + "sx_QueryTest", + "sx_RYOFilterActivate", + "sx_RYOFilterCopy", + "sx_RYOFilterCreate", + "sx_RYOFilterDestroy", + "sx_RYOFilterGetBit", + "sx_RYOFilterRestore", + "sx_RYOFilterSave", + "sx_RYOFilterSetBit", + "sx_RYOKeyAdd", + "sx_RYOKeyDrop", + "sx_RecCount", + "sx_RecNo", + "sx_RecSize", + "sx_RecToString", + "sx_Recall", + "sx_Reindex", + "sx_Replace", + "sx_Rlock", + "sx_Seek", + "sx_SeekBin", + "sx_Select", + "sx_SetCentury", + "sx_SetDateFormat", + "sx_SetDeleted", + "sx_SetEpoch", + "sx_SetErrorFunc", + "sx_SetErrorHook", + "sx_SetExact", + "sx_SetFilter", + "sx_SetGaugeHook", + "sx_SetHandles", + "sx_SetLockTimeout", + "sx_SetMemoBlockSize", + "sx_SetOrder", + "sx_SetPassword", + "sx_SetPrinter", + "sx_SetQueryBit", + "sx_SetRelation", + "sx_SetScope", + "sx_SetSoftSeek", + "sx_SetStringType", + "sx_SetTranslate", + "sx_SetTurboRead", + "sx_Skip", + "sx_SysProp", + "sx_TagArea", + "sx_TagName", + "sx_Unlock", + "sx_Use", + "sx_Version", + "sx_WorkArea", + "sx_Zap" + ], + "timestamp": 886809900, + "characteristics": "0x210E" + }, + "strings_total": 1546, + "domain_strings": [ + "sx_DBFilter", + "sx_DbfDecrypt", + "sx_DbfEncrypt", + "sx_RYOFilterActivate", + "COPYDBF", + "&Test Syntax", + "DBF database format error", + "$DBF must be opened for EXCLUSIVE use", + "Order key delete failure", + "Order key insert failure", + "Order select area invalid", + "!AXS NLM DBF close error on server", + "AXS NLM DBF create error", + ")AXS NLM DBF header read failure on server", + " AXS NLM DBF open error on server", + " AXS NLM DBF read error on server", + ")AXS NLM DBF record append error on server", + "!AXS NLM DBF write error on server", + "*AXS NLM index delete key failure on server" + ] + }, + "SDE50.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 83203, + "raw_off": 4096, + "raw_size": 86016 + }, + { + "name": ".rdata", + "va": 90112, + "vsize": 23532, + "raw_off": 90112, + "raw_size": 24576 + }, + { + "name": ".data", + "va": 114688, + "vsize": 771576, + "raw_off": 114688, + "raw_size": 8192 + }, + { + "name": ".rsrc", + "va": 888832, + "vsize": 18224, + "raw_off": 122880, + "raw_size": 20480 + }, + { + "name": ".reloc", + "va": 909312, + "vsize": 9414, + "raw_off": 143360, + "raw_size": 12288 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "GetFieldIndex", + "IsTaskYours", + "RDEchildEnd", + "RDEchildStart", + "RDEchildSync", + "RDErelEval", + "TaskPtr", + "__Descend@4", + "_sx_GetUDFPath@8", + "_sx_SetLockMode@4", + "_sx_SetUDFPath@8", + "_sx_TagDelete@4", + "lmemcmp", + "lnextchar", + "lprevchar", + "lstrchr", + "sxError", + "sxErrorMsg", + "sxErrorString", + "sx_Alias", + "sx_Append", + "sx_AppendBlank", + "sx_AppendBlankEx", + "sx_AppendEx", + "sx_AppendFrom", + "sx_BaseDate", + "sx_BaseName", + "sx_BlobToFile", + "sx_Bof", + "sx_Close", + "sx_CloseAll", + "sx_CloseIndexes", + "sx_Commit", + "sx_CopyFile", + "sx_CopyFileText", + "sx_CopyStructure", + "sx_CopyStructureExtended", + "sx_Count", + "sx_CreateExec", + "sx_CreateField", + "sx_CreateFrom", + "sx_CreateNew", + "sx_DBFilter", + "sx_DBRlockList", + "sx_DbfDecrypt", + "sx_DbfEncrypt", + "sx_Decrypt", + "sx_Delete", + "sx_Deleted", + "sx_Descend", + "sx_Empty", + "sx_Encrypt", + "sx_Eof", + "sx_ErrorLevel", + "sx_ErrorTest", + "sx_EvalLogical", + "sx_EvalNumeric", + "sx_EvalString", + "sx_EvalTest", + "sx_FieldCount", + "sx_FieldDecimals", + "sx_FieldName", + "sx_FieldNum", + "sx_FieldOffset", + "sx_FieldType", + "sx_FieldWidth", + "sx_FilterAlias", + "sx_FilterDlg", + "sx_FinalizeSession", + "sx_Flock", + "sx_Found", + "sx_GetBitMap", + "sx_GetBlob", + "sx_GetBlobLength", + "sx_GetByte", + "sx_GetDateJulian", + "sx_GetDateString", + "sx_GetDouble", + "sx_GetInteger", + "sx_GetLogical", + "sx_GetLong", + "sx_GetMemo", + "sx_GetPrinter", + "sx_GetQueryBit", + "sx_GetRecord", + "sx_GetScope", + "sx_GetString", + "sx_GetTrimString", + "sx_GetVariant", + "sx_Go", + "sx_GoBottom", + "sx_GoTop", + "sx_Index", + "sx_IndexClose", + "sx_IndexCondition", + "sx_IndexFlip", + "sx_IndexKey", + "sx_IndexKeyField", + "sx_IndexName", + "sx_IndexOpen", + "sx_IndexOrd", + "sx_IndexTag", + "sx_IndexType", + "sx_IsEncrypted", + "sx_KeyAdd", + "sx_KeyData", + "sx_KeyDrop", + "sx_KeyLength", + "sx_Locate", + "sx_LockCount", + "sx_Locked", + "sx_MemAlloc", + "sx_MemDealloc", + "sx_MemRealloc", + "sx_OpenMode", + "sx_OrderPosGet", + "sx_OrderPosSet", + "sx_OrderRecNo", + "sx_Pack", + "sx_PutBlob", + "sx_PutRecord", + "sx_PutVariant", + "sx_Query", + "sx_QueryRecCount", + "sx_QuerySetExact", + "sx_QueryTest", + "sx_RYOFilterActivate", + "sx_RYOFilterCopy", + "sx_RYOFilterCreate", + "sx_RYOFilterDestroy", + "sx_RYOFilterGetBit", + "sx_RYOFilterRestore", + "sx_RYOFilterSave", + "sx_RYOFilterSetBit", + "sx_RYOKeyAdd", + "sx_RYOKeyDrop", + "sx_RecCount", + "sx_RecNo", + "sx_RecSize", + "sx_RecToString", + "sx_Recall", + "sx_Reindex", + "sx_Replace", + "sx_Rlock", + "sx_Seek", + "sx_SeekBin", + "sx_Select", + "sx_SetCentury", + "sx_SetDateFormat", + "sx_SetDeleted", + "sx_SetEpoch", + "sx_SetErrorFunc", + "sx_SetErrorHook", + "sx_SetExact", + "sx_SetFilter", + "sx_SetGaugeFunc", + "sx_SetGaugeHook", + "sx_SetHandles", + "sx_SetLockTimeout", + "sx_SetMemoBlockSize", + "sx_SetOrder", + "sx_SetPassword", + "sx_SetPrinter", + "sx_SetQueryBit", + "sx_SetRelation", + "sx_SetScope", + "sx_SetSoftSeek", + "sx_SetStringType", + "sx_SetTranslate", + "sx_SetTurboRead", + "sx_Skip", + "sx_SysProp", + "sx_TagArea", + "sx_TagName", + "sx_Unlock", + "sx_Use", + "sx_Version", + "sx_WorkArea", + "sx_Zap" + ], + "timestamp": 968345273, + "characteristics": "0x210E" + }, + "strings_total": 1428, + "domain_strings": [ + "sx_DBFilter", + "sx_DbfDecrypt", + "sx_DbfEncrypt", + "sx_RYOFilterActivate", + "COPYDBF", + "PrivateBuild", + "&Test Syntax", + "DBF database format error", + "$DBF must be opened for EXCLUSIVE use", + "Order key delete failure", + "Order key insert failure", + "Order select area invalid" + ] + }, + "SDECDX50.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 204122, + "raw_off": 4096, + "raw_size": 204800 + }, + { + "name": ".rdata", + "va": 208896, + "vsize": 11612, + "raw_off": 208896, + "raw_size": 12288 + }, + { + "name": ".data", + "va": 221184, + "vsize": 21316, + "raw_off": 221184, + "raw_size": 20480 + }, + { + "name": ".rsrc", + "va": 245760, + "vsize": 18224, + "raw_off": 241664, + "raw_size": 20480 + }, + { + "name": ".reloc", + "va": 266240, + "vsize": 9666, + "raw_off": 262144, + "raw_size": 12288 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll", + "GDI32.dll" + ], + "exports": [ + "?BuildFilterDialog@@YGHPAUHWND__@@IIJ@Z", + "?StatusBarWndProc@@YGJPAUHWND__@@IIJ@Z", + "?dbfAddField@@YGGPAU_WORKAREA_@@PAUDBFIELDINFO@@@Z", + "?dbfAlias@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfAppend@@YGGPAU_WORKAREA_@@G@Z", + "?dbfBof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfChildEnd@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildStart@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildSync@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfClearFilter@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearLocate@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearQuery@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearScope@@YGGPAU_WORKAREA_@@@Z", + "?dbfClose@@YGGPAU_WORKAREA_@@@Z", + "?dbfCompile@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfCreate@@YGGPAU_WORKAREA_@@@Z", + "?dbfDecryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfDelete@@YGGPAU_WORKAREA_@@@Z", + "?dbfDeleted@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfEncryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfEof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfEvalBlock@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfFieldCount@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfFieldName@@YGGPAU_WORKAREA_@@GPAD@Z", + "?dbfFilterAlias@@YGGPAU_WORKAREA_@@PAU_FILTERALIAS_@@@Z", + "?dbfFilterDlg@@YGGPAU_WORKAREA_@@PAUHWND__@@PAE@Z", + "?dbfFilterText@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfFlush@@YGGPAU_WORKAREA_@@@Z", + "?dbfForceRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfFound@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfGetQueryBit@@YGGPAU_WORKAREA_@@J@Z", + "?dbfGetValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfGo@@YGGPAU_WORKAREA_@@K@Z", + "?dbfGoBottom@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoCold@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoHot@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoTop@@YGGPAU_WORKAREA_@@@Z", + "?dbfInfo@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfLock@@YGGPAU_WORKAREA_@@PAUDBLOCKINFO@@@Z", + "?dbfNew@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOpen@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOrderCreate@@YGGPAU_WORKAREA_@@PAUDBORDERCREATEINFO@@@Z", + "?dbfOrderInfo@@YGGPAU_WORKAREA_@@GPAX@Z", + "?dbfOrderListAdd@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListClear@@YGGPAU_WORKAREA_@@@Z", + "?dbfOrderListDelete@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListFocus@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListRebuild@@YGGPAU_WORKAREA_@@@Z", + "?dbfPack@@YGGPAU_WORKAREA_@@@Z", + "?dbfPutRec@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfPutValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfQueryCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecall@@YGGPAU_WORKAREA_@@@Z", + "?dbfRecno@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfRelEval@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfRelease@@YGGPAU_WORKAREA_@@@Z", + "?dbfSeek@@YGGPAU_WORKAREA_@@HPAU_VALUE_@@@Z", + "?dbfSetFieldExtent@@YGGPAU_WORKAREA_@@F@Z", + "?dbfSetFilter@@YGGPAU_WORKAREA_@@PAUDBFILTERINFO@@@Z", + "?dbfSetLocate@@YGGPAU_WORKAREA_@@PAUDBSCOPEINFO@@@Z", + "?dbfSetPassword@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQueryBit@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfSetRel@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfSetScope@@YGGPAU_WORKAREA_@@PAUDBSCOPE@@@Z", + "?dbfSkip@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSkipFilter@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSyncChildren@@YGGPAU_WORKAREA_@@@Z", + "?dbfSysName@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTestQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTrans@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfTransRec@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfUnlock@@YGGPAU_WORKAREA_@@K@Z", + "?dbfUnsupported@@YGGPAX@Z", + "?dbfZap@@YGGPAU_WORKAREA_@@@Z", + "FreeFuncTable", + "GetFuncTable", + "IsServerLoaded", + "LoadFuncTable" + ], + "timestamp": 968345274, + "characteristics": "0x210E" + }, + "strings_total": 2500, + "domain_strings": [ + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "?dbfAddField@@YGGPAU_WORKAREA_@@PAUDBFIELDINFO@@@Z", + "?dbfAlias@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfAppend@@YGGPAU_WORKAREA_@@G@Z", + "?dbfBof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfChildEnd@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildStart@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildSync@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfClearFilter@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearLocate@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearQuery@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearScope@@YGGPAU_WORKAREA_@@@Z", + "?dbfClose@@YGGPAU_WORKAREA_@@@Z", + "?dbfCompile@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfCreate@@YGGPAU_WORKAREA_@@@Z", + "?dbfDecryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfDelete@@YGGPAU_WORKAREA_@@@Z", + "?dbfDeleted@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfEncryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfEof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfEvalBlock@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfFieldCount@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfFieldName@@YGGPAU_WORKAREA_@@GPAD@Z", + "?dbfFilterAlias@@YGGPAU_WORKAREA_@@PAU_FILTERALIAS_@@@Z", + "?dbfFilterDlg@@YGGPAU_WORKAREA_@@PAUHWND__@@PAE@Z", + "?dbfFilterText@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfFlush@@YGGPAU_WORKAREA_@@@Z", + "?dbfForceRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfFound@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfGetQueryBit@@YGGPAU_WORKAREA_@@J@Z", + "?dbfGetValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfGo@@YGGPAU_WORKAREA_@@K@Z", + "?dbfGoBottom@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoCold@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoHot@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoTop@@YGGPAU_WORKAREA_@@@Z", + "?dbfInfo@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfLock@@YGGPAU_WORKAREA_@@PAUDBLOCKINFO@@@Z", + "?dbfNew@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOpen@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOrderCreate@@YGGPAU_WORKAREA_@@PAUDBORDERCREATEINFO@@@Z", + "?dbfOrderInfo@@YGGPAU_WORKAREA_@@GPAX@Z", + "?dbfOrderListAdd@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListClear@@YGGPAU_WORKAREA_@@@Z", + "?dbfOrderListDelete@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListFocus@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListRebuild@@YGGPAU_WORKAREA_@@@Z", + "?dbfPack@@YGGPAU_WORKAREA_@@@Z", + "?dbfPutRec@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfPutValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfQueryCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecall@@YGGPAU_WORKAREA_@@@Z", + "?dbfRecno@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfRelEval@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfRelease@@YGGPAU_WORKAREA_@@@Z", + "?dbfSeek@@YGGPAU_WORKAREA_@@HPAU_VALUE_@@@Z", + "?dbfSetFieldExtent@@YGGPAU_WORKAREA_@@F@Z", + "?dbfSetFilter@@YGGPAU_WORKAREA_@@PAUDBFILTERINFO@@@Z", + "?dbfSetLocate@@YGGPAU_WORKAREA_@@PAUDBSCOPEINFO@@@Z", + "?dbfSetPassword@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQueryBit@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfSetRel@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfSetScope@@YGGPAU_WORKAREA_@@PAUDBSCOPE@@@Z", + "?dbfSkip@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSkipFilter@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSyncChildren@@YGGPAU_WORKAREA_@@@Z", + "?dbfSysName@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTestQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTrans@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfTransRec@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfUnlock@@YGGPAU_WORKAREA_@@K@Z", + "?dbfUnsupported@@YGGPAX@Z", + "?dbfZap@@YGGPAU_WORKAREA_@@@Z", + ".DBF", + "SELECT", + "logical AND separates two expressions", + "logical OR separates two expressions", + "PrivateBuild", + "&Test Syntax", + "DBF database format error", + "$DBF must be opened for EXCLUSIVE use", + "Order key delete failure", + "Order key insert failure", + "Order select area invalid" + ] + }, + "SDENSX50.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 195402, + "raw_off": 4096, + "raw_size": 196608 + }, + { + "name": ".rdata", + "va": 200704, + "vsize": 11516, + "raw_off": 200704, + "raw_size": 12288 + }, + { + "name": ".data", + "va": 212992, + "vsize": 21284, + "raw_off": 212992, + "raw_size": 20480 + }, + { + "name": ".rsrc", + "va": 237568, + "vsize": 18224, + "raw_off": 233472, + "raw_size": 20480 + }, + { + "name": ".reloc", + "va": 258048, + "vsize": 9602, + "raw_off": 253952, + "raw_size": 12288 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll", + "GDI32.dll" + ], + "exports": [ + "?BuildFilterDialog@@YGHPAUHWND__@@IIJ@Z", + "?StatusBarWndProc@@YGJPAUHWND__@@IIJ@Z", + "?dbfAddField@@YGGPAU_WORKAREA_@@PAUDBFIELDINFO@@@Z", + "?dbfAlias@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfAppend@@YGGPAU_WORKAREA_@@G@Z", + "?dbfBof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfChildEnd@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildStart@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildSync@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfClearFilter@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearLocate@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearQuery@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearScope@@YGGPAU_WORKAREA_@@@Z", + "?dbfClose@@YGGPAU_WORKAREA_@@@Z", + "?dbfCompile@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfCreate@@YGGPAU_WORKAREA_@@@Z", + "?dbfDecryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfDelete@@YGGPAU_WORKAREA_@@@Z", + "?dbfDeleted@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfEncryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfEof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfEvalBlock@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfFieldCount@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfFieldName@@YGGPAU_WORKAREA_@@GPAD@Z", + "?dbfFilterAlias@@YGGPAU_WORKAREA_@@PAU_FILTERALIAS_@@@Z", + "?dbfFilterDlg@@YGGPAU_WORKAREA_@@PAUHWND__@@PAE@Z", + "?dbfFilterText@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfFlush@@YGGPAU_WORKAREA_@@@Z", + "?dbfForceRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfFound@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfGetQueryBit@@YGGPAU_WORKAREA_@@J@Z", + "?dbfGetValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfGo@@YGGPAU_WORKAREA_@@K@Z", + "?dbfGoBottom@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoCold@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoHot@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoTop@@YGGPAU_WORKAREA_@@@Z", + "?dbfInfo@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfLock@@YGGPAU_WORKAREA_@@PAUDBLOCKINFO@@@Z", + "?dbfNew@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOpen@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOrderCreate@@YGGPAU_WORKAREA_@@PAUDBORDERCREATEINFO@@@Z", + "?dbfOrderInfo@@YGGPAU_WORKAREA_@@GPAX@Z", + "?dbfOrderListAdd@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListClear@@YGGPAU_WORKAREA_@@@Z", + "?dbfOrderListDelete@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListFocus@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListRebuild@@YGGPAU_WORKAREA_@@@Z", + "?dbfPack@@YGGPAU_WORKAREA_@@@Z", + "?dbfPutRec@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfPutValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfQueryCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecall@@YGGPAU_WORKAREA_@@@Z", + "?dbfRecno@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfRelEval@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfRelease@@YGGPAU_WORKAREA_@@@Z", + "?dbfSeek@@YGGPAU_WORKAREA_@@HPAU_VALUE_@@@Z", + "?dbfSetFieldExtent@@YGGPAU_WORKAREA_@@F@Z", + "?dbfSetFilter@@YGGPAU_WORKAREA_@@PAUDBFILTERINFO@@@Z", + "?dbfSetLocate@@YGGPAU_WORKAREA_@@PAUDBSCOPEINFO@@@Z", + "?dbfSetPassword@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQueryBit@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfSetRel@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfSetScope@@YGGPAU_WORKAREA_@@PAUDBSCOPE@@@Z", + "?dbfSkip@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSkipFilter@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSyncChildren@@YGGPAU_WORKAREA_@@@Z", + "?dbfSysName@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTestQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTrans@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfTransRec@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfUnlock@@YGGPAU_WORKAREA_@@K@Z", + "?dbfUnsupported@@YGGPAX@Z", + "?dbfZap@@YGGPAU_WORKAREA_@@@Z", + "FreeFuncTable", + "GetFuncTable", + "IsServerLoaded", + "LoadFuncTable" + ], + "timestamp": 968345276, + "characteristics": "0x210E" + }, + "strings_total": 2477, + "domain_strings": [ + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "?dbfAddField@@YGGPAU_WORKAREA_@@PAUDBFIELDINFO@@@Z", + "?dbfAlias@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfAppend@@YGGPAU_WORKAREA_@@G@Z", + "?dbfBof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfChildEnd@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildStart@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildSync@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfClearFilter@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearLocate@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearQuery@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearScope@@YGGPAU_WORKAREA_@@@Z", + "?dbfClose@@YGGPAU_WORKAREA_@@@Z", + "?dbfCompile@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfCreate@@YGGPAU_WORKAREA_@@@Z", + "?dbfDecryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfDelete@@YGGPAU_WORKAREA_@@@Z", + "?dbfDeleted@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfEncryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfEof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfEvalBlock@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfFieldCount@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfFieldName@@YGGPAU_WORKAREA_@@GPAD@Z", + "?dbfFilterAlias@@YGGPAU_WORKAREA_@@PAU_FILTERALIAS_@@@Z", + "?dbfFilterDlg@@YGGPAU_WORKAREA_@@PAUHWND__@@PAE@Z", + "?dbfFilterText@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfFlush@@YGGPAU_WORKAREA_@@@Z", + "?dbfForceRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfFound@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfGetQueryBit@@YGGPAU_WORKAREA_@@J@Z", + "?dbfGetValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfGo@@YGGPAU_WORKAREA_@@K@Z", + "?dbfGoBottom@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoCold@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoHot@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoTop@@YGGPAU_WORKAREA_@@@Z", + "?dbfInfo@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfLock@@YGGPAU_WORKAREA_@@PAUDBLOCKINFO@@@Z", + "?dbfNew@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOpen@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOrderCreate@@YGGPAU_WORKAREA_@@PAUDBORDERCREATEINFO@@@Z", + "?dbfOrderInfo@@YGGPAU_WORKAREA_@@GPAX@Z", + "?dbfOrderListAdd@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListClear@@YGGPAU_WORKAREA_@@@Z", + "?dbfOrderListDelete@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListFocus@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListRebuild@@YGGPAU_WORKAREA_@@@Z", + "?dbfPack@@YGGPAU_WORKAREA_@@@Z", + "?dbfPutRec@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfPutValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfQueryCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecall@@YGGPAU_WORKAREA_@@@Z", + "?dbfRecno@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfRelEval@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfRelease@@YGGPAU_WORKAREA_@@@Z", + "?dbfSeek@@YGGPAU_WORKAREA_@@HPAU_VALUE_@@@Z", + "?dbfSetFieldExtent@@YGGPAU_WORKAREA_@@F@Z", + "?dbfSetFilter@@YGGPAU_WORKAREA_@@PAUDBFILTERINFO@@@Z", + "?dbfSetLocate@@YGGPAU_WORKAREA_@@PAUDBSCOPEINFO@@@Z", + "?dbfSetPassword@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQueryBit@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfSetRel@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfSetScope@@YGGPAU_WORKAREA_@@PAUDBSCOPE@@@Z", + "?dbfSkip@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSkipFilter@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSyncChildren@@YGGPAU_WORKAREA_@@@Z", + "?dbfSysName@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTestQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTrans@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfTransRec@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfUnlock@@YGGPAU_WORKAREA_@@K@Z", + "?dbfUnsupported@@YGGPAX@Z", + "?dbfZap@@YGGPAU_WORKAREA_@@@Z", + ".DBF", + ".SMT", + "SELECT", + "logical AND separates two expressions", + "logical OR separates two expressions", + "PrivateBuild", + "&Test Syntax", + "DBF database format error", + "$DBF must be opened for EXCLUSIVE use", + "Order key delete failure", + "Order key insert failure", + "Order select area invalid" + ] + }, + "SDENTX50.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 187874, + "raw_off": 4096, + "raw_size": 188416 + }, + { + "name": ".rdata", + "va": 192512, + "vsize": 11596, + "raw_off": 192512, + "raw_size": 12288 + }, + { + "name": ".data", + "va": 204800, + "vsize": 21828, + "raw_off": 204800, + "raw_size": 20480 + }, + { + "name": ".rsrc", + "va": 229376, + "vsize": 18224, + "raw_off": 225280, + "raw_size": 20480 + }, + { + "name": ".reloc", + "va": 249856, + "vsize": 9482, + "raw_off": 245760, + "raw_size": 12288 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll", + "GDI32.dll" + ], + "exports": [ + "?BuildFilterDialog@@YGHPAUHWND__@@IIJ@Z", + "?StatusBarWndProc@@YGJPAUHWND__@@IIJ@Z", + "?dbfAddField@@YGGPAU_WORKAREA_@@PAUDBFIELDINFO@@@Z", + "?dbfAlias@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfAppend@@YGGPAU_WORKAREA_@@G@Z", + "?dbfBof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfChildEnd@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildStart@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildSync@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfClearFilter@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearLocate@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearQuery@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearScope@@YGGPAU_WORKAREA_@@@Z", + "?dbfClose@@YGGPAU_WORKAREA_@@@Z", + "?dbfCompile@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfCreate@@YGGPAU_WORKAREA_@@@Z", + "?dbfDecryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfDelete@@YGGPAU_WORKAREA_@@@Z", + "?dbfDeleted@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfEncryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfEof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfEvalBlock@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfFieldCount@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfFieldName@@YGGPAU_WORKAREA_@@GPAD@Z", + "?dbfFilterAlias@@YGGPAU_WORKAREA_@@PAU_FILTERALIAS_@@@Z", + "?dbfFilterDlg@@YGGPAU_WORKAREA_@@PAUHWND__@@PAE@Z", + "?dbfFilterText@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfFlush@@YGGPAU_WORKAREA_@@@Z", + "?dbfForceRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfFound@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfGetQueryBit@@YGGPAU_WORKAREA_@@J@Z", + "?dbfGetValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfGo@@YGGPAU_WORKAREA_@@K@Z", + "?dbfGoBottom@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoCold@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoHot@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoTop@@YGGPAU_WORKAREA_@@@Z", + "?dbfInfo@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfLock@@YGGPAU_WORKAREA_@@PAUDBLOCKINFO@@@Z", + "?dbfNew@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOpen@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOrderCreate@@YGGPAU_WORKAREA_@@PAUDBORDERCREATEINFO@@@Z", + "?dbfOrderInfo@@YGGPAU_WORKAREA_@@GPAX@Z", + "?dbfOrderListAdd@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListClear@@YGGPAU_WORKAREA_@@@Z", + "?dbfOrderListDelete@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListFocus@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListRebuild@@YGGPAU_WORKAREA_@@@Z", + "?dbfPack@@YGGPAU_WORKAREA_@@@Z", + "?dbfPutRec@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfPutValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfQueryCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecall@@YGGPAU_WORKAREA_@@@Z", + "?dbfRecno@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfRelEval@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfRelease@@YGGPAU_WORKAREA_@@@Z", + "?dbfSeek@@YGGPAU_WORKAREA_@@HPAU_VALUE_@@@Z", + "?dbfSetFieldExtent@@YGGPAU_WORKAREA_@@F@Z", + "?dbfSetFilter@@YGGPAU_WORKAREA_@@PAUDBFILTERINFO@@@Z", + "?dbfSetLocate@@YGGPAU_WORKAREA_@@PAUDBSCOPEINFO@@@Z", + "?dbfSetPassword@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQueryBit@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfSetRel@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfSetScope@@YGGPAU_WORKAREA_@@PAUDBSCOPE@@@Z", + "?dbfSkip@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSkipFilter@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSyncChildren@@YGGPAU_WORKAREA_@@@Z", + "?dbfSysName@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTestQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTrans@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfTransRec@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfUnlock@@YGGPAU_WORKAREA_@@K@Z", + "?dbfUnsupported@@YGGPAX@Z", + "?dbfZap@@YGGPAU_WORKAREA_@@@Z", + "FreeFuncTable", + "GetFuncTable", + "IsServerLoaded", + "LoadFuncTable" + ], + "timestamp": 968345277, + "characteristics": "0x210E" + }, + "strings_total": 2193, + "domain_strings": [ + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "?dbfAddField@@YGGPAU_WORKAREA_@@PAUDBFIELDINFO@@@Z", + "?dbfAlias@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfAppend@@YGGPAU_WORKAREA_@@G@Z", + "?dbfBof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfChildEnd@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildStart@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfChildSync@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfClearFilter@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearLocate@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearQuery@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfClearScope@@YGGPAU_WORKAREA_@@@Z", + "?dbfClose@@YGGPAU_WORKAREA_@@@Z", + "?dbfCompile@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfCreate@@YGGPAU_WORKAREA_@@@Z", + "?dbfDecryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfDelete@@YGGPAU_WORKAREA_@@@Z", + "?dbfDeleted@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfEncryptDbf@@YGGPAU_WORKAREA_@@@Z", + "?dbfEof@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfEvalBlock@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfFieldCount@@YGGPAU_WORKAREA_@@PAG@Z", + "?dbfFieldName@@YGGPAU_WORKAREA_@@GPAD@Z", + "?dbfFilterAlias@@YGGPAU_WORKAREA_@@PAU_FILTERALIAS_@@@Z", + "?dbfFilterDlg@@YGGPAU_WORKAREA_@@PAUHWND__@@PAE@Z", + "?dbfFilterText@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfFlush@@YGGPAU_WORKAREA_@@@Z", + "?dbfForceRel@@YGGPAU_WORKAREA_@@@Z", + "?dbfFound@@YGGPAU_WORKAREA_@@PAH@Z", + "?dbfGetQueryBit@@YGGPAU_WORKAREA_@@J@Z", + "?dbfGetValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfGo@@YGGPAU_WORKAREA_@@K@Z", + "?dbfGoBottom@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoCold@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoHot@@YGGPAU_WORKAREA_@@@Z", + "?dbfGoTop@@YGGPAU_WORKAREA_@@@Z", + "?dbfInfo@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfLock@@YGGPAU_WORKAREA_@@PAUDBLOCKINFO@@@Z", + "?dbfNew@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOpen@@YGGPAU_WORKAREA_@@PAUDBOPENINFO@@@Z", + "?dbfOrderCreate@@YGGPAU_WORKAREA_@@PAUDBORDERCREATEINFO@@@Z", + "?dbfOrderInfo@@YGGPAU_WORKAREA_@@GPAX@Z", + "?dbfOrderListAdd@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListClear@@YGGPAU_WORKAREA_@@@Z", + "?dbfOrderListDelete@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListFocus@@YGGPAU_WORKAREA_@@PAUDBORDERINFO@@@Z", + "?dbfOrderListRebuild@@YGGPAU_WORKAREA_@@@Z", + "?dbfPack@@YGGPAU_WORKAREA_@@@Z", + "?dbfPutRec@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfPutValue@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfQueryCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecCount@@YGGPAU_WORKAREA_@@PAJ@Z", + "?dbfRecall@@YGGPAU_WORKAREA_@@@Z", + "?dbfRecno@@YGGPAU_WORKAREA_@@PAU_VALUE_@@@Z", + "?dbfRelEval@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfRelease@@YGGPAU_WORKAREA_@@@Z", + "?dbfSeek@@YGGPAU_WORKAREA_@@HPAU_VALUE_@@@Z", + "?dbfSetFieldExtent@@YGGPAU_WORKAREA_@@F@Z", + "?dbfSetFilter@@YGGPAU_WORKAREA_@@PAUDBFILTERINFO@@@Z", + "?dbfSetLocate@@YGGPAU_WORKAREA_@@PAUDBSCOPEINFO@@@Z", + "?dbfSetPassword@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfSetQueryBit@@YGGPAU_WORKAREA_@@GPAU_VALUE_@@@Z", + "?dbfSetRel@@YGGPAU_WORKAREA_@@PAU_DBRELINFO_@@@Z", + "?dbfSetScope@@YGGPAU_WORKAREA_@@PAUDBSCOPE@@@Z", + "?dbfSkip@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSkipFilter@@YGGPAU_WORKAREA_@@J@Z", + "?dbfSyncChildren@@YGGPAU_WORKAREA_@@@Z", + "?dbfSysName@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTestQuery@@YGGPAU_WORKAREA_@@PAE@Z", + "?dbfTrans@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfTransRec@@YGGPAU_WORKAREA_@@PAUDBTRANSINFO@@@Z", + "?dbfUnlock@@YGGPAU_WORKAREA_@@K@Z", + "?dbfUnsupported@@YGGPAX@Z", + "?dbfZap@@YGGPAU_WORKAREA_@@@Z", + ".DBF", + "SELECT", + "logical AND separates two expressions", + "logical OR separates two expressions", + "PrivateBuild", + "&Test Syntax", + "DBF database format error", + "$DBF must be opened for EXCLUSIVE use", + "Order key delete failure", + "Order key insert failure", + "Order select area invalid" + ] + }, + "ST_BdSN.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 76480, + "raw_off": 1024, + "raw_size": 76800 + }, + { + "name": "DATA", + "va": 81920, + "vsize": 2876, + "raw_off": 77824, + "raw_size": 3072 + }, + { + "name": "BSS", + "va": 86016, + "vsize": 309, + "raw_off": 80896, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 90112, + "vsize": 23346, + "raw_off": 80896, + "raw_size": 23552 + }, + { + "name": ".edata", + "va": 114688, + "vsize": 114, + "raw_off": 104448, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 118784, + "vsize": 8632, + "raw_off": 104960, + "raw_size": 8704 + }, + { + "name": ".rsrc", + "va": 131072, + "vsize": 8704, + "raw_off": 113664, + "raw_size": 8704 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "DP_COMMON.CPM" + ], + "exports": [ + "Chk_BD_SN", + "Chk_BD_USE", + "Chk_REG_SN" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 2298, + "domain_strings": [ + "select", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem" + ] + }, + "ST_BSC\\2007_제비율.JB_M": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 25, + "header_len": 353, + "record_len": 121, + "fields": [ + { + "name": "RATE0", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE1", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE2", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE3", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE4", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE5", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE6", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE7", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE8", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE9", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2011(상_0112)_제비율.JB_1": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 41, + "header_len": 353, + "record_len": 121, + "fields": [ + { + "name": "RATE0", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE1", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE2", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE3", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE4", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE5", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE6", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE7", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE8", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE9", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2015(상_0301,실적)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2015(상_0309)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2016(상_0301,실적)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2016(상_0307)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2017(상_0215)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2018(상_0327)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2018(하_0701,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2018(하_0801)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2019(상_0101,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2019(상_0107)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2019(상_0417)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2019(상_0628)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2020(상_0102)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2020(상_0102,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2020(상_0527)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2021(상_0104)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2021(상_0421)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2021(상_0520)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2021(하_0501,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2021(하_0701)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2022(상_0103)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2022(상_0103,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2022(상_0425)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2022(하_0501,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2023(상_0102)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2023(상_0102,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2023(상_0428)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2024(상_0101)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2024(상_0101,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2024(상_0315)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2025(상_0101)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2025(상_0101,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2025(상_0401)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2025(상_0501)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2025(하_0501,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2025(하_0809)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2026(상_0101)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2026(상_0101,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2026(상_0313)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2026(상_0413)_제비율.JB_R": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 1153, + "record_len": 421, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_21", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_22", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_23", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_24", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_25", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_26", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_27", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_28", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_29", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_30", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_31", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_32", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_33", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_34", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_35", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\2026(하_0508,표준시장)_제비율.JB_RA": { + "format": "DBF-like", + "dbf": { + "version": "0x03", + "records": 50, + "header_len": 673, + "record_len": 241, + "fields": [ + { + "name": "RATE_01", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_02", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_03", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_04", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_05", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_06", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_07", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_08", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_09", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_10", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_11", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_12", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_13", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_14", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_15", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_16", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_17", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_18", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_19", + "type": "N", + "length": 12, + "decimals": 4 + }, + { + "name": "RATE_20", + "type": "N", + "length": 12, + "decimals": 4 + } + ] + } + }, + "ST_BSC\\GRPCOD_E.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 2539, + "header_len": 257, + "record_len": 134, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CUR_COD", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "ROT_COD", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "LEV", + "type": "N", + "length": 2, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 80, + "decimals": 0 + }, + { + "name": "ORD", + "type": "C", + "length": 5, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\GRPCOD_Z.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 12125, + "header_len": 257, + "record_len": 134, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CUR_COD", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "ROT_COD", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "LEV", + "type": "N", + "length": 2, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 80, + "decimals": 0 + }, + { + "name": "ORD", + "type": "C", + "length": 5, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\JDCODE_L.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 460, + "header_len": 417, + "record_len": 339, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_2", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 110, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "GNCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "TYP_STN", + "type": "L", + "length": 1, + "decimals": 0 + }, + { + "name": "PSCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "ST_NAME", + "type": "C", + "length": 70, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\JDCODE_M.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 57580, + "header_len": 417, + "record_len": 339, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_2", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 110, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "GNCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "TYP_STN", + "type": "L", + "length": 1, + "decimals": 0 + }, + { + "name": "PSCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "ST_NAME", + "type": "C", + "length": 70, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\JDCODE_S.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 851, + "header_len": 417, + "record_len": 339, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_2", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 110, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "GNCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "TYP_STN", + "type": "L", + "length": 1, + "decimals": 0 + }, + { + "name": "PSCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "ST_NAME", + "type": "C", + "length": 70, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\JDCODE_X.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 833, + "header_len": 417, + "record_len": 339, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_2", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 110, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "GNCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "TYP_STN", + "type": "L", + "length": 1, + "decimals": 0 + }, + { + "name": "PSCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "ST_NAME", + "type": "C", + "length": 70, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\JDCODE_Z.BSC": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 33927, + "header_len": 417, + "record_len": 339, + "fields": [ + { + "name": "TYP_1", + "type": "C", + "length": 16, + "decimals": 0 + }, + { + "name": "TYP_2", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "TYP_", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 110, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "GNCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "TYP_STN", + "type": "L", + "length": 1, + "decimals": 0 + }, + { + "name": "PSCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "ST_NAME", + "type": "C", + "length": 70, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\Valid_Xml.vsl": { + "format": "text", + "detail": { + "encoding": "utf-8", + "lines": 1429 + }, + "strings": [ + "", + "", + "", + "", + " V1.0.4 XML", + " 2022-10-06", + " 1.0.1 ", + " 1.0.2 ", + "(G2B", + " 1.0.3", + " (2015-07-14)", + " 1.0.3 ", + " max length ", + "(16->20) (2017-04-19)", + " 1.0.4 ", + " (2018-11-29)", + "- 1.0.5 ", + " (2022-11-28)", + "", + "", + "", + "", + "", + " ", + " ", + " ", + " ", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "\" minOccurs=\"0\"/>", + "\" type=\"xsd:double\"/>", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + ")\"/>", + "", + "\" type=\"xsd:boolean\" minOccurs=\"0\"/>", + "\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>", + "", + "\" minOccurs=\"0\">", + "\" type=\"xsd:double\" minOccurs=\"0\"/>", + "\" type=\"xsd:positiveInteger\" minOccurs=\"0\"/>", + "\" type=\"xsd:string\"/>", + "", + "", + "", + "", + "_1USD\"/>", + "_1EUR\"/>", + "_100", + "", + "", + "", + "", + "\" maxOccurs=\"unbounded\"/>", + "(PS)\"/>", + "-->", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + " -->", + "", + "- 肄붾뱶 洹쒖젙 愿", + "利앹뿬遺", + "", + "", + "", + "硫댁쟻\" type=\"xsd:double\"/>", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "由щ퉬怨꾩닔\" type=\"xsd:double\" minOccurs=\"0\"/>", + "由щ퉬\"/>", + "", + "怨듭쥌援щ텇\">", + "由щ퉬)\"/>", + "", + "", + "湲덉븸\" type=\"xsd:double\"/>", + "", + "" + ] + }, + "ST_BSC\\노임기계\\2025(상_노임,기계경비).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\노임기계\\2025(하_노임,기계경비).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\노임기계\\2026(상_노임,기계경비).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\노임기계\\2026(하_노임,기계경비).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(상,국교,해수부,조달청)_표준시장.CSTA": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 4921, + "header_len": 1057, + "record_len": 493, + "fields": [ + { + "name": "CODE", + "type": "C", + "length": 6, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 50, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CODEA", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "BQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "PG_J", + "type": "C", + "length": 12, + "decimals": 0 + }, + { + "name": "AAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT3", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT4", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "RATE_L", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_M", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_S", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "TYP_C", + "type": "C", + "length": 1, + "decimals": 0 + }, + { + "name": "EDT_DATE", + "type": "C", + "length": 12, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(상_시장시공,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(상_표준시장,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(상_표준시장[노임외 경비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(상_표준시장[노임외 재료비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(하,국교,해수부,조달청)_표준시장.CSTA": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 4921, + "header_len": 1057, + "record_len": 493, + "fields": [ + { + "name": "CODE", + "type": "C", + "length": 6, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 50, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CODEA", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "BQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "PG_J", + "type": "C", + "length": 12, + "decimals": 0 + }, + { + "name": "AAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT3", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT4", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "RATE_L", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_M", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_S", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "TYP_C", + "type": "C", + "length": 1, + "decimals": 0 + }, + { + "name": "EDT_DATE", + "type": "C", + "length": 12, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(하_시장시공,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(하_표준시장,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(하_표준시장[노임외 경비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\2025(하_표준시장[노임외 재료비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2025\\COSTA.CSTA": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 4921, + "header_len": 1057, + "record_len": 493, + "fields": [ + { + "name": "CODE", + "type": "C", + "length": 6, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 50, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CODEA", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "BQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "PG_J", + "type": "C", + "length": 12, + "decimals": 0 + }, + { + "name": "AAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT3", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT4", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "RATE_L", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_M", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_S", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "TYP_C", + "type": "C", + "length": 1, + "decimals": 0 + }, + { + "name": "EDT_DATE", + "type": "C", + "length": 12, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\실적단가\\2025\\표준시장단가(2025_04_21).Info": { + "format": "DBF-like", + "dbf": { + "version": "0x32", + "records": 3139494579, + "header_len": 47603, + "record_len": 45533, + "fields": [ + { + "name": "�����)\r\n ", + "type": "±", + "length": 179, + "decimals": 197 + }, + { + "name": " 1. 1)\r\n ", + "type": " ", + "length": 231, + "decimals": 188 + }, + { + "name": "5. 1. 1)\r", + "type": "\n", + "length": 182, + "decimals": 32 + }, + { + "name": "025. 3. 24", + "type": ")", + "length": 50, + "decimals": 48 + }, + { + "name": "����������\r", + "type": "\n", + "length": 182, + "decimals": 32 + } + ] + } + }, + "ST_BSC\\실적단가\\2025\\표준시장단가(2025_08_04).Info": { + "format": "DBF-like", + "dbf": { + "version": "0x32", + "records": 3340821171, + "header_len": 47567, + "record_len": 45533, + "fields": [ + { + "name": "�����)\r\n ", + "type": "±", + "length": 179, + "decimals": 197 + }, + { + "name": " 5. 1)\r\n ", + "type": " ", + "length": 231, + "decimals": 188 + }, + { + "name": "5. 5. 12)\r", + "type": "\n", + "length": 182, + "decimals": 32 + }, + { + "name": "025. 8. 4", + "type": ")", + "length": 228, + "decimals": 184 + }, + { + "name": " (202", + "type": "5", + "length": 46, + "decimals": 32 + }, + { + "name": "��\r\n ", + "type": " ", + "length": 32, + "decimals": 32 + }, + { + "name": " 24) - ����", + "type": "\r", + "length": 32, + "decimals": 32 + }, + { + "name": "2025. 1. 1", + "type": "7", + "length": 197, + "decimals": 235 + }, + { + "name": "����� �����", + "type": "Ã", + "length": 176, + "decimals": 221 + } + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(상,국교,해수부,조달청)_표준시장.CSTA": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 4961, + "header_len": 1057, + "record_len": 493, + "fields": [ + { + "name": "CODE", + "type": "C", + "length": 6, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 50, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CODEA", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "BQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "PG_J", + "type": "C", + "length": 12, + "decimals": 0 + }, + { + "name": "AAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT3", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT4", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "RATE_L", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_M", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_S", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "TYP_C", + "type": "C", + "length": 1, + "decimals": 0 + }, + { + "name": "EDT_DATE", + "type": "C", + "length": 12, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(상_시장시공,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(상_표준시장,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(상_표준시장[노임외 경비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(상_표준시장[노임외 재료비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(하,국교,해수부,조달청)_표준시장.CSTA": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 4961, + "header_len": 1057, + "record_len": 493, + "fields": [ + { + "name": "CODE", + "type": "C", + "length": 6, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 50, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CODEA", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "BQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "PG_J", + "type": "C", + "length": 12, + "decimals": 0 + }, + { + "name": "AAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT3", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT4", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "RATE_L", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_M", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_S", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "TYP_C", + "type": "C", + "length": 1, + "decimals": 0 + }, + { + "name": "EDT_DATE", + "type": "C", + "length": 12, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(하_표준시장,조달청).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(하_표준시장[노임외 경비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\2026(하_표준시장[노임외 재료비적용],국교,해수부).STBSC": { + "format": "ZIP", + "zip": { + "entries": 4, + "encrypted": 4, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\실적단가\\2026\\COSTA.CSTA": { + "format": "DBF-like", + "dbf": { + "version": "0x06", + "records": 4961, + "header_len": 1057, + "record_len": 493, + "fields": [ + { + "name": "CODE", + "type": "C", + "length": 6, + "decimals": 0 + }, + { + "name": "NAME", + "type": "C", + "length": 50, + "decimals": 0 + }, + { + "name": "SIZE", + "type": "C", + "length": 60, + "decimals": 0 + }, + { + "name": "UNIT", + "type": "C", + "length": 10, + "decimals": 0 + }, + { + "name": "CODEA", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "JDCODE", + "type": "C", + "length": 17, + "decimals": 0 + }, + { + "name": "BQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "EQCODE", + "type": "C", + "length": 11, + "decimals": 0 + }, + { + "name": "PG_J", + "type": "C", + "length": 12, + "decimals": 0 + }, + { + "name": "AAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT1", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "TAMT2", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT1_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "MAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "LAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "SAMT2_R", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT3", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "AAMT4", + "type": "N", + "length": 15, + "decimals": 2 + }, + { + "name": "RATE_L", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_M", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "RATE_S", + "type": "N", + "length": 7, + "decimals": 3 + }, + { + "name": "TYP_C", + "type": "C", + "length": 1, + "decimals": 0 + }, + { + "name": "EDT_DATE", + "type": "C", + "length": 12, + "decimals": 0 + } + ] + } + }, + "ST_BSC\\실적단가\\2026\\표준시장단가(2026_05_04).Info": { + "format": "DBF-like", + "dbf": { + "version": "0x32", + "records": 3139494579, + "header_len": 47603, + "record_len": 45533, + "fields": [ + { + "name": "�����)\r\n ", + "type": "±", + "length": 179, + "decimals": 197 + }, + { + "name": " 1. 1)\r\n ", + "type": " ", + "length": 231, + "decimals": 188 + }, + { + "name": "6. 1. 1)\r", + "type": "\n", + "length": 182, + "decimals": 32 + }, + { + "name": "026. 1. 15", + "type": ")", + "length": 48, + "decimals": 50 + } + ] + } + }, + "ST_BSC\\실적단가\\2026\\표준시장단가(2026_05_27).Info": { + "format": "DBF-like", + "dbf": { + "version": "0x32", + "records": 3340821171, + "header_len": 47567, + "record_len": 45533, + "fields": [ + { + "name": "�����)\r\n ", + "type": "±", + "length": 179, + "decimals": 197 + }, + { + "name": " 5. 8)\r\n ", + "type": " ", + "length": 231, + "decimals": 188 + }, + { + "name": "6. 5. 12)\r", + "type": "\n", + "length": 182, + "decimals": 32 + }, + { + "name": "026. 5. 27", + "type": ")", + "length": 50, + "decimals": 48 + }, + { + "name": "����������\r", + "type": "\n", + "length": 182, + "decimals": 32 + } + ] + } + }, + "ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_건축).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_기계설비).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_전기).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_토목).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_통신).STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "MEM.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\일위대가\\2026\\표준일위대가(2026_03_17).Info": { + "format": "text", + "detail": { + "encoding": "cp949", + "lines": 11 + }, + "strings": [ + " 2026", + " : 2026.01.27 ", + "(03.17 ", + " ", + " : 2026 ", + " 2026 ", + " ★★ 2026년 상반기 조달청 표준일위대가 ★★ ", + " ▣ 발 표 일 : 2026.01.27 공사원가통합관리시스템(03.17 수정배포)", + " ▣ 노 임 : 2026 상반기 노임", + " ▣ 유 류 : 2026 상반기 유류(최초발표분)", + " ▣ 기계경비 : 2026 상반기 기계경비", + " ▣ 일위대가 : 2026 상반기 조달청 표준일위대가(토목공사)", + " 2026 상반기 조달청 표준일위대가(건축공사)", + " 2026 상반기 조달청 표준일위대가(기계설비공사)", + " 2026 상반기 조달청 표준일위대가(전기공사)", + " 2026 상반기 조달청 표준일위대가(통신공사)" + ] + }, + "ST_BSC\\자재단가\\시설공통자재\\2025-상-시설공통자재.STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "info.ST", + "XDET.ST", + "Start.ST", + "COST.ST", + "CH_NAME.ST" + ] + } + }, + "ST_BSC\\자재단가\\시설공통자재\\2025-하-시설공통자재.STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "Start.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\자재단가\\시설공통자재\\2026-상(06)-시설공통자재.STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "Start.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\자재단가\\시설공통자재\\2026-상-시설공통자재.STBSC": { + "format": "ZIP", + "zip": { + "entries": 5, + "encrypted": 5, + "names": [ + "CH_NAME.ST", + "COST.ST", + "info.ST", + "Start.ST", + "XDET.ST" + ] + } + }, + "ST_BSC\\호환규정코드(2026_09_01)": { + "format": "text", + "detail": { + "encoding": "cp949", + "lines": 3 + }, + "strings": [ + " 2026", + " https://npccs.g2b.go.kr ", + "호환규정코드 2026년 9월 1일 조달청 발표분 반영", + "조달청 공사원가통합관리시스템 https://npccs.g2b.go.kr 발표" + ] + }, + "ST_Com_V.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 520648, + "raw_off": 1024, + "raw_size": 520704 + }, + { + "name": "DATA", + "va": 528384, + "vsize": 8588, + "raw_off": 521728, + "raw_size": 8704 + }, + { + "name": "BSS", + "va": 540672, + "vsize": 3857, + "raw_off": 530432, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 544768, + "vsize": 9724, + "raw_off": 530432, + "raw_size": 9728 + }, + { + "name": ".edata", + "va": 557056, + "vsize": 253, + "raw_off": 540160, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 561152, + "vsize": 33036, + "raw_off": 540672, + "raw_size": 33280 + }, + { + "name": ".rsrc", + "va": 598016, + "vsize": 74240, + "raw_off": 573952, + "raw_size": 74240 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "comctl32.dll", + "wsock32.dll" + ], + "exports": [ + "GET_CAL_R", + "GET_COM_R", + "GET_IMS_R", + "GET_MRG_R", + "GET_PBL_R", + "GET_PRN_R", + "GET_SFC_R", + "GET_STM_R", + "GET_SYS_R", + "GET_TMP_R" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 8495, + "domain_strings": [ + "clBackground", + "fsMDIForm", + "OnActivate", + "OnDeactivate", + "sAmTb", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "select", + "QTypInfo", + "lbBackGroundMsg", + "Background Processing", + "StopBackground", + "Stop Background", + "StartBackground", + "Start Background", + "OLE control activation failed*Could not obtain OLE control window handle%License information for %s is invalidPLicense information for %s not found. You cannot use this control in design mode", + "Insert record", + "Delete record", + "OnActivate늸C" + ] + }, + "ST_CPM\\ST_Boq.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1224580, + "raw_off": 1024, + "raw_size": 1224704 + }, + { + "name": "DATA", + "va": 1228800, + "vsize": 10492, + "raw_off": 1225728, + "raw_size": 10752 + }, + { + "name": "BSS", + "va": 1241088, + "vsize": 78773, + "raw_off": 1236480, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1323008, + "vsize": 64186, + "raw_off": 1236480, + "raw_size": 64512 + }, + { + "name": ".edata", + "va": 1388544, + "vsize": 134, + "raw_off": 1300992, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1392640, + "vsize": 65648, + "raw_off": 1301504, + "raw_size": 66048 + }, + { + "name": ".rsrc", + "va": 1462272, + "vsize": 751616, + "raw_off": 1367552, + "raw_size": 751616 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridEX6.bpl", + "vcldb60.bpl", + "vclx60.bpl", + "VclSmp60.bpl", + "winmm.dll", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "RealGridDB6.bpl" + ], + "exports": [ + "Add_From_MRG", + "Calc_Kanjub", + "Edit_Boq", + "Edit_Bqm" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 17553, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "OnActivate", + "OnDeactivate", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "Find_BOQ", + " Find_BOQ ", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + ".DBF", + "STmateQty8.CPM", + "ST_QTY", + "KBOQ", + "PRJLST.DBF", + "Excel.Application", + "Microsoft Excel", + "Excel", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "tbBoq1", + "dsBoq1", + "tb_Boq_R", + "tb_Boq_Ref", + "dsBoq1DataChange", + "TwMBoq", + "TwMBoqH", + "MBoq", + "PRT.DBF", + "Dont_Cr_PRN_DBF", + "KONGJONG.DBF", + "Qty1", + "GrdBoq0", + "GrdBoq0DblClick", + "GrdBoq0DrawCell", + "GrdBoq0KeyDown", + "qty1", + "PnTHaL", + "PnMLShaL", + "LbLTAMT2@", + "LbLMAMT2H", + "LbLLAMT2P", + "LbLSAMT2X", + "LbLTAMTd", + "HalSh", + "HalLl", + "HalMp", + "HalTt", + "HalLKeyPress", + "TwBoqRate", + "BoqRate", + "CostNavit", + "Act_FindBoq", + "sBtnLstEqCode", + "Act_LstEqCode", + "tb_BdQty", + "tb_BdQty_X", + "ds_BdQty", + "ds_BdQty_X", + "tb_CostA,", + "ds_CostA0", + "Act_FindBoqExecute", + "(STmate8x)\\BOQ_INFO", + "PG_1", + "PG_2", + "PG_3", + "PG_4", + "PG_5", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+EDT_DATE", + "MRG_CN.DBF", + "\"$UPPER(CODE+\"`\"+NAME+\"`\"+SIZE+\"`\"+UNIT+\"`\"+BQCODE+\"`\"+EQCODE+\"`\"+JDCODE+\"`\"+EDT_DATE", + "+\"`\"+STR(TAMT", + ",16,2)+\"`\"+STR(LAMT", + ",16,2)+\"`\"+STR(MAMT", + ",16,2)+\"`\"+STR(SAMT", + "tbBoqBeforeEdit", + "tbBoqAfterDelete", + "tbBoqAfterInsert", + "tbBoqAfterPost", + "calcitemBoq", + "tbBoqBeforeInsert", + "GrdBoq0Edit", + "GrdBoqXDrawCell", + "PrjLst.dbf ", + "Tamt1", + "Mamt1", + "Lamt1", + "Samt1", + "RdoQty1", + "RdoQty0", + "EdQty,", + "RdoQty0Click", + "pn_Qty1", + "lb_Qty1", + "rd_Qty1", + "ed_Qty1", + "sBtnLcostNo`", + "pn_Qty_Pntp", + "rd_Qty_Pnt", + "ed_Qty1KeyDown", + "sBtnLcostNoClick", + "TwM_Rate", + "TwM_Rate0;M", + "Rate_M", + "rGrd_BOQ_C", + "tb_BOQ", + "Act_Qty_Up", + "Act_Qty_UpExecute", + "TwM_From_XLS", + "From_XLS", + "BOQ_C.DBF", + "POS_D_FROM_XLS", + "QTY_O", + "MAMT_O", + "LAMT_O", + "SAMT_O", + "TAMT_O", + "wNe_LAMT1$", + "wNe_MAMT1(", + "wNe_SAMT1,", + "wNe_LAMT3D", + "wNe_MAMT3H", + "wNe_SAMT3L", + "wNe_TAMT3\\", + "wNe_TAMT1`", + "wNe_DayQtyt", + "wNe_QTY1|", + "cBx_AddQty", + "wNe_QTY3", + "wNe_DayQtyExit", + "TwM_Boq_ExecX", + "Boq_ExecX", + "LAMT3", + "MAMT3", + "SAMT3", + "TAMT3", + "ed_Hal_L", + "ed_Hal_M$", + "Add1_Rate,", + "Add2_Rate0", + "lb_QTY", + "ed_Hal_LEnter", + "QTY1_O", + "tbBoq", + "dsBoq", + "GrdBoqBigoT", + "GrdBoq0X", + "menuQtyT", + "mQty37X", + "mQtyDevd\\", + "mChangeBoqd", + "mHalLQty|", + "mHalMQty", + "mHalXQty", + "mHalWQty", + "MenuMBoq", + "mSetPosAmt", + "GrdBoq1H", + "GrdBoq37L", + "sBtnMBoq", + "CBoxQty2", + "CBoxFltBoq", + "GrdBoq5 ", + "ActMBoqH", + "ActRateJodalh", + "mHal", + "GrdBoq6", + "ViewOthrBoq", + "dsOthBoq", + "tbOthBoq", + "PnBoqX", + "GrdBoqX", + "CBoxQty(", + "ActHalOneD", + "ActHalAllSelectedH", + "ActHalSelectedL", + "Act_Rate_Qty_L`", + "Act_Rate_Qty_Md", + "Act_Rate_Qty_Xh", + "Act_Rate_Qty_Wl", + "ActFltBoqp", + "mQtyChangeOrdt", + "GrdBoq6Row", + "tb_CostA ", + "RGrdCostA(", + "ds_CostA,", + "GrdBoq41H", + "Act_SafeQtyL", + "Pop_RateX", + "Act_Rate_Amt_L", + "Act_Rate_Amt_M", + "Act_Rate_Amt_X", + "Act_Rate_Amt_W", + "Act_Qty_Pnt", + "Act_View_Qty0Amt", + "mi_Qty1_0", + "ActRate_Susu", + "Act_ContBOQ_EXL", + "mi_BOQ_EXL", + "Act_EXL_ContBOQT", + "Act_Enabl_QTY\\", + "tbOthBoq1", + "dsOthBoq1", + "GrdBoq10\\", + "mQty37_r|", + "Act_Enabl_BOQ6", + "mi_Qty1_1", + "Act_From_Xls", + "ActRate_Jod", + "Act_BOQQty_EXL", + "Act_EXL_BOQQty", + "mImportQtyX", + "mQty6All|", + "GrdBoq0HeaderTitleClick", + "dsBoqDataChange", + "GrdBoq1DrawCell", + "GrdBoq1Enter", + "GrdBoq1Exit", + "wBoqCalcTrue", + "GrdBoq37DrawCell", + "GrdBoq0ColumnTitleClick", + "GrdBoq0KeyUp", + "GrdBoq5DrawCell", + "ActBoqHint", + "ActMBoqExecute", + "ActRateJodalExecute", + "GrdBoqBigoEdit", + "GrdBoqBigoDrawCell", + "GrdBoqBigoKeyDown", + "GrdBoq6DrawCell", + "tbBoqBeforeDelete", + "ViewOthrBoqExecute", + "GrdBoqXHeaderTitleClick", + "GrdBoq0DrawMarker", + "GrdBoq0DrawIndicator", + "ActHalOneExecute", + "ActHalAllSelectedExecute", + "ActFltBoqExecute", + "mQty37Click", + "mImportQtyClick", + "tbBoqBeforePost", + "GrdBoq6RowDrawCell", + "GrdBoq_DrawRow", + "GrdBoq41ColumnTitleClick", + "GrdBoq41DrawCell", + "GrdBoq41Edit", + "GrdBoq41DrawRow", + "Act_SafeQtyExecute", + "Act_Rate_Execute", + "Act_Qty_PntExecute", + "Act_View_Qty0AmtExecute", + "mi_Qty1_0Click", + "GrdBoq_Exit", + "Act_ContBOQ_EXLExecute", + "Act_EXL_ContBOQExecute", + "Act_Enabl_QTYExecute", + "GrdBoq10DrawCell", + "Act_Enabl_BOQ6Execute", + "Act_From_XlsExecute", + "Refresh_BOQ", + "Act_BOQQty_EXLExecute", + "Act_EXL_BOQQtyExecute", + "GrdBoqXDrawMarker", + "GrdBoqXDrawIndicator", + "ReIndx_OthBoq", + "TwBoq!", + "TwBoq(", + "qty2", + "qty3", + "qty4", + "TAMT4", + "LAMT4", + "MAMT4", + "SAMT4", + "BOQ_E.*", + "BOQ_E.DBF", + "BOQ_E.NSX", + "VIEW_OTHER_BOQ", + "MRG_BOQ.DBF", + "MRG_BOQ.*", + "Lamt2", + "Mamt2", + "Samt2", + "Tamt2", + "Tamt3", + "Lamt3", + "Mamt3", + "Samt3", + "Tamt", + "Lamt", + "Mamt", + "Samt", + "Costn.dbf ", + "iform", + "tamt", + "eqcode", + "Qty2", + "Qty4", + "tamt1", + "lamt1", + "mamt1", + "samt1", + "SAMECODE.DBF", + "Qty3", + "Set AllQty", + "COSTN", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE)", + "COSTA", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+CODEA)", + "PRJLST", + "\"$UPPER(BDCODE1+ITNUM+NAME1+SIZE1+DES1+DES2+UNIT1+EQCODE)", + "\"$UPPER(BDCODE1+ITNUM+NAME1+SIZE1+UNIT1+EQCODE", + "(BDCODE1=\"QTY\") .and. (LEN(TRIM(UNIT1))<>0) .and. (QTY1<>0)", + "RATE_M", + "BOQC.DBF", + "BOQC.NSX", + "P_XLS.CPM", + "MAKE_XLS", + "Prn_CONTBOQ_EXL", + " MAKE_XLS ", + "ContBoq ToEXL", + "SHOW_XLS", + " SHOW_XLS ", + "FREE_XLS", + "Prn_EXL_CONTBOQ", + "ContBoq FromEXL", + "\"$UPPER(EQCODE))", + "Recall Boq", + "( SUBSTR(BDCODE1,1,1)$\"MLSW\" .and. \"%\"$UNIT1 ) .or. ( SUBSTR(BDCODE1,1,1)$\"MLSWBDXA\" .and. SUBSTR(STR(QTY1,20,4),LEN(STR(QTY1,20,4)),1)<>\"0\" )", + "ST_P_XLS.CPM", + "XLS_2_BDREC", + "Prn_BOQQTY_EXL", + "Prn_EXL_BOQQTY", + "BoqQty FromEXL", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "CreateHalftonePalette", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "ST_Boq.CPM", + "Edit_Boq", + "ST_Boq", + "=Boq", + "}MBoq", + "TwBoq", + "wBoq", + "clBackground", + "BackgroundColor", + "RGrdCostA", + "ds_CostA", + "GrdBoq1", + "GrdBoq37", + "GrdBoq5", + "GrdBoq41", + "GrdBoq10", + "QTY_", + "ActMBoq", + "ActFltBoq", + "Act_SafeQty", + "Pop_Rate", + "CBoxQty", + "BOQ11.NSX", + "Boq11.dbf", + "BOQ11.DBF", + "mImportQty", + "Act_EXL_ContBOQ", + "Act_Enabl_QTY", + "menuQty", + "mQty37", + "mQty37_r", + "mQtyDevd", + "mQtyChangeOrd", + "mQty6All", + "mChangeBoq", + "mHalLQty", + "ActRateJodal", + "ActHalOne", + "ActHalAllSelected", + "ActHalSelected", + "Act_Rate_Qty_L", + "Act_Rate_Qty_M", + "Act_Rate_Qty_X", + "Act_Rate_Qty_W", + "COSTN.NSX", + "PRJLST.NSX", + "tb_CostA", + "COSTA.DBF", + "wBoqRate", + "LbLTAMT", + "HalT", + "LbLTAMT2", + "LbLMAMT2", + "LbLLAMT2", + "LbLSAMT2", + "HalS", + "HalL", + "HalM", + "Bqm11.dbf", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "PG_13", + "PG_23", + "PG_33", + "PG_43", + "PG_53", + "PG_14", + "PG_24", + "PG_34", + "PG_44", + "PG_54", + "UPPER(EQCODE)", + "UPPER(PADL(TRIM(PG_11),12,\" \"))", + "UPPER(PADL(TRIM(PG_21),12,\" \"))", + "UPPER(PADL(TRIM(PG_31),12,\" \"))", + "UPPER(PADL(TRIM(PG_41),12,\" \"))", + "UPPER(PADL(TRIM(PG_51),12,\" \"))", + "UPPER(PADL(TRIM(PG_12),12,\" \"))", + "UPPER(PADL(TRIM(PG_22),12,\" \"))", + "UPPER(PADL(TRIM(PG_32),12,\" \"))", + "UPPER(PADL(TRIM(PG_42),12,\" \"))", + "UPPER(PADL(TRIM(PG_52),12,\" \"))", + "EdQty", + "wBoq.dsBoq", + "KongJong.Dbf", + "wMBoq", + "BOQ_W.DBF", + "wM_Boq_ExecX", + "wNe_LAMT1", + "wNe_MAMT1", + "wNe_SAMT1", + "wNe_LAMT3", + "wNe_MAMT3", + "wNe_SAMT3", + "wNe_TAMT3", + "wNe_TAMT1", + "wNe_DayQty", + "wNe_QTY1", + "ed_Hal_M", + "Add1_Rate", + "Add2_Rate", + "wM_From_XLS", + "BOQ_C", + "wM_Rate", + "sBtnLcostNo", + "pn_Qty_Pnt", + "CostNavi", + "BDQTY.NSX", + "wBoq.dsSameCode", + "TWBOQ", + "TWBOQRATE", + "TWMBOQ", + "TWM_BOQ_EXECX", + "TWM_FROM_XLS", + "TWM_RATE", + "Select a Date", + "Dr. Halo images", + "Background봁T", + "Foreground쏝T", + "OnActivate쏝T", + "TwBoqRate먓H", + "SOFTWARE\\경영정보(주)\\설계예산(STmate8x)\\BOQ_INFO", + "TwM_From_XLS륥M", + "TwM_Boq_ExecX뙐M", + "뾄oqRate" + ] + }, + "ST_CPM\\ST_EdiLWi.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 362920, + "raw_off": 1024, + "raw_size": 363008 + }, + { + "name": "DATA", + "va": 368640, + "vsize": 4404, + "raw_off": 364032, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 376832, + "vsize": 69081, + "raw_off": 368640, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 446464, + "vsize": 38568, + "raw_off": 368640, + "raw_size": 38912 + }, + { + "name": ".edata", + "va": 487424, + "vsize": 95, + "raw_off": 407552, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 491520, + "vsize": 19784, + "raw_off": 408064, + "raw_size": 19968 + }, + { + "name": ".rsrc", + "va": 512000, + "vsize": 80896, + "raw_off": 428032, + "raw_size": 80896 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "winmm.dll", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Edit_iLW" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5791, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "PRT.DBF", + "KBOQ", + "PRJLST.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "pn_XRate", + "X_QTY1P", + "X_QTY2T", + "X_QTY3X", + "X_QTYT\\", + "X_HAL1`", + "X_HAL2d", + "X_HAL3h", + "X_QTYHl", + "pn_CQtyt", + "ed_Qty1|", + "ed_LQty", + "ed_CQty", + "lb_LQty", + "lb_Qty1", + "lb_CQty", + "X_QTYKeyDown", + "X_QTYEnter", + "X_QTYExit", + "X_QTYChange", + "Cal_cQty", + "FormActivate", + "TwM_Edit_XRate", + "TwM_Edit_XRatex", + "Edit_XRate", + "Act_EdtAmt", + "Act_RateList ", + "sBtnRate", + "sBtnEdtAmt", + "PopRate", + "Act_Rate_PR,", + "Act_Edit_XRate", + "Act_Rate_PJ", + "Ed_Eqcode ", + "pn_ADJ(", + "Ck_S_ADJ4", + "Act_Devd2Qty<", + "Act_From_Xls`", + "Act_To_Ratex", + "Act_Edit_CQty", + "Act_EdtAmtExecute", + "Act_RateListExecute", + "Act_Rate", + "Act_Rate_PRExecute", + "Act_Edit_XRateExecute", + "Act_Devd2QtyExecute", + "Act_From_XlsExecute", + "Act_PRate", + "Act_To_RateExecute", + "Act_Edit_CQtyExecute", + "(STmate8x)\\BOQ_INFO", + "QTY1, BIMOK", + "ST_P_XLS.CPM", + "XLS_2_BDREC", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "[Edit_XRate", + "Act_RateList", + "Ed_Eqcode", + "Ck_S_ADJ", + "pn_ADJ", + "Act_Rate_PR", + "Act_Devd2Qty", + "Act_From_Xls", + "Act_To_Rate", + "BDQTM_00.DBF", + "wM_Edit_XRate", + "OnActivate", + "X_QTYT", + "X_QTYH", + "pn_CQty", + "ed_Qty1", + "TWM_EDIT_XRATE", + "SOFTWARE\\경영정보(주)\\설계예산(STmate8x)\\BOQ_INFO" + ] + }, + "ST_CPM\\ST_EdSan.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 435464, + "raw_off": 1024, + "raw_size": 435712 + }, + { + "name": "DATA", + "va": 442368, + "vsize": 4928, + "raw_off": 436736, + "raw_size": 5120 + }, + { + "name": "BSS", + "va": 450560, + "vsize": 69053, + "raw_off": 441856, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 520192, + "vsize": 51144, + "raw_off": 441856, + "raw_size": 51200 + }, + { + "name": ".edata", + "va": 573440, + "vsize": 120, + "raw_off": 493056, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 577536, + "vsize": 23108, + "raw_off": 493568, + "raw_size": 23552 + }, + { + "name": ".rsrc", + "va": 602112, + "vsize": 111104, + "raw_off": 517120, + "raw_size": 111104 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "winmm.dll" + ], + "exports": [ + "Calc_Kanjub", + "Edit_EQ_SYNC", + "Edit_SanKun" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 7890, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "BackgroundD", + "Foreground@", + "Foreground Color", + "Foreground Color New", + "Background Color", + "Background Color New", + "Default Foreground", + "Default Background", + "Background", + "Foreground", + "Foreground0", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "BDQTY.DBF", + "PRJLST.DBF", + "KBOQ", + "RATE_L", + "COSTN.DBF", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "PRT.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "ClBackgroundD", + "ClTitleBackground,", + "MEMOCStatusChange", + "USR_SYNC.DBF", + "sBtnRate,", + "sBtnEdtAmt0", + "Act_EdtAmt", + "Act_RateList", + "PopRate", + "CBoxSystax", + "ComQty", + "Ed_Eqcode`", + "pn_ADJl", + "ed_ADJ_Mp", + "ed_ADJ_Lx", + "ed_ADJ_S|", + "Ck_S_ADJ", + "mi_PSMT", + "mi_RSMT", + "Act_Del_ResultAmt", + "Act_Del_ResultAmt_Auto", + "Act_RateListExecute", + "Act_Rate", + "Act_EdtAmtExecute", + "SCP_EQCodeCompletion", + "CBoxSystaxClick", + "Act_PRate", + "Act_Del_ResultAmtExecute", + "Act_Del_ResultAmt_AutoExecute", + "FormActivate", + "ROUND(2.45,1) = 2.5 ", + "ROUND(1,0)", + "ROUNDDOWN(2.45,1) = 2.4 ", + "ROUNDDOWN(1,0)", + "SAN_V_SYNTAX", + "Qty ", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TCustomForm@WMActivate$qqrr20Messages@TWMActivate", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Db@TDataSet@Insert$qqrv", + "@Urmgrid@TRealGrid@Insert$qqro", + "MROUNDUP", + "MROUNDUD", + " Round", + " RoundDown", + "EQSYNC.DBF", + "CommentAttri.Foreground", + "IdentifierAttri.Foreground", + "KeyAttri.Background", + "KeyAttri.Foreground", + "ROUND", + "ROUNDDOWN", + "NumberAttri.Foreground", + "PreprocessorAttri.Foreground", + "StringAttri.Foreground", + "SymbolAttri.Foreground", + "OnActivate", + "sBtnRate", + "sBtnEdtAmt", + "Ed_Eqcode", + " C=A/B=0.14, D=round(A/B,4)=0.1417 ", + "(D) : round(A /B,4) = ", + "pn_ADJ", + "ed_ADJ_M", + "ed_ADJ_L", + "ed_ADJ_S", + "ROUND(2.45,1) = 2.5 소수2위에서반올림", + "ROUNDDOWN(2.45,1) = 2.4 소수2위에서 내림", + "Qty 【나누기 작업량『/ [Q] =』】" + ] + }, + "ST_CPM\\ST_FindUse.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 326572, + "raw_off": 1024, + "raw_size": 326656 + }, + { + "name": "DATA", + "va": 331776, + "vsize": 4564, + "raw_off": 327680, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 339968, + "vsize": 70961, + "raw_off": 332288, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 413696, + "vsize": 45236, + "raw_off": 332288, + "raw_size": 45568 + }, + { + "name": ".edata", + "va": 462848, + "vsize": 115, + "raw_off": 377856, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 466944, + "vsize": 17444, + "raw_off": 378368, + "raw_size": 17920 + }, + { + "name": ".rsrc", + "va": 487424, + "vsize": 39936, + "raw_off": 396288, + "raw_size": 39936 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "winmm.dll" + ], + "exports": [ + "Calc_Kanjub", + "Find_BDQ", + "Find_BOQ" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5555, + "domain_strings": [ + "%dbF", + "%DbF", + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "Foreground Color", + "Foreground Color New", + "Background Color", + "Background Color New", + "Default Foreground", + "Default Background", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "Find_BOQ", + " Find_BOQ ", + "PRT.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "sBtnBoq", + "tb_BdQty", + "tb_BdQty1", + "Act_FindBoq$", + "tb_BdQtY_0", + "ds_BDQTY_4", + "Act_FindBoqExecute", + "COSTN.DBF", + "tb_PrjLst", + "R_Grd_Boq", + "tb_Boq", + "ds_Boq", + "cBtn_BOQ", + "R_Grd_BoqDrawCell", + "R_Grd_BoqDrawRow", + "cBtn_BOQClick", + "TwM_FindBoq", + "FindBoq", + "POS_D_FINDBOQ", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "YFindBoq", + "wM_FindBoq", + "PRJLST.DBF", + "BOQ11.NSX", + "BOQ11.DBF", + "Act_FindBoq", + "ds_BDQTY_", + "// Round", + " RoundDown", + "BDQTY.NSX", + "BDQTY.DBF", + "tb_BdQtY_", + "COSTN.NSX", + "CommentAttri.Foreground", + "KeyAttri.Background", + "KeyAttri.Foreground", + "StringAttri.Foreground", + "TWM_FINDBOQ" + ] + }, + "ST_CPM\\ST_Jabpum.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 306756, + "raw_off": 1024, + "raw_size": 307200 + }, + { + "name": "DATA", + "va": 311296, + "vsize": 4492, + "raw_off": 308224, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 319488, + "vsize": 68361, + "raw_off": 312832, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 389120, + "vsize": 44428, + "raw_off": 312832, + "raw_size": 44544 + }, + { + "name": ".edata", + "va": 434176, + "vsize": 182, + "raw_off": 357376, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 438272, + "vsize": 16832, + "raw_off": 357888, + "raw_size": 16896 + }, + { + "name": ".rsrc", + "va": 458752, + "vsize": 36352, + "raw_off": 374784, + "raw_size": 36352 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Edit_Dan", + "Edit_Strg", + "Edt_Hal_Amt", + "Edt_Hal_Rate", + "View_JabPum" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 4853, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "Backgroundp", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "Find_BOQ", + " Find_BOQ ", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "Act_edQty(", + "cBox_IFORM0", + "Act_FindBoq<", + "tb_BdQtY_@", + "ds_BDQTY_D", + "Act_edQtyExecute", + "cBox_IFORMChange", + "Act_FindBoqExecute", + "\"$UPPER(IFORM) .or. \"", + "\"$IFORM", + "\"$UPPER(CODE+\"`\"+NAME+\"`\"+SIZE+\"`\"+UNIT+\"`\"+BQCODE+\"`\"+EQCODE+\"`\"+JDCODE+\"`\"+EDT_DATE", + "+\"`\"+STR(TAMT1,16,2)+\"`\"+STR(LAMT1,16,2)+\"`\"+STR(MAMT1,16,2)+\"`\"+STR(SAMT1,16,2)", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE+EDT_DATE)", + "TAmt8", + "lb_Lamt<", + "lb_Mamt@", + "lb_SAMTD", + "LamtP", + "MamtT", + "SamtX", + "LamtExit", + "COSTA.DBF", + "TAmt", + "pn_Edt_Hal,", + "ed_Hal8", + "ed_HalEnter", + "TwM_Edt_Hal", + "Edt_Hal", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "Edt_Hal_Amt", + "Edt_Hal_Rate", + "CEdt_Hal", + "wM_Edt_Hal", + "pn_Edt_Hal", + "ed_Hal", + "lb_Lamt", + "lb_Mamt", + "lb_SAMT", + "Lamt", + "Mamt", + "Samt", + "COSTN.NSX", + "COSTN.DBF", + "cBox_IFORM", + "ds_BDQTY_", + "Act_edQty", + "Act_FindBoq", + "tb_BdQtY_", + "BDQTY.NSX", + "BDQTY.DBF", + "TWM_EDT_HAL" + ] + }, + "ST_CPM\\ST_KanJub.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 845488, + "raw_off": 1024, + "raw_size": 845824 + }, + { + "name": "DATA", + "va": 851968, + "vsize": 10132, + "raw_off": 846848, + "raw_size": 10240 + }, + { + "name": "BSS", + "va": 864256, + "vsize": 1139501, + "raw_off": 857088, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2007040, + "vsize": 51530, + "raw_off": 857088, + "raw_size": 51712 + }, + { + "name": ".edata", + "va": 2060288, + "vsize": 169, + "raw_off": 908800, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 2064384, + "vsize": 43304, + "raw_off": 909312, + "raw_size": 43520 + }, + { + "name": ".rsrc", + "va": 2109440, + "vsize": 765440, + "raw_off": 952832, + "raw_size": 765440 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "shell32.dll", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "vcl60.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridEX6.bpl", + "winmm.dll", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "VclSmp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Edit_KanJub", + "Edit_KanJub_K", + "Edit_Kan_Rate", + "Prn_Kan_Rate" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 13689, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + "KBOQ", + "PRJLST.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "CON_QTY9", + "CON_QTY", + "CONBD_USD_QTY", + "PhdBF", + "/select,\"", + "tb_BoqXX", + "ds_BoqXX", + "RDbGrid_Boq", + "tb_Boq_Ref8", + "RDbGrid_BoqDrawCell", + "ds_BoqXXDataChange", + "RDbGrid_BoqDblClick", + "RDbGrid_BoqSelectionChange", + "RDbGrid_BoqDrawRow", + "TwM_GetAMT", + "TwM_GetAMTlCF", + "GetAMT", + "mBtn_DelAmt", + "Disp_SAMT_T_T", + "Disp_SAMT_L_T", + "Disp_SAMT_S_T", + "tb_Rate_R", + "Disp_SAMT_T_S", + "Disp_SAMT_S_S", + "tb_Rate_M,", + "Disp_BUGA_TAX", + "Ck_B_BUGA_UP_TAx", + "lb_R_RateDM_TA", + "lb_R_RateDL_TA", + "Disp_SAMT_S_TA", + "lb_R_RateL_TA", + "lb_R_RateDMDL_TA ", + "lb_R_RateDML_TA$", + "Ed_R_RateDM_TA,", + "Ed_R_RateDL_TA0", + "Ed_R_RateL_TA4", + "Ed_R_RateDMDL_TA8", + "Ed_R_RateDML_TA<", + "Ed_R_TBuGum_TAX", + "Ed_R_HADOSU_TAx", + "lb_R_RateDM_SA", + "lb_R_RateDL_SA", + "lb_R_RateL_SA", + "lb_R_RateDMDL_SA", + "lb_R_RateDML_SA", + "Disp_SAMT_S_SA", + "Ed_R_RateDM_SA$", + "Ed_R_RateDL_SA(", + "Ed_R_RateL_SA,", + "Ed_R_RateDMDL_SA0", + "Ed_R_RateDML_SA4", + "tb_Rate_A_", + "tb_Rate_B", + "Lbl_DSAMT_M_T", + "Lbl_DSAMT_M_TA", + "mBtn_Rate(", + "Ed_R_RateMxA_TA8", + "Ed_R_RateMxK_TA<", + "lb_R_RateMxA_TA@", + "lb_R_RateMxK_TAD", + "lb_R_RateMxA_SAH", + "Ed_R_RateMxA_SAL", + "lb_R_RateMxK_SAP", + "Ed_R_RateMxK_SAT", + "Lbl_MxA_TAX", + "Ed_C_RateMxA_SAh", + "Ed_C_RateMxK_SAl", + "Ed_C_RateMxA_TAp", + "Ed_C_RateMxK_TAt", + "Disp_ANJUN2_TAX", + "tb_Rate_RA", + "Disp_EQIPSU_TAX", + "lbl_Nag_Rate", + "Lbl_DSAMT_L_T", + "Disp_PSAMT_B_T", + "Disp_PSAMT_B_S", + "Disp_PSAMT_B_TA ", + "Disp_PSAMT_B_SA4", + "Disp_BUDM_SM_TAx", + "mBtn_DelAmtClick", + "mBtn_RateClick", + "RATE_20", + "RATE_18", + "RATE_17", + "RATE_01", + "RATE_", + "RATE_11", + "RATE_06", + "RATE_19", + "RATE_21", + "RATE_26", + "RATE_07", + "RATE_08", + "RATE_09", + "RATE_10", + "RATE_02", + "RATE_03", + "RATE_04", + "RATE_16", + "H_QTY", + "Edit_Kan_Rate", + "tb_Rate_O", + "rGrd_RateB$", + "tb_Rate_B_", + "tb_Rate_M<", + "rGrd_RateMl", + "rGrd_Rate_Kobo4", + "rGrd_Rate_Anjun8", + "rGrd_Rate_R2<", + "rGrd_Rate_Hwan@", + "rGrd_Rate_BojngD", + "rGrd_Rate_HadoH", + "tb_Rate_Rx", + "rGrd_Rate_RT", + "rGrd_Rate_R1X", + "rGrd_Rate_RA", + "rGrd_Rate_RA1", + "rGrd_Rate_An_A", + "rGrd_Rate_An_A1", + "rGrd_Rate_Eqip$", + "TwM_KAN_RATE", + "Kan_Rate", + "Prn_Kan_Rate", + "Save JabRate - ", + ".JB_R", + "JB_R", + ".JB_RA", + "JB_RA", + "Import JabRate - ", + "TPM_KAN_RATE", + "P_Kan_Rate", + "rGrd_BoqXX", + "sBtn_Set_Rate", + "rGrd_BoqXXDrawCell", + "sBtn_Set_RateClick", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "kKan_Rate", + "PM_KAN_RATE", + "BorderStyle.Background.Color", + "Rate_R.dbf", + "wM_GetAMT", + "PRJLST.NSX", + "BOQ11.NSX", + "Boq11.dbf", + "tb_Boq_Ref", + "mBtn_Rate", + "lb_R_RateDMDL_TA", + "lb_R_RateDML_TA", + "lb_R_RateMxA_TA", + "lb_R_RateMxK_TA", + "Ed_R_RateDM_TA", + "Ed_R_RateDL_TA", + "Ed_R_RateL_TA", + "Ed_R_RateDMDL_TA", + "Ed_R_RateDML_TA", + "Ed_R_RateMxA_TA", + "Ed_R_RateMxK_TA", + "Ed_C_RateMxA_TA", + "Ed_C_RateMxK_TA", + "Disp_PSAMT_B_TA", + "lb_R_RateMxA_SA", + "lb_R_RateMxK_SA", + "Ed_R_RateDM_SA", + "Ed_R_RateDL_SA", + "Ed_R_RateL_SA", + "Ed_R_RateDMDL_SA", + "Ed_R_RateDML_SA", + "Ed_R_RateMxA_SA", + "Ed_R_RateMxK_SA", + "Ed_C_RateMxA_SA", + "Ed_C_RateMxK_SA", + "Disp_PSAMT_B_SA", + "tb_Rate_M", + "Rate_M.dbf", + "Rate_A.dbf", + "Rate_B.dbf", + "Rate_RA.dbf", + "wM_KAN_RATE", + "rGrd_Rate_Kobo", + "rGrd_Rate_Anjun", + "rGrd_Rate_R2", + "rGrd_Rate_Hwan", + "rGrd_Rate_Bojng", + "rGrd_Rate_Hado", + "rGrd_Rate_Eqip", + "rGrd_Rate_R", + "rGrd_Rate_R1", + "rGrd_RateM", + "rGrd_RateB", + "Rate.dbf", + "TWM_GETAMT", + "TWM_KAN_RATE", + "Dr. Halo images", + "*_제비율.JB_R", + "제비율적용기준(일반)|*_제비율.JB_R", + "*_제비율.JB_RA", + "제비율적용기준(실적)|*_제비율.JB_RA", + "폩_Kan_Rate" + ] + }, + "ST_CPM\\ST_P_Collect.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 433956, + "raw_off": 1024, + "raw_size": 434176 + }, + { + "name": "DATA", + "va": 438272, + "vsize": 9616, + "raw_off": 435200, + "raw_size": 9728 + }, + { + "name": "BSS", + "va": 450560, + "vsize": 74861, + "raw_off": 444928, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 528384, + "vsize": 40554, + "raw_off": 444928, + "raw_size": 40960 + }, + { + "name": ".edata", + "va": 569344, + "vsize": 167, + "raw_off": 485888, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 573440, + "vsize": 25388, + "raw_off": 486400, + "raw_size": 25600 + }, + { + "name": ".rsrc", + "va": 602112, + "vsize": 58880, + "raw_off": 512000, + "raw_size": 58880 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Col_Dan", + "Prn_Col_Dan_L", + "Prn_Col_X", + "Prn_Col_X_L" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6009, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "RATE_L", + "LAMT", + "MAMT", + "SAMT", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "tb_Con_Qtyd", + "CON_QTY", + "B_QTY", + "tb_Con_Qtyl", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "PRT.DBF", + "tb_Con_Qty", + "CON_QTY11.DBF", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_ConEst.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 534100, + "raw_off": 1024, + "raw_size": 534528 + }, + { + "name": "DATA", + "va": 540672, + "vsize": 10756, + "raw_off": 535552, + "raw_size": 11264 + }, + { + "name": "BSS", + "va": 552960, + "vsize": 560097, + "raw_off": 546816, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1114112, + "vsize": 41544, + "raw_off": 546816, + "raw_size": 41984 + }, + { + "name": ".edata", + "va": 1159168, + "vsize": 246, + "raw_off": 588800, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1163264, + "vsize": 29836, + "raw_off": 589312, + "raw_size": 30208 + }, + { + "name": ".rsrc", + "va": 1196032, + "vsize": 116224, + "raw_off": 619520, + "raw_size": 116224 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Jab_K", + "Prn_Nae_C1", + "Prn_Nae_C2", + "Prn_Nae_C3", + "Prn_Nae_Est", + "Prn_Nae_K1", + "Prn_Nae_K2", + "Prn_Nae_K3" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6910, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "tb_BoqXX", + "ds_BoqXX", + "MAMT", + "LAMT", + "SAMT", + "TAMT", + "txQTY1p", + "txQTY3t", + "txQTY4x", + "txQTY2|", + "txRate", + "txQTY1_2", + "PRT.DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + " 0 0PM_NAE_C1.ds_BoqXX", + "BOQ11.NSX", + "BOQ11.DBF", + " 0 0PM_NAE_C2.ds_BoqXX", + " 0 0PM_NAE_C3.ds_BoqXX", + " 0 0pM_Nae_Est.ds_BoqXX", + "txQTY1", + "txQTY3", + "txQTY4", + "txQTY2", + " 0 0PM_NAE_K1.ds_BoqXX", + " 0 0PM_NAE_K2.ds_BoqXX", + " 0 0PM_NAE_K3.ds_BoqXX", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_Excav.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 634720, + "raw_off": 1024, + "raw_size": 634880 + }, + { + "name": "DATA", + "va": 638976, + "vsize": 11008, + "raw_off": 635904, + "raw_size": 11264 + }, + { + "name": "BSS", + "va": 651264, + "vsize": 579021, + "raw_off": 647168, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1232896, + "vsize": 41850, + "raw_off": 647168, + "raw_size": 41984 + }, + { + "name": ".edata", + "va": 1277952, + "vsize": 419, + "raw_off": 689152, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1282048, + "vsize": 32568, + "raw_off": 689664, + "raw_size": 32768 + }, + { + "name": ".rsrc", + "va": 1314816, + "vsize": 87040, + "raw_off": 722432, + "raw_size": 87040 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Nae_Ex1_0", + "Prn_Nae_Ex1_1", + "Prn_Nae_Ex1_2", + "Prn_Nae_Ex1_C1", + "Prn_Nae_Ex1_C2", + "Prn_Nae_Ex1_CT", + "Prn_Nae_Ex1_T", + "Prn_Nae_Ex2_0", + "Prn_Nae_Ex2_1", + "Prn_Nae_Ex2_2", + "Prn_Nae_Ex2_C1", + "Prn_Nae_Ex2_C2", + "Prn_Nae_Ex2_CT", + "Prn_Nae_Ex2_T" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 7313, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "tb_BoqXXl", + "ds_BoqXXp", + "MAMT", + "LAMT", + "SAMT", + "TAMT", + "PRT.DBF", + "tb_BoqXX", + "ds_BoqXX", + "tb_BoqXX`", + "ds_BoqXXd", + "ROUNDDOWN([TAMT],0)", + "ROUNDDOWN(ROUNDDOWN([TAMT] * ", + "ROUNDDOWN([TAMT] * ", + "ROUNDDOWN([TAMT] * [RATE], 0)", + "[MAMT]", + "[LAMT]", + "[TAMT]", + "[SAMT]", + "Dont_Cr_PRN_DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "BOQ11.NSX", + "BOQ11.DBF", + " 0 0pM_Nae_Ex1.ds_BoqXX", + " 0 0pM_Nae_Ex1T.ds_BoqXX", + " 0 0PM_NAE_Ex2.ds_BoqXX", + " 0 0PM_NAE_Ex2T.ds_BoqXX", + "Dr. Halo images", + "Print_Excavation" + ] + }, + "ST_CPM\\ST_P_iLWi.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 496588, + "raw_off": 1024, + "raw_size": 496640 + }, + { + "name": "DATA", + "va": 503808, + "vsize": 9900, + "raw_off": 497664, + "raw_size": 10240 + }, + { + "name": "BSS", + "va": 516096, + "vsize": 111141, + "raw_off": 507904, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 630784, + "vsize": 40730, + "raw_off": 507904, + "raw_size": 40960 + }, + { + "name": ".edata", + "va": 671744, + "vsize": 116, + "raw_off": 548864, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 675840, + "vsize": 27880, + "raw_off": 549376, + "raw_size": 28160 + }, + { + "name": ".rsrc", + "va": 704512, + "vsize": 57344, + "raw_off": 577536, + "raw_size": 57344 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_iLWi", + "Prn_iLWi_S" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6239, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "tb_BdQty", + "dsBdQty", + "lbQty1", + "lbQty2", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "BDQTY.NSX", + "BDQTY.DBF", + "PRT.DBF", + " 1 1pM_iLWi.dsBdQty", + " 1 1pM_iLWi_S.dsBdQty", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_Joong.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 540632, + "raw_off": 1024, + "raw_size": 540672 + }, + { + "name": "DATA", + "va": 544768, + "vsize": 9952, + "raw_off": 541696, + "raw_size": 10240 + }, + { + "name": "BSS", + "va": 557056, + "vsize": 356705, + "raw_off": 551936, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 917504, + "vsize": 41198, + "raw_off": 551936, + "raw_size": 41472 + }, + { + "name": ".edata", + "va": 962560, + "vsize": 209, + "raw_off": 593408, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 966656, + "vsize": 30436, + "raw_off": 593920, + "raw_size": 30720 + }, + { + "name": ".rsrc", + "va": 999424, + "vsize": 173056, + "raw_off": 624640, + "raw_size": 173056 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Joong", + "Prn_Joong2", + "Prn_Joong2_L", + "Prn_Joong_C", + "Prn_Joong_C_L", + "Prn_Joong_L" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6857, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "PRT.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "QtyTs", + "QtyS1|", + "txSAMT1", + "QtyL1", + "QtyL2", + "QtyL3", + "txLAMT1", + "QtyM1", + "QtyM2", + "txSAMT2", + "txLAMT2 ", + "QtyL4@", + "QtyS2X", + "QtyM3p", + "HalM", + "HalL", + "HalS", + "txMAMT1", + "txTAMT1", + "txMAMT2", + "txTAMT2", + "tb_BdQty", + "QtyS1t", + "txSAMT", + "txLAMT", + "QtyL4", + "QtyS2", + "QtyM3", + "HalM$", + "HalL(", + "HalS,", + "txMAMT4", + "txTAMT8", + "tb_BdQtyh", + "COSTN.DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "QtyS1", + "txMAMT", + "txTAMT", + "BDQTY.NSX", + "BDQTY.DBF", + "txLAMT2", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_List.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 458896, + "raw_off": 1024, + "raw_size": 459264 + }, + { + "name": "DATA", + "va": 466944, + "vsize": 10272, + "raw_off": 460288, + "raw_size": 10752 + }, + { + "name": "BSS", + "va": 479232, + "vsize": 136821, + "raw_off": 471040, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 618496, + "vsize": 40686, + "raw_off": 471040, + "raw_size": 40960 + }, + { + "name": ".edata", + "va": 659456, + "vsize": 288, + "raw_off": 512000, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 663552, + "vsize": 27216, + "raw_off": 512512, + "raw_size": 27648 + }, + { + "name": ".rsrc", + "va": 692224, + "vsize": 91648, + "raw_off": 540160, + "raw_size": 91648 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_AList", + "Prn_Comp_M", + "Prn_Comp_M1", + "Prn_Comp_M1_L", + "Prn_Dan", + "Prn_Dan_L", + "Prn_SanMok", + "Prn_SanMok_L", + "Prn_SanMok_P", + "Prn_iLMok" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6331, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "RATE_L", + "LAMT", + "MAMT", + "SAMT", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "TAMT", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "PRT.DBF", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_Nae.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 950260, + "raw_off": 1024, + "raw_size": 950272 + }, + { + "name": "DATA", + "va": 954368, + "vsize": 12816, + "raw_off": 951296, + "raw_size": 13312 + }, + { + "name": "BSS", + "va": 970752, + "vsize": 1047389, + "raw_off": 964608, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2019328, + "vsize": 43128, + "raw_off": 964608, + "raw_size": 43520 + }, + { + "name": ".edata", + "va": 2064384, + "vsize": 722, + "raw_off": 1008128, + "raw_size": 1024 + }, + { + "name": ".reloc", + "va": 2068480, + "vsize": 48284, + "raw_off": 1009152, + "raw_size": 48640 + }, + { + "name": ".rsrc", + "va": 2117632, + "vsize": 340480, + "raw_off": 1057792, + "raw_size": 340480 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_Boq_Not", + "Prn_Bqm", + "Prn_Jab", + "Prn_Jab_P", + "Prn_Nae", + "Prn_NaeW", + "Prn_NaeW_P", + "Prn_Nae_B", + "Prn_Nae_ColL", + "Prn_Nae_ColM", + "Prn_Nae_ColX", + "Prn_Nae_Cont1", + "Prn_Nae_Cont2", + "Prn_Nae_D", + "Prn_Nae_K0", + "Prn_Nae_P", + "Prn_Nae_P_K0", + "Prn_Nae_Plan_A_L", + "Prn_Nae_Plan_A_M", + "Prn_Nae_Plan_A_X", + "Prn_Nae_Plan_K_L", + "Prn_Nae_Plan_K_M", + "Prn_Nae_Plan_K_X", + "Prn_Won_A", + "Prn_Won_A_C", + "Prn_Won_A_L", + "Prn_Wonga", + "Prn_Wonga_C", + "Prn_Wonga_L" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 10122, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "PRT.DBF", + "/select,\"", + "tb_BoqXXl", + "ds_BoqXXp", + "ds_BoqXXP", + "tb_BoqXXT", + "ROUNDDOWN([TAMT],0)", + "ROUNDDOWN(ROUNDDOWN([TAMT] * ", + "ROUNDDOWN([TAMT] * ", + "ROUNDDOWN([TAMT] * [RATE], 0)", + "[MAMT]", + "[LAMT]", + "[TAMT]", + "[SAMT]", + "Dont_Cr_PRN_DBF", + "tb_BoqXX", + "ds_BoqXX", + "txTAMT ", + "txQTY2", + "!(SUBSTR(BDCODE1,1,1)$\"MLSWBDXAP\" .and. QTY1=0)", + "txTAMT1 ", + "lbTAMT14", + "txTAMT2l", + "txTAMTp", + "lbTAMT2t", + "lbTAMTx", + "txTAMTP", + "txTAMT1T", + "txTAMT2X", + "lbTAMT1\\", + "lbTAMT2`", + "lbTAMTd", + "TPM_Boq_Not", + "P_Boq_Not", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "Prn_Boq_Not", + "PM_Boq_Not", + "BOQ11.NSX", + "BQM11.DBF", + "BOQ11.DBF", + " 0 0pM_Nae.ds_BoqXX", + " 0 0pM_NaeW.ds_BoqXX", + " 0 0pM_NaeW_P.ds_BoqXX", + " 0 0PM_Nae_B.ds_BoqXX", + " 0 0pM_Nae_Col.ds_BoqXX", + " 0 0pM_Nae_Col_ML.ds_BoqXX", + " 0 0pM_Nae_Cont.ds_BoqXX", + " 0 0pM_Nae_K0.ds_BoqXX", + " 0 0pM_Nae_P.ds_BoqXX", + " 0 0pM_Nae_Plan_A.ds_BoqXX", + " 0 0pM_Nae_Plan_K.ds_BoqXX", + " 0 0pM_Nae_P_K0.ds_BoqXX", + "txTAMT", + "lbTAMT1", + "txTAMT1", + "lbTAMT2", + "txTAMT2", + "lbTAMT", + "TPM_BOQ_NOT", + "Dr. Halo images", + "Print BOQ" + ] + }, + "ST_CPM\\ST_P_San.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 438552, + "raw_off": 1024, + "raw_size": 438784 + }, + { + "name": "DATA", + "va": 446464, + "vsize": 9804, + "raw_off": 439808, + "raw_size": 10240 + }, + { + "name": "BSS", + "va": 458752, + "vsize": 76285, + "raw_off": 450048, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 536576, + "vsize": 41664, + "raw_off": 450048, + "raw_size": 41984 + }, + { + "name": ".edata", + "va": 581632, + "vsize": 115, + "raw_off": 492032, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 585728, + "vsize": 26128, + "raw_off": 492544, + "raw_size": 26624 + }, + { + "name": ".rsrc", + "va": 614400, + "vsize": 51200, + "raw_off": 519168, + "raw_size": 51200 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "winmm.dll", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Prn_San_L", + "Prn_San_P" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6265, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "RATE_L", + "LAMT", + "MAMT", + "SAMT", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "/select,\"", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "GroupStyle.FooterAtEOP", + "PRT.DBF", + "COSTN.NSX", + "COSTN.DBF", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_P_XLS.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 2143088, + "raw_off": 1024, + "raw_size": 2143232 + }, + { + "name": "DATA", + "va": 2150400, + "vsize": 20864, + "raw_off": 2144256, + "raw_size": 20992 + }, + { + "name": "BSS", + "va": 2174976, + "vsize": 484601, + "raw_off": 2165248, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2662400, + "vsize": 36534, + "raw_off": 2165248, + "raw_size": 36864 + }, + { + "name": ".edata", + "va": 2699264, + "vsize": 1832, + "raw_off": 2202112, + "raw_size": 2048 + }, + { + "name": ".reloc", + "va": 2703360, + "vsize": 101708, + "raw_off": 2204160, + "raw_size": 101888 + }, + { + "name": ".rsrc", + "va": 2805760, + "vsize": 8704, + "raw_off": 2306048, + "raw_size": 8704 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "ole32.dll", + "user32.dll", + "kernel32.dll", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "CONV_XLS_2_ST", + "Calc_Kanjub", + "Chk_Xls_File", + "FIND_PRT_INDX", + "FREE_XLS", + "MAKE_XLS", + "MK_BSCBOQ_EXL", + "MK_EXL_BSCBOQ", + "Prn_AList_EXL", + "Prn_BL_BSC_EXL", + "Prn_BL_EXL_BSC", + "Prn_BOQQTY_EXL", + "Prn_Boq_Not", + "Prn_Bqm_EXL", + "Prn_CH_EXL_LIST", + "Prn_CH_LIST_EXL", + "Prn_CONTBOQ_EXL", + "Prn_Col_Dan_EXL", + "Prn_Col_M_EXL", + "Prn_Col_X_EXL", + "Prn_CompM_EXL", + "Prn_Dan_EXL", + "Prn_EXL_BOQQTY", + "Prn_EXL_CONTBOQ", + "Prn_FMLA_INFO", + "Prn_Jab_EXL", + "Prn_Jab_K_EXL", + "Prn_Jab_P_EXL", + "Prn_Joong_C_EXL", + "Prn_Joong_EXL", + "Prn_Nae_B_EXL", + "Prn_Nae_C1_EXL", + "Prn_Nae_C21_EXL", + "Prn_Nae_C2_EXL", + "Prn_Nae_C3_EXL", + "Prn_Nae_ColL", + "Prn_Nae_ColM", + "Prn_Nae_ColX", + "Prn_Nae_Cont1", + "Prn_Nae_Cont2", + "Prn_Nae_EST_EXL", + "Prn_Nae_EXL", + "Prn_Nae_Ex1_0_EXL", + "Prn_Nae_Ex1_1_EXL", + "Prn_Nae_Ex1_2_EXL", + "Prn_Nae_Ex1_C1_EXL", + "Prn_Nae_Ex1_C2_EXL", + "Prn_Nae_Ex1_CT_EXL", + "Prn_Nae_Ex1_T_EXL", + "Prn_Nae_Ex2_0_EXL", + "Prn_Nae_Ex2_1_EXL", + "Prn_Nae_Ex2_2_EXL", + "Prn_Nae_Ex2_C1_EXL", + "Prn_Nae_Ex2_C2_EXL", + "Prn_Nae_Ex2_CT_EXL", + "Prn_Nae_Ex2_T_EXL", + "Prn_Nae_K1_EXL", + "Prn_Nae_K2_EXL", + "Prn_Nae_K3_EXL", + "Prn_Nae_PLNL", + "Prn_Nae_PLNM", + "Prn_Nae_PLNX", + "Prn_Nae_P_EXL", + "Prn_SanMok_EXL", + "Prn_San_EXL", + "Prn_Won_A_EXL", + "Prn_Wonga_EXL", + "Prn_iLMok_EXL", + "Prn_iLWi_EXL", + "Prn_iLWi_S_EXL", + "SHOW_XLS", + "XLS_2_BDREC" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 18685, + "domain_strings": [ + "TXLSBlob", + "TXLSBlobList", + "XLSBlobList overflow", + "TXLSSupBook", + "TXLSSupBookItem", + "TXLSToken", + "TXLSTokens", + "TXLSLexer@e@", + "TXLSRangeItem", + "TXLSSyntaxItem", + "TXLSSyntaxStack", + "TXLSSyntax", + "TXLSFormulaU", + "ROUND", + "RATE", + "ROUNDUP", + "ROUNDDOWN", + "TXLSFormater", + "TXLSFormulatArrayItem", + "TXLSFormulatArray", + "TXLSFormulatArrays", + "TXLSArrayFormula", + "TXLSCompiledFormula", + "TXLSCalcRange", + "TXLSCalcRangeList", + "TXLSCalculator", + "TXLSCustomChart", + "TXLSChartDataItem", + "TXLSChartAreaItem", + "TXLSCSVSaver", + "TXLSTSVSaver", + "TXLSDrawingParserItem", + "TXLSDrawingParserItemh", + "TXLSDrawingParser", + "TXLSFBSE", + "TXLSBiffWriter", + "TXLSShape", + "TXLSCommentH2C", + "TXLSComments", + "TXLSPicture", + "TXLSShapes", + "TXLSDBCell", + "TXLSDBCellIndexU", + "TXLSAutofilterDOPER", + "TXLSAutofilterItem", + "TXLSAutofilter", + "TXLSObjEntry", + "TXLSObjEntry$cC", + "TXLSStringList", + "TXLSObjList", + "TXLSKeyEntry", + "TXLSKeyArray", + "TXLSKeyList", + "TXLSFontList", + "TXLSNumFormatList", + "TXLSStyleEntry", + "TXLSStyles", + "TXLSStringItem", + "TXLSIncrementArray", + "TXLSIncrementArray(", + "TXLSStringTable", + "TXLSFileItem", + "TXLSFileItemx", + "TXLSFileStream", + "TXLSFileStorage", + "TXLSAutoFitU", + "TXLSHTMLExport", + "TXLSDecrypter", + "TXLSDecrypterRC4", + "TXLSDecrypterXOR", + "TXLSReadStream", + "TXLSSystemName", + "TXLSSystemNames", + "TXLSCachedNameEntry", + "TXLSReader", + "TXLSRTFStyles", + "TXLSRTFExport", + "TXLSObject", + "TXLSHyperLink", + "TXLSHyperLinks", + "TXLSCellRef", + "TXLSColumnInfo", + "TXLSColumnInfoList", + "TXLSRowInfo", + "TXLSRowInfoList@", + "TXLSCellHeap", + "TXLSName", + "TXLSNames", + "IXLSRange", + "IXLSRowsRange4", + "IXLSColsRange4", + "TXLSRange", + "IXLSFont", + "TXLSFont", + "IXLSBorders", + "TXLSBorders", + "TXLSBorder", + "IXLSInterior", + "TXLSInterior", + "IXLSPageSetup", + "TXLSPageSetupt#E", + "TXLSPanes", + "TXLSProtect", + "IXLSWorkSheets", + "TXLSOutline", + "IXLSWorksheeth%E", + "IXLSWorksheet", + "TXLSPageBreaks", + "TXLSPageBreak", + "TXLSPageBreakp&E", + "TXLSVPageBreak", + "TXLSHPageBreak", + "TXLSVPageBreaks", + "TXLSHPageBreaks", + "TXLSWorkbook", + "TXLSCustomName", + "TXLSCustomNamesU", + "TXLSCustomHyperlink", + "TXLSCustomHyperlink<", + "TXLSCustomHyperlinks", + "TXLS_LSTt", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "PRT.DBF", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + ".DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "P_Xls_CommonH", + "Excel ", + " Excel ", + "Excel 97 - 2003 ", + " (*.xls)|*.xls|Excel ", + " (*.xlsx)|*.xlsx", + "XLSX", + " (*.xls)|*.xls", + ".XLS", + "Xls-", + "STmate_XLS", + "XLs 1st Save - ", + "HExecuteExcel4Macro", + "`QTY", + "`ADJ|", + "`ADJM|", + "`ADJL|", + "`ADJS|", + "Excel.Application", + "Excel", + "P_Xls_Com_", + "QTYiE", + "(*.XLS,*.XLSX)|*.xls;*.xlsx", + "(*.XLS,*.XLSX,*.CELL)|*.xls;*.xlsx;*.cell", + "Excel 2010 ", + "XLs 2nd Save - Ready", + "XLs 2nd Save - Open - ", + "XLs 2nd Save - ", + "Activate", + "Delete", + ".XLSX", + "ROUNDUP(", + "ROUND(ROUNDDOWN(", + "ROUNDDOWN(", + "<>ROUNDDOWN($", + "ROUND(IF(", + "ROUNDDOWN(ROUND(ROUNDDOWN((", + "+ROUNDDOWN(", + "!(SUBSTR(BDCODE1,1,1)$\"MLSWBDXAP\" .and. QTY1=0)", + " : ,VAT : )", + "TYPE=Qty_FRM_XLS", + "ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "AddSeparateDirs", + "Please insert last disk in set", + "Please insert disk volume %.1d of %.1d", + "Please insert disk volume %.1d", + "Typ_PrjBoqList4", + "Typ_BoqList4", + "Typ_BoqDetList4", + "TXMLExRate", + "TXMLRatePerHr", + "TXMLPrjBoq", + "TXMLPrjBoqList", + "TXMLBoq", + "TXMLBoqList", + "TXMLBoqDet", + "TXMLBoqDetList", + "Act_Fnd_XlsT", + "sBtn_XlsX", + " : XLS, XLSX, XLSM, CELL )", + "|*.stc;*.jdl;*.zip;*lzh;*.arj;*.rar;*.xml,*.xls;*.xlsx;*.xlsm;*.cell|STmate ", + "(*.XLS,*.XLSX,*.XLSM,*.CELL)|*.xls;*.xlsx;*.xlsm;*.cell|", + " : XLS, XLSX, XLSM )", + "ST_P_Xls.CPM", + "CONV_XLS_2_ST", + ".XLS", + ".XLSX", + ".XLSM", + "CBoxSetHalMLSW\\", + "Lbl_SelBoq3t", + "List_PrjLst", + "Lbl_SelBoq1", + "Lbl_SelBoq2", + "pn_Sel_Qty", + "cBx_Sel_QTY", + "tb_PrjLst", + "rGrd_Boq", + "tb_Boq", + "img_Lst_PrjLst", + "CBoxSetHal_NBUGAM", + "List_PrjLstChange", + "rGrd_BoqCellEnter", + "rGrd_BoqRowChange", + "rGrd_BoqDrawCell", + "rGrd_BoqDblClick", + "rGrd_BoqKeyDown", + "rGrd_BoqExit", + "rGrd_BoqClick", + ":COSTN.DBF:", + ":COSTN.SMT:", + ":COSTA.DBF:", + ":BDQTY.DBF:", + ":PRJLST.DBF:", + ":PRJLST.SMT:", + ":SYSINFO.DBF:", + "PRJLST.DBF", + "PRJLST.SMT", + ":BOQ", + ".DBF:", + "COSTN.DBF", + "COSTN.SMT", + "COSTN.NSX", + "COSTA.NSX", + "BDQTY.DBF", + "BDQTY.NSX", + "PRJLST.NSX", + "CON_QTY", + "CON_USD*.DBF", + "CON_QTY*.DBF", + "Grd_CostN", + "Grd_CostNDblClick", + "Grd_CostNDrawCell", + "Grd_CostNDrawMarker", + "Grd_CostNDrawRow", + "\"$UPPER(NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE)", + "tb_PrjLstl", + "img_Lst_PrjLstT", + "List_PrjLstX", + "Act_New_XLS(", + "XMLJDLXLS1,", + "Act_New_XLSExecute", + "Exec Delete - ", + "Delete Prj", + "Delete List", + "Delete Group", + "PLIST80.DBF", + "ST_PLIST.DBF", + ".SMT", + "ST_PLIST.SMT", + "ST_MHAL", + "Delete Prj(S)", + "(XLS, XLSX, XLSM, CELL)", + "GRASS.DBF", + ").DBF", + ").SMT", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "GetForegroundWindow", + "@Classes@TBasicActionLink@Update$qqrv", + "@Classes@TCollection@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@Insert$qqri", + "@Classes@TList@Delete$qqri", + "@Graphics@TCanvas@RoundRect$qqriiiiii", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Stdctrls@TCustomCombo@AdjustDropDown$qqrv", + "@Comctrls@TListItem@Delete$qqrv", + "@Comctrls@TCustomTreeView@Select$qqrp13Classes@TList", + "@Comctrls@TCustomTreeView@Select$qqrppx18Comctrls@TTreeNodexi", + "@Comctrls@TCustomTreeView@Select$qqrp18Comctrls@TTreeNode46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Comctrls@TTreeNodes@Delete$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@Delete$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Graphutil@ColorAdjustLuma$qqruiii", + "MROUNDUP", + "MROUNDUD", + "sBtn_Xls", + "|*.stc;*.jdl;*.zip;*lzh;*.arj;*.rar;*.xml,*.xls;*.xlsx;*.xlsm|STmate ", + "(*.XLS,*.XLSX,*.XLSM)|*.xls;*.xlsx;*.xlsm|", + "Act_Fnd_Xls", + "CBoxSetHalMLSW", + "Lbl_SelBoq3", + "Act_New_XLS", + "(XLS, XLSX, XLSM)", + "XMLJDLXLS1", + "TXMLPrjBoqList먎꺚ч炬", + "TXMLBoqDet먎꺚먬[", + "TXMLBoqDetList먎꺚чO", + "』프로젝트 신규등록( 엑셀/한셀 자료 선택 : XLS, XLSX, XLSM, CELL )", + "모든(지원, 압축) 데이타|*.stc;*.jdl;*.zip;*lzh;*.arj;*.rar;*.xml,*.xls;*.xlsx;*.xlsm;*.cell|STmate 압축데이타 (*.STC)|*.stc|공사원가 호환규정 데이타(*.XML,*.JDL)|*.jdl;*.xml|STmate엑셀/한셀자료(*.XLS,*.XLSX,*.XLSM,*.CELL)|*.xls;*.xlsx;*.xlsm;*.cell|기타 압축데이타 (*.ZIP; *.LZH; *.ARJ; *.RAR)|*.zip;*lzh;*.arj;*.rar", + "』프로젝트 신규등록( 엑셀 자료 선택 : XLS, XLSX, XLSM )", + "STmate 엑셀/한셀(XLS, XLSX, XLSM, CELL)자료 변환등록" + ] + }, + "ST_CPM\\ST_Prt.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 781968, + "raw_off": 1024, + "raw_size": 782336 + }, + { + "name": "DATA", + "va": 786432, + "vsize": 11320, + "raw_off": 783360, + "raw_size": 11776 + }, + { + "name": "BSS", + "va": 798720, + "vsize": 74961, + "raw_off": 795136, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 876544, + "vsize": 53070, + "raw_off": 795136, + "raw_size": 53248 + }, + { + "name": ".edata", + "va": 929792, + "vsize": 132, + "raw_off": 848384, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 933888, + "vsize": 43820, + "raw_off": 848896, + "raw_size": 44032 + }, + { + "name": ".rsrc", + "va": 978944, + "vsize": 277504, + "raw_off": 892928, + "raw_size": 277504 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "VclSmp60.bpl", + "RealGridEX6.bpl", + "winmm.dll", + "RealGridEX6.bpl", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "GS_Prn_Rec", + "Prn_Prt", + "Rep_Print" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 12939, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "PRT.DBF", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + "KBOQ", + "PRJLST.DBF", + "Excel.Application", + "Microsoft Excel", + "Excel", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "CAP_QTY", + "RPOS_QTY", + "Prn_Boq_Not", + "P_XLS.CPM", + "MAKE_XLS", + " MAKE_XLS ", + "CON_QTY9", + "CON_QTY", + "CONBD_USD_QTY", + "/select,\"", + "RGrid_BoqXX", + "tb_BoqXX", + "RGrid_BoqXXDblClick", + "Qty_H_M", + "Qty_H_L", + "Qty_H_S", + "Qty_H_W", + "Qty_H_W_", + "Qty_H_J", + "TabS_Sel_Boq", + "Gb_Qty_HX", + "Qty_H_J\\", + "RDbGrid_Boqh", + "pn_BOQp", + "cmBx_PosQty", + "ds_BoqXX", + "Qty_H_W\\", + "Qty_H_S`", + "Qty_H_Md", + "Qty_H_Lh", + "mBtn_Calq_Boq", + "mBtn_CONBD_QTY(", + "Pop_Boq", + "mi_Calq_Boq", + "mi_CONBD_QTY", + "CkBx_QtyL", + "mBtn_XlsRpt", + "ckBx_Xls_AutoFit", + "Set_Prt_Xls4", + "mi_Sel_XlsX", + "mi_UseExcel`", + "ckBx_Xls_Fmt", + "RDbGrid_BoqDrawCell", + "mBtn_Calq_BoqClick", + "Pop_BoqPopup", + "mBtn_XlsRptClick", + "Act_Use_Xls_Execute", + "ckBx_Xls_FmtClick", + "CON_USD*.DBF", + "CON_QTY*.DBF", + "TAMT3", + "TAMT4", + "Excel ", + " Excel ", + "SHOW_XLS", + "FREE_XLS", + "X.DBF", + "N.DBF", + "XN.DBF", + "COSTA.DBF", + "Edit_Kan_Rate", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "CreateHalftonePalette", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "@Db@TDataSet@Insert$qqrv", + "MROUNDUP", + "MROUNDUD", + "autoGenerated", + " ", + "RDbGrid_Boq", + "pn_BOQ", + "mBtn_CONBD_QTY", + "Gb_Qty_H", + "PRJLST.NSX", + "BOQ11.NSX", + "Boq11.dbf", + "COSTN.NSX", + "Costn.dbf", + "mi_Sel_Xls", + "mi_UseExcel", + "Set_Prt_Xls", + "Dr. Halo images", + "Excel 파일 작성취소", + "현재 PC에 Excel 프로그램이 설치되어있지 않습니다.", + "Excel이 설치되어 있는 PC에서 작업을 진행하거나 " + ] + }, + "ST_CPM\\ST_SanCal.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 224416, + "raw_off": 1024, + "raw_size": 224768 + }, + { + "name": "DATA", + "va": 229376, + "vsize": 4460, + "raw_off": 225792, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 237568, + "vsize": 67865, + "raw_off": 230400, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 307200, + "vsize": 20718, + "raw_off": 230400, + "raw_size": 20992 + }, + { + "name": ".edata", + "va": 331776, + "vsize": 95, + "raw_off": 251392, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 335872, + "vsize": 13368, + "raw_off": 251904, + "raw_size": 13824 + }, + { + "name": ".rsrc", + "va": 352256, + "vsize": 4608, + "raw_off": 265728, + "raw_size": 4608 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Calq_San" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 3085, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + ";TOT;QTY;OP;INC;CODE;DES;SIZE;UNIT;TID;TNO;SPY;BIGO;SGS_SUB;SGS_SUB_LA;SGS_SUB_MA;SGS_SUB_EQ;SGS_KYE;SGS_KYE_LA;SGS_KYE_MA;SGS_KYE_EQ;SGS_SUM;SGS_SUM_LA;SGS_SUM_MA;SGS_SUM_EQ;", + "`TOTADJ(", + "ROUND", + "ROUNDDOWN", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Math@RoundTo$qqrxdxzc", + "GET_ROUND_CUT", + "MROUNDUP", + "MROUNDUD" + ] + }, + "ST_CPM\\ST_Sys.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 293824, + "raw_off": 1024, + "raw_size": 293888 + }, + { + "name": "DATA", + "va": 299008, + "vsize": 4372, + "raw_off": 294912, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 307200, + "vsize": 69629, + "raw_off": 299520, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 376832, + "vsize": 34946, + "raw_off": 299520, + "raw_size": 35328 + }, + { + "name": ".edata", + "va": 413696, + "vsize": 93, + "raw_off": 334848, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 417792, + "vsize": 17340, + "raw_off": 335360, + "raw_size": 17408 + }, + { + "name": ".rsrc", + "va": 438272, + "vsize": 214016, + "raw_off": 352768, + "raw_size": 214016 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "winmm.dll", + "RealGridEX6.bpl", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Set_Sys_1" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 4792, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "Find_BOQ", + " Find_BOQ ", + "KBOQ", + "PRJLST.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "mi_FindBoq", + "mi_FindBoqClick", + "Act_Sel_EQCODExecute", + "\" .and. !EMPTY(EQCODE) )", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Insert$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "BDQTY.NSX" + ] + }, + "ST_CPM\\ST_U_ADL.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 118264, + "raw_off": 1024, + "raw_size": 118272 + }, + { + "name": "DATA", + "va": 122880, + "vsize": 4016, + "raw_off": 119296, + "raw_size": 4096 + }, + { + "name": "BSS", + "va": 126976, + "vsize": 297, + "raw_off": 123392, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 131072, + "vsize": 26236, + "raw_off": 123392, + "raw_size": 26624 + }, + { + "name": ".edata", + "va": 159744, + "vsize": 190, + "raw_off": 150016, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 163840, + "vsize": 10468, + "raw_off": 150528, + "raw_size": 10752 + }, + { + "name": ".rsrc", + "va": 176128, + "vsize": 28672, + "raw_off": 161280, + "raw_size": 28672 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "winmm.dll", + "wsock32.dll" + ], + "exports": [ + "Get_Real_Time", + "ST_Down_File", + "ST_NEW_INFO", + "ST_SND_Mail", + "ST_UP_DNINFO", + "ST_UP_INFO_R" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 2808, + "domain_strings": [ + "select", + "mtTabSeperated", + "NMsmtp", + "TNMSMTP", + "Content-Type: text/tab-separated-values; charset=", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "NMsmtp떲d쪨", + "TNMSMTP떲,찥", + "TNMSMTP릇A" + ] + }, + "ST_CPM\\ST_U_Archive.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 392180, + "raw_off": 1024, + "raw_size": 392192 + }, + { + "name": "DATA", + "va": 397312, + "vsize": 5028, + "raw_off": 393216, + "raw_size": 5120 + }, + { + "name": "BSS", + "va": 405504, + "vsize": 68021, + "raw_off": 398336, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 475136, + "vsize": 36616, + "raw_off": 398336, + "raw_size": 36864 + }, + { + "name": ".edata", + "va": 512000, + "vsize": 380, + "raw_off": 435200, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 516096, + "vsize": 28484, + "raw_off": 435712, + "raw_size": 28672 + }, + { + "name": ".rsrc", + "va": 544768, + "vsize": 8704, + "raw_off": 464384, + "raw_size": 8704 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "MINIEXTR.DLL", + "rtl60.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Chk_ArcName", + "Chk_Data", + "Chk_STC_Ver", + "Chk_STDir", + "ComP_CurBOQ", + "ComP_Data", + "ComP_FOLD", + "ComP_Files", + "ComP_ImpF", + "ComP_JTxt", + "ComP_Prnt", + "ComP_Time", + "UnPack", + "UnPack1", + "UnPack_No" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6993, + "domain_strings": [ + "AddSeparateDirs", + "Please insert last disk in set", + "Please insert disk volume %.1d of %.1d", + "Please insert disk volume %.1d", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + ".DBF", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "Typ_PrjBoqListL", + "Typ_BoqListL", + "Typ_BoqDetListL", + "TXMLExRate", + "TXMLRatePerHr", + "TXMLPrjBoq", + "TXMLPrjBoqList", + "TXMLBoq", + "TXMLBoqList", + "TXMLBoqDet", + "TXMLBoqDetList", + "CON_QTY", + "/select,\"", + "*.DBF, *.SMT, *.MEM, *.INI, *.SDB, *.VIF ", + "*.SRP, *.XLS,", + "GLOBAL.INI:M.TXT:L.TXT:E.TXT:W.TXT:UNIT.TXT:UNITPART.TXT:J.TXT:JPART.TXT:JUNIT.TXT:DANGA.TXT:DANGA.DBF:DANGA.DBT:GONGJONG.TXT:MAIN.TXT:MAINPART.TXT:COSTACCOUNT.TXTIMG.DBF:IMG.SMT", + ".STBSC", + ":RATE.DBF:", + ":QCODE.DBF:", + ":FORM.DBF:", + ":KANJUB2.DBF:", + ":COSTN1.DBF:", + ":COSTA.DBF:", + ":COSTN.SMT:", + ":PRJLST.SMT:", + ":SYSINFO.DBF:", + ":BOQJ.DBF:", + ":DANGA.DBF:", + ":DAT_QTY.DBF:", + ":EMP_LST.DBF:", + ":BDQTY.DBF:", + ":COST.DBF:", + ":EWORKMST.DBF:", + ":EWORKDTL.DBF:", + ":EDIST.DBF:", + ":EDIST1.DBF:", + ":EDIST2.DBF:", + ":COSTN.DBF:", + ":PRJLST.DBF:", + ":GRASS.DBF:", + ":COST0.DBF:", + "COSTN.DBF", + "COSTN.SMT", + "COSTA.DBF", + "BDQTY.DBF", + "QCODE.DBF", + "QCODE.SMT", + "PRJLST.DBF", + "PRJLST.SMT", + "SYSINFO.DBF", + "ComP_CurBoq", + "GRASS.DBF", + "SET_REP.DBF", + "BOQ.DBF", + "RATE.DBF", + "RATE_R.DBF", + "RATE_RA.DBF", + "RATE_M.DBF", + "KONGJONG.DBF", + "COSTN", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "MROUNDUP", + "MROUNDUD", + "ComP_CurBOQ", + "Typ_PrjBoqListL멊", + "Typ_BoqListL멊", + "Typ_BoqDetListL멊", + "TXMLPrjBoqList먎꺚ч炬", + "TXMLBoqDet먎꺚먬[", + "TXMLBoqDetList먎꺚чO" + ] + }, + "ST_CPM\\ST_U_ChgAmt.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 92228, + "raw_off": 1024, + "raw_size": 92672 + }, + { + "name": "DATA", + "va": 98304, + "vsize": 4348, + "raw_off": 93696, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 106496, + "vsize": 67569, + "raw_off": 98304, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 176128, + "vsize": 19876, + "raw_off": 98304, + "raw_size": 19968 + }, + { + "name": ".edata", + "va": 196608, + "vsize": 99, + "raw_off": 118272, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 200704, + "vsize": 6812, + "raw_off": 118784, + "raw_size": 7168 + }, + { + "name": ".rsrc", + "va": 208896, + "vsize": 4608, + "raw_off": 125952, + "raw_size": 4608 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "CHANGE_AMT", + "Calc_Kanjub" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1880, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "PRJLST.DBF", + "KBOQ", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "MAMT", + "LAMT", + "SAMT", + "TAMT", + "COSTN.DBF", + "COSTA.DBF", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "MROUNDUP", + "MROUNDUD" + ] + }, + "ST_CPM\\ST_U_ChgCode.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 478724, + "raw_off": 1024, + "raw_size": 479232 + }, + { + "name": "DATA", + "va": 483328, + "vsize": 9072, + "raw_off": 480256, + "raw_size": 9216 + }, + { + "name": "BSS", + "va": 495616, + "vsize": 73601, + "raw_off": 489472, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 569344, + "vsize": 37638, + "raw_off": 489472, + "raw_size": 37888 + }, + { + "name": ".edata", + "va": 610304, + "vsize": 302, + "raw_off": 527360, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 614400, + "vsize": 24660, + "raw_off": 527872, + "raw_size": 25088 + }, + { + "name": ".rsrc", + "va": 643072, + "vsize": 103936, + "raw_off": 552960, + "raw_size": 103936 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "winmm.dll", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub", + "Chg_Code_All", + "Chg_Code_Plus", + "Chg_Code_Sel", + "Chk_Chg_Code_1", + "Chk_True_Rep_Code", + "Exec_Change_Code", + "Exec_Replace_Code", + "Rep_Code", + "Tran_SAN_Format" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 6598, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "Find_BOQ", + " Find_BOQ ", + "COSTN.DBF", + ".DBF", + "Excel.Application", + "Microsoft Excel", + "Excel", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "Act_LstEqCode", + "Act_FindBoq ", + "sBtnLstEqCode4", + "CostNavi<", + "tb_BDQTY4", + "ds_BDQTY8", + "tb_BDQTY_X<", + "ds_BDQTY_X@", + "Act_ToXls", + "Act_FromXls", + "Act_FindBoqExecute", + "Act_ToXlsExecute", + "Act_FromXlsExecute", + "COSTA.DBF", + "CH_CODE.DBF", + "BDQTY.DBF", + "PRJLST.DBF", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE", + "CH_CODE_C.DBF", + "PRT.DBF", + "P_XLS.CPM", + "MAKE_XLS", + " MAKE_XLS ", + "SHOW_XLS", + " SHOW_XLS ", + "FREE_XLS", + " FREE_XLS ", + "Act_LstEqCodeExecute", + "RP_CODE.DBF", + "BOQ11.DBF", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "sBtnLstEqCode", + "Act_FindBoq", + "CostNavi", + "ds_BDQTY", + "ds_BDQTY_X", + "COSTN.NSX", + "tb_BDQTY", + "BDQTY.NSX", + "tb_BDQTY_X", + "Dr. Halo images" + ] + }, + "ST_CPM\\ST_U_ConBD.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 132220, + "raw_off": 1024, + "raw_size": 132608 + }, + { + "name": "DATA", + "va": 139264, + "vsize": 4400, + "raw_off": 133632, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 147456, + "vsize": 68177, + "raw_off": 138240, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 217088, + "vsize": 24254, + "raw_off": 138240, + "raw_size": 24576 + }, + { + "name": ".edata", + "va": 241664, + "vsize": 138, + "raw_off": 162816, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 245760, + "vsize": 9964, + "raw_off": 163328, + "raw_size": 10240 + }, + { + "name": ".rsrc", + "va": 258048, + "vsize": 23040, + "raw_off": 173568, + "raw_size": 23040 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "CONBD_USD_QTY", + "CON_QTY", + "CON_QTY9", + "Calc_Kanjub" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 2594, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "tb_BoqXX", + "tb_BoqC", + "tb_BdQty", + "BOQC.DBF", + "BOQC.NSX", + "(SUBSTR(BDCODE1,1,1)$\"TEC\" or (QTY", + "=0 and QTY", + "TuM_ConQTY9", + "TuM_ConQTY9l~A", + "u_ConQTY9", + "DET_ITQTYX", + "CON_QTY", + "H_QTY", + "B_QTY", + "D_QTY", + "TuM_ConQTY", + "u_ConQTY", + "DET_ITQTY8", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "CONBD_USD_QTY", + "CON_QTY9", + ">u_ConQTY", + "BOQ11.NSX", + "BOQ11.DBF", + "BDQTY.NSX", + "BDQTY.DBF", + "uM_ConQTY", + "uM_ConQTY9", + "TUM_CONQTY", + "TUM_CONQTY9", + "u_ConQTY9떲L", + "TuM_ConQTY졛A" + ] + }, + "ST_CPM\\ST_U_Convert.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1596912, + "raw_off": 1024, + "raw_size": 1596928 + }, + { + "name": "DATA", + "va": 1601536, + "vsize": 23768, + "raw_off": 1597952, + "raw_size": 24064 + }, + { + "name": "BSS", + "va": 1626112, + "vsize": 480361, + "raw_off": 1622016, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2109440, + "vsize": 57782, + "raw_off": 1622016, + "raw_size": 57856 + }, + { + "name": ".edata", + "va": 2170880, + "vsize": 505, + "raw_off": 1679872, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 2174976, + "vsize": 81404, + "raw_off": 1680384, + "raw_size": 81408 + }, + { + "name": ".rsrc", + "va": 2256896, + "vsize": 64000, + "raw_off": 1761792, + "raw_size": 64000 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "bdertl60.bpl", + "bdertl60.bpl", + "bdertl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "bdertl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "rtl60.bpl", + "vcl60.bpl", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "winmm.dll" + ], + "exports": [ + "Appn_Tag_REP", + "CHK_K_FLD", + "Calc_Kanjub", + "Conv_BOQ", + "Conv_Equip", + "Conv_Jodal_ST8", + "Conv_ST8_Jodal", + "Conv_ST8_XML", + "Conv_XML_ST8", + "MK_ADD_K_REP", + "MK_BSC_M", + "MK_K_FLD", + "MK_SET_REP", + "ST_BlankWin8", + "ST_ConvToWin8", + "ST_Conv_Data", + "ST_Conv_Mode1", + "ST_Conv_Mode2", + "ST_Conv_Mode3", + "ST_Copy_Data" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 18308, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "Background,F`", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "SYSINFO.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "ROUND(", + ".JB_R", + ".JB_RA", + "BOQ.DBF", + "KONGJONG.DBF", + "BDQTY.DBF", + "COSTN.DBF", + "FORM.DBF", + "KANJUB2.DBF", + "PRJLST.DBF", + ".DBF ", + "iTMP.DBF", + "DANGA.DBF", + "MAMT2", + "LAMT2", + "SAMT2", + "TAMT2", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "PG_1", + "PG_12", + "PG_22", + "PG_32", + "PG_42", + "PG_52", + "PG_2", + "GRASS.DBF", + "IMG.DBF", + "BdQty.Dbf", + "Danga.DBF", + "BOQ11.DBF", + "Boq11.Dbf", + "PrjLst.Dbf", + "MAMT4", + "LAMT4", + "SAMT4", + "TAMT4", + "CostAccount.Txt", + "CONLD.DBF", + "CONTD.DBF", + "COSTN.NSX", + "COSTA.DBF", + "RATE_M", + "RATE_S", + "BDQTY.NSX", + "PRJLST.NSX", + "BQM.DBF", + "RATE_R.DBF", + "RATE.DBF", + "RATE_RA.DBF", + "RATE_M.DBF", + "RATE_", + "QCODE.DBF", + "SET_REP.DBF", + "iTMP.SMT", + "COSTN.SMT", + "PRJLST.SMT", + "D_LAMT", + "D_MAMT", + "D_SAMT", + "PG_1D", + "PG_2D", + "PG_3D", + "PG_4D", + "PG_5D", + "PG_1B", + "PG_2B", + "PG_3B", + "PG_4B", + "PG_5B", + "IMGINFO.DBF", + "PRJ.DBF", + "KANJUB1.DBF", + "KANJUB.DBF", + "RATE1", + "RATE2", + "RATE3", + "RATE4", + "RATE5", + "RATE6", + "RATE7", + "RATE8", + "PMHAL", + "COSTN1.DBF", + "PRT.DBF", + "PG_3", + "PG_4", + "PG_5", + "IMG.SMT", + "!!..CostAccount.TXT ", + "/select,\"", + "BOQ12.DBF", + "BOQ12.NSX", + "BOQ11.NSX", + "COSTA.NSX", + "(BID.DBF)", + "BID.DBF", + "QCODE.SMT", + "BQM11.DBF", + ".XLS", + "CON_QTY", + "D_QTY1", + "MAMT1_R", + "LAMT1_R", + "SAMT1_R", + "Rate_M.DBF", + "RATE_35", + "COSTA.CSTA", + "QTY1_B", + "QTY1_N", + "QTY1_O", + "QTY1_H", + "Typ_ExRate", + "Typ_PrjBoqList", + "Typ_BoqList", + "Typ_BoqDetList", + "TXMLExRate", + "TXMLRatePerHr", + "TXMLPrjBoq", + "TXMLPrjBoqList", + "TXMLBoq", + "TXMLBoqList", + "TXMLBoqDet", + "TXMLBoqDetList", + "Act_Chk_XLstd", + "Act_Chk_XLstExecute", + "TXmlBoqRecp", + "K_QTY0", + "K_QTY", + "BOQ_W.*", + "BOQ_W.DBF", + "CN_TMP.DBF", + "1_C_PSAMT_B", + "(ROUNDUP)", + "TOTADJ(", + "ReWrite_MAMT_", + "Arc_STBSC", + ".STBSC", + "COSTN.*", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Math@RoundTo$qqrxdxzc", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Apodset@TApolloTable@DbfDecrypt$qqrv", + "GET_ROUND_CUT", + "MROUNDUP", + "MROUNDUD", + "Conv_BOQ", + " (*.STBSC)|*.STBSC", + "Act_Chk_XLst", + "Dr. Halo images", + "_제비율.JB_R", + "_제비율.JB_RA", + ".DBF 파일은 없습니다.", + "!!..CostAccount.TXT 생성 오류..!!", + "계약내역생성(BID.DBF)", + "Typ_ExRate큗M", + "TXMLExRate먎꺚곈눓", + "TXMLPrjBoqList먎꺚ч色", + "TXMLBoqDet먎꺚먬o", + "TXMLBoqDetList먎꺚чc", + "번째줄에 올림함수(ROUNDUP)의 \"-자릿수\"는 사용할 수 없습니다(호환규정 미지원)." + ] + }, + "ST_CPM\\ST_U_DelCode.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 418644, + "raw_off": 1024, + "raw_size": 418816 + }, + { + "name": "DATA", + "va": 425984, + "vsize": 8984, + "raw_off": 419840, + "raw_size": 9216 + }, + { + "name": "BSS", + "va": 438272, + "vsize": 72805, + "raw_off": 429056, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 512000, + "vsize": 36524, + "raw_off": 429056, + "raw_size": 36864 + }, + { + "name": ".edata", + "va": 548864, + "vsize": 200, + "raw_off": 465920, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 552960, + "vsize": 21184, + "raw_off": 466432, + "raw_size": 21504 + }, + { + "name": ".rsrc", + "va": 577536, + "vsize": 56832, + "raw_off": 487936, + "raw_size": 56832 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "winmm.dll" + ], + "exports": [ + "Calc_Kanjub", + "Chk_True_Del_1", + "Del_Code_A_T", + "Del_Code_A_X", + "Del_Code_Sel", + "Exec_Delete_Code" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 5874, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "Find_BOQ", + " Find_BOQ ", + "COSTN.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "UhalC", + "Act_LstEqCode", + "Act_FindBoq ", + "sBtnLstEqCode4", + "CostNavi<", + "tb_BDQTY0", + "ds_BDQTY4", + "tb_BDQTY_X8", + "ds_BDQTY_X<", + "Act_FindBoqExecute", + "PRJLST.DBF", + "BDQTY.DBF", + "DEL_CODE.DBF", + "Select", + "COSTA.DBF", + "SELECT", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "CreateHalftonePalette", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Math@RoundTo$qqrxdxzc", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "sBtnLstEqCode", + "Act_FindBoq", + "CostNavi", + "ds_BDQTY", + "ds_BDQTY_X", + "COSTN.NSX", + "tb_BDQTY", + "BDQTY.NSX", + "tb_BDQTY_X", + "Dr. Halo images", + "Delete Code" + ] + }, + "ST_CPM\\ST_U_DelPrj.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 108724, + "raw_off": 1024, + "raw_size": 109056 + }, + { + "name": "DATA", + "va": 114688, + "vsize": 4388, + "raw_off": 110080, + "raw_size": 4608 + }, + { + "name": "BSS", + "va": 122880, + "vsize": 67609, + "raw_off": 114688, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 192512, + "vsize": 26612, + "raw_off": 114688, + "raw_size": 26624 + }, + { + "name": ".edata", + "va": 221184, + "vsize": 119, + "raw_off": 141312, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 225280, + "vsize": 7980, + "raw_off": 141824, + "raw_size": 8192 + }, + { + "name": ".rsrc", + "va": 233472, + "vsize": 11264, + "raw_off": 150016, + "raw_size": 11264 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "Delete_Prj", + "Merge_Prj" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 2323, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + ".DBF", + "PRJLST.DBF", + "KBOQ", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "RDbGrid_Boq", + "tb_BoqXX", + "ds_BoqXX", + "mBtn_NewBoq", + "RDbGrid_BoqDrawCell", + "mBtn_NewBoqClick", + "CON_QTY", + "Exec Delete", + "Boq_Delete", + "Exec Delete(", + "Boq_Merge", + "IMSI1.DBF", + "IMSI2.DBF", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "MROUNDUP", + "MROUNDUD", + "PRJLST.NSX", + "BOQ11.NSX", + "Boq11.dbf", + "Delete, Merge BOQ" + ] + }, + "ST_CPM\\ST_U_Indx.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 93364, + "raw_off": 1024, + "raw_size": 93696 + }, + { + "name": "DATA", + "va": 98304, + "vsize": 4760, + "raw_off": 94720, + "raw_size": 5120 + }, + { + "name": "BSS", + "va": 106496, + "vsize": 67569, + "raw_off": 99840, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 176128, + "vsize": 24312, + "raw_off": 99840, + "raw_size": 24576 + }, + { + "name": ".edata", + "va": 200704, + "vsize": 95, + "raw_off": 124416, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 204800, + "vsize": 7228, + "raw_off": 124928, + "raw_size": 7680 + }, + { + "name": ".rsrc", + "va": 212992, + "vsize": 5120, + "raw_off": 132608, + "raw_size": 5120 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "bdertl60.bpl", + "bdertl60.bpl", + "bdertl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "bdertl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "rtl60.bpl", + "rtl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "INDX_ALL" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1982, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "tb_PrjLst", + "PRJLST", + "COSTN", + "COSTA", + "BDQTY", + ";COSTN;COSTA;", + "COSTN.DBF", + "BDQTY.DBF", + "FORM.DBF", + "COSTN1", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Apodset@TApolloTable@DbfDecrypt$qqrv", + "MROUNDUP", + "MROUNDUD", + "PRJLST.DBF" + ] + }, + "ST_CPM\\ST_U_Merge.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 522000, + "raw_off": 1024, + "raw_size": 522240 + }, + { + "name": "DATA", + "va": 528384, + "vsize": 9276, + "raw_off": 523264, + "raw_size": 9728 + }, + { + "name": "BSS", + "va": 540672, + "vsize": 72461, + "raw_off": 532992, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 614400, + "vsize": 46376, + "raw_off": 532992, + "raw_size": 46592 + }, + { + "name": ".edata", + "va": 663552, + "vsize": 96, + "raw_off": 579584, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 667648, + "vsize": 26564, + "raw_off": 580096, + "raw_size": 26624 + }, + { + "name": ".rsrc", + "va": 696320, + "vsize": 112128, + "raw_off": 606720, + "raw_size": 112128 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "VclSmp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "winmm.dll", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "ST_MERGE" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 7666, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "IFORM", + "COSTN.DBF", + ".DBF", + "SYSINFO.DBF", + "COSTA.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "tb_BDQTY_Ref", + "ds_BDQTY_X", + "ds_BDQTY", + "tb_BDQTY", + "tb_BDQTY_X", + "tb_BOQ_Ref", + "tb_PrjLst_M", + "ds_PrjLst_M", + "Act_LstEqCode", + "sBtnLstEqCodeX", + "CostNavi`", + "ds_PrjLst_MDataChange", + "Act_LstEqCodeExecute", + "BDQTY.DBF", + "COMP_REF.DBF", + "EQCODE_C", + "QCODE.DBF", + "COSTN.NSX", + "BDQTY.NSX", + "PRJLST.NSX", + "TAMT2", + "LAMT2", + "MAMT2", + "SAMT2", + "MRG_COSTN.*", + "MRG_BDQTY.*", + "MRG_BOQ*.*", + "MRG_COSTN.DBF", + "MRG_IMG.DBF", + "MRG_BDQTY.DBF", + "MRG_QCODE.DBF", + "MRG_BOQ", + "Conv_BOQ", + "PRJLST.DBF", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE)", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "CreateHalftonePalette", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "MROUNDUP", + "MROUNDUD", + "sBtnLstEqCode", + "CostNavi", + "BOQ11.DBF", + "DataPathAlias", + "Dr. Halo images" + ] + }, + "ST_CPM\\STmateQty8.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 139844, + "raw_off": 1024, + "raw_size": 140288 + }, + { + "name": "DATA", + "va": 147456, + "vsize": 4664, + "raw_off": 141312, + "raw_size": 5120 + }, + { + "name": "BSS", + "va": 155648, + "vsize": 67617, + "raw_off": 146432, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 225280, + "vsize": 33064, + "raw_off": 146432, + "raw_size": 33280 + }, + { + "name": ".edata", + "va": 262144, + "vsize": 134, + "raw_off": 179712, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 266240, + "vsize": 10344, + "raw_off": 180224, + "raw_size": 10752 + }, + { + "name": ".rsrc", + "va": 278528, + "vsize": 33792, + "raw_off": 190976, + "raw_size": 33792 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "rtl60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "VclSmp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "Calc_Kanjub", + "FIND_QCODE", + "Free_Qty", + "ST_QTY" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 3471, + "domain_strings": [ + "HAlignx{C", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "Pop_Qty4", + "ActDefQtyD", + "ActSheetToBoqByNameP", + "mSheet2BoqNamet", + "tbCostN", + "dsCostN", + "LBoxQty", + "mSheet2BoqCode", + "ActSheetToBoqByCode", + "ActDefSamt,", + "ActDefLamt0", + "ActDefMamt4", + "mi_Snd_Qty4", + "LBoxQtyDblClick", + "ActSheetToBoqByNameExecute", + "SendToBoq", + "SendToBoqCode", + "Pop_QtyPopup", + "mi_Snd_QtyClick", + "TwQtyList", + "QtyList", + "iform", + "POS_D_QTYLST", + "IFORM", + ".XLS", + " \".XLS\"", + " \"Qty0\" ~ \"Qty9\" ", + "Qty1", + "Mamt1", + "Lamt1", + "Samt1", + "Tamt1", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TApplication@ActivateHint$qqrrx12Types@TPoint", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "MROUNDUP", + "MROUNDUD", + "STmateQty8.CPM", + "Free_Qty", + "ST_QTY", + "&STmateQty8", + "wQtyList", + "QTY0", + "QTY5", + "QTY6", + "QTY7", + "QTY8", + "QTY9", + "Pop_Qty", + "QCODE.DBF", + ")|*.XLS", + "ActSheetToBoqByName", + "DefineBoq", + "ActDefQty", + "ActDefMamt", + "ActDefLamt", + "ActDefSamt", + "mSheet2BoqName", + "mi_Snd_Qty", + "COSTN.NSX", + "COSTN.DBF", + " *.XLS)", + "TWQTYLIST", + "수량산출서 파일은 확장가가 \".VTS\" 또는 \".XLS\"인 파일만 가능 합니다.", + " \"Qty0\" ~ \"Qty9\" 필드를 선택 하세요 " + ] + }, + "ST_Func_C.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 528340, + "raw_off": 1024, + "raw_size": 528384 + }, + { + "name": "DATA", + "va": 532480, + "vsize": 9608, + "raw_off": 529408, + "raw_size": 9728 + }, + { + "name": "BSS", + "va": 544768, + "vsize": 3829, + "raw_off": 539136, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 548864, + "vsize": 9960, + "raw_off": 539136, + "raw_size": 10240 + }, + { + "name": ".edata", + "va": 561152, + "vsize": 183, + "raw_off": 549376, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 565248, + "vsize": 33380, + "raw_off": 549888, + "raw_size": 33792 + }, + { + "name": ".rsrc", + "va": 602112, + "vsize": 74240, + "raw_off": 583680, + "raw_size": 74240 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "comctl32.dll", + "wsock32.dll", + "ST_COM_V.CPM", + "DP_COMMON.CPM" + ], + "exports": [ + "CON_TOT", + "OPTIMIZ", + "PCN_TO_T", + "SUM_TOT", + "VALTOPOS", + "ZERO_TO", + "ZERO_TOT" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 8677, + "domain_strings": [ + "clBackground", + "fsMDIForm", + "OnActivate", + "OnDeactivate", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "sAmTb", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "select", + "MROUNDUP", + "MROUNDUD", + "QTypInfo", + "lbBackGroundMsg", + "Background Processing", + "StopBackground", + "Stop Background", + "StartBackground", + "Start Background", + "OLE control activation failed*Could not obtain OLE control window handle%License information for %s is invalidPLicense information for %s not found. You cannot use this control in design mode", + "Insert record", + "Delete record", + "OnActivate컗C" + ] + }, + "ST_JD_Lst.CPM": { + "format": "text", + "detail": { + "encoding": "cp949", + "lines": 26 + }, + "strings": [ + "[X_Lst]", + "X_Lst_Date = 2026.05.27", + "X_Lst_L = ;L001010101000001;L001010101000002;L001010101000003;L001010101000004;L001010101000005;L001010101000006;L001010101000007;L001010101000008;L001010101000009;L001010101000010;L001010101000011;L001010101000012;L001010101000013;L001010101000014;L001010101000015;L001010101000016;L001010101000017;L001010101000018;L001010101000019;L001010101000020;L001010101000021;L001010101000022;L001010101000023;L001010101000024;L001010101000025;L001010101000026;L001010101000027;L001010101000028;L001010101000029;L001010101000030;L001010101000031;L001010101000032;L001010101000033;L001010101000034;L001010101000035;L001010101000036;L001010101000037;L001010101000038;L001010101000039;L001010101000040;L001010101000041;L001010101000042;L001010101000043;L001010101000044;L001010101000045;L001010101000046;L001010101000047;L001010101000048;L001010101000049;L001010101000050;L001010101000051;L001010101000052;L001010101000053;L001010101000054;L001010101000055;L001010101000056;L001010101000057;L001010101000058;L001010101000059;L001010101000060;L001010101000061;L001010101000062;L001010101000063;L001010101000064;L001010101000065;L001010101000066;L001010101000067;L001010101000068;L001010101000069;L001010101000070;L001010101000071;L001010101000072;L001010101000073;L001010101000074;L001010101000075;L001010101000076;L001010101000077;L001010101000078;L001010101000079;L001010101000080;L001010101000081;L001010101000082;L001010101000083;L001010101000084;L001010101000085;L001010101000086;L001010101000087;L001010101000088;L001010101000089;L001010101000090;L001010101000091;L001010201000092;L001010201000093;L001010201000094;L001010301000095;L001010301000096;L001010301000097;L001010301000098;L001010301000099;L001010301000100;L001010301000101;L001010301000102;L001010301000103;L001010301000104;L001010301000105;L001010301000106;L001010301000110;L001010301000120;L001010301000200;L001010301000300;L001010301000400;L001010301000500;L001010301000600;L001010301000700;L001010301000800;L001010401000107;L001010401000108;L001010401000109;L001010401000110;L001010501000111;L001010501000112;L001010501000113;L001010501000114;L001010501000115;L001010501000116;L001010501000117;L001010501000118;L001010501000119;L001010501000120;L001010501000121;L001010501000122;L001010501000123;L001010501000124;L001010501000125;L001010501000126;L001020101000118;L001020101000119;L001020101000120;L001020101000121;L001020101000122;L001020101000123;L001020101000124;L001020101000125;L001020201000126;L001020201000127;L001020201000128;L001020201000129;L001020201000130;L001020201000131;L001020201000132;L001020201000133;L001020301000134;L001020301000135;L001020301000136;L001020301000137;L001020301000138;L001020301000139;L001020301000140;L001020301000141;L001020401000001;L001020401000002;L001020401000003;L001020401000004;L001020401000005;L001020401000006;L001020401000007;L001020401000008;L001020501000009;L001020501000010;L001020501000011;L001020501000012;L001020501000013;L001020501000014;L001020501000015;L001020501000016;L001020601000017;L001020601000018;L001020601000019;L001020601000020;L001020601000021;L001020601000022;L001020601000023;L001020601000024;L001020701000025;L001020701000026;L001020701000027;L001020701000028;L001020701000029;L001020701000030;L001020701000031;L001020701000032;L001020801000033;L001020801000034;L001020801000035;L001020801000036;L001020801000037;L001020801000038;L001020801000039;L001020801000040;L001020901000041;L001020901000042;L001020901000043;L001020901000044;L001020901000045;L001020901000046;L001020901000047;L001020901000048;L001021001000049;L001021001000050;L001021001000051;L001021001000052;L001021001000053;L001021001000054;L001021001000055;L001021001000056;L001021101000057;L001021101000058;L001021101000059;L001021101000060;L001030301000142;L001030301000143;L001030301000144;L001030301000145;L001030301000146;L001030301000147;L001030301000148;L001030301000149;L001030301000150;L001030301000151;L001030301000152;L001030301000153;L001030301000154;L001030301000155;L001030301000156;L001030301000157;L001030301000158;L001030301000159;L001030301000160;L001030301000161;L001030301000162;L001030301000163;L001030301000164;L001030301000165;L001030301000166;L001030301000167;L001030301000168;L001030301000169;L001030301000170;L001030301000171;L001030301000172;L001030301000173;L001030301000174;L001030301000175;L001030301000176;L001030301000177;L001030301000178;L001030301000179;L001030301000180;L001030301000181;L001030301000182;L001030301000183;L001030301000184;L001030301000185;L001030301000186;L001030301000187;L001030301000188;L001030301000189;L001030301000190;L001030301000191;L001030301000192;L001030301000193;L001030301000194;L001030301000195;L001030301000196;L001030301000197;L001030301000198;L001030301000199;L001030301000200;L001030301000201;L001030301000202;L001030301000203;L001030301000204;L001030301000205;L001030301000206;L001030301000207;L001030301000208;L001030301000209;L001030301000210;L001030301000211;L001030301000212;L001030301000213;L001030301000214;L001030301000215;L001030301000216;L001030301000217;L001030301000218;L001030301000219;L001030301000220;L001030301000221;L001030301000222;L001030301000223;L001030301000224;L001030301000225;L001030301000226;L001030301000227;L001030301000228;L001030301000229;L001030301000230;L001030301000231;L001030301000232;L001030301000233;L001030301000234;L001030301000235;L001030301000236;L001030301000237;L001030301000238;L001030301000239;L001030301000240;L001030301000241;L001030301000242;L001030301000243;L001030301000244;L001030301000245;L001030301000246;L001030301000247;L001030301000248;L001030301000249;L001030301000250;L001030301000251;L001030301000252;L001030301000253;L001030301000254;L001030301000255;L001030301000256;L001030301000257;L001030301000258;L001030301000259;L001030301000260;L001030301000261;L001030301000262;L001030301000263;L001030301000264;L001030301000265;L001030301000266;L001030301000267;L001030301000268;L001030301000269;L001030301000270;L001030301000271;L001030301000272;L001030301000273;L001030301000274;L001030301000275;L001030301000276;L001030301000277;L001030301000278;L001030301000279;L001030301000280;L001030301000281;L001030301000282;L001030301000283;L001030301000284;L001030301000285;L001030301000286;L001030301000287;L001030301000288;L001030301000289;L001030301000290;L001030301000291;L001030301000292;L001030301000293;L001030301000294;L001030301000295;L001030301000296;L001030301000297;L001030301000298;L001030301000299;L001030301000300;L001030301000301;L001030301000302;L001030301000303;L001030301000304;L001030301000305;L001030301000306;L001030301000307;L001030301000308;L001030301000309;L001030301000310;L001030301000311;L001030301000312;L001030301000313;L001030301000314;L001030301000315;L001030301000316;L001030301000317;L001030301000318;L001030301000319;L001030301000320;L001030301000342;L001030301000343;L001030301000344;L001030301000345;L001030301000346;L001030301000347;L001030301000348;L001030301000349;L001030301000350;L001030301000351;L001030301000352;L001030301000353;L001030301000354;L001030301000355;L001030301000356;L001030301000357;L001030301000358;L001030301000359;L001030301000360;L001030301000361;L001030301000362;L001030301000363;L001030301000364;L001030301000365;L001030301000366;L001030301000367;L001030301000368;L001030301000369;L001030301000370;L001030301000371;L001030301000372;L001030301000373;L001030301000374;L001030301000375;L001030301000376;L001030301000377;L001030301000378;L001030301000379;L001030301000380;L001030301000381;L001030301000382;L001040101000321;L001040101000322;L001040101000323;L001040101000324;L001040101000325;L001040201000326;L001040201000327;L001040201000328;L001040301000329;L001040301000330;L001040301000331;L001040401000332;L001040401000333;L001040401000334;L001040501000335;L001040501000336;L001040501000337;L001040901000338;L001040901000339;L001040901000340;L001040901000341;", + "X_Lst_A2 = ;CAA210901100;CAA210901200;CAA210901300;CAA210902100;CAA210902200;CAA210902300;CAA220501000;CAA310010100;CAA310010110;CAA310010120;CAA310010200;CAA310010210;CAA310010220;CAA310010300;CAA310010310;CAA310010320;CAA310020100;CAA310020200;CAA310020300;CAA310021000;CAA310021010;CAA310021020;CAA310022000;CAA320510000;CAA321011200;CAA321011210;CAA321012200;CAA321012210;CAA321013200;CAA321013210;CAA323105000;CAA323105010;CAA323105020;CAA323106000;CAA323106010;CAA323106020;CAD130010000;CAE110105000;CAE110105010;CAE110108000;CAE110108010;CAE110110000;CAE110110010;CAE110205000;CAE110205010;CAE110208000;CAE110208010;CAE110210000;CAE110210010;CAE111005000;CAE111005010;CAE111008000;CAE111008010;CAE111010000;CAE111010010;CAE111012000;CAE111012010;CAE111015000;CAE111015010;CAE111018000;CAE111018010;CAE111020000;CAE111020010;CAE130002000;CAE130102000;CAE141300500;CAE141300510;CAE141300800;CAE141300810;CAE141301100;CAE141301110;CAE141301400;CAE141301410;CAE141301700;CAE141301710;CAE141401100;CAE141401110;CAE141401400;CAE141401410;CAE141401700;CAE141401710;CAE146300500;CAE146300510;CAE146300800;CAE146300810;CAE146301100;CAE146301110;CAE146301300;CAE146301310;CAE146301600;CAE146301610;CAE146401100;CAE146401110;CAE146401300;CAE146401310;CAE146401600;CAE146401610;CCG111010000;CCG111020000;CCG520130000;CCG520135000;CCG520140000;CCG520145000;CCG520150000;CCG520155000;CCG520160000;CCG520165000;CCG520170000;CCG520175000;CCG520180000;CCG520230100;CCG520230200;CCG520235100;CCG520235200;CCG520240100;CCG520240200;CCG520240300;CCG520245100;CCG520245200;CCG520245300;CCG520245400;CCG520250100;CCG520250200;CCG520250300;CCG520250400;CCG520255100;CCG520255200;CCG520255300;CCG520255400;CCG520260100;CCG520260200;CCG520260300;CCG520260400;CCG520265100;CCG520265200;CCG520265300;CCG520265400;CCG520270100;CCG520270200;CCG520270300;CCG520270400;CCG520275100;CCG520275200;CCG520275300;CCG520275400;CCG520280100;CCG520280200;CCG520280300;CCG520280400;CCG520330100;CCG520330200;CCG520335100;CCG520335200;CCG520340100;CCG520340200;CCG520340300;CCG520345100;CCG520345200;CCG520345300;CCG520345400;CCG520350100;CCG520350200;CCG520350300;CCG520355100;CCG520355200;CCG520355300;CCG520355400;CCG520360100;CCG520360200;CCG520360300;CCG520360400;CCG520365100;CCG520365200;CCG520365300;CCG520365400;CCG520370100;CCG520370200;CCG520370300;CCG520370400;CCG520375100;CCG520375200;CCG520375300;CCG520375400;CCG520380100;CCG520380200;CCG520380300;CCG520380400;CDA100000100;CDA210100100;CDA220200100;CDA230300100;CDB100000000;CDB200000000;CDC112100000;CDC112100500;CDC112200000;CDC112200500;CDC121100000;CDC121100500;CDC121200000;CDC121200500;CDC211100000;CDC211200000;CDC221100000;CDC221200000;CDC231000000;CDC231000100;CDC231100000;CDC231100100;CDC410000000;CDC420000000;CDC430000000;CDC900100000;CDC900200000;CDD100000000;CDD100100000;CDD100200000;CDD110000000;CDD110100000;CDD110200000;CDD210000000;CDD300100010;CDD300200010;CDD300300010;CDD300400010;CDD300500010;CDD300600010;CDD300800100;CDD300800200;CDD310000000;CDD320000000;CDD330000000;CDE110000100;CDE110000110;CDE110000120;CDE110000130;CDE111000100;CDE111000110;CDE111000120;CDE111000130;CDE130110000;CDE130110010;CDE130110020;CDE130110030;CDE130110040;CDE130110050;CDE130110500;CDE130110510;CDE130110520;CDE130110530;CDE130110540;CDE130110550;CDE130120000;CDE130120010;CDE130120020;CDE130120030;CDE130120040;CDE130120050;CDE130120500;CDE130120510;CDE130120520;CDE130120530;CDE130120540;CDE130120550;CDE230110000;CDE230110010;CDE230110020;CDE230110030;CDE230110500;CDE230110510;CDE230110520;CDE230110530;CDE330110000;CDE330110010;CDE330110020;CDE330110030;CDE330110500;CDE330110510;CDE330110520;CDE330110530;CDE330120000;CDE330120010;CDE330120020;CDE330120030;CDE330120500;CDE330120510;CDE330120520;CDE330120530;CDE330130000;CDE330130010;CDE330130020;CDE330130030;CDE330130500;CDE330130510;CDE330130520;CDE330130530;CDF110100000;CDF110100010;CDF120100000;CDF120100010;CDF130100000;CDF130100010;CDF130200000;CDF130200010;CDF210000000;CDF220000000;CDF310000000;CDF311070100;CDF311100100;CDF311150100;CDF311200100;CDF311250100;CDF311300100;CDF311350100;CDF311500100;CDF311600100;CDF312070100;CDF312100100;CDF312150100;CDF312200100;CDF312250100;CDF312300100;CDF312350100;CDF312500100;CDF312600100;CDF313070100;CDF313100100;CDF313150100;CDF313200100;CDF313250100;CDF313300100;CDF313350100;CDF313500100;CDF313600100;CDF314070100;CDF314100100;CDF314150100;CDF314200100;CDF314250100;CDF314300100;CDF314350100;CDF314500100;CDF314600100;CDF320000000;CDF321070100;CDF321100100;CDF321150100;CDF321200100;CDF321250100;CDF321300100;CDF321350100;CDF321500100;CDF321600100;CDF322070100;CDF322100100;CDF322150100;CDF322200100;CDF322250100;CDF322300100;CDF322350100;CDF322500100;CDF322600100;CDF323070100;CDF323100100;CDF323150100;CDF323200100;CDF323250100;CDF323300100;CDF323350100;CDF323500100;CDF323600100;CDF324070100;CDF324100100;CDF324150100;CDF324200100;CDF324250100;CDF324300100;CDF324350100;CDF324500100;CDF324600100;CDF330100000;CDF330200000;CDF331070100;CDF331100100;CDF331150100;CDF331200100;CDF331250100;CDF331300100;CDF331350100;CDF331500100;CDF331600100;CDF332070100;CDF332100100;CDF332150100;CDF332200100;CDF332250100;CDF332300100;CDF332350100;CDF332500100;CDF332600100;CDF333070100;CDF333100100;CDF333150100;CDF333200100;CDF333250100;CDF333300100;CDF333350100;CDF333500100;CDF333600100;CDF334070100;CDF334100100;CDF334150100;CDF334200100;CDF334250100;CDF334300100;CDF334350100;CDF334500100;CDF334600100;CDG100100000;CDG100200000;CDG100300000;CDG110100000;CDG140000000;CDH110000010;CDH110000020;CDI011000300;CDI011000400;CDI011000500;CDI011000600;CDI011000700;CDI011000800;CDI011000900;CDI011001000;CDI012000300;CDI012000400;CDI012000500;CDI012000600;CDI012000700;CDI012000800;CDI012000900;CDI012001000;CDI021000300;CDI021000400;CDI021000500;CDI021000600;CDI021000700;CDI021000800;CDI021000900;CDI021001000;CDI022000300;CDI022000400;CDI022000500;CDI022000600;CDI022000700;CDI022000800;CDI022000900;CDI022001000;CDI031000300;CDI031000400;CDI031000500;CDI031000600;CDI031000700;CDI031000800;CDI031000900;CDI031001000;CDI032000300;CDI032000400;CDI032000500;CDI032000600;CDI032000700;CDI032000800;CDI032000900;CDI032001000;CDI111001000;CDI501010000;CDI501020000;CDI501030000;CDI501040000;CDI610000010;CDI610000020;CDI900100000;CDI900200000;CDJ211000000;CDJ240000000;CDJ311010100;CDJ311010110;CDJ311010120;CDJ311010130;CDJ311010200;CDJ311010210;CDJ311010220;CDJ311010230;CDJ311020300;CDJ311020310;CDJ311020320;CDJ311020330;CDJ311020500;CDJ311020510;CDJ311020520;CDJ311020530;CDJ321030500;CDJ321030510;CDJ321030520;CDJ321030530;CDJ321030700;CDJ321030710;CDJ321030720;CDJ321030730;CDJ321031000;CDJ321031010;CDJ321031020;CDJ321031030;CDJ321031500;CDJ321031510;CDJ321031520;CDJ321031530;CDK510000000;CDK520000000;CDS100101500;CDS100101510;CDS100102000;CDS100102010;CDS100102400;CDS100102410;CDS100103200;CDS100103210;CDS100201500;CDS100201510;CDS100202000;CDS100202010;CDS100202400;CDS100202410;CDS100203200;CDS100203210;CDS101201500;CDS101201510;CDS101202000;CDS101202010;CDS101202400;CDS101202410;CDS101203200;CDS101203210;CDS200101500;CDS200101510;CDS200102000;CDS200102010;CDS200102400;CDS200102410;CDS200103200;CDS200103210;CDS200201500;CDS200201510;CDS200202000;CDS200202010;CDS200202400;CDS200202410;CDS200203200;CDS200203210;CDS300201500;CDS300201510;CDS300202000;CDS300202010;CDS300202400;CDS300202410;CDS300203200;CDS300203210;CEC101011520;CEC101011530;CEC101011540;CEC101011550;CEC101011560;CEC101011570;CEC101021520;CEC101021530;CEC101021540;CEC101021550;CEC101021560;CEC101021570;CEC101031520;CEC101031530;CEC101031540;CEC101031550;CEC101031560;CEC101031570;CEC101040520;CEC101040530;CEC101040540;CEC101040550;CEC101040560;CEC101040570;CEC110120000;CEC110120010;CEC150120000;CEC150120010;CEC201011520;CEC201011530;CEC201011540;CEC201011550;CEC201011560;CEC201011570;CEC201021520;CEC201021530;CEC201021540;CEC201021550;CEC201021560;CEC201021570;CEC201031520;CEC201031530;CEC201031540;CEC201031550;CEC201031560;CEC201031570;CEC201040520;CEC201040530;CEC201040540;CEC201040550;CEC201040560;CEC201040570;CEC220120000;CEC220120010;CED001010000;CED001010010;CED001010020;CED001010030;CED001010040;CED001020000;CED001020010;CED001020020;CED001020030;CED001020040;CED001030000;CED001030010;CED001030020;CED001030030;CED001030040;CED001040000;CED001040010;CED001040020;CED001040030;CED001040040;CED001050000;CED001050010;CED001050020;CED001050030;CED001050040;CED402010000;CED402010010;CED402010020;CED402010030;CED402010040;CED402020000;CED402020010;CED402020020;CED402020030;CED402020040;CED402030000;CED402030010;CED402030020;CED402030030;CED402030040;CED403040000;CED403050000;CED403060000;CED405010000;CEE001200000;CEE001200010;CEE001200020;CEE001200030;CEE001220000;CEE001220010;CEE001300000;CEE001300010;CEE001300020;CEE001300030;CEE001320000;CEE001320010;CEE001400000;CEE001400010;CEE001400020;CEE001400030;CEE001420000;CEE001420010;CEF300001000;CEF530020000;CEF700001000;CEF800010000;CER400100000;CER400200000;CFB002010000;CFB002020000;CFB002030000;CFB002040000;CFB002050000;CFB002060000;CFB002070000;CFB002080000;CGA211002500;CGA211002510;CGA211002520;CGA211003000;CGA211003010;CGA211003020;CGA211003500;CGA211003510;CGA211003520;CGA211004000;CGA211004010;CGA211004020;CGA212004000;CGA212004010;CGA212004020;CGA214002500;CGA214002510;CGA214002520;CGA214003000;CGA214003010;CGA214003020;CGA214003500;CGA214003510;CGA214003520;CGA214004000;CGA214004010;CGA214004020;CGA215002500;CGA215002510;CGA215002520;CGA215003000;CGA215003010;CGA215003020;CGA215003500;CGA215003510;CGA215003520;CGA215004000;CGA215004010;CGA215004020;CGA311004500;CGA311004510;CGA311004520;CGA311005000;CGA311005010;CGA311005020;CGA311006000;CGA311006010;CGA311006020;CGA312006000;CGA312006010;CGA312006020;CGA314004500;CGA314004510;CGA314004520;CGA314005000;CGA314005010;CGA314005020;CGA314006000;CGA314006010;CGA314006020;CGA315004500;CGA315004510;CGA315004520;CGA315005000;CGA315005010;CGA315005020;CGA315006000;CGA315006010;CGA315006020;CGA411007000;CGA411007010;CGA411007020;CGA411008000;CGA411008010;CGA411008020;CGA411009000;CGA411009010;CGA411009020;CGA412008000;CGA412008010;CGA412008020;CGA414007000;CGA414007010;CGA414007020;CGA414008000;CGA414008010;CGA414008020;CGA414009000;CGA414009010;CGA414009020;CGA415007000;CGA415007010;CGA415007020;CGA415008000;CGA415008010;CGA415008020;CGA415009000;CGA415009010;CGA415009020;CGA511010000;CGA511010010;CGA511010020;CGA511011000;CGA511011010;CGA511011020;CGA511012000;CGA511012010;CGA511012020;CGA512010000;CGA512010010;CGA512010020;CGA512012000;CGA512012010;CGA512012020;CGA514010000;CGA514010010;CGA514010020;CGA514011000;CGA514011010;CGA514011020;CGA514012000;CGA514012010;CGA514012020;CGA515010000;CGA515010010;CGA515010020;CGA515011000;CGA515011010;CGA515011020;CGA515012000;CGA515012010;CGA515012020;CGA611013500;CGA611013510;CGA611013520;CGA611015000;CGA611015010;CGA611015020;CGA614013500;CGA614013510;CGA614013520;CGA614015000;CGA614015010;CGA614015020;CGA711016500;CGA711016510;CGA711016520;CGA711018000;CGA711018010;CGA711018020;CGA714016500;CGA714016510;CGA714016520;CGA714018000;CGA714018010;CGA714018020;CGA811020000;CGA811020010;CGA811020020;CGB200010010;CGB200012010;CGB200015010;CGB200020010;CGB201001000;CGB201001010;CGB201001020;CGB201001200;CGB201001210;CGB201001220;CGB201001500;CGB201001510;CGB201001520;CGB201002000;CGB201002010;CGB201002020;CGB202001000;CGB202001010;CGB202001020;CGB202001030;CGB202001040;CGB202001050;CGB202001200;CGB202001210;CGB202001220;CGB202001230;CGB202001240;CGB202001250;CGB202001500;CGB202001510;CGB202001520;CGB202001530;CGB202001540;CGB202001550;CGB202002000;CGB202002010;CGB202002020;CGB202002030;CGB202002040;CGB202002050;CGB300020010;CGB300030010;CGB300035010;CGB300040010;CGB301002000;CGB301002010;CGB301002020;CGB301003000;CGB301003010;CGB301003020;CGB301003500;CGB301003510;CGB301003520;CGB301004000;CGB301004010;CGB301004020;CGB302002000;CGB302002010;CGB302002020;CGB302002030;CGB302002040;CGB302002050;CGB302003000;CGB302003010;CGB302003020;CGB302003030;CGB302003040;CGB302003050;CGB302003500;CGB302003510;CGB302003520;CGB302003530;CGB302003540;CGB302003550;CGB302004000;CGB302004010;CGB302004020;CGB302004030;CGB302004040;CGB302004050;CGB400045010;CGB400050010;CGB400060010;CGB400070010;CGB401004500;CGB401004510;CGB401004520;CGB401005000;CGB401005010;CGB401005020;CGB401006000;CGB401006010;CGB401006020;CGB401007000;CGB401007010;CGB401007020;CGB402004500;CGB402004510;CGB402004520;CGB402004530;CGB402004540;CGB402004550;CGB402005000;CGB402005010;CGB402005020;CGB402005030;CGB402005040;CGB402005050;CGB402006000;CGB402006010;CGB402006020;CGB402006030;CGB402006040;CGB402006050;CGB402007000;CGB402007010;CGB402007020;CGB402007030;CGB402007040;CGB402007050;CGB500080010;CGB500090010;CGB500100010;CGB500110010;CGB501008000;CGB501008010;CGB501008020;CGB501009000;CGB501009010;CGB501009020;CGB501010000;CGB501010010;CGB501010020;CGB501011000;CGB501011010;CGB501011020;CGB502008000;CGB502008010;CGB502008020;CGB502008030;CGB502008040;CGB502008050;CGB502009000;CGB502009010;CGB502009020;CGB502009030;CGB502009040;CGB502009050;CGB502010000;CGB502010010;CGB502010020;CGB502010030;CGB502010040;CGB502010050;CGB502011000;CGB502011010;CGB502011020;CGB502011030;CGB502011040;CGB502011050;CGB600120010;CGB601012000;CGB601012010;CGB601012020;CGB602012000;CGB602012010;CGB602012020;CGB602012030;CGB602012040;CGB602012050;CGC301003000;CGC301003010;CGC301003020;CGC301003030;CGC301003040;CGC301003050;CGC301004000;CGC301004010;CGC301004020;CGC301004030;CGC301004040;CGC301004050;CGC401004500;CGC401004510;CGC401004520;CGC401004530;CGC401004540;CGC401004550;CGC401005000;CGC401005010;CGC401005020;CGC401005030;CGC401005040;CGC401005050;CGC401006000;CGC401006010;CGC401006020;CGC401006030;CGC401006040;CGC401006050;CGC401007000;CGC401007010;CGC401007020;CGC401007030;CGC401007040;CGC401007050;CGC501008000;CGC501008010;CGC501008020;CGC501008030;CGC501008040;CGC501008050;CGC501010000;CGC501010010;CGC501010020;CGC501010030;CGC501010040;CGC501010050;CGC501012000;CGC501012010;CGC501012020;CGC501012030;CGC501012040;CGC501012050;CGC601013500;CGC601013510;CGC601013520;CGC601013530;CGC601013540;CGC601013550;CGC601015000;CGC601015010;CGC601015020;CGC601015030;CGC601015040;CGC601015050;CGD021001500;CGD021001510;CGD021001520;CGD021002000;CGD021002010;CGD021002020;CGD021002500;CGD021002510;CGD021002520;CGD021003000;CGD021003010;CGD021003020;CGE001002500;CGE001002510;CGE001002520;CGE001003000;CGE001003010;CGE001003020;CGE001003500;CGE001003510;CGE001003520;CGE001004000;CGE001004010;CGE001004020;CGE001004500;CGE001004510;CGE001004520;CGE001005000;CGE001005010;CGE001005020;CGE001006000;CGE001006010;CGE001006020;CGE001007000;CGE001007010;CGE001007020;CGE001008000;CGE001008010;CGE001008020;CGE001009000;CGE001009010;CGE001009020;CGE001010000;CGE001010010;CGE001010020;CGE001011000;CGE001011010;CGE001011020;CGE001012000;CGE001012010;CGE001012020;CGE001013500;CGE001013510;CGE001013520;CGE001015000;CGE001015010;CGE001015020;CGR031000800;CGR031000810;CGR031000820;CGR031001000;CGR031001010;CGR031001020;CGR031001500;CGR031001510;CGR031001520;CGR031002000;CGR031002010;CGR031002020;CGR031002500;CGR031002510;CGR031002520;CGR031003000;CGR031003010;CGR031003020;CHC310010100;CHC310010200;CHC310010300;CHC310010400;CHC310010500;CHC310010600;CHC310010700;CHC311020100;CHC311020200;CHC311020300;CHC311020400;CHC311020500;CHC311020600;CHC311020700;CIH210100100;CIH210200100;CIH210300100;CIH230100100;CIH230200100;CIH230300100;CJE160104000;CJE160105000;CJE160106000;CJE160107000;CJE160108000;CJE161104000;CJE161105000;CJE161106000;CJE161107000;CJE161108000;CKD201010000;CKD600010000;CKE510010000;CKE521100000;CKE521200000;CLA101010000;CLA101020000;CLA101030000;CLA102010000;CLA102020000;CLA102030000;CLB100200000;CLC001000410;CLC001000610;CLC001100420;CLC001100620;CLC001100810;CLC001100820;CLC001210100;CLC001210200;CLC001210300;CLC001210400;CLC001220200;CLC001220400;CLC001220600;CLC001220800;CLC002100400;CLC002100410;CLC002100420;CLC002210100;CLC002210200;CLC002220200;CLC111100000;CLC111100100;CLC211000000;CLC211000100;CLC301007500;CLC302007000;CLC302010000;CLC303200700;CLC303201000;CLC303300700;CLC303301000;CLC401007500;CLC402007000;CLC403207000;CLC403307000;CLD001100410;CLD001100420;CLD001100610;CLD001100620;CLD001100810;CLD001100820;CLD002100410;CLD002100420;CLD122010000;CLD122020000;CLD122030000;CLD132010000;CLD132020000;CLD141010200;CLD141020200;CLD142010000;CLD142010010;CLD142010020;CLD142010030;CLD142020000;CLD142020010;CLD142020020;CLD142020030;CLD142030000;CLD142030010;CLE001000100;CLE002000100;CLF101103000;CLF101103010;CLF101103500;CLF101103510;CLF101104000;CLF101104010;CLF101105000;CLF101105010;CLF101106000;CLF101106010;CLF102103000;CLF102103010;CLF102103500;CLF102103510;CLF102104000;CLF102104010;CLF102105000;CLF102105010;CLF102106000;CLF102106010;CLG730307000;CLG801100800;CLG801100810;CLG802100800;CLG802100810;CLG820010000;CLH210101200;CLH210101210;CLH210102200;CLH210102210;CLH210103200;CLH210103210;CLH210104200;CLH210104210;CLH210121200;CLH210121210;CLH210122200;CLH210122210;CLH210201100;CLH210201110;CLH210202100;CLH210202110;CLH210203100;CLH210203110;CLH210204100;CLH210204110;CLH221000000;CLH231100000;CLH231200000;CLH231300000;CLH311102000;CLH311104000;CLH311222000;CLH311224000;CLH311232000;CLH311234000;CLH340010000;CLH340020000;CLH610000810;CLH610000860;CLH610001270;CLJ110000000;CLJ120000000;CLJ130000000;CLJ200100000;CLJ200200000;CLJ200300000;CLJ300100000;CLJ300200000;CLJ300300000;CLJ400000500;CLJ400001200;CLJ400100000;CLJ400200000;CLJ400400000;CLJ601100000;CLJ601200000;CLJ601300000;CLJ601400000;CLJ900000000;CLK341008000;CLK342008000;CLK351010000;CLK351020000;CLK352010000;CLK352020000;CLL111110100;CLL111110200;CLL111110300;CLL111110400;CLL111110500;CLL111110600;CLL111220100;CLL111220200;CLL111220300;CLL111220400;CLL111220500;CLL111220600;CLL121110400;CLL121110500;CLL121110600;CLL121220100;CLL121220200;CLL121330100;CLL121330200;CLL121440400;CLL121440500;CLL121440600;CLL121550400;CLL121550500;CLL121550600;CLL310009090;CLL310009150;CLL310010100;CLL310010150;CLL310011110;CLL310011150;CLL310012120;CLL310012150;CLL310013130;CLL310013150;CLL310014140;CLL310014150;CLL310015150;CLL310015200;CLL310016160;CLL310016200;CLL310017170;CLL310017200;CLL310018180;CLL310018200;CLL310019190;CLL310019200;CLL310020200;CLL310020250;CLL310021210;CLL310021250;CLL310022220;CLL310022250;CLL310023230;CLL310023250;CLL310024240;CLL310024250;CLL310025250;CLL310025300;CLL310030300;CLL310030350;CLL330101000;CLL330102000;CLL330103000;CLL330104000;CLL330105000;CLL330106000;CLL341011000;CLL341012000;CLL341013000;CLL341014000;CLL342021000;CLL342022000;CLL342023000;CLL342024000;CLL730111100;CLL730111200;CLL730111300;CLL730111400;CLL730112100;CLL730112200;CLL730112300;CLL730112400;CLL730113100;CLL730113200;CLL730113300;CLL730113400;CLL730114100;CLL730114200;CLL730114300;CLL730114400;CLL730115100;CLL730115200;CLL730115300;CLL730115400;CLL730116100;CLL730116200;CLL730116300;CLL730116400;CLL730121100;CLL730121200;CLL730121300;CLL730121400;CLL730122100;CLL730122200;CLL730122300;CLL730122400;CLL730123100;CLL730123200;CLL730123300;CLL730123400;CLL730124100;CLL730124200;CLL730124300;CLL730124400;CLL730125100;CLL730125200;CLL730125300;CLL730125400;CLL730126100;CLL730126200;CLL730126300;CLL730126400;CLL730211100;CLL730211200;CLL730211300;CLL730211400;CLL730212100;CLL730212200;CLL730212300;CLL730212400;CLL730213100;CLL730213200;CLL730213300;CLL730213400;CLL730214100;CLL730214200;CLL730214300;CLL730214400;CLL730215100;CLL730215200;CLL730215300;CLL730215400;CLL730216100;CLL730216200;CLL730216300;CLL730216400;CLM110010100;CLM110010200;CLM110010300;CLM110010400;CLM110010500;CLM110020100;CLM110020200;CLM110020300;CLM110020400;CLM110020500;CLM110030100;CLM110030200;CLM110030300;CLM110030400;CLM110030500;CLM110040100;CLM110040200;CLM110040300;CLM110040400;CLM110040500;CLM110050100;CLM110050200;CLM110050300;CLM110050400;CLM110050500;CLM110060100;CLM110060200;CLM110060300;CLM110060400;CLM110060500;CLM110080100;CLM110080200;CLM110080300;CLM110080400;CLM110080500;CLM110090100;CLM110090200;CLM110090300;CLM110090400;CLM110090500;CLM110110100;CLM110110200;CLM110110300;CLM110110400;CLM110110500;CLM120010100;CLM120010200;CLM120010300;CLM120010400;CLM120010500;CLM120020100;CLM120020200;CLM120020300;CLM120020400;CLM120020500;CLM120030100;CLM120030200;CLM120030300;CLM120030400;CLM120030500;CLM120040100;CLM120040200;CLM120040300;CLM120040400;CLM120040500;CLM120050100;CLM120050200;CLM120050300;CLM120050400;CLM120050500;CLM120060100;CLM120060200;CLM120060300;CLM120060400;CLM120060500;CLM120070100;CLM120070200;CLM120070300;CLM120070400;CLM120070500;CLM120080100;CLM120080200;CLM120080300;CLM120080400;CLM120080500;CLM120090100;CLM120090200;CLM120090300;CLM120090400;CLM120090500;CLM130010100;CLM130010200;CLM130010300;CLM130010400;CLM130010500;CLM130020200;CLM130020300;CLM130020400;CLM130020500;CLM130040100;CLM130050100;CLM130050200;CLM130050300;CLM130050400;CLM130050500;CLM130060100;CLM130060200;CLM130060300;CLM130060400;CLM130060500;CLM130070100;CLM130070200;CLM130070300;CLM130070400;CLM130070500;CLM130080100;CLM130080200;CLM130080300;CLM130080400;CLM130080500;CLM130090100;CLM130090200;CLM130090300;CLM130090400;CLM130090500;CLM141050100;CLM141050200;CLM141050300;CLM141050400;CLM141050500;CLM141060100;CLM141060200;CLM141060300;CLM141060400;CLM141060500;CLM141080100;CLM141080200;CLM141080300;CLM141080400;CLM141080500;CLM141090100;CLM141090200;CLM141090300;CLM141090400;CLM141090500;CLM141110100;CLM141110200;CLM141110300;CLM141110400;CLM141110500;CLM141120100;CLM141120200;CLM141120300;CLM141120400;CLM141120500;CLM141130100;CLM141130200;CLM141130300;CLM141130400;CLM141130500;CLM142050100;CLM142050200;CLM142050300;CLM142050400;CLM142050500;CLM142060100;CLM142060200;CLM142060300;CLM142060400;CLM142060500;CLM142080100;CLM142080200;CLM142080300;CLM142080400;CLM142080500;CLM142090100;CLM142090200;CLM142090300;CLM142090400;CLM142090500;CLM142100100;CLM142100200;CLM142100300;CLM142100400;CLM142100500;CLM142110100;CLM142110200;CLM142110300;CLM142110400;CLM142110500;CLM142120100;CLM142120200;CLM142120300;CLM142120400;CLM142120500;CLR101100000;CLR101200000;CLR201120000;CLR201130000;CLR201310000;CLR201320000;CLR410001000;CLR420001000;CLR910006000;CLR910010000;CNI100020000;CNR300010000;CNR300020000;COA020420000;COA020520000;COA020620000;COB001110000;COB001210000;COB002110000;COB003110000;COB010110000;COB010110010;COB020100000;COB020100010;COB020110000;COB020110010;COB030110000;COB030110010;COB030210000;COB030210010;COB040110000;COB040110010;COB040210000;COB040210010;COB100010000;COB300110000;COB300210000;COB300310000;COB301220000;COB301310000;COB301410000;COB303110000;COB320010000;COB320010010;COB320020000;COB320020010;COB320030000;COB320030010;COB320040000;COB320040010;COB320110000;COB320110010;COB320120000;COB320120010;COB320210000;COB320210010;COB320310000;COB320310010;COB320320000;COB320320010;COB330110000;COB330110010;COB330210000;COB330210010;COB330310000;COB330310010;COB340110000;COB340110010;COB340210000;COB340210010;COB340310000;COB340310010;COB401110000;COB410110000;COB420110000;COB430110000;COB440110000;COC110120000;COC120110000;COC120210000;COC120310000;COC120410000;COC210120000;COC310010000;COC310110000;COC310120000;COC330010000;COC340130000;COC340230000;COC340330000;COC340430000;COC410110000;COC420120000;COC420130000;COC420310000;COC420430000;COC420530000;COC420630000;COC430110000;COC520110000;COC520210000;COC520310000;COC520410000;COC710120000;COC720110000;COC720210000;COC720310000;COC720410000;COD000111010;COD000111020;COD000111030;COD000111040;COD000111050;COD000112020;COD000112030;COD000112040;COD000112050;COD000112060;COD000113030;COD000113040;COD000113050;COD000113060;COD000113070;COD000211000;COD000211010;COD000211020;COD000211030;COD000211040;COD000211050;COD000211060;COD000211070;COD000211100;COD000211110;COD000211120;COD000211130;COD000211140;COD000211150;COD000211160;COD000211170;COD000212000;COD000212010;COD000212020;COD000212030;COD000212040;COD000212050;COD000212060;COD000212070;COD000212100;COD000212110;COD000212120;COD000212130;COD000212140;COD000212150;COD000212160;COD000212170;COD000213000;COD000213010;COD000213020;COD000213030;COD000213040;COD000213050;COD000213060;COD000213070;COD000213100;COD000213110;COD000213120;COD000213130;COD000213140;COD000213150;COD000213160;COD000213170;COD000214000;COD000214010;COD000214020;COD000214030;COD000214100;COD000214110;COD000214120;COD000214130;COD000220000;COD000311000;COD000311010;COD000311020;COD000311030;COD000311040;COD000311050;COD000311060;COD000311070;COD000311100;COD000311110;COD000311120;COD000311130;COD000311140;COD000311150;COD000311160;COD000311170;COD000312000;COD000312010;COD000312020;COD000312030;COD000312040;COD000312050;COD000312060;COD000312070;COD000312100;COD000312110;COD000312120;COD000312130;COD000312140;COD000312150;COD000312160;COD000312170;COD000313000;COD000313010;COD000313020;COD000313030;COD000313040;COD000313050;COD000313060;COD000313070;COD000313100;COD000313110;COD000313120;COD000313130;COD000313140;COD000313150;COD000313160;COD000313170;COD000314000;COD000314010;COD000314020;COD000314030;COD000314100;COD000314110;COD000314120;COD000314130;COD000320000;COD000410000;COD000510000;COD000610000;COD000710000;COD000810000;COD013010000;COD013010010;COD013110000;COD013110010;COD013210000;COD013210010;COD013310000;COD013310010;COD013410000;COD013410010;COD013420000;COD013420010;COD013510000;COD013510010;COD013710000;COD013710010;COD013720000;COD013720010;COD013810000;COD013810010;COD013910000;COD013910010;COD013920000;COD013920010;COD023010000;COD023010010;COD023110000;COD023110010;COD023210000;COD023210010;COD023310000;COD023310010;COD023410000;COD023410010;COD023420000;COD023420010;COD023510000;COD023510010;COD023710000;COD023710010;COD023720000;COD023720010;COD023810000;COD023810010;COD023910000;COD023910010;COD023920000;COD023920010;COD033010000;COD033010010;COD033110000;COD033110010;COD033210000;COD033210010;COD033310000;COD033310010;COD033410000;COD033410010;COD033420000;COD033420010;COD033430000;COD033430010;COD033520000;COD033520010;COD033610000;COD033610010;COD033910000;COD033910010;COD043010000;COD043010010;COD043020000;COD043020010;COD043120000;COD043120010;COD043220000;COD043220010;COD043310000;COD043310010;COD043410000;COD043410010;COD043420000;COD043420010;COD043430000;COD043430010;COD043520000;COD043520010;COD043620000;COD043620010;COD043910000;COD043910010;COD043920000;COD043920010;COD300010000;COD300020000;COD300030000;COD300040000;COD300050000;COD300060000;COD300110000;COD300120000;COD300130000;COD300210000;COD300220000;COD300310000;COD300410000;COD300510000;COD300610000;COD313010000;COD313010010;COD313110000;COD313110010;COD313210000;COD313210010;COD313310000;COD313310010;COD313410000;COD313410010;COD313420000;COD313420010;COD313510000;COD313510010;COD313710000;COD313710010;COD313720000;COD313720010;COD313810000;COD313810010;COD313910000;COD313910010;COD313920000;COD313920010;COD314010000;COD314110000;COD314210000;COD314310000;COD314410000;COD314510000;COD314610000;COD314710000;COD314810000;COD314820000;COD314910000;COD314920000;COD323010000;COD323010010;COD323110000;COD323110010;COD323210000;COD323210010;COD323310000;COD323310010;COD323410000;COD323410010;COD323420000;COD323420010;COD323510000;COD323510010;COD323710000;COD323710010;COD323720000;COD323720010;COD323810000;COD323810010;COD323910000;COD323910010;COD323920000;COD323920010;COD324010000;COD324110000;COD324210000;COD324310000;COD324410000;COD324510000;COD324610000;COD324710000;COD324810000;COD324820000;COD324910000;COD324920000;COD333010000;COD333010010;COD333110000;COD333110010;COD333210000;COD333210010;COD333310000;COD333310010;COD333410000;COD333410010;COD333420000;COD333420010;COD333430000;COD333430010;COD333510000;COD333510010;COD333610000;COD333610010;COD333910000;COD333910010;COD334010000;COD334110000;COD334210000;COD334310000;COD334410000;COD334510000;COD334610000;COD334710000;COD334810000;COD334910000;COD343110000;COD343110010;COD343210000;COD343210010;COD343310000;COD343310010;COD343410000;COD343410010;COD343420000;COD343420010;COD343430000;COD343430010;COD343510000;COD343510010;COD343610000;COD343610010;COD343710000;COD343710010;COD343910000;COD343910010;COD344010000;COD344110000;COD344210000;COD344310000;COD344410000;COD344510000;COD344610000;COD344710000;COD344810000;COD344910000;COD400010000;COD400110000;COD400210000;COD400310000;COD400410000;COD400420000;COD400510000;COD400610000;COD400710000;COD400810000;COD400910000;COD400920000;COD401210000;COD401310000;COD401410000;COD401420000;COD401610000;COD401620000;COD401710000;COD401810000;COD401910000;COD401920000;COD402110000;COD402210000;COD403010000;COD403120000;COD403210000;COD403310000;COD403420000;COD403430000;COD403510000;COD403620000;COD403710000;COD403720000;COD403920000;COD403930000;COD404010000;COD404110000;COD404210000;COD404310000;COD404410000;COD404420000;COD404510000;COD404610000;COD404710000;COD404720000;COG200110000;COH131040000;COH131045000;COH131050000;COH131060000;COH131070000;COH151000000;COH151000010;COH151000020;COH151000030;COH151000040;COH181030000;COH400001000;COH400002000;COI100110000;COI110110000;COI120110000;COI140110000;COI330010000;COI340010000;COR120110000;COR291010000;COR292010000;COR293010000;COR300010000;COR610110000;COR620110000;COR640110000;COR640120000;COX002320000;COX002420000;COX003010000;COX004010000;COX006010010;COX006020010;COX006110010;COX006120010;COX006210010;COX006220010;COX007010000;COX009010000;COX010010000;COX011010000;CQQ130010000;CRB101035000;CRB101055000;CRB101075000;CRB201035000;CRB201055000;CRB201075000;CRB401035000;CRB401055000;CRB401075000;CRB501035000;CRB501055000;CRB501075000;CRC100010000;CRC200010000;CRC300010000;AAA162303500;AAA162306000;AAA270020100;AAA270020110;AAA270020120;AAA310010100;AAA310010200;AAA310010300;AAA310010400;AAA310010500;AAA310010600;AAA310010700;AAA310010800;AAA310010900;AAA310020100;AAA310020200;AAA310020300;AAA310021000;AAA310022000;AAA310023000;AAA310441000;AAA310442000;AAA322012200;AAA322012500;AAA322013200;AAA322013500;AAA322510000;AAA323105000;AAA323105100;AAA323105200;AAA323106000;AAA323106100;AAA323106200;AAA323120000;AAA323130000;AAA323220000;AAA323230000;AAA323320000;AAA323330000;AAC210200000;AAC210300000;AAC210400000;AAD160200000;AAD160400000;AAD271010000;AAD271020000;AAD271030000;ADA001010000;ADA001010010;ADA001010020;ADA001010030;ADA001010040;ADA001010050;ADA001020000;ADA001020010;ADA001020020;ADA001020030;ADA001020040;ADA001020050;ADA001030000;ADA001030010;ADA001030020;ADA001030030;ADA001030040;ADA001030050;ADA001040000;ADA001040010;ADA001040020;ADA001040030;ADA001040040;ADA001040050;ADA001050000;ADA001050010;ADA001050020;ADA001050030;ADA001050040;ADA001050050;ADA402010000;ADA402010010;ADA402010020;ADA402020000;ADA402020010;ADA402020020;ADA402030000;ADA402030010;ADA402030020;ADA403001000;ADA403002000;ADA403003000;ADA404001000;ADA404001010;ADA404002000;ADA404002010;ADA404002020;ADA404002030;ADA404003000;ADA404003010;ADB000200000;ADB000201000;ADB000202000;ADB000203000;ADB000220000;ADB000230000;ADB000300000;ADB000301000;ADB000302000;ADB000303000;ADB000320000;ADB000330000;ADB510000000;ADF000100000;ADF102011520;ADF102011650;ADF102011680;ADF102011690;ADF102011700;ADF102011710;ADF102021520;ADF102021650;ADF102021680;ADF102021690;ADF102021700;ADF102021710;ADF102031520;ADF102031650;ADF102031680;ADF102031690;ADF102031700;ADF102031710;ADF102040520;ADF102041530;ADF102041540;ADF102041550;ADF102041560;ADF102041570;ADF202011520;ADF202011650;ADF202011680;ADF202011690;ADF202011700;ADF202011710;ADF202021520;ADF202021650;ADF202021680;ADF202021690;ADF202021700;ADF202021710;ADF202031520;ADF202031650;ADF202031680;ADF202031690;ADF202031700;ADF202031710;ADF202040520;ADF202041530;ADF202041540;ADF202041550;ADF202041560;ADF202041570;ADR131200100;ADR131200110;ADR131200200;ADR131200210;ADR132200100;ADR132200110;ADR132200200;ADR132200210;AEB000001600;AEB000002000;AEB000002400;AEB000002800;AEB000003200;AEB011200000;AEE000504000;AEE000505000;AEE000506000;AEE000507000;AEE100003000;AEE100003010;AEE100003020;AEE100003030;AEE100005000;AEE100005010;AEE100005020;AEE100005030;AEE100007000;AEE100007010;AEE100007020;AEE100007030;AEE100009000;AEE100009010;AEE100009020;AEE100009030;AEE100011000;AEE100011010;AEE100011020;AEE100011030;AEE100012000;AEE100012010;AEE100012020;AEE100012030;AEE121000000;AEE121000100;AEE121000200;AEE121000300;AEE121000600;AEE121000700;AEE121000800;AEE121000900;AEE121004800;AEE121004900;AEE121005000;AEE121005100;AEE121009800;AEE121009900;AEE121010000;AEE121010100;AEE122000900;AEE122001000;AEE122001100;AEE122001200;AEE122001300;AEE122004900;AEE122005000;AEE122005100;AEE122005200;AEE122005300;AEE122009900;AEE122010000;AEE122010100;AEE122010200;AEE122010300;AEE122019900;AEE122020000;AEE122020100;AEE122020200;AEE122020300;AFA110071000;AFA110072000;AFA110073000;AFA110074000;AFA110075000;AFA110079000;AFA110100060;AFA110100150;AFA110100180;AFA110200000;AFA110200060;AFA111001000;AFA111002000;AFA113001000;AFA113002000;AFA113002100;AFA113002200;AFA113002300;AFA113002400;AFA121001000;AFA121002000;AFA123001000;AFA123002000;AFB121001100;AFB121001200;AFB121002100;AFB121002200;AFB122001100;AFB122001200;AFB122002100;AFB122002200;AFB123001100;AFB123001200;AFB123002100;AFB123002200;AFB123002300;AFB123002400;AFB123002500;AFB123002600;AFB123002700;AFB123002800;AFB123002900;AFB123003000;AFB123003100;AFB123003200;AFB123003300;AFB123003400;AFB123003500;AFB123003600;AFB123003700;AFB123003800;AFB123003900;AFB123004000;AFB123004100;AFB123004200;AFB123004300;AFB123004400;AFB123004500;AFB123004600;AGA110011000;AGA110012000;AGA110021000;AGA110022000;AGA110031000;AGA110032000;AGF000010000;AGF000021000;AGF000022000;AGH110100000;AGH120010000;AGJ000010000;AHB001100000;AHB001200000;AHB002100000;AHB002200000;AHC001100000;AHC001200000;AHC002100000;AHC002200000;AHC003100000;AHC003200000;AHF201000150;AHF202000150;AHF202000250;AHF240100000;AHF240200000;AHG022010000;AHG022020000;AHI000200000;AHI000300000;AHS110100000;AHS110200000;AHS120100000;AHS131100000;AHS131200000;AHS132100000;AHS132200000;AHS140100000;AHS150100000;AHS501100000;AHS501200000;AHS502100000;AHS502200000;AIA400100000;AIB310006000;AIB401100000;AIB401200000;AIB402100000;AIB402200000;AJG331000200;AJG331000500;AJG331001000;AJG410100000;AJG410200000;AJI110103000;AJI110104500;AJI110106000;AJI110203000;AJI110204500;AJI110206500;AJI500030000;AJI500045000;AJI500060000;AJI600100000;AJI600150000;AKA000025000;AKA000025010;AKA600016000;AKB101015000;AKB111015000;AKB401015000;AKB402015000;AKC100015000;ALB400100000;ALB421100000;ALB422100000;ALB423100000;ALB424100000;ALB451100000;ALB452100000;ALB453100000;ALB454100000;ALB521100000;ALB521200000;ALB522100000;ALB522200000;ALB523100000;ALB523200000;ALB524100000;ALB524200000;ALB526100000;ALB526200000;ALH111101200;ALH111101210;ALH111201200;ALH112101600;ALH112101610;ALH112201600;ALH113101800;ALH113101810;ALH113201800;ALH114102200;ALH114102210;ALH114102400;ALH114102410;ALH114202200;ALH114202400;ALH115102800;ALH115102810;ALH115202800;AMA100010000;AMA100020000;AMA110001100;AMA110001110;AMA110001120;AMA110001200;AMA110001210;AMA110001220;AMA110002100;AMA110002110;AMA110002120;AMA110002200;AMA110002210;AMA110002220;AMA110003100;AMA110003110;AMA110003120;AMA110003200;AMA110003210;AMA110003220;AMA110003400;AMA110003410;AMA110003420;AMA110004400;AMA110004410;AMA110004420;AMA110004750;AMA110004760;AMA110004770;AMA110100180;AMA110200060;AMA110200120;AMA110200400;AMA110200410;AMA110200420;AMA310002100;AMA310002110;AMA310002120;AMA310002200;AMA310002210;AMA310002220;AMA310002400;AMA310002410;AMA310002420;AMB313010000;AMB313020000;AMB321010000;AMB321020000;ANA012100000;ANA013100000;ANB112100000;ANB112200000;ANB113100000;ANB113200000;ANB132100000;ANB132200000;ANB133100000;ANB133200000;ANC102100000;ANC102200000;ANC102300000;ANC103100000;ANC103200000;ANC103300000;ANC232500000;ANC232500100;ANG202500000;ANG203500000;ANJ001200000;ANJ001400000;ANM020100000;ANS004520000;ANS007520000;ANS012010000;ANS013010000;ANS022010000;ANS022010100;ANS023010000;ANS023010100;ANS032010000;ANS033010000;ANS062010000;ANS062010100;ANS063010000;ANS063010100;AOA112100000;AOA113100000;AOA113200000;AOA201000000;AOA202000000;AOA430100000;AOA440100000;AOA440200000;AOA520001200;AOA530001200;AOA540001200;AOB110100000;AOB110200000;AOB130100000;AOB130200000;AOC120306000;AOC311000100;AOC311000200;AOC311010100;AOC311100200;AOC321000100;AOC321000200;AOC321100200;AOD010100500;AOD010101000;AOD010102000;AOD010103000;AOD010200500;AOD010201000;AOD010202000;AOD010203000;AOD010300500;AOD010301000;AOD010302000;AOD010303000;AOD010400500;AOD010401000;AOD010402000;AOD010403000;AOD010500500;AOD010501000;AOD010502000;AOD010503000;AOD010600500;AOD010601000;AOD010602000;AOD010603000;AOD020200500;AOD020201000;AOD020202000;AOD020203000;AOD020300500;AOD020301000;AOD020302000;AOD020303000;AOD020500500;AOD020501000;AOD020502000;AOD020503000;AOD030100500;AOD030101000;AOD030102000;AOD030103000;AOD110001000;AOD110002000;AOD110003000;AOD210001000;AOD210002000;AOD210003000;AOD310001000;AOD310002000;AOD310003000;AOG001000000;AOG002000000;AOH001010000;AOK200000000;AOM100000000;AOM200000000;APA340011000;APA340012000;APA340020000;MBA211100000;MBA211100010;MBA211100020;MBA211100030;MBA211100040;MBA211100050;MBA211100060;MBA211100070;MBA211110250;MBA211110500;MBA211120250;MBA211120500;MBA211130250;MBA211130500;MBA221100000;MBA221100010;MBA221100020;MBA221100030;MBA221100040;MBA221100050;MBA221100060;MBA221100070;MBA221110250;MBA221110500;MBA221120250;MBA221120500;MBA221130250;MBA221130500;MBA231100000;MBA231100010;MBA231100020;MBA231100030;MBA231100040;MBA231100050;MBA231100060;MBA231100070;MBA231110250;MBA231110500;MBA231120250;MBA231120500;MBA231130250;MBA231130500;MBA241100000;MBA241100010;MBA241100020;MBA241100030;MBA241100040;MBA241100050;MBA241100060;MBA241100070;MBA241110250;MBA241110500;MBA241120250;MBA241120500;MBA241130250;MBA241130500;MBA251100000;MBA251100010;MBA251100020;MBA251100030;MBA251100040;MBA251100050;MBA251100060;MBA251100070;MBA251110250;MBA251110500;MBA251120250;MBA251120500;MBA251130250;MBA251130500;MBA261100000;MBA261100010;MBA261100020;MBA261100030;MBA261100040;MBA261100050;MBA261100060;MBA261100070;MBA261110250;MBA261110500;MBA261120250;MBA261120500;MBA261130250;MBA261130500;MBA271100000;MBA271100010;MBA271100020;MBA271100030;MBA271100040;MBA271100050;MBA271100060;MBA271100070;MBA271110250;MBA271110500;MBA271120250;MBA271120500;MBA271130250;MBA271130500;MBA281100000;MBA281100010;MBA281100020;MBA281100030;MBA281100040;MBA281100050;MBA281100060;MBA281100070;MBA281110250;MBA281110500;MBA281120250;MBA281120500;MBA281130250;MBA281130500;MBB211100000;MBB211100010;MBB211100020;MBB211100030;MBB211100040;MBB211100050;MBB211100060;MBB211100070;MBB211110250;MBB211110500;MBB211120250;MBB211120500;MBB211130250;MBB211130500;MBB221100000;MBB221100010;MBB221100020;MBB221100030;MBB221100040;MBB221100050;MBB221100060;MBB221100070;MBB221110250;MBB221110500;MBB221120250;MBB221120500;MBB221130250;MBB221130500;MBB231100000;MBB231100010;MBB231100020;MBB231100030;MBB231100040;MBB231100050;MBB231100060;MBB231100070;MBB231110250;MBB231110500;MBB231120250;MBB231120500;MBB231130250;MBB231130500;MBB241100000;MBB241100010;MBB241100020;MBB241100030;MBB241100040;MBB241100050;MBB241100060;MBB241100070;MBB241110250;MBB241110500;MBB241120250;MBB241120500;MBB241130250;MBB241130500;MBB251100000;MBB251100010;MBB251100020;MBB251100030;MBB251100040;MBB251100050;MBB251100060;MBB251100070;MBB251110250;MBB251110500;MBB251120250;MBB251120500;MBB251130250;MBB251130500;MBB261100000;MBB261100010;MBB261100020;MBB261100030;MBB261100040;MBB261100050;MBB261100060;MBB261100070;MBB261110250;MBB261110500;MBB261120250;MBB261120500;MBB261130250;MBB261130500;MBB271100000;MBB271100010;MBB271100020;MBB271100030;MBB271100040;MBB271100050;MBB271100060;MBB271100070;MBB281100000;MBB281100010;MBB281100020;MBB281100030;MBB281100040;MBB281100050;MBB281100060;MBB281100070;MBC211100000;MBC211100080;MBC211100100;MBC211101080;MBC211101180;MBC211101280;MBC211101380;MBC211101480;MBC211101580;MBC211101680;MBC211101780;MBC211101880;MBC211101980;MBC211102080;MBC211102180;MBC211102280;MBC211102380;MBC211102480;MBC211102580;MBC211102680;MBC211102780;MBC211102880;MBC211102980;MBC211103080;MBC211110250;MBC211110500;MBC211111250;MBC211111500;MBC211112250;MBC211112500;MBC211120250;MBC211120500;MBC211121250;MBC211121500;MBC211122250;MBC211122500;MBC211130250;MBC211130500;MBC211131250;MBC211131500;MBC211132250;MBC211132500;MBC221100000;MBC221100010;MBC221100020;MBC221100030;MBC221100040;MBC221100050;MBC221100060;MBC221100070;MBC221110250;MBC221110500;MBC221120250;MBC221120500;MBC221130250;MBC221130500;MBC231100000;MBC231100010;MBC231100020;MBC231100030;MBC231100040;MBC231100050;MBC231100060;MBC231100070;MBC231110250;MBC231110500;MBC231120250;MBC231120500;MBC231130250;MBC231130500;MBC241100000;MBC241100010;MBC241100020;MBC241100030;MBC241100040;MBC241100050;MBC241100060;MBC241100070;MBC241110250;MBC241110500;MBC241120250;MBC241120500;MBC241130250;MBC241130500;MBC251100000;MBC251100010;MBC251100020;MBC251100030;MBC251100040;MBC251100050;MBC251100060;MBC251100070;MBC251110250;MBC251110500;MBC251120250;MBC251120500;MBC251130250;MBC251130500;MBC261100000;MBC261100010;MBC261100020;MBC261100030;MBC261100040;MBC261100050;MBC261100060;MBC261100070;MBC261110250;MBC261110500;MBC261120250;MBC261120500;MBC261130250;MBC261130500;MBC271100000;MBC271100010;MBC271100020;MBC271100030;MBC271100040;MBC271100050;MBC271100060;MBC271100070;MBC271110250;MBC271110500;MBC271120250;MBC271120500;MBC271130250;MBC271130500;MBC281100000;MBC281100010;MBC281100020;MBC281100030;MBC281100040;MBC281100050;MBC281100060;MBC281100070;MBC281110250;MBC281110500;MBC281120250;MBC281120500;MBC281130250;MBC281130500;MBD211100000;MBD211100010;MBD211100020;MBD211100030;MBD211100040;MBD211100050;MBD211100060;MBD211100070;MBD211110250;MBD211110500;MBD211120250;MBD211120500;MBD211130250;MBD211130500;MBD221100000;MBD221100010;MBD221100020;MBD221100030;MBD221100040;MBD221100050;MBD221100060;MBD221100070;MBD221110250;MBD221110500;MBD221120250;MBD221120500;MBD221130250;MBD221130500;MBD231100000;MBD231100010;MBD231100020;MBD231100030;MBD231100040;MBD231100050;MBD231100060;MBD231100070;MBD231110250;MBD231110500;MBD231120250;MBD231120500;MBD231130250;MBD231130500;MBD241100000;MBD241100010;MBD241100020;MBD241100030;MBD241100040;MBD241100050;MBD241100060;MBD241100070;MBD241110250;MBD241110500;MBD241120250;MBD241120500;MBD241130250;MBD241130500;MBD251100000;MBD251100010;MBD251100020;MBD251100030;MBD251100040;MBD251100050;MBD251100060;MBD251100070;MBD251110250;MBD251110500;MBD251120250;MBD251120500;MBD251130250;MBD251130500;MBI010001000;MBI010001010;MBI010001020;MBI010001030;MBI010001040;MBI010001050;MBI010001060;MBI010001070;MBI010001080;MBI010001090;MBI010001100;MBI010001110;MBI010001120;MBI010001130;MBI010001140;MBI010001150;MBI010001300;MBI010001310;MBI010001320;MBI010001330;MBI010001340;MBI010001350;MBI010001360;MBI010001370;MBI010001380;MBI010001390;MBI010001400;MBI010001410;MBI010001420;MBI010001430;MBI010001440;MBI010001450;MBI020001600;MBI020001610;MBI020001620;MBI020001630;MBI020001640;MBI020001650;MBI020001660;MBI020001670;MBI020001680;MBI020001690;MBI020001700;MBI020001710;MBI020001720;MBI020001730;MBI020001740;MBI020001750;MBI020002000;MBI020002010;MBI020002020;MBI020002030;MBI020002040;MBI020002050;MBI020002060;MBI020002070;MBI020002080;MBI020002090;MBI020002100;MBI020002110;MBI020002120;MBI020002130;MBI020002140;MBI020002150;MBI030002500;MBI030002510;MBI030002520;MBI030002530;MBI030002540;MBI030002550;MBI030002560;MBI030002570;MBI030002580;MBI030002590;MBI030002600;MBI030002610;MBI030002620;MBI030002630;MBI030002640;MBI030002650;MBI040003000;MBI040003010;MBI040003020;MBI040003030;MBI040003040;MBI040003050;MBI040003060;MBI040003070;MBI040003080;MBI040003090;MBI040003100;MBI040003110;MBI040003120;MBI040003130;MBI040003140;MBI040003150;MBI040003500;MBI040003510;MBI040003520;MBI040003530;MBI040003540;MBI040003550;MBI040003560;MBI040003570;MBI040003580;MBI040003590;MBI040003600;MBI040003610;MBI040003620;MBI040003630;MBI040003640;MBI040003650;MBI050004000;MBI050004010;MBI050004020;MBI050004030;MBI050004040;MBI050004050;MBI050004060;MBI050004070;MBI050004080;MBI050004090;MBI050004100;MBI050004110;MBI050004120;MBI050004130;MBI050004140;MBI050004150;MBI060005000;MBI060005010;MBI060005020;MBI060005030;MBI060005040;MBI060005050;MBI060005060;MBI060005070;MBI060005080;MBI060005090;MBI060005100;MBI060005110;MBI060005120;MBI060005130;MBI060005140;MBI060005150;MBI070006500;MBI070006510;MBI070006520;MBI070006530;MBI070006540;MBI070006550;MBI070006560;MBI070006570;MBI070006580;MBI070006590;MBI070006600;MBI070006610;MBI070006620;MBI070006630;MBI070006640;MBI070006650;MBI080007500;MBI080007510;MBI080007520;MBI080007530;MBI080007540;MBI080007550;MBI080007560;MBI080007570;MBI080007580;MBI080007590;MBI080007600;MBI080007610;MBI080007620;MBI080007630;MBI080007640;MBI080007650;MBJ010010000;MBJ010010010;MBJ010010020;MBJ010010030;MBJ010010040;MBJ010010050;MBJ010010060;MBJ010010070;MBJ010010080;MBJ010010090;MBJ010010100;MBJ010010110;MBJ010010120;MBJ010010130;MBJ010010140;MBJ010010150;MBJ020012500;MBJ020012510;MBJ020012520;MBJ020012530;MBJ020012540;MBJ020012550;MBJ020012560;MBJ020012570;MBJ020012580;MBJ020012590;MBJ020012600;MBJ020012610;MBJ020012620;MBJ020012630;MBJ020012640;MBJ020012650;MBJ030015000;MBJ030015010;MBJ030015020;MBJ030015030;MBJ030015040;MBJ030015050;MBJ030015060;MBJ030015070;MBJ030015080;MBJ030015090;MBJ030015100;MBJ030015110;MBJ030015120;MBJ030015130;MBJ030015140;MBJ030015150;MBJ040020000;MBJ040020010;MBJ040020020;MBJ040020030;MBJ040020040;MBJ040020050;MBJ040020060;MBJ040020070;MBJ040020080;MBJ040020090;MBJ040020100;MBJ040020110;MBJ040020120;MBJ040020130;MBJ040020140;MBJ040020150;MBP110001500;MBP110001510;MBP110001520;MBP110001530;MBP120002000;MBP120002010;MBP120002020;MBP120002030;MBP130002500;MBP130002510;MBP130002520;MBP130002530;MBP140003200;MBP140003210;MBP140003220;MBP140003230;MBP150004000;MBP150004010;MBP150004020;MBP150004030;MBP160005000;MBP160005010;MBP160005020;MBP160005030;MBP170006500;MBP170006510;MBP170006520;MBP170006530;MBP180008000;MBP180008010;MBP180008020;MBP180008030;MBP310370000;MBP310370010;MBP310370080;MBP310370090;MBP310370100;MBP310370110;MBP320370000;MBP320370010;MBP330370000;MBP330370010;MBP340370000;MBP340370010;MBP350370000;MBP350370010;MBP360370000;MBP360370010;MBP370370000;MBP370370010;MBP380370000;MBP380370010;MBQ110010000;MBQ110010010;MBQ110010020;MBQ110010030;MBQ120112500;MBQ120112510;MBQ120112520;MBQ120112530;MBQ130115000;MBQ130115010;MBQ130115020;MBQ130115030;MBQ140120000;MBQ140120010;MBQ140120020;MBQ140120030;MBQ150025000;MBQ150025010;MBQ150025020;MBQ150025030;MBQ160030000;MBQ160030010;MBQ160030020;MBQ160030030;MBQ170035000;MBQ170035010;MBQ170035020;MBQ170035030;MBQ180040000;MBQ180040010;MBQ180040020;MBQ180040030;MBQ310370000;MBQ310370010;MBQ320371000;MBQ320371010;MBQ330371000;MBQ330371010;MBQ340371000;MBQ340371010;MBQ350370000;MBQ350370010;MDA511101500;MDA511101510;MDA511101520;MDA511101530;MDA511101540;MDA511101550;MDA511101560;MDA511101570;MDA511101580;MDA511101590;MDA511101600;MDA511101610;MDA517101500;MDA517101510;MDA517101520;MDA517101530;MDA517101540;MDA517101550;MDA517101560;MDA517101570;MDA517101580;MDA517101590;MDA517101600;MDA517101610;MDA518101500;MDA518101510;MDA518101520;MDA518101530;MDA518101540;MDA518101550;MDA518101560;MDA518101570;MDA518101580;MDA518101590;MDA518101600;MDA518101610;MDA521102000;MDA521102010;MDA521102020;MDA521102030;MDA521102040;MDA521102050;MDA521102060;MDA521102070;MDA521102080;MDA521102090;MDA521102100;MDA521102110;MDA527102000;MDA527102010;MDA527102020;MDA527102030;MDA527102040;MDA527102050;MDA527102060;MDA527102070;MDA527102080;MDA527102090;MDA527102100;MDA527102110;MDA528102000;MDA528102010;MDA528102020;MDA528102030;MDA528102040;MDA528102050;MDA528102060;MDA528102070;MDA528102080;MDA528102090;MDA528102100;MDA528102110;MDA531102500;MDA531102510;MDA531102520;MDA531102530;MDA531102540;MDA531102550;MDA531102560;MDA531102570;MDA531102580;MDA531102590;MDA531102600;MDA531102610;MDA537102500;MDA537102510;MDA537102520;MDA537102530;MDA537102540;MDA537102550;MDA537102560;MDA537102570;MDA537102580;MDA537102590;MDA537102600;MDA537102610;MDA538102500;MDA538102510;MDA538102520;MDA538102530;MDA538102540;MDA538102550;MDA538102560;MDA538102570;MDA538102580;MDA538102590;MDA538102600;MDA538102610;MDA541103200;MDA541103210;MDA541103220;MDA541103230;MDA541103240;MDA541103250;MDA541103260;MDA541103270;MDA541103280;MDA541103290;MDA541103300;MDA541103310;MDA547103200;MDA547103210;MDA547103220;MDA547103230;MDA547103240;MDA547103250;MDA547103260;MDA547103270;MDA547103280;MDA547103290;MDA547103300;MDA547103310;MDA548103200;MDA548103210;MDA548103220;MDA548103230;MDA548103240;MDA548103250;MDA548103260;MDA548103270;MDA548103280;MDA548103290;MDA548103300;MDA548103310;MDA551104000;MDA551104010;MDA551104020;MDA551104030;MDA551104040;MDA551104050;MDA551104060;MDA551104070;MDA551104080;MDA551104090;MDA551104100;MDA551104110;MDA557104000;MDA557104010;MDA557104020;MDA557104030;MDA557104040;MDA557104050;MDA557104060;MDA557104070;MDA557104080;MDA557104090;MDA557104100;MDA557104110;MDA558104000;MDA558104010;MDA558104020;MDA558104030;MDA558104040;MDA558104050;MDA558104060;MDA558104070;MDA558104080;MDA558104090;MDA558104100;MDA558104110;MDA561105000;MDA561105010;MDA561105020;MDA561105030;MDA561105040;MDA561105050;MDA561105060;MDA561105070;MDA561105080;MDA561105090;MDA561105100;MDA561105110;MDA567105000;MDA567105010;MDA567105020;MDA567105030;MDA567105040;MDA567105050;MDA567105060;MDA567105070;MDA567105080;MDA567105090;MDA567105100;MDA567105110;MDA568105000;MDA568105010;MDA568105020;MDA568105030;MDA568105040;MDA568105050;MDA568105060;MDA568105070;MDA568105080;MDA568105090;MDA568105100;MDA568105110;MDA571106500;MDA571106510;MDA571106520;MDA571106530;MDA571106540;MDA571106550;MDA571106560;MDA571106570;MDA571106580;MDA571106590;MDA571106600;MDA571106610;MDA577106500;MDA577106510;MDA577106520;MDA577106530;MDA577106540;MDA577106550;MDA577106560;MDA577106570;MDA577106580;MDA577106590;MDA577106600;MDA577106610;MDA578106500;MDA578106510;MDA578106520;MDA578106530;MDA578106540;MDA578106550;MDA578106560;MDA578106570;MDA578106580;MDA578106590;MDA578106600;MDA578106610;MDA581108000;MDA581108010;MDA581108020;MDA581108030;MDA581108040;MDA581108050;MDA581108060;MDA581108070;MDA581108080;MDA581108090;MDA581108100;MDA581108110;MDA587108000;MDA587108010;MDA587108020;MDA587108030;MDA587108040;MDA587108050;MDA587108060;MDA587108070;MDA587108080;MDA587108090;MDA587108100;MDA587108110;MDA588108000;MDA588108010;MDA588108020;MDA588108030;MDA588108040;MDA588108050;MDA588108060;MDA588108070;MDA588108080;MDA588108090;MDA588108100;MDA588108110;MDA711101500;MDA711101510;MDA711101520;MDA711101530;MDA711101540;MDA711101550;MDA711101560;MDA711101570;MDA711101580;MDA711101590;MDA711101600;MDA711101610;MDA717101500;MDA717101510;MDA717101520;MDA717101530;MDA717101540;MDA717101550;MDA717101560;MDA717101570;MDA717101580;MDA717101590;MDA717101600;MDA717101610;MDA718101500;MDA718101510;MDA718101520;MDA718101530;MDA718101540;MDA718101550;MDA718101560;MDA718101570;MDA718101580;MDA718101590;MDA718101600;MDA718101610;MDA721102000;MDA721102010;MDA721102020;MDA721102030;MDA721102040;MDA721102050;MDA721102060;MDA721102070;MDA721102080;MDA721102090;MDA721102100;MDA721102110;MDA727102000;MDA727102010;MDA727102020;MDA727102030;MDA727102040;MDA727102050;MDA727102060;MDA727102070;MDA727102080;MDA727102090;MDA727102100;MDA727102110;MDA728102000;MDA728102010;MDA728102020;MDA728102030;MDA728102040;MDA728102050;MDA728102060;MDA728102070;MDA728102080;MDA728102090;MDA728102100;MDA728102110;MDA731102500;MDA731102510;MDA731102520;MDA731102530;MDA731102540;MDA731102550;MDA731102560;MDA731102570;MDA731102580;MDA731102590;MDA731102600;MDA731102610;MDA737102500;MDA737102510;MDA737102520;MDA737102530;MDA737102540;MDA737102550;MDA737102560;MDA737102570;MDA737102580;MDA737102590;MDA737102600;MDA737102610;MDA738102500;MDA738102510;MDA738102520;MDA738102530;MDA738102540;MDA738102550;MDA738102560;MDA738102570;MDA738102580;MDA738102590;MDA738102600;MDA738102610;MDA741103200;MDA741103210;MDA741103220;MDA741103230;MDA741103240;MDA741103250;MDA741103260;MDA741103270;MDA741103280;MDA741103290;MDA741103300;MDA741103310;MDA747103200;MDA747103210;MDA747103220;MDA747103230;MDA747103240;MDA747103250;MDA747103260;MDA747103270;MDA747103280;MDA747103290;MDA747103300;MDA747103310;MDA748103200;MDA748103210;MDA748103220;MDA748103230;MDA748103240;MDA748103250;MDA748103260;MDA748103270;MDA748103280;MDA748103290;MDA748103300;MDA748103310;MDA751104000;MDA751104010;MDA751104020;MDA751104030;MDA751104040;MDA751104050;MDA751104060;MDA751104070;MDA751104080;MDA751104090;MDA751104100;MDA751104110;MDA757104000;MDA757104010;MDA757104020;MDA757104030;MDA757104040;MDA757104050;MDA757104060;MDA757104070;MDA757104080;MDA757104090;MDA757104100;MDA757104110;MDA758104000;MDA758104010;MDA758104020;MDA758104030;MDA758104040;MDA758104050;MDA758104060;MDA758104070;MDA758104080;MDA758104090;MDA758104100;MDA758104110;MDA761105000;MDA761105010;MDA761105020;MDA761105030;MDA761105040;MDA761105050;MDA761105060;MDA761105070;MDA761105080;MDA761105090;MDA761105100;MDA761105110;MDA767105000;MDA767105010;MDA767105020;MDA767105030;MDA767105040;MDA767105050;MDA767105060;MDA767105070;MDA767105080;MDA767105090;MDA767105100;MDA767105110;MDA768105000;MDA768105010;MDA768105020;MDA768105030;MDA768105040;MDA768105050;MDA768105060;MDA768105070;MDA768105080;MDA768105090;MDA768105100;MDA768105110;MDA771106500;MDA771106510;MDA771106520;MDA771106530;MDA771106540;MDA771106550;MDA771106560;MDA771106570;MDA771106580;MDA771106590;MDA771106600;MDA771106610;MDA777106500;MDA777106510;MDA777106520;MDA777106530;MDA777106540;MDA777106550;MDA777106560;MDA777106570;MDA777106580;MDA777106590;MDA777106600;MDA777106610;MDA778106500;MDA778106510;MDA778106520;MDA778106530;MDA778106540;MDA778106550;MDA778106560;MDA778106570;MDA778106580;MDA778106590;MDA778106600;MDA778106610;MDA781108000;MDA781108010;MDA781108020;MDA781108030;MDA781108040;MDA781108050;MDA781108060;MDA781108070;MDA781108080;MDA781108090;MDA781108100;MDA781108110;MDA787108000;MDA787108010;MDA787108020;MDA787108030;MDA787108040;MDA787108050;MDA787108060;MDA787108070;MDA787108080;MDA787108090;MDA787108100;MDA787108110;MDA788108000;MDA788108010;MDA788108020;MDA788108030;MDA788108040;MDA788108050;MDA788108060;MDA788108070;MDA788108080;MDA788108090;MDA788108100;MDA788108110;MDB511110000;MDB511110010;MDB511110020;MDB511110030;MDB511110040;MDB511110050;MDB511110060;MDB511110070;MDB511110080;MDB511110090;MDB511110100;MDB511110110;MDB517110000;MDB517110010;MDB517110020;MDB517110030;MDB517110040;MDB517110050;MDB517110060;MDB517110070;MDB517110080;MDB517110090;MDB517110100;MDB517110110;MDB518110000;MDB518110010;MDB518110020;MDB518110030;MDB518110040;MDB518110050;MDB518110060;MDB518110070;MDB518110080;MDB518110090;MDB518110100;MDB518110110;MDB521112500;MDB521112510;MDB521112520;MDB521112530;MDB521112540;MDB521112550;MDB521112560;MDB521112570;MDB521112580;MDB521112590;MDB521112600;MDB521112610;MDB527112500;MDB527112510;MDB527112520;MDB527112530;MDB527112540;MDB527112550;MDB527112560;MDB527112570;MDB527112580;MDB527112590;MDB527112600;MDB527112610;MDB528112500;MDB528112510;MDB528112520;MDB528112530;MDB528112540;MDB528112550;MDB528112560;MDB528112570;MDB528112580;MDB528112590;MDB528112600;MDB528112610;MDB531115000;MDB531115010;MDB531115020;MDB531115030;MDB531115040;MDB531115050;MDB531115060;MDB531115070;MDB531115080;MDB531115090;MDB531115100;MDB531115110;MDB537115000;MDB537115010;MDB537115020;MDB537115030;MDB537115040;MDB537115050;MDB537115060;MDB537115070;MDB537115080;MDB537115090;MDB537115100;MDB537115110;MDB538115000;MDB538115010;MDB538115020;MDB538115030;MDB538115040;MDB538115050;MDB538115060;MDB538115070;MDB538115080;MDB538115090;MDB538115100;MDB538115110;MDB541120000;MDB541120010;MDB541120020;MDB541120030;MDB541120040;MDB541120050;MDB541120060;MDB541120070;MDB541120080;MDB541120090;MDB541120100;MDB541120110;MDB547120000;MDB547120010;MDB547120020;MDB547120030;MDB547120040;MDB547120050;MDB547120060;MDB547120070;MDB547120080;MDB547120090;MDB547120100;MDB547120110;MDB548120000;MDB548120010;MDB548120020;MDB548120030;MDB548120040;MDB548120050;MDB548120060;MDB548120070;MDB548120080;MDB548120090;MDB548120100;MDB548120110;MDB551125000;MDB551125010;MDB551125020;MDB551125030;MDB551125040;MDB551125050;MDB551125060;MDB551125070;MDB551125080;MDB551125090;MDB551125100;MDB551125110;MDB557125000;MDB557125010;MDB557125020;MDB557125030;MDB557125040;MDB557125050;MDB557125060;MDB557125070;MDB557125080;MDB557125090;MDB557125100;MDB557125110;MDB558125000;MDB558125010;MDB558125020;MDB558125030;MDB558125040;MDB558125050;MDB558125060;MDB558125070;MDB558125080;MDB558125090;MDB558125100;MDB558125110;MDB561130000;MDB561130010;MDB561130020;MDB561130030;MDB561130040;MDB561130050;MDB561130060;MDB561130070;MDB561130080;MDB561130090;MDB561130100;MDB561130110;MDB567130000;MDB567130010;MDB567130020;MDB567130030;MDB567130040;MDB567130050;MDB567130060;MDB567130070;MDB567130080;MDB567130090;MDB567130100;MDB567130110;MDB568130000;MDB568130010;MDB568130020;MDB568130030;MDB568130040;MDB568130050;MDB568130060;MDB568130070;MDB568130080;MDB568130090;MDB568130100;MDB568130110;MDB711110000;MDB711110010;MDB711110020;MDB711110030;MDB711110040;MDB711110050;MDB711110060;MDB711110070;MDB711110080;MDB711110090;MDB711110100;MDB711110110;MDB717110000;MDB717110010;MDB717110020;MDB717110030;MDB717110040;MDB717110050;MDB717110060;MDB717110070;MDB717110080;MDB717110090;MDB717110100;MDB717110110;MDB718110000;MDB718110010;MDB718110020;MDB718110030;MDB718110040;MDB718110050;MDB718110060;MDB718110070;MDB718110080;MDB718110090;MDB718110100;MDB718110110;MDB721112500;MDB721112510;MDB721112520;MDB721112530;MDB721112540;MDB721112550;MDB721112560;MDB721112570;MDB721112580;MDB721112590;MDB721112600;MDB721112610;MDB727112500;MDB727112510;MDB727112520;MDB727112530;MDB727112540;MDB727112550;MDB727112560;MDB727112570;MDB727112580;MDB727112590;MDB727112600;MDB727112610;MDB728112500;MDB728112510;MDB728112520;MDB728112530;MDB728112540;MDB728112550;MDB728112560;MDB728112570;MDB728112580;MDB728112590;MDB728112600;MDB728112610;MDB731115000;MDB731115010;MDB731115020;MDB731115030;MDB731115040;MDB731115050;MDB731115060;MDB731115070;MDB731115080;MDB731115090;MDB731115100;MDB731115110;MDB737115000;MDB737115010;MDB737115020;MDB737115030;MDB737115040;MDB737115050;MDB737115060;MDB737115070;MDB737115080;MDB737115090;MDB737115100;MDB737115110;MDB738115000;MDB738115010;MDB738115020;MDB738115030;MDB738115040;MDB738115050;MDB738115060;MDB738115070;MDB738115080;MDB738115090;MDB738115100;MDB738115110;MDB741120000;MDB741120010;MDB741120020;MDB741120030;MDB741120040;MDB741120050;MDB741120060;MDB741120070;MDB741120080;MDB741120090;MDB741120100;MDB741120110;MDB747120000;MDB747120010;MDB747120020;MDB747120030;MDB747120040;MDB747120050;MDB747120060;MDB747120070;MDB747120080;MDB747120090;MDB747120100;MDB747120110;MDB748120000;MDB748120010;MDB748120020;MDB748120030;MDB748120040;MDB748120050;MDB748120060;MDB748120070;MDB748120080;MDB748120090;MDB748120100;MDB748120110;MDB751125000;MDB751125010;MDB751125020;MDB751125030;MDB751125040;MDB751125050;MDB751125060;MDB751125070;MDB751125080;MDB751125090;MDB751125100;MDB751125110;MDB757125000;MDB757125010;MDB757125020;MDB757125030;MDB757125040;MDB757125050;MDB757125060;MDB757125070;MDB757125080;MDB757125090;MDB757125100;MDB757125110;MDB758125000;MDB758125010;MDB758125020;MDB758125030;MDB758125040;MDB758125050;MDB758125060;MDB758125070;MDB758125080;MDB758125090;MDB758125100;MDB758125110;MDB761130000;MDB761130010;MDB761130020;MDB761130030;MDB761130040;MDB761130050;MDB761130060;MDB761130070;MDB761130080;MDB761130090;MDB761130100;MDB761130110;MDB767130000;MDB767130010;MDB767130020;MDB767130030;MDB767130040;MDB767130050;MDB767130060;MDB767130070;MDB767130080;MDB767130090;MDB767130100;MDB767130110;MDB768130000;MDB768130010;MDB768130020;MDB768130030;MDB768130040;MDB768130050;MDB768130060;MDB768130070;MDB768130080;MDB768130090;MDB768130100;MDB768130110;MDC117101500;MDC117101510;MDC117101520;MDC117101530;MDC118101500;MDC118101510;MDC118101520;MDC118101530;MDC127102000;MDC127102010;MDC127102020;MDC127102030;MDC128102000;MDC128102010;MDC128102020;MDC128102030;MDC137102500;MDC137102510;MDC137102520;MDC137102530;MDC138102500;MDC138102510;MDC138102520;MDC138102530;MDC147103200;MDC147103210;MDC147103220;MDC147103230;MDC148103200;MDC148103210;MDC148103220;MDC148103230;MDC157104000;MDC157104010;MDC157104020;MDC157104030;MDC157125000;MDC157125010;MDC157125020;MDC157125030;MDC158104000;MDC158104010;MDC158104020;MDC158104030;MDC167105000;MDC167105010;MDC167105020;MDC167105030;MDC167130000;MDC167130010;MDC167130020;MDC167130030;MDC168105000;MDC168105010;MDC168105020;MDC168105030;MDC177106500;MDC177106510;MDC177106520;MDC177106530;MDC178106500;MDC178106510;MDC178106520;MDC178106530;MDC187108000;MDC187108010;MDC187108020;MDC187108030;MDC188108000;MDC188108010;MDC188108020;MDC188108030;MDC417101500;MDC417101510;MDC417101520;MDC417101530;MDC418101500;MDC418101510;MDC418101520;MDC418101530;MDC427102000;MDC427102010;MDC427102020;MDC427102030;MDC428102000;MDC428102010;MDC428102020;MDC428102030;MDC437102500;MDC437102510;MDC437102520;MDC437102530;MDC438102500;MDC438102510;MDC438102520;MDC438102530;MDC447103200;MDC447103210;MDC447103220;MDC447103230;MDC448103200;MDC448103210;MDC448103220;MDC448103230;MDC457104000;MDC457104010;MDC457104020;MDC457104030;MDC458104000;MDC458104010;MDC458104020;MDC458104030;MDC467105000;MDC467105010;MDC467105020;MDC467105030;MDC468105000;MDC468105010;MDC468105020;MDC468105030;MDC477106500;MDC477106510;MDC477106520;MDC477106530;MDC478106500;MDC478106510;MDC478106520;MDC478106530;MDC487108000;MDC487108010;MDC487108020;MDC487108030;MDC488108000;MDC488108010;MDC488108020;MDC488108030;MDD117110000;MDD117110010;MDD117110020;MDD117110030;MDD118110000;MDD118110010;MDD118110020;MDD118110030;MDD127112500;MDD127112510;MDD127112520;MDD127112530;MDD128112500;MDD128112510;MDD128112520;MDD128112530;MDD137115000;MDD137115010;MDD137115020;MDD137115030;MDD138115000;MDD138115010;MDD138115020;MDD138115030;MDD147120000;MDD147120010;MDD147120020;MDD147120030;MDD148120000;MDD148120010;MDD148120020;MDD148120030;MDD158125000;MDD158125010;MDD158125020;MDD158125030;MDD168130000;MDD168130010;MDD168130020;MDD168130030;MDD417110000;MDD417110010;MDD417110020;MDD417110030;MDD418110000;MDD418110010;MDD418110020;MDD418110030;MDD427112500;MDD427112510;MDD427112520;MDD427112530;MDD428112500;MDD428112510;MDD428112520;MDD428112530;MDD437115000;MDD437115010;MDD437115020;MDD437115030;MDD438115000;MDD438115010;MDD438115020;MDD438115030;MDD447120000;MDD447120010;MDD447120020;MDD447120030;MDD448120000;MDD448120010;MDD448120020;MDD448120030;MDD457125000;MDD457125010;MDD457125020;MDD457125030;MDD458125000;MDD458125010;MDD458125020;MDD458125030;MDD467130000;MDD467130010;MDD467130020;MDD467130030;MDD468130000;MDD468130010;MDD468130020;MDD468130030;MDG101100000;MDG102100000;MDG102200000;MFA030000250;MFA060000500;MFA070000650;MFA080000800;MFA090001000;MFA090001250;MFA090001500;MFA090002000;MFA090002500;MFA090003000;MFC110000150;MFC120000200;MFC130000250;MFC140000320;MFC150000400;MFC160000500;MFC170000650;MFC180000800;MFC190001000;MFC190001250;MFC190001500;MFC190002000;MFH130000250;MFH160000500;MFH170000650;MFH180000800;MFH190001000;MFH190001250;MFH190001500;MFH190002000;MFH190002500;MFH190003000;MFH230100250;MFH230200250;MFH240100320;MFH240200320;MFH250100400;MFH250200400;MFH260100500;MFH260200500;MFH270100650;MFH270200650;MFH280100800;MFH280200800;MFH290101000;MFH290101250;MFH290101500;MFH290102000;MFH290201000;MFH290201250;MFH290201500;MFH290202000;MGA110100150;MGA110200150;MGA110300150;MGA140100320;MGA140200320;MGA140300320;MGA160100500;MGA160300500;MGA180100800;MGA190101500;MGA190103000;MGA210001300;MGA220002000;MGC110101000;MGC110201000;MII002020000;MII002030000;MII002040000;MII002050000;MII002060000;MII002070000;MJE010000500;MJE010000510;MJE010000520;MJE010000530;MJE010001000;MJE010001010;MJE010001020;MJE010001030;MJE010001500;MJE010001510;MJE010001520;MJE010001530;MJE010002500;MJE010002510;MJE010002520;MJE010002530;MJE010004000;MJE010004010;MJE010004020;MJE010004030;MJE020000500;MJE020000510;MJE020000520;MJE020000530;MJE020001000;MJE020001010;MJE020001020;MJE020001030;MJE020001500;MJE020001510;MJE020001520;MJE020001530;MJE020002500;MJE020002510;MJE020002520;MJE020002530;MJE020004000;MJE020004010;MJE020004020;MJE020004030;EZAA12612000;EZAA12811000;EZAA13101100;EZAA13513110;EZAA13513120;EZAA13514000;EZAA13515100;EZAB11220000;EZAB12220000;EZAB12310000;EZAB12320000;EZAB22000000;EZAB32000000;EZAB47100000;EZAB49000000;EZAB61512000;EZAB61521000;EZAB61522000;EZAB61541100;EZAB61611300;EZAB61611400;EZAB61612300;EZAB61612400;EZAB61621300;EZAB61621400;EZAB61622300;EZAB61622400;EZAB61641400;EZAB71211000;EZAC11210100;EZAC11220100;EZAC11230100;EZAC11310100;EZAC11320100;EZAC11330100;EZAC12210100;EZAC12220100;EZAC12230100;EZAC12310100;EZAC12320100;EZAC12330100;EZAC12410100;EZAC12420100;EZAC13410100;EZAC13420100;EZAC13430100;EZAC23100000;EZAC23200000;EZAC23300000;EZAC24100000;EZAC24200000;EZAC24300000;EZAC31514100;EZAC41361200;EZAC41361300;EZAC41362100;EZAC41362200;EZAC41362300;EZAC41363100;EZAC41363200;EZAC41363300;EZAC41462100;EZAC41462200;EZAC41463200;EZAC41463300;EZAC41472200;EZAC41472300;EZAC55110000;EZAC55130000;EZAC55210000;EZAC55230000;EZAC55310000;EZAC55330000;EZAC55420000;EZAC56100000;EZAC56300000;EZAC56400000;EZAC57100000;EZAC59100000;EZAC61110000;EZAC61120000;EZAC61210100;EZAC61220100;EZAC61310000;EZAC61320000;EZAC61400000;EZAC61500000;EZAC63200000;EZAC67100000;EZAC67200000;EZAC67300000;EZAC67470000;EZAC67511300;EZAE11224000;EZAE14000000;EZAF13000000;EZAF21440000;EZAF21740000;EZAF21840500;EZAF21840600;EZAF23040500;EZAF24010000;EZAF24020010;EZAF24020020;EZAF24040000;EZAF24070010;EZAF24070020;EZAF24080000;EZAF24811500;EZAF42110100;EZAF43110100;EZAF43210000;EZAF44110100;EZAF44120100;EZAF44130100;EZAG25200000;EZAG25300000;EZAG26210000;EZAG26220000;EZAG26230000;EZAG26400000;EZAG26500000;EZAG26600000;EZAG28100000;EZAG31000100;EZAG32010000;EZAG32020000;EZAG33120100;EZAG33220000;EZAG33220100;EZAG35110000;EZAG35120000;EZAG35210000;EZAG35220000;EZAG41331100;EZAG41332100;EZAG42311000;EZAG42331000;EZAG42332000;EZAG42333000;EZAG42411000;EZAG42412000;EZAG42421000;EZAG42431000;EZAG42810000;EZAH12130000;EZAH12420000;EZBB12410000;EZBB12420000;EZBB21210000;EZBB21220000;EZBB31310000;EZBB31330000;EZBB31510000;EZBB31520000;EZBB31530000;EZBB40040000;EZBB46110000;EZBB46120000;EZBB46130000;EZBB47120000;EZBC15232000;EZBC21011110;EZBC21214100;EZBC21217100;EZBC21230100;EZBC24410100;EZBC24610200;EZBC81202100;EZBC83400000;EZBC84400000;EZBC92000000;EZBD16520000;EZBG11311000;EZBG11312000;EZBG26300000;EZBH14110000;EZBH23101000;EZBI11000000;EZBI12000000;EZBI27300000;EZBJ12300000;EZBJ13400000;EZBJ13500000;EZBJ13600000;EZBJ14201000;EZBJ14202000;EZBJ14301000;EZBJ14302000;EZBJ14401000;EZBJ14402000;EZBJ15400000;EZBJ15600000;EZBJ15700000;EZBJ15900000;EZBJ25200000;EZBJ41610000;EZBK13941100;EZBK14210200;EZBK14210300;EZBK14210400;EZBK14310200;EZBK14310400;EZBK14510400;EZBK14610400;EZBK14710400;EZBK14810100;EZBK24110100;EZBK24210100;EZBK33341100;EZBK44201000;EZBK44203000;EZBK44210000;EZBK44220000;EZBK44230000;EZBK44250000;EZBK44260000;EZBK44270000;EZBK44290000;EZBK44301000;EZBK44303000;EZBK44305000;EZBK44310000;EZBK44330000;EZBK44350000;EZBK44360000;EZBK44370000;EZBK44390000;EZBK44402000;EZBK44410000;EZBK44430000;EZBK44460000;EZBK44470000;EZBK44490000;EZBK44510000;EZBK44530000;EZBK44550000;EZBK44630000;EZBK44730000;EZBK53040500;EZBK61310000;EZBK61410000;EZBK61510000;EZBK61710000;EZBM11600000;EZBM11810000;EZBM11840000;EZBN11120000;EZBN14111100;EZBN14211100;EZBN14311100;EZBN16000000;EZBN21740000;EZBN22540000;EZBN22640000;EZBN22660000;EZBN22740000;EZBN22770000;EZBN22940000;EZBN23160000;EZBN23170000;EZBN23340000;EZBN23640000;EZBN24010000;EZBN24020000;EZBN24040000;EZBN24080000;EZBN33523200;EZBN34523200;EZBO12511200;EZBO12520300;EZBO12520400;EZBO12520500;EZBO12520700;EZBO12622010;EZBO16510000;EZBO16520000;EZBO19112000;EZBO19122000;EZBO19212000;EZBO19222000;EZBO19302000;EZBO33101000;EZBO33103000;EZBO33104000;EZBO33105000;EZBO33201000;EZCB11211000;EZCB11213000;EZCB11311000;EZCB11313000;EZCB11314000;EZCB11411000;EZCB11413000;EZCB11414000;EZCB11511000;EZCB11513000;EZCB11514000;EZCB11611000;EZCB11613000;EZCB11614000;EZCB14613000;EZCB14723000;EZCB15003000;EZCB16005000;EZCB17220000;EZCB17230000;EZCB21014000;EZCB21015000;EZCB21025000;EZCB21035000;EZCB21111000;EZCB21211000;EZCB21215000;EZCB21311000;EZCB21411000;EZCB21511000;EZCB22000000;EZCB22100000;EZCB23210000;EZCB23220000;EZCB35200000;EZCC11100000;EZCC12100000;EZCC13100000;EZCC14100000;EZCC17100000;EZCC21110000;EZCC21120000;EZCC21130000;EZCC21131000;EZCC21140000;EZCC21141000;EZCC21220000;EZCC21230000;EZCC21231000;EZCC21240000;EZCC21241000;EZCC23110000;EZCC23120000;EZCC23130000;EZCC23131000;EZCC23140000;EZCC23210000;EZCC23220000;EZCC23230000;EZCC23231000;EZCC23240000;EZCC31100000;EZCC31200000;EZCC32100000;EZCC32200000;EZCC45000000;EZCC46000000;EZCC47000000;EZCC49000000;EZCC51100000;EZCC52100000;EZCC53100000;EZCC61000000;EZCC62000000;EZCC63000000;EZCC64000000;EZCC65000000;EZCC66000000;EZCD11310000;EZCD11410000;EZCD11510000;EZCD11710000;EZCD12310000;EZCD12410000;EZCD12510000;EZCD12710000;EZCD13110000;EZCD13210000;EZCD13215000;EZCD13310000;EZCD13410000;EZCD13510000;EZCD13610000;EZCD13710000;EZCD13810000;EZCD14110000;EZCD14210000;EZCD14310000;EZCD14410000;EZCD14510000;EZCD14610000;EZCD14710000;EZCD14810000;EZCD21310000;EZCD22310000;EZCD38411100;EZCD38511100;EZCD38611100;EZCD38711100;EZCD38811100;EZCD38911100;EZCD48111100;EZCD48211100;EZCD51100000;EZCD52100000;EZCD53100000;EZCD54100000;EZCE11110000;EZCE11210000;EZCE12110000;EZCE12210000;EZCE13110000;EZCE13210000;EZCE14110000;EZCE14210000;EZCE15110000;EZCE15210000;EZCE16110000;EZCE16210000;EZCE17110000;EZCE17210000;EZCE31210000;EZCE32210000;EZCE33210000;EZCE34210000;EZCE41100000;EZCE41200000;EZCE42100000;EZCE42200000;EZCE42300000;EZCE43100000;EZCE43200000;EZCE43300000;EZCE45200000;EZCE45300000;EZCF12201000;EZCF12202000;EZCF13101000;EZCF13102000;EZCF13201000;EZCF13202000;EZCF13301000;EZCF13302000;EZCF14001000;EZCF21002000;EZCF22101000;EZCF22201000;EZCF22301000;EZCF23000000;EZCF31000000;EZCF32000000;EZCF33000000;EZCF34000000;EZCG11100000;EZCG11200000;EZCG11300000;EZCG11400000;EZCG12120000;EZCG12220000;EZCG12320000;EZCG12420000;EZCG34100000;EZCH12110100;EZCH12210100;EZCH12310100;EZCH12410100;EZCH12510100;EZCH12610100;EZCH12710100;EZCH13110100;EZCH13110200;EZCH13210100;EZCH13210200;EZCH13310100;EZCH13310200;EZCH13410100;EZCH13410200;EZCH13510100;EZCH13510200;EZCH13610100;EZCH13610200;EZCH13710100;EZCI12100100;EZCI12100200;EZCI12300000;EZCI12400000;EZCI12510000;EZCI13200100;EZCI13200200;EZCI13300000;EZCI13800100;EZCI13800200;EZCI13900100;EZCI13900200;EZCI31100000;EZCI32100000;EZCI33200000;EZCJ50010000;EZCJ50020000;EZCJ74030000;EZCJ74040000;EZCJ74050000;EZCJ74060000;EZCJ74070000;EZCJ74700000;EZCJ76030000;EZCJ76040000;EZCJ76050000;EZCJ76060000;EZCJ76070000;EZCJ76080000;EZCJ76090000;EZCK11010010;EZCK11010020;EZCK11010030;EZCK11010040;EZCK11010050;EZCK11010060;EZCK11010070;EZCK11010080;EZCK11010090;EZCK11030230;EZCK11030270;EZCK11030280;EZCK11040000;EZCK12010000;EZCK12030200;EZCK21110000;EZCK21320000;EZCK22010000;EZCK22020000;EZCK22030000;EZCK24110000;EZCK31310000;EZCK31410000;EZCK31610000;EZCK31810000;EZCK34310000;EZCK34610000;EZCK34810000;EZCK41210000;EZCK44210000;EZCK44410000;EZCL35100000;EZCL35600000;EZCL35800000;EZCL36101000;EZCL36102000;EZCL36103000;EZCL36200000;EZCL36411000;EZCL36412000;EZCL36413000;EZCL36421000;EZCL36422000;EZCL36423000;EZDI11210000;EZDI11310000;EZDI11410000;EZDI11510000;EZDI11610000;EZDI11710000;EZDI11810000;EZDI11910000;EZDI12221000;EZDI12222000;EZDI12321000;EZDI12322000;EZDI12421000;EZDI12422000;EZDI12521000;EZDI12522000;EZDI12621000;EZDI12622000;EZDI12721000;EZDI12722000;EZDI12821000;EZDI12822000;EZDI12921000;EZDI12922000;EZDI13241000;EZDI13341000;EZDI13441000;EZDI13541000;EZDI13641000;EZDI13741000;EZDI13841000;EZDI13941000;EZDI14121000;EZDI14141000;EZDI14221000;EZDI14241000;EZDI14321000;EZDI14341000;EZDI14421000;EZDI14441000;EZDI14454000;EZDI14521000;EZDI14541000;EZDI14554000;EZDI14621000;EZDI14641000;EZDI14654000;EZDI15951000;EZDI21110000;EZDI21210000;EZDI22121000;EZDI22122000;EZDI41310000;EZDI62111010;EZDI62111020;EZDI62111030;EZDI62111040;EZDI62111050;EZDI62111060;EZDI62111070;EZDI62111080;EZDI62111100;EZDI62111200;EZDI62111300;EZDI62111400;EZDI62111500;EZDI62111600;EZDI62111700;EZDI62111800;EZDI62111900;EZDI93000000;EZDJ11210100;EZDJ11420300;EZDK42111200;EZDK42111300;EZDK42111400;EZDK42211200;EZDK42211300;EZDK42211400;EZDK42311100;EZDK42311200;EZDK42311300;EZDK42311400;EZDK42411200;EZDK42411300;EZDK42411400;EZDK42511400;EZDK42611100;EZDK42611400;EZDK42711100;EZDK42711400;EZDK42811100;EZDK52111100;EZDK52211100;EZDK52311100;EZDK52411100;EZDK52511100;EZDK52711100;EZDK72311000;EZDK72312000;EZDK72411000;EZDK72412000;EZDK72511000;EZDK72512000;EZDK72611000;EZDK72711000;EZDK72811000;EZDK72911000;EZDK77311040;EZDK77311200;EZDK77311300;EZDK77411400;EZDK78411200;EZDK78411300;EZDK78411400;EZDK78511200;EZDK78511300;EZDK78611100;EZDK78611200;EZDK78611300;EZDK78611400;EZDK78711200;EZDK78711300;EZDK78711400;EZDK78811200;EZDK78811300;EZDK78811400;EZDK78911100;EZDK78911200;EZDK78911300;EZDK78911400;EZDK79401000;EZDK79402000;EZDK79501000;EZDK79502000;EZDK82111000;EZDK82211000;EZDK88111100;EZDK88111400;EZDK88211100;EZDK88211400;EZDK88311100;EZDK88411100;EZDK88611100;EZDK88711100;EZDK88811100;EZDK98111100;EZDK98311100;EZDL11244000;EZDL11261000;EZDL17274000;EZDL22200400;EZDQ33150000;EZDQ33150100;EZDQ33150200;EZDQ33150300;EZDQ33250000;EZDQ33350000;EZDQ33450000;EZDQ33550000;EZDQ33650000;EZDQ33750000;EZDQ33950400;EZIE11100000;EZIE11200000;EZIE71100000;EZIE72100000;EZIF1D100000;EZIF1F100000;EZIF1H100000;EZLM11141010;EZLM11151010;EZLM11424230;EZLM11630000;EZLM45000000;EZLN21331120;EZLN21361140;EZLN21371140;EZLN21381140;EZLN41723000;EZLQ13200200;EZLQ13202000;EZLQ13203000;EZLQ13204000;EZLQ13205000;EZLQ13206000;EZLQ13207000;TBA301000200;TBA303000200;TBA304000100;TBA304000200;TBA306000200;TBA403000200;TBA406000200;TBA502000200;TBA506000200;TBC503000300;TBF201000100;TBF202000100;TBF203000100;TBF206000100;TBF207000300;TBF207100300;TBF207200300;TBF207300300;TCA112000100;TCA112000200;TCA113000100;TCA113000200;TCA114000100;TCA114000200;TCA115000100;TCA115000200;TCA116000100;TCA116000200;TCA117000100;TCA117000200;TCA118000100;TCA118000200;TCA119000100;TCA122000100;TCA122000200;TCA123000100;TCA123000200;TCA124000100;TCA124000200;TCA125000100;TCA125000200;TCA126000100;TCA126000200;TCA127000200;TCA128000200;TCA132000100;TCA132000200;TCA133000200;TCA134000200;TCA135000100;TCA135000200;TCA136000200;TCA137000100;TCA137000200;TCA138000200;TCA139000200;TCA13C000200;TCA212000200;TCA213000200;TCA214000200;TCA215000100;TCA215000200;TCA217000200;TCA232000100;TCA232000200;TCA233000100;TCA233000200;TCA234000100;TCA234000200;TCA235000100;TCA235000200;TCA237000100;TCA237000200;TCA238000200;TCA23B000200;TCA312100100;TCA312100200;TCA313100100;TCA313100200;TCA314100100;TCA314100200;TCA315100200;TCA322100100;TCA323100100;TCA412000200;TCA413000200;TCA414000200;TCA415000200;TCA416000200;TCA417000200;TCA418000200;TCA422000100;TCA422000200;TCA423000100;TCA423000200;TCA424000100;TCA424000200;TCA425000100;TCA425000200;TCA426000100;TCA427000100;TCA442000200;TCA512010200;TCA512020200;TCA512040200;TCA513010200;TCA513020200;TCA513030200;TCA514010200;TCA514020200;TCA515030200;TCA522010200;TCA522020100;TCA522020200;TCA523020100;TCA523020200;TCA524020100;TCA524020200;TCA525020100;TCA800000100;TCB131101100;TCB131201100;TCB211200200;TCB301002100;TCB302001100;TCB500000100;TCB610000100;TCB620000100;TCC111230100;TCC112120100;TCC113230100;TCC114330100;TCC116530100;TCC116550100;TCC116573100;TCC11A550100;TCC11A970100;TCC11E790100;TCC11M790100;TCC21A791100;TCC21C791100;TCD11A971100;TCD11A972100;TCD11CE72100;TCD315592100;TCD319792100;TCD31BB52100;TCD31BH52100;TCD413002100;TCD413102100;TCD415002100;TCD415102100;TCD416102100;TCD418102100;TCD419102100;TCD41A102100;TCD41B102100;TCD41C102100;TCD41D102100;TCD41E102100;TCD41F102100;TCD41G102100;TCD41H102100;TCD41I102100;TCD41J102100;TCD41K102100;TCD41M102100;TCD423002100;TCD425002100;TCD426002100;TCD427002100;TCD611001100;TCD631002200;TCD633002200;TCE111460200;TCE112460200;TCE114460200;TCE117460200;TCE118460200;TCE11A460200;TCE11G460200;TCE122150100;TCE123150100;TCE124150100;TCE126170100;TCE127170100;TCE128170100;TCE129170100;TCE12A170100;TCE12D170100;TCF102200100;TCF103200100;TCF104200100;TCF105200100;TCF106200100;TCF114200200;TCF122100200;TCG111000100;TCG111000200;TCG112000100;TCG112000200;TCG113000100;TCG113000200;TCG114000100;TCG115000100;TCG116000100;TCG60A000200;TCH301000100;TCH502000100;TCH601000100;TCH822010100;TCH822210200;TCI001000100;TCI001000200;TCJ103000200;TCJ104000100;TCJ105000100;TCJ105000200;TCJ106000100;TCJ107000100;TCJ108000100;TCJ109000100;TCJ10B000100;TDA115100300;TDA118100300;TDA118300300;TDA118400300;TDA11A100300;TDA11A400300;TDA128100300;TDA142010100;TDA142010200;TDA143010100;TDA143010200;TDA147010100;TDA147010200;TDA148010100;TDA148010200;TDA242010100;TDA243010200;TDA44F010100;TDA44G010100;TDA44I010100;TDA44K010100;TDA44M010100;TDA44N010100;TDA44P010100;TDB104000300;TDB600000300;TDC101100300;TDC101200300;TDC102100300;TDC102200300;TDC104100300;TDC400100300;TDC400110300;TDC400200300;TDC400210300;TDC602400100;TDC603400100;TDC607400100;TDC608400100;TDC702400100;TDC703400100;TDC704400100;TDC707400100;TDC708400100;TDC801000300;TDC802000300;TDC803000300;TDC901000300;TDC902000300;TDC902400200;TDCA11000300;TDD100000100;TDD204000100;TDD205000100;TDD206000100;TDD300300300;TDD300400300;TDD400000300;TDE142100200;TDE242010100;TDE242100200;TDE243010100;TDE243100200;TDE245010100;TDE245100200;TDE342000200;TDE343000200;TDE440000200;TDE802000200;TDF114110100;TDF115110100;TDF116110100;TDF117110100;TDF118110100;TDF119110100;TDF11A110100;TDF11B110100;TDF131110100;TDF132110100;TDF132110200;TDF132111200;TDF132112200;TDF132113200;TDF132114200;TDF132115200;TDF132116200;TDF132117200;TDF134110100;TDF134110200;TDF142110100;TDF142110200;TDF142111200;TDF142112200;TDF142113200;TDF142114200;TDF142115200;TDF142116200;TDF232110100;TDF232110200;TDF232111200;TDF232112200;TDF332110200;TDF403000200;TDF521100100;TDF521100200;TDF521200200;TDF531100100;TDF531100200;TDF531200100;TDF531200200;TDF532100200;TDF532200200;TDF621000200;TDF621100100;TDF622100100;TDF622101100;TDF622111100;TDF631000200;TDF632000100;TDF632000200;TDF634000100;TDF634000200;TDF643000100;TDF643020200;TDF710000200;TDF730000400;TDF732000100;TDF733000100;TDF734000100;TDF735000100;TDF736000100;TDF737000100;TDG140000200;TDG150000100;TDG150000200;TDH112000300;TDH113000300;TDH122000300;TDH211011300;TDH211012300;TDH212011300;TDH212012300;TDH212022300;TDH221000300;TDH222000300;TDH310000300;TDH330000300;TDH341000300;TDH342000300;TDI400010300;TDI400020300;TDI400210300;TDI400220300;TDJ212000100;TDJ213000100;TDJ214000100;TDJ215000100;TDJ217000100;TDJ219000100;TDJ21B000100;TDJ614000200;TDJ615000200;TDJ61A000200;TDJ61C000200;TDJ61E000200;TDJ633000200;TDJ712000100;TDJ712000200;TDJ713000200;TDJ71E000200;TDJ732000200;TDJ734000200;TDJ735000200;TDJ742000200;TDJ752000200;TDJ812000200;TDJ815000200;TDJ816000200;TDL122000100;TDO313000200;TDO332000200;TDO333000200;TDO342000200;TDO343000200;TDO352000200;TDO353000200;TDO354000200;TDO373000200;TDO392000200;TDO394000200;TDO3A2000200;TDO3C1000200;TDO3C2000200;TDO3C4000200;TDO413000200;TDO432000100;TDO433000100;TDO433000200;TDO434000200;TDO512000100;TDO512000200;TDO513000200;TDO515000200;TDO532000100;TDO532000200;TDO533000100;TDO533000200;TDO534000200;TDO535000200;TDO536000200;TDO537000200;TDO538000200;TDO539000200;TDO53B000200;TDO53C000200;TDO638000200;TDO733000200;TDO742000200;TDO743000200;TDO752000200;TDO753000200;TDO810000100;TDO810000200;TDO810001200;TDO830000100;TDO830000200;TDR118000100;TDR213000100;TDR311000100;TDR312000200;TDR313000100;TDR313000200;TDR315000200;TDR316000200;TDR317000200;TDR318000200;TDR325000200;TDS811000100;TDT101010300;TDT101100300;TDT102000300;TDT500000200;TDT610000300;TDT750000300;TDT770000300;TDT770100300;TDU311000300;TDU312000300;TDU390000300;TDU410000300;TFB410000200;TFC111000400;TFC123000400;TFC124000400;TFC126000400;TFC131000400;TFC132000400;TFC136000400;TFD611100400;TFD612100400;TFD614100400;TFD632100400;TFD634100400;TFD638100400;TFD639100400;TFD641100400;TFD710000400;TFE111000400;TFE112000400;TFE113000400;TFE114000400;TFE115000400;TFE116000400;TFE140000400;TGD200000100;TGD210000100;TGD310000100;TGE111000100;TGE211000100;TGF111000100;TGM113110100;TGM113210100;TGM11G200400;TGM11G300400;TGM11G400400;TGM11G500400;TGM511000200;TGM531000100;TGM552100100;TGM553000200;TGM554000200;TGM680000100;TGN11B000100;TGN11J000200;TGN11K000100;TGO212000100;TGO217000100;TGO231000100;TGO232000100;TGO311000100;TGO311000200;TGO312000100;TGO312000200;TGO313000100;TGO313000200;TGO314000100;TGO315000100;TGO315000200;TGO316000100;TGO317000100;TGO317000200;TGO411000100;TGO412000100;TGO413000100;TGO414000100;TGO500000200;TGO600000100;TGO810000100;TGO880100100;TGO890000100;TGO910000100;TGO910000200;TGO920000200;TGOA11000100;THA110000400;THA120000100;THA120000400;THA180000400;THA212100100;THA310000200;THA320000100;THA320000200;THA330000100;THA716000400;THA721000100;THA730000100;THA750000100;THA751000100;THC311000100;THC320000100;THC340000100;THC350000100;THC411110100;THC411130100;THF111000400;THF113100400;THF113200400;THF113300400;THF114000400;THF115001400;THF121200400;THF121210400;THF121400400;THF122200400;THF122210400;THF122300400;THF122400400;THF123200400;THF123210400;THF124200400;THF124210400;THF125100400;THF125200400;THF610000400;THF620000400;THF710000400;TIC211000400;TIC211001100;TIC212000400;TIC212001100;TIC212100400;TIC213000400;TIC213100400;TIC214000400;TIC214100400;TIC231000400;TIC232000400;TIC233000400;TIC260000400;TIC291000400;TIC292000400;TIC331000400;TIC340000400;TIC34E000400;TIC510000400;TIC521000400;TIC522000400;TIC611000400;TIC641000400;TIC642000400;TID120000400;TID131000400;TID132000100;TID140000400;TIF111000400;TIF121000400;TIF201000400;TIF202000400;TIF203000400;TIF204000100;TIF206000400;TIF31E000400;TIH223000400;TIH224000400;TIH225000400;TII110000400;TII120000400;TKE111000100;TKE442000200;TKE444000200;TKE652000100;TKF220100400;TKF220400400;TKF230000100;TKF230000400;TKF240000100;TKF240000400;TKF250000100;TKF260000100;TKG500000100;TKG600000400;TMC521000300;TMC600000300;", + "X_Lst_A1 = ;CDC140000010;CDC140000020;CDC140000030;CDC140000040;CDC140000050;CDC140000060;CDC140000070;CDC140000080;CNG330310000;CNG330320000;CNG330330000;CNG330340000;CNG330410000;CNG330730000;CNG330750000;CNG330760000;CNG350610000;CNG350620000;CNG350630000;CNG350640000;CNG350710000;CNG350720000;CNG350730000;CNG350740000;CNG350750000;CNG350760000;CNG350770000;COH720100000;COH720110000;AAA310415100;AAA310415200;AAA310415300;AAD160700000;AAD160800000;ADA001060100;AEF211010100;AEG111100200;AEG111100800;AEG111100900;AEG111101000;AEG111101100;AEG113130000;AEG113140000;AEG121100200;AEG121100800;AEG121100900;AEG121101000;AEG121101100;AEG121101200;AEG123150000;AEG123160000;AEG131100200;AEG131100800;AEG131100900;AEG131101000;AEG131101100;AEG131101200;AEG141100100;AEG800210000;AEG800220000;AEG800230000;AEG800240000;AEG800250000;AEG800260000;AEG800270000;AEG800280000;AEG800290000;AEG800300000;AFA310080000;AGA310600000;AGA310700000;AGA310800000;AGC411500000;AGC411600000;AGC411700000;AGG340100000;AGG340100010;AGG340200000;AGG340200010;AGG401010100;AHC100100000;AHC110100000;AHC110110000;AHC110111000;AHC130110000;AHC130111000;AHC140100000;AHC140101000;AHC140200000;AHC200102000;AHC200110000;AHC200120000;AHC210100000;AHC210101000;AHC210110000;AHC210200000;AHC230101000;AHC230110000;AHC900600000;AHM100500000;AJI400600000;AJI400700000;AJI500010000;AJI500610000;AJI500910000;AJO110100100;AJO110100200;AJP110010000;AJP110020000;ALA130100000;ALA130100200;ALA130100400;ALA130100600;ALA130100800;ALA210103100;ALA210103110;ALA210103120;ALA210103130;ALA210103140;ALA210103150;ALA210103160;ALA210103170;ALA210103180;ALA210103220;ALA210103230;ALA210103240;ALA230901000;ALA230901010;ALA230901040;ALA230901050;ALA230901080;ALA230901090;ALA230901120;ALA230901130;ALA230901160;ALA230901170;ALA230901200;ALA230901210;ALA230901240;ALA230901250;ALA230901280;ALA230901290;ALA230901320;ALA230901330;ALA230901340;ALA230901350;ALA230901360;ALA230901370;ALA230901380;ALA230901390;ALA230901640;ALA230901650;ALA230901680;ALA230901690;ALA230901720;ALA230901730;ALA230901760;ALA230901770;ALA230902000;ALA230902010;ALA230902040;ALA230902050;ALA230902080;ALA230902090;ALA230902120;ALA230902130;ALA230902160;ALA230902170;ALA230902200;ALA230902210;ALA230902240;ALA230902250;ALA230902280;ALA230902290;ALA230902320;ALA230902330;ALA230902340;ALA230902350;ALA230902360;ALA230902370;ALA230902380;ALA230902390;ALA230902640;ALA230902650;ALA230902660;ALA230902670;ALA230902680;ALA230902690;ALA230902700;ALA230902710;ALA230903000;ALA230903010;ALA230903040;ALA230903050;ALA230903080;ALA230903090;ALA230903120;ALA230903130;ALA230903160;ALA230903170;ALA230903200;ALA230903210;ALA230903240;ALA230903250;ALA230903280;ALA230903290;ALA230903320;ALA230903330;ALA230903340;ALA230903350;ALA230903360;ALA230903370;ALA230903380;ALA230903390;ALA230903640;ALA230903650;ALA230903680;ALA230903690;ALA230903720;ALA230903730;ALA230903760;ALA230903770;ALA530103100;ALA530103200;ALA530303100;ALA530303200;ALB187900100;ALB187900200;ALB380300000;ALB380300100;ALB380300200;ALB380300300;ALB380300400;ALB380300500;ALB380300600;ALB380300700;ALB380300800;ALB380300900;ALB380301000;ALB380301100;ALB380301200;ALB380301300;ALB380301400;ALB380301500;ALB380301600;ALB380301700;ALB380301800;ALB380301900;ALB380302000;ALB380302100;ALB380302200;ALB380302300;ALB380302400;ALB380302500;ALB380302600;ALB380302700;ALB380302800;ALB380302900;ALB380303000;ALB380303100;ALC500100000;ALC500200000;ALC500300000;ALC500400000;ALL120010000;ALL120020000;ALL120030000;ALL120040000;AMA312802000;AMB100200000;AMB171310100;AMB171311000;AMB171312000;AMB301100000;AMB510110000;AMB510200000;AMB510300000;AMB710010000;AMB710020000;AMB710030000;AMB710040000;AMB710050000;AMB710060000;AMB710070000;AMB710080000;AMB731130000;AMB731131000;AMB731132000;AMB731133000;AMB731134000;AMB731135000;AMB741400000;ANC262200000;ANC332100000;ANC332101000;ANC332102000;ANC332103000;ANC332104000;ANC332105000;ANC333100000;ANC333101000;ANC333102000;ANE120003000;ANE120007000;ANG100300000;ANG100300100;ANG100300200;ANG100300300;ANG212100000;ANG212100100;ANG213100000;ANG213100100;ANJ001010000;ANJ001500000;ANS100110000;ANS100111000;AOA112100700;AOA112900200;AOA410710000;AOA410720000;AOC311021000;AOC311022000;AOC311023000;AOC311024000;AOC314021000;AOC314022000;AOC314023000;AOC314024000;AOC900300000;AOC900300010;AOC900400000;AOC900400010;AOC900500000;AOC900500010;AOC900500020;AOC900500030;AOC900600000;AOC900600010;AOG600400000;AOI000300000;AOJ442002000;AOJ443002000;AOJ443004000;AOJ443005000;AOJ443006000;AOJ444001000;AOJ444002000;AOJ444003000;AOJ444004000;AOJ444005000;AOJ444006000;AOJ444007000;AOJ444008000;AOJ444009000;AOJ444010000;AOJ444110000;AOJ444120000;AOJ444130000;AOJ445001000;AOJ445002000;AOJ446001000;AOJ446002000;AOJ447001000;AOJ447002000;AOJ447003000;AOJ447004000;AOJ448001000;AOJ448002000;AOJ449001000;AOJ449002000;AOJ449003000;AOJ449004000;AOJ451001000;AOJ451002000;AOJ452001000;AOJ453001000;AOJ453002000;AOJ454001000;AOJ455001000;AOJ455002000;AOJ455003000;AOJ455004000;AOJ456001000;AOJ456002000;AOJ456003000;AOJ456004000;AOJ456005000;AOJ456006000;AOJ457002200;AOJ457002300;AOJ457003200;AOJ457003300;AOJ457004000;AOJ457004100;AOJ457004200;AOM101020000;AR0000119870;AR0000119880;AR0000119890;AR0000119900;AR0000119910;AR0000119920;AR0000119930;AR0000119940;AR0000119950;AR0000119960;AR0000119970;AR0000119980;AR0000119990;AR0000120000;AR0000210000;MCA00010030S;MCA00010060S;MCA00010090S;MCA00010120S;MCA11110030S;MCA11110060S;MCA11110090S;MCA11110120S;MCA11110150S;MCA11110180S;MCD610100000;MCD610200000;MCE400101000;MCE400102000;MCE400103000;MCE400104000;MCE400105000;MCE400106000;MCE400107000;MCE400108000;MCE400109000;MCE400110000;MCE400201000;MCE400202000;MCE400203000;MCE400204000;MCE400205000;MCE400206000;MCE400207000;MCE400208000;MCE400209000;MCE400210000;MCE400211000;MCE400212000;MCE400213000;MCE400214000;MCE400215000;MEA000101000;MEA000102000;MEA000103000;MEB000100000;MEB000101000;MEB000102000;MEB000103000;MEB000104000;MEB000105000;MEB000106000;MEB000107000;MEB000108000;MEB000109000;MEB000200000;MEB000300000;MEB000400000;MEB000500000;MFC500100000;MFC800100000;MIA000100100;MIA000100200;MIA000100300;MIA000100400;MIA000100500;MIA000100600;MIA000100700;MIA000100800;MIA000100900;MIA000101000;MIA000101100;MIA000101200;MIA000101300;MIA000200000;MIC000100100;MIC000100200;MIC000100300;MIC000100400;MIC000100500;MIC000100600;MIC000100700;MIC000100800;MIC000100900;MIC000101000;MIC000101100;MIC000101200;MIC000101300;MID000100000;MID000200000;MID000300000;MIE000110000;MIE000120000;MIE000130000;MIE000140000;MIE000150000;MIH000100000;MIH000110000;MIH000200000;MIH000300000;MIJ000100000;MIN000100000;MIP000101000;MIP000102000;MIP000103000;MIP000104000;MIP000105000;MIP000106000;MIP000107000;MIP000108000;MIP000109000;MIP000110000;MIP000111000;MIP000112000;MIP000113000;MIP000114000;MIP000115000;MIP000201000;MIP000202000;MIP000203000;MIP000204000;MIP000205000;MIP000206000;MIP000207000;MIP000208000;MIP000209000;MIP000210000;MIP100101000;MIP100102000;MIP100103000;MIP100104000;MIP100105000;MIP100106000;MIP200100000;MIP600100000;MJI100101000;MJI100102000;MJI100103000;MJI100104000;MJI100105000;MJI100106000;MJI100107000;MJI100108000;MJI100109000;MJI100110000;MJI100111000;MJI100112000;MJI100113000;MJI100114000;MJI100115000;MJI400101000;MJI400102000;MJI400103000;MJI400104000;MJI400105000;MJI400106000;MJI400107000;MJI400108000;MJI400109000;MJI400110000;MJI400111000;MJI400112000;MJI400113000;MJI400114000;MJI400115000;EYA111000010;EYA111000020;EYA111000030;EYA111000040;", + "X_Lst_A0 = ;CAA120100000;CAA210900000;CAA220200000;CAA220500000;CAA270020000;CAA270021000;CAA310011000;CAA310012000;CAA310013000;CAA310100000;CAA310200000;CAA310300000;CAA320010000;CAA320020000;CAA320030000;CAA320111000;CAA320112000;CAA320113000;CAA320211000;CAA320212000;CAA320213000;CAA320220000;CAA320510000;CAA320520000;CAA320530000;CAD100200100;CAD100200150;CAD100200200;CAD100200250;CAD100200300;CAD240310000;CAD240320000;CAD424100000;CAE110103000;CAE110105000;CAE110108000;CAE110110000;CAE110203000;CAE110205000;CAE110208000;CAE110210000;CAE141300500;CAE141300800;CAE141301100;CAE141301400;CAE141301700;CAE141302000;CAE141401100;CAE141401400;CAE141401700;CAE141402000;CAE146301500;CAE146301800;CAE146401500;CAE146401800;CAE160000300;CAE160000500;CAE160000800;CAE160001100;CAE160001500;CAE160001900;CAE300003000;CAE300006000;CAE300012000;CAE300103000;CAE300106000;CAE300112000;CAE300203000;CAE300206000;CAE300212000;CAE300303000;CAE300306000;CAE300312000;CCG110100000;CCG120101500;CCG520130000;CCG520135000;CCG520140000;CCG520145000;CCG520150000;CCG520155000;CCG520160000;CCG520165000;CCG520170000;CCG520175000;CCG520180000;CCG520230100;CCG520230200;CCG520235100;CCG520235200;CCG520240100;CCG520240200;CCG520240300;CCG520245100;CCG520245200;CCG520245300;CCG520245400;CCG520250100;CCG520250200;CCG520250300;CCG520250400;CCG520255100;CCG520255200;CCG520255300;CCG520255400;CCG520260100;CCG520260200;CCG520260300;CCG520260400;CCG520265100;CCG520265200;CCG520265300;CCG520265400;CCG520270100;CCG520270200;CCG520270300;CCG520270400;CCG520275100;CCG520275200;CCG520275300;CCG520275400;CCG520280100;CCG520280200;CCG520280300;CCG520280400;CCG520330100;CCG520330200;CCG520335100;CCG520335200;CCG520340100;CCG520340200;CCG520340300;CCG520345100;CCG520345200;CCG520345300;CCG520345400;CCG520350100;CCG520350200;CCG520350300;CCG520355100;CCG520355200;CCG520355300;CCG520355400;CCG520360100;CCG520360200;CCG520360300;CCG520360400;CCG520365100;CCG520365200;CCG520365300;CCG520365400;CCG520370100;CCG520370200;CCG520370300;CCG520370400;CCG520375100;CCG520375200;CCG520375300;CCG520375400;CCG520380100;CCG520380200;CCG520380300;CCG520380400;CDA100000000;CDA210100000;CDA220200000;CDA230300000;CDB100000000;CDB200000000;CDC110100000;CDC110110000;CDC110120000;CDC110200000;CDC110210000;CDC110220000;CDC120100000;CDC120110000;CDC120120000;CDC120200000;CDC120210000;CDC120220000;CDC210100000;CDC210200000;CDC220100000;CDC220200000;CDC230000000;CDC310000000;CDC310500000;CDC310900000;CDC320000000;CDC320500000;CDC320900000;CDC410000000;CDC420000000;CDC430000000;CDC720100000;CDC800000000;CDC900100000;CDC900200000;CDD100100000;CDD100200000;CDD200000000;CDD300100000;CDD300200000;CDD300300000;CDD300400000;CDD300500000;CDD300600000;CDD300700000;CDD300800000;CDE100111100;CDE100111200;CDE100111300;CDE100111400;CDE100111500;CDE100112100;CDE100112200;CDE100112300;CDE100112400;CDE100112500;CDE100113100;CDE100113200;CDE100121100;CDE100121200;CDE100121300;CDE100121400;CDE100121500;CDE100131100;CDE100132100;CDE100132200;CDE100132300;CDE100132400;CDE100132500;CDE100133100;CDE100133200;CDE100311100;CDE100312100;CDE100313100;CDE100331100;CDE100332100;CDE100333100;CDE110100000;CDE110200000;CDE120100000;CDE120200000;CDE130100000;CDE130200000;CDE140100000;CDE140200000;CDE200111100;CDE200111200;CDE200111300;CDE200111400;CDE200111500;CDE200121100;CDE200121200;CDE200121300;CDE200121400;CDE200121500;CDE200313100;CDE200333100;CDE210100000;CDE210200000;CDE220100000;CDE220200000;CDE230100000;CDE230200000;CDE240100000;CDE240200000;CDE300111100;CDE300111200;CDE300111300;CDE300111400;CDE300111500;CDE300333100;CDE310100000;CDE310200000;CDE320100000;CDE320200000;CDE330100000;CDE330200000;CDE340100000;CDE340200000;CDF110000000;CDF120000000;CDF130000000;CDF210000000;CDF220000000;CDF310000000;CDF311070100;CDF311100100;CDF311150100;CDF311200100;CDF311250100;CDF311300100;CDF311350100;CDF311500100;CDF311600100;CDF312070100;CDF312100100;CDF312150100;CDF312200100;CDF312250100;CDF312300100;CDF312350100;CDF312500100;CDF312600100;CDF313070100;CDF313100100;CDF313150100;CDF313200100;CDF313250100;CDF313300100;CDF313350100;CDF313500100;CDF313600100;CDF314070100;CDF314100100;CDF314150100;CDF314200100;CDF314250100;CDF314300100;CDF314350100;CDF314500100;CDF314600100;CDF320000000;CDF321070100;CDF321100100;CDF321150100;CDF321200100;CDF321250100;CDF321300100;CDF321350100;CDF321500100;CDF321600100;CDF322070100;CDF322100100;CDF322150100;CDF322200100;CDF322250100;CDF322300100;CDF322350100;CDF322500100;CDF322600100;CDF323070100;CDF323100100;CDF323150100;CDF323200100;CDF323250100;CDF323300100;CDF323350100;CDF323500100;CDF323600100;CDF324070100;CDF324100100;CDF324150100;CDF324200100;CDF324250100;CDF324300100;CDF324350100;CDF324500100;CDF324600100;CDF330100000;CDF330200000;CDF331070100;CDF331100100;CDF331150100;CDF331200100;CDF331250100;CDF331300100;CDF331350100;CDF331500100;CDF331600100;CDF332070100;CDF332100100;CDF332150100;CDF332200100;CDF332250100;CDF332300100;CDF332350100;CDF332500100;CDF332600100;CDF333070100;CDF333100100;CDF333150100;CDF333200100;CDF333250100;CDF333300100;CDF333350100;CDF333500100;CDF333600100;CDF334070100;CDF334100100;CDF334150100;CDF334200100;CDF334250100;CDF334300100;CDF334350100;CDF334500100;CDF334600100;CDG100100000;CDG100200000;CDG100300000;CDG140000000;CDH110000000;CDH110000100;CDH110100000;CDH110100100;CDH110300000;CDH110300100;CDH110900000;CDH110900100;CDI011000300;CDI011000400;CDI011000500;CDI011000600;CDI011000700;CDI011000800;CDI011000900;CDI011001000;CDI012000300;CDI012000400;CDI012000500;CDI012000600;CDI012000700;CDI012000800;CDI012000900;CDI012001000;CDI021000300;CDI021000400;CDI021000500;CDI021000600;CDI021000700;CDI021000800;CDI021000900;CDI021001000;CDI022000300;CDI022000400;CDI022000500;CDI022000600;CDI022000700;CDI022000800;CDI022000900;CDI022001000;CDI031000300;CDI031000400;CDI031000500;CDI031000600;CDI031000700;CDI031000800;CDI031000900;CDI031001000;CDI032000300;CDI032000400;CDI032000500;CDI032000600;CDI032000700;CDI032000800;CDI032000900;CDI032001000;CDI110000000;CDI520000000;CDI540000000;CDI610000000;CDI900100000;CDI900200000;CDJ110000000;CDJ120000000;CDJ210000000;CDJ240000000;CDJ310010100;CDJ310010200;CDJ310020300;CDJ310020500;CDJ441000500;CDJ441000700;CDJ441001000;CDJ441001500;CDS100100800;CDS100101000;CDS100101500;CDS100102000;CDS100102400;CDS100103200;CDS100200800;CDS100201000;CDS100201500;CDS100202000;CDS100202400;CDS100203200;CDS101200800;CDS101201000;CDS101201500;CDS101202000;CDS101202400;CDS101203200;CDS200100800;CDS200101000;CDS200101500;CDS200102000;CDS200102400;CDS200103200;CDS200200800;CDS200201000;CDS200201500;CDS200202000;CDS200202400;CDS200203200;CDS300200800;CDS300201000;CDS300201500;CDS300202000;CDS300202400;CDS300203200;CEC000700100;CEC000700200;CEC110110020;CEC120110010;CEC120121110;CEC120121210;CEC120122110;CEC120122210;CEC120123110;CEC120123210;CEC120124110;CEC120124210;CEC150110010;CEC220110010;CEC220121110;CEC220121210;CEC220122110;CEC220122210;CEC220123110;CEC220123210;CEC220124110;CEC220124210;CED100010000;CED100020000;CED100030000;CED100040000;CED100050000;CED200010000;CED200020000;CED200030000;CED200040000;CED200050000;CED300010000;CED300020000;CED300030000;CED300040000;CED300050000;CED340010000;CED340020000;CED340030000;CED340040000;CED340050000;CED410010000;CED410020000;CED410030000;CED410040000;CED410050000;CED420010000;CED420020000;CED420030000;CED420040000;CED420050000;CED430010000;CED430020000;CED430030000;CED430040000;CED430050000;CED441090000;CED441120000;CED441150000;CED441180000;CED441210000;CED442090000;CED442120000;CED442150000;CED442180000;CED442210000;CEE000100000;CEE000200000;CEE000300000;CEE000400000;CEE710030000;CEE710040000;CEE730010000;CEE730020000;CEE800000000;CEF420000000;CEF610005000;CEF610010000;CEF610020000;CEF800170100;CEF800260500;CER130100000;CER130300000;CER220110000;CER220120000;CER400000000;CER400500000;CER500000000;CER600000000;CFB001010000;CFB001020000;CFB001030000;CFB001040000;CFB001050000;CFB001060000;CFB601025000;CFB601030000;CFB701035000;CGA210025000;CGA210030000;CGA210035000;CGA210040000;CGA310045000;CGA310050000;CGA310060000;CGA410070000;CGB200008000;CGB200008010;CGB200010000;CGB200010010;CGB200015000;CGB200015010;CGB200020000;CGB200020010;CGB300030000;CGB300030010;CGB300040000;CGB300040010;CGB400050000;CGB400050010;CGB400060000;CGB400060010;CGB400070000;CGB400070010;CGD000050000;CGD000100000;CGD000150000;CGD000250000;CGD000300000;CGD020150000;CGD020200000;CGD020250000;CGD020300000;CGE000002000;CGE000002500;CGE000003000;CGE000003500;CGE000004000;CGE000004500;CGE000050000;CGE000060000;CGE000070000;CGG100025000;CGG100030000;CGG100040000;CGG100050000;CGG100075000;CGG100100000;CGI110007500;CGI110108000;CGI210010000;CGI210015000;CGI210020000;CGI210110000;CGI210115000;CGI210120000;CGI310030000;CGI310040000;CGI310050000;CGI310060000;CGI310070000;CGI310130000;CGI310140000;CGI310150000;CGI310160000;CGI310170000;CGR030002500;CGR030004000;CGR030005000;CGR030007500;CGR032010000;CGR032015000;CGR032020000;CGR040003000;CGR040004000;CGR040004500;CGR040005000;CGR040006000;CGR040007000;CGR040008000;CGR040009000;CGR040010000;CGR040011000;CGR040012000;CGR071003000;CGR071004000;CGR071004500;CGR071005000;CGR071006000;CGR071007000;CGR071008000;CGR071009000;CGR071010000;CGR071012000;CHB213100000;CHB231100000;CHB231200000;CHB231300000;CHB245000000;CHC310010100;CHC310010200;CHC310010300;CHC310010400;CHC310010500;CHC310010600;CHC310010700;CHC310020100;CHC310020200;CHC310020300;CHC310020400;CHC310020500;CHC310020600;CHC310020700;CHD120010000;CHD120020000;CHD120030000;CHD120100000;CHD120200000;CHD120300000;CHD220110000;CHG110010000;CHG110020000;CHG110030000;CHG110040000;CHG110050000;CHG120010000;CHM111111000;CHM111212000;CIA100000000;CIG210100000;CIG210300000;CIG210400000;CIH210100000;CIH210300000;CJE100010000;CJE100020000;CJE101010500;CJE101010800;CJE101011000;CJE101012000;CJE101015000;CJE101020500;CJE101020800;CJE101021000;CJE101021200;CJE101021500;CJE160004000;CJE160005000;CJE160006000;CJE160007000;CJE160008000;CJE160009000;CJE160010000;CJF100010000;CJF100020000;CJF100030000;CJF101010000;CJF101020000;CJF101030000;CJF101040000;CJF101050000;CKD110000000;CKD120000000;CKD220000000;CKD320000000;CKD520000000;CKD600000000;CKE150100000;CKE150200000;CKE150300000;CKE310100000;CKE310200000;CKE320100000;CKE320200000;CKE510010000;CKE520110000;CKE520210000;CKE600000000;CLA100150000;CLA100200000;CLB100200000;CLC110100000;CLC110200000;CLC210000000;CLC300100000;CLC300150000;CLC400050000;CLC400080000;CLC500060000;CLD140200000;CLD400000000;CLE400100000;CLE400200000;CLE600000000;CLF100312120;CLF100315120;CLF100315150;CLF100315170;CLF300318200;CLF300318250;CLF300320250;CLF300320300;CLG730307000;CLG731200000;CLG820010000;CLG820308000;CLG830330300;CLH110101200;CLH110102200;CLH110108200;CLH210121200;CLH210122200;CLH210221100;CLH210222100;CLH210223100;CLH210224100;CLH220100000;CLH220200000;CLH230110000;CLH230310000;CLH310110000;CLH310140000;CLH310150000;CLH310210000;CLH310220000;CLH310230000;CLH340010000;CLH340020000;CLH610100000;CLH610200000;CLH610300000;CLI300021000;CLI300022000;CLI300023000;CLJ110000000;CLJ120000000;CLJ130000000;CLJ200100000;CLJ200200000;CLJ200300000;CLJ210100000;CLJ210200000;CLJ210320000;CLJ300100000;CLJ300200000;CLJ300300000;CLJ310100000;CLJ310200000;CLJ310300000;CLJ400010000;CLJ400020000;CLJ400040000;CLJ400100000;CLJ400200000;CLJ400400000;CLJ600100000;CLJ600200000;CLJ600300000;CLJ600400000;CLJ610100000;CLJ610200000;CLJ610300000;CLJ610400000;CLJ610500000;CLJ750100000;CLJ750400000;CLJ800010000;CLJ800020000;CLJ800030000;CLJ800050000;CLJ800070000;CLJ900000000;CLK200310300;CLK200310450;CLK200310600;CLK200310800;CLK200311000;CLK200311200;CLK201210300;CLK201210450;CLK201210600;CLK201210800;CLK201211000;CLK201211200;CLK201250250;CLK201250300;CLK201250350;CLK201250400;CLK201250450;CLK201250500;CLK201250600;CLK201250700;CLK201250800;CLK341008000;CLK342008000;CLK351010000;CLK351020000;CLK352010000;CLK352020000;CLK400403000;CLK400404500;CLK400406000;CLK400408000;CLK400410000;CLK400412000;CLL110406000;CLL110508000;CLL110610000;CLL110712000;CLL111110100;CLL111110200;CLL111110300;CLL111110400;CLL111110500;CLL111110600;CLL111220100;CLL111220200;CLL111220300;CLL111220400;CLL111220500;CLL111220600;CLL121110400;CLL121110500;CLL121110600;CLL121220100;CLL121220200;CLL121330100;CLL121330200;CLL121440400;CLL121440500;CLL121440600;CLL121550400;CLL121550500;CLL121550600;CLL140010000;CLL140020000;CLL140030000;CLL201000000;CLL202000000;CLL310009090;CLL310009150;CLL310010100;CLL310010150;CLL310011110;CLL310011150;CLL310012120;CLL310012150;CLL310013130;CLL310013150;CLL310014140;CLL310014150;CLL310015150;CLL310015200;CLL310016160;CLL310016200;CLL310017170;CLL310017200;CLL310018180;CLL310018200;CLL310019190;CLL310019200;CLL310020200;CLL310020250;CLL310021210;CLL310021250;CLL310022220;CLL310022250;CLL310023230;CLL310023250;CLL310024240;CLL310024250;CLL310025250;CLL310025300;CLL310030300;CLL310030350;CLL330101000;CLL330102000;CLL330103000;CLL330104000;CLL330105000;CLL330106000;CLL341011000;CLL341012000;CLL341013000;CLL341014000;CLL342021000;CLL342022000;CLL342023000;CLL342024000;CLL630006000;CLL630008000;CLL630010000;CLL630012000;CLL730111100;CLL730111200;CLL730111300;CLL730111400;CLL730112100;CLL730112200;CLL730112300;CLL730112400;CLL730113100;CLL730113200;CLL730113300;CLL730113400;CLL730114100;CLL730114200;CLL730114300;CLL730114400;CLL730115100;CLL730115200;CLL730115300;CLL730115400;CLL730116100;CLL730116200;CLL730116300;CLL730116400;CLL730121100;CLL730121200;CLL730121300;CLL730121400;CLL730122100;CLL730122200;CLL730122300;CLL730122400;CLL730123100;CLL730123200;CLL730123300;CLL730123400;CLL730124100;CLL730124200;CLL730124300;CLL730124400;CLL730125100;CLL730125200;CLL730125300;CLL730125400;CLL730126100;CLL730126200;CLL730126300;CLL730126400;CLL730211100;CLL730211200;CLL730211300;CLL730211400;CLL730212100;CLL730212200;CLL730212300;CLL730212400;CLL730213100;CLL730213200;CLL730213300;CLL730213400;CLL730214100;CLL730214200;CLL730214300;CLL730214400;CLL730215100;CLL730215200;CLL730215300;CLL730215400;CLL730216100;CLL730216200;CLL730216300;CLL730216400;CLM110010100;CLM110010200;CLM110010300;CLM110010400;CLM110010500;CLM110020100;CLM110020200;CLM110020300;CLM110020400;CLM110020500;CLM110030100;CLM110030200;CLM110030300;CLM110030400;CLM110030500;CLM110040100;CLM110040200;CLM110040300;CLM110040400;CLM110040500;CLM110050100;CLM110050200;CLM110050300;CLM110050400;CLM110050500;CLM110060100;CLM110060200;CLM110060300;CLM110060400;CLM110060500;CLM110080100;CLM110080200;CLM110080300;CLM110080400;CLM110080500;CLM110090100;CLM110090200;CLM110090300;CLM110090400;CLM110090500;CLM110110100;CLM110110200;CLM110110300;CLM110110400;CLM110110500;CLM120010100;CLM120010200;CLM120010300;CLM120010400;CLM120010500;CLM120020100;CLM120020200;CLM120020300;CLM120020400;CLM120020500;CLM120030100;CLM120030200;CLM120030300;CLM120030400;CLM120030500;CLM120040100;CLM120040200;CLM120040300;CLM120040400;CLM120040500;CLM120050100;CLM120050200;CLM120050300;CLM120050400;CLM120050500;CLM120060100;CLM120060200;CLM120060300;CLM120060400;CLM120060500;CLM120070100;CLM120070200;CLM120070300;CLM120070400;CLM120070500;CLM120080100;CLM120080200;CLM120080300;CLM120080400;CLM120080500;CLM120090100;CLM120090200;CLM120090300;CLM120090400;CLM120090500;CLM130010100;CLM130010200;CLM130010300;CLM130010400;CLM130010500;CLM130020200;CLM130020300;CLM130020400;CLM130020500;CLM130040100;CLM130050100;CLM130050200;CLM130050300;CLM130050400;CLM130050500;CLM130060100;CLM130060200;CLM130060300;CLM130060400;CLM130060500;CLM130070100;CLM130070200;CLM130070300;CLM130070400;CLM130070500;CLM130080100;CLM130080200;CLM130080300;CLM130080400;CLM130080500;CLM130090100;CLM130090200;CLM130090300;CLM130090400;CLM130090500;CLM141050100;CLM141050200;CLM141050300;CLM141050400;CLM141050500;CLM141060100;CLM141060200;CLM141060300;CLM141060400;CLM141060500;CLM141080100;CLM141080200;CLM141080300;CLM141080400;CLM141080500;CLM141090100;CLM141090200;CLM141090300;CLM141090400;CLM141090500;CLM141110100;CLM141110200;CLM141110300;CLM141110400;CLM141110500;CLM141120100;CLM141120200;CLM141120300;CLM141120400;CLM141120500;CLM141130100;CLM141130200;CLM141130300;CLM141130400;CLM141130500;CLM142050100;CLM142050200;CLM142050300;CLM142050400;CLM142050500;CLM142060100;CLM142060200;CLM142060300;CLM142060400;CLM142060500;CLM142080100;CLM142080200;CLM142080300;CLM142080400;CLM142080500;CLM142090100;CLM142090200;CLM142090300;CLM142090400;CLM142090500;CLM142100100;CLM142100200;CLM142100300;CLM142100400;CLM142100500;CLM142110100;CLM142110200;CLM142110300;CLM142110400;CLM142110500;CLM142120100;CLM142120200;CLM142120300;CLM142120400;CLM142120500;CLR100050200;CLR212100000;CLR212200000;CLR212300000;CLR221100000;CLR221200000;CLR221300000;CLR410000000;CLR420000000;CLR500312950;CLR501312950;CNI100010000;CNI210000000;CNR200020000;COA020410000;COA020510000;COA020610000;COA021210000;COB001110000;COB001210000;COB002110000;COB010110000;COB020100000;COB020110000;COB030110000;COB040110000;COB040210000;COB050110000;COB050210000;COB060110000;COB060210000;COB100100000;COB100900000;COB300110000;COB300210000;COB300310000;COB301220000;COB301310000;COB301410000;COB320010000;COB320020000;COB320030000;COB320040000;COB320110000;COB320120000;COB320210000;COB320310000;COB320320000;COB330110000;COB330210000;COB330310000;COB340110000;COB340210000;COB340310000;COB360110000;COB360210000;COB360310000;COB361110000;COB361210000;COB361310000;COB370210000;COB370310000;COB370410000;COB371110000;COB371210000;COB371310000;COB410110000;COB420110000;COB430110000;COB440110000;COC110110000;COC120110000;COC210110000;COC310010000;COC310020000;COC310110000;COC310120000;COC330010000;COC330020000;COC330030000;COC340110000;COC340120000;COC340130000;COC410110000;COC410120000;COC420110000;COC420120000;COC420130000;COC420210000;COC420310000;COC430110000;COC430210000;COC430310000;COC520110000;COC710110000;COC720110000;COD000110000;COD000210000;COD000220000;COD000310000;COD000320000;COD000410000;COD000510000;COD000610000;COD000710000;COD000810000;COD013010000;COD013110000;COD013210000;COD013310000;COD013410000;COD013420000;COD013430000;COD013510000;COD013610000;COD013710000;COD013810000;COD013910000;COD013920000;COD023010000;COD023110000;COD023210000;COD023310000;COD023410000;COD023420000;COD023430000;COD023510000;COD023610000;COD023710000;COD023810000;COD023910000;COD023920000;COD033010000;COD033110000;COD033210000;COD033310000;COD033410000;COD033420000;COD033430000;COD033510000;COD033520000;COD033610000;COD033710000;COD033810000;COD033910000;COD033920000;COD043010000;COD043020000;COD043110000;COD043120000;COD043210000;COD043220000;COD043310000;COD043410000;COD043420000;COD043430000;COD043510000;COD043520000;COD043610000;COD043620000;COD043710000;COD043720000;COD043810000;COD043910000;COD043920000;COD300010000;COD300020000;COD300030000;COD300040000;COD300050000;COD300060000;COD300110000;COD300120000;COD300130000;COD300210000;COD300220000;COD300310000;COD300410000;COD300510000;COD300610000;COD301310000;COD301320000;COD301510000;COD301610000;COD301620000;COD301710000;COD301810000;COD301820000;COD301830000;COD301840000;COD301850000;COD301860000;COD301870000;COD301910000;COD301920000;COD302110000;COD302210000;COD302310000;COD302410000;COD302420000;COD302430000;COD302510000;COD302610000;COD302710000;COD302810000;COD302910000;COD302920000;COD303010000;COD303110000;COD303210000;COD303220000;COD303310000;COD303410000;COD303420000;COD303430000;COD303510000;COD303610000;COD303710000;COD303810000;COD303910000;COD303920000;COD313010000;COD313110000;COD313210000;COD313310000;COD313410000;COD313420000;COD313430000;COD313510000;COD313610000;COD313710000;COD313810000;COD313910000;COD313920000;COD323010000;COD323110000;COD323210000;COD323310000;COD323410000;COD323420000;COD323430000;COD323510000;COD323610000;COD323710000;COD323810000;COD323910000;COD323920000;COD333010000;COD333110000;COD333210000;COD333310000;COD333410000;COD333420000;COD333430000;COD333510000;COD333610000;COD333710000;COD333810000;COD333910000;COD333920000;COD343110000;COD343210000;COD343310000;COD343410000;COD343420000;COD343430000;COD343510000;COD343610000;COD343710000;COD343720000;COD343810000;COD343910000;COD343920000;COD400010000;COD400110000;COD400210000;COD400310000;COD400410000;COD400420000;COD400430000;COD400510000;COD400610000;COD400710000;COD400810000;COD400820000;COD400910000;COD400920000;COD401210000;COD401310000;COD401410000;COD401420000;COD401510000;COD401610000;COD401620000;COD401630000;COD401710000;COD401810000;COD401910000;COD402010000;COD402110000;COD402210000;COD403010000;COD403110000;COD403120000;COD403210000;COD403310000;COD403410000;COD403420000;COD403430000;COD403440000;COD403510000;COD403610000;COD403620000;COD403710000;COD403810000;COD403820000;COD403910000;COD403920000;COD403930000;COD404010000;COD404110000;COD404210000;COD404310000;COD404410000;COD404420000;COD404430000;COD404510000;COD404610000;COD404710000;COD404810000;COD404910000;COD404920000;COG200110000;COH130045000;COH150000000;COH150010000;COH150020000;COH150030000;COH150040000;COH170044000;COH180030000;COH180050000;COH410000000;COH420110000;COH900100000;COI100110000;COI110110000;COI120110000;COI140110000;COI310010000;COI320010000;COI330010000;COI340010000;COR120110000;COR291010000;COR292010000;COR293010000;COR300010000;COX002310000;COX002410000;COX003010000;COX003100000;COX004010000;COX006010000;COX006020000;COX006110000;COX006120000;COX006210000;COX006220000;COX007010000;COX008010000;COX009010000;COX010010000;COX011010000;CQQ130000000;CQQ310000000;CQQ410000000;CRB400025000;CRB400030000;CRB400035000;CRB400040000;CRB500025000;CRB500030000;CRB500035000;CRB500040000;CRC300000000;AAA161300000;AAA162300000;AAA170100000;AAA170200000;AAA280610000;AAA280620000;AAA310210000;AAA310220000;AAA310230000;AAA310240000;AAA310250000;AAA310260000;AAA310270000;AAA310310000;AAA310320000;AAA310330000;AAA310340000;AAA310350000;AAA310360000;AAA310370000;AAA310411000;AAA310412000;AAA310413000;AAA310441000;AAA310442000;AAA310443000;AAA310451000;AAA310452000;AAA310453000;AAA310510000;AAA310520000;AAA310530000;AAA310540000;AAA310550000;AAA310560000;AAA310570000;AAA322110000;AAA322111000;AAA322121000;AAA322210000;AAA322310000;AAA323110000;AAA323120000;AAA323130000;AAB210300000;AAB210400000;AAB215110000;AAB215120000;AAB215130000;AAB215140000;AAB215210000;AAB215220000;AAB215230000;AAB215240000;AAB215310000;AAB215320000;AAB215330000;AAB215340000;AAB220300000;AAB220400000;AAC110100000;AAC110200000;AAC110300000;AAC210100000;AAC210200000;AAC210300000;AAD160200000;AAD160400000;AAD240410000;AAD240420000;AAD240430000;AAD420120000;AAD420310000;ADA101610000;ADA102620000;ADA103630000;ADA201310000;ADA202320000;ADA203330000;ADA300600000;ADA300800000;ADA301210000;ADA302220000;ADA303230000;ADA401810000;ADA402820000;ADA403010000;ADA403830000;ADA404010000;ADA404020000;ADA404030000;ADB000200000;ADB000210000;ADB000220000;ADB000220200;ADB000222000;ADB000310000;ADB000320000;ADB000320200;ADB000322000;ADF000100000;ADF102100000;ADF102110000;ADF102120000;ADF102200000;ADF102210000;ADF102220000;ADF102700000;ADF102800000;ADF202100000;ADF202110000;ADF202120000;ADF202130000;ADF202200000;ADF202210000;ADF202220000;ADF202800000;ADR120100000;ADR130100000;ADR130400000;AEB001006000;AEB002005000;AEB003010000;AEB004012000;AEB011001200;AEB012002000;AEC120111000;AEC120112000;AEC120211000;AEC120212000;AEE000504000;AEE000505000;AEE000506000;AEE000507000;AEE100002000;AEE100003000;AEE100005000;AEE100007000;AEE100009000;AEE100011000;AEE121340000;AEE122320000;AFA111210000;AFA111220000;AFA111230000;AFA111240000;AFA111250000;AFA111260000;AFA111270000;AFA111280000;AFA111290000;AFA112210000;AFA112220000;AFA112230000;AFA112240000;AFA112250000;AFA112260000;AFA112270000;AFA112280000;AFA112290000;AFA113210000;AFA113220000;AFA113230000;AFA113240000;AFA113250000;AFA113260000;AFA113270000;AFA113280000;AFA113290000;AFA121110000;AFA121120000;AFA121130000;AFA121140000;AFA121210000;AFA121220000;AFA121230000;AFA121240000;AFA123130000;AFA123140000;AFA123230000;AFA123240000;AFA310118000;AFA310119000;AFA310120000;AFA310121000;AFA310122000;AFA310123000;AFB111100000;AFB111200000;AFB112100000;AFB112200000;AFB113100000;AFB113200000;AFB121100000;AFB121200000;AFB122100000;AFB122200000;AFB123100000;AFB123200000;AFR110010100;AFR110010200;AFR110015150;AFR110015200;AFR110020100;AFR110020150;AFR110020200;AFR110026100;AFR110026200;AFR110026260;AFR110036200;AFR110036360;AFR400010100;AFR400010200;AFR400010250;AFR400010300;AFR400015100;AFR400015200;AFR400015250;AFR400015300;AFR400020100;AFR400020200;AFR400020250;AFR400020300;AGA100010000;AGA100030000;AGA111110000;AGA113000000;AGA113100000;AGA122520000;AGA123000000;AGA124310000;AGA134110000;AGA134120000;AGA134130000;AGA153310000;AGA211000000;AGA212000000;AGA221000000;AGF212010000;AGF212040000;AGG301000000;AGG302000000;AGH110100000;AGH120100000;AGJ001100000;AGJ001200000;AGJ001310000;AGJ004400000;AGJ005210000;AHA200110000;AHA200120000;AHA900200000;AHB100200000;AHB100300000;AHB200200000;AHC100100000;AHC200100000;AHC900100000;AHF131100000;AHF211100000;AHF211200000;AHF211300000;AHF211310000;AHF211320000;AHF212100000;AHF212200000;AHF241100000;AHF241200000;AHF241400000;AHF242100000;AHF242220000;AHF242310000;AHF242320000;AHF242340000;AHF242500000;AHF242600000;AHF400200000;AHF400300000;AHG012500000;AHG013000000;AHG013400000;AHG014000000;AHG014200000;AHG015000000;AHG015100000;AHG022010000;AHG022020000;AHG030100000;AHG030200000;AHG112300000;AHG112500000;AHG113000000;AHG113100000;AHG114000000;AHG114200000;AHG115000000;AHG115100000;AHG200300000;AHI000200000;AHI000300000;AHJ111100000;AHJ111200000;AHJ111300000;AHJ112100000;AHJ112200000;AHJ112300000;AHJ112400000;AHJ500011000;AHJ500021000;AHK110100000;AHK110220000;AHK110230000;AHK110520000;AHK210210000;AHK210220000;AHS010100000;AHS010200000;AHS020100000;AHS020200000;AIA300000000;AIA400000000;AIB100200000;AIB101110000;AIB101830000;AIB310102500;AIB310103000;AIB310103600;AIB310105000;AIB310207000;AIB401000000;AIB402000000;AIB402310000;AIB402320000;AIB402410000;AIB402420000;AJG330050200;AJG330050210;AJG410100000;AJG410200000;AJI110010000;AJI120010000;AJI600100000;AJI600200000;AKA510100000;AKA510200000;AKA510300000;AKA530100000;AKB100400000;AKB110110000;AKB110120000;AKB110130000;AKB110200000;AKB110210000;AKB110220000;AKB110230000;AKB110300000;AKB110400000;AKB140210000;AKB140220000;AKB140230000;AKB140350000;AKB430000000;AKC110100000;AKC110200000;AKC120010000;AKC120020000;AKC120030000;AKC220010000;AKC220030000;AKC220050000;AKC420210000;AKC420220000;AKC420230000;ALF131010000;ALF131020000;ALF161100000;ALF162100000;ALF210100000;ALG111020000;ALG113010000;ALG113020000;ALG114010000;ALG123000000;ALG126000000;ALG128001000;ALG128001200;ALG211010000;ALG213010000;ALG411010000;ALG413010000;ALG611000000;ALG613000000;ALH003200000;ALH111000000;ALH112000000;ALH114002200;ALH114002400;ALH115000000;ALH211000000;ALH212000000;ALH412001600;ALH414002200;ALH611000000;ALH612000000;AMA112140000;AMA112160000;AMA112161000;AMA112162000;AMA112210000;AMA112211000;AMA112220000;AMA112240000;AMA112241000;AMA112260000;AMA190110000;AMA190111000;AMA190120000;AMA190130000;AMA190140000;AMA300002000;AMA300003000;AMA300103040;AMA300103050;AMA300103060;AMA300104050;AMA300104060;AMA300113040;AMA300113050;AMA300113060;AMA300114050;AMA300114060;AMA311220000;AMA312310000;AMA312330000;AMA312410000;AMA312701000;AMA312702000;AMA312705000;AMA312801000;AMA312820000;AMA312840000;AMA313210000;AMA313801000;AMA313802000;AMA314210000;AMA314410000;AMA314420000;AMA314425000;AMA314430000;AMA314440000;AMB311110000;AMB311120000;AMB311130000;AMB313210000;AMB313240000;AMB313250000;AMB321110000;AMB321120000;AMB321130000;ANA014121000;ANA014122000;ANA014123000;ANA015121000;ANA015122000;ANA015311000;ANA015312000;ANB112202000;ANB112203000;ANB113202000;ANB113203000;ANB115312000;ANB122202000;ANB122203000;ANB123202000;ANB123203000;ANC132212000;ANC132213000;ANC132232000;ANC132233000;ANC133212000;ANC133213000;ANC139212000;ANC139213000;ANC236002000;ANF020001000;ANF020002000;ANF020003000;ANI000011030;ANI000012030;ANI000013030;ANJ001030000;ANJ001040000;ANM000001000;ANM000002000;ANO032002000;ANQ000011020;ANQ000013020;ANQ000021020;ANQ000023020;AOA231000000;AOA242000000;AOA301100000;AOA301200000;AOA301300000;AOB111000000;AOB113000000;AOB118000000;AOB121000000;AOB123000000;AOB123300000;AOB128000000;AOB132000000;AOB133000000;AOB141000000;AOB142000000;AOB143000000;AOB143300000;AOB148000000;AOB148010000;AOC311001000;AOC311002000;AOC311011000;AOC311012000;AOC311101000;AOC311102000;AOC312001000;AOC312002000;AOC312011000;AOC312012000;AOC312101000;AOC312102000;AOC313001000;AOC313002000;AOC313011000;AOC313012000;AOC313101000;AOC313102000;AOC321001000;AOC321002000;AOC321011000;AOC321012000;AOC321101000;AOC321102000;AOC322001000;AOC322002000;AOC322011000;AOC322012000;AOC322101000;AOC322102000;AOC323001000;AOC323002000;AOC323011000;AOC323012000;AOC323101000;AOC323102000;AOD111342000;AOD111345000;AOD111346000;AOD111348000;AOD112114000;AOD121341000;AOD121342000;AOD121343000;AOD121345000;AOD122312000;AOD122313000;AOD122315000;AOD131021000;AOD131022000;AOD131023000;AOD131024000;AOD131025000;AOD131026000;AOD131041000;AOD131042000;AOD131043000;AOD131428000;AOD131441000;AOD131444000;AOD131446000;AOD131447000;AOD131448000;AOD132031000;AOD132032000;AOD132455000;AOD132456000;AOD132457500;AOD132459000;AOD211021000;AOD211022000;AOD211023000;AOG130001000;AOG130002000;AOG130003000;AOG130003500;AOG430010000;AOG430020000;AOG430030000;AOH500100000;AOH500200000;AOH500300000;AOH500400000;AOH500500000;AOH500600000;AOH500700000;AOH500800000;AOI500120000;AOI500130000;AOI500201000;AOI500202000;AOI500210000;AOI500230000;AOI500250000;AOI600200000;AOI600300000;AOI701100000;AOI701200000;AOI701300000;AOI701400000;AOI702100000;AOI702200000;AOI702300000;AOJ110210000;AOJ110220000;AOJ411005000;AOJ412005000;AOJ421005000;AOJ421010000;AOJ422007500;AOK300100000;AOK300200000;AOK411500400;AOK411601200;AOK411601500;AOK412500400;AOK412601200;AOK412601500;AOL100100000;AOL100200000;AOL100300000;AOM101010000;AOM201010000;APC223301000;APC223302000;MBA214000000;MBA224000000;MBA234000000;MBA251000000;MBA254000000;MBA261000000;MBA264000000;MBA271000000;MBA274000000;MBA281000000;MBA284000000;MBB211000000;MBB214000000;MBB221000000;MBB231000000;MBB234000000;MBC211000000;MBC214000000;MBC221000000;MBC224000000;MBC231000000;MBC234000000;MBC241000000;MBC251000000;MBC254000000;MBC261000000;MBC264000000;MBC271000000;MBC274000000;MBC281000000;MBC284000000;MBC311000000;MBC315000000;MBC321000000;MBC325000000;MBC331000000;MBC335000000;MBC341000000;MBC345000000;MBC351000000;MBC355000000;MBC361000000;MBC365000000;MBC371000000;MBC381000000;MBD211000000;MBD213000000;MBD214000000;MBD223000000;MBD224000000;MBD233100000;MBD234000000;MBD243000000;MBD244000000;MBD254000000;MBD263000000;MBD273000000;MBD283000000;MBI241250000;MBI251250000;MBI261250000;MBI281250000;MBJ211250000;MBP110001500;MBP120002000;MBP130002500;MBP140003200;MBP150004000;MBP160005000;MBP170006500;MBP180008000;MBP310360000;MBP310370000;MBP320360000;MBP320370000;MBP330370000;MBP340370000;MBP350370000;MBP360370000;MBP370370000;MBP380370000;MBQ110010000;MBQ120012500;MBQ130015000;MBQ140020000;MBQ310370000;MBQ320370000;MBQ330370000;MBQ340370000;MDA117300000;MDA127300000;MDA137300000;MDA237300000;MDA247300000;MDA257300000;MDA267300000;MDA277300000;MDA287300000;MDA317300000;MDA327300000;MDA337300000;MDA511500000;MDA517100000;MDA517500000;MDA521500000;MDA527100000;MDA527500000;MDA531500000;MDA537100000;MDA537500000;MDA541500000;MDA547100000;MDA547500000;MDA551500000;MDA557100000;MDA557500000;MDA561500000;MDA567100000;MDA567500000;MDA571500000;MDA577100000;MDA577500000;MDA581500000;MDA587100000;MDA587500000;MDA661500000;MDA671500000;MDA681500000;MDA711500000;MDA717100000;MDA721500000;MDA727100000;MDA731500000;MDA737100000;MDA741500000;MDA747100000;MDA751500000;MDA757100000;MDA761500000;MDA767100000;MDA777500000;MDA781500000;MDA787500000;MDB511500000;MDB517100000;MDB517500000;MDB521500000;MDB527500000;MDB537500000;MDB547500000;MDB711500000;MDB717500000;MDB721500000;MDB727500000;MDB737500000;MDC151110000;MDC151150000;MDC161110000;MDC161150000;MDC171110000;MDC171150000;MDC181110000;MDC181150000;MDC221270000;MDC231270000;MDC241270000;MDC251270000;MDC361150000;MDC361270000;MDC371150000;MDC371270000;MDC381150000;MDC381270000;MDD111110000;MDD111150000;MDD311150000;MDD311270000;MDD321150000;MDD321270000;MDD331150000;MDD331270000;MDD341270000;MDD611500000;MDD617500000;MDD627500000;MDD637500000;MDD647500000;MDG101002000;MDG101004000;MDG101010000;MDG101020000;MDG101030000;MDG101040000;MDG101050000;MDG101060000;MDG101070000;MDG101080000;MDG101200000;MDG101300000;MDG101400000;MDG101500000;MDG101600000;MDG101700000;MDG101800000;MFA112100000;MFA121100000;MFA122100000;MFA131100000;MFA132100000;MFA142100000;MFA152100000;MFA162100000;MFA172300000;MFA182300000;MFA282300000;MFA312200000;MFA322200000;MFA332200000;MFA342200000;MFA352200000;MFA362200000;MFA422300000;MFA432300000;MFA542100000;MFA542310000;MFA552100000;MFA552310000;MFA562100000;MFA652342200;MFA682342200;MFA712200000;MFA722200000;MFA732200000;MFA742200000;MFA752200000;MFA762200000;MFA822100000;MFA832100000;MFA842100000;MFA852100000;MFA862100000;MFA862300000;MFA872300000;MFA882300000;MFB112300000;MFB122300000;MFB212300000;MFB512310000;MFB513310000;MFB532310000;MFB533310000;MFB612342200;MFB622342200;MFB632342200;MFB812300000;MFC112003100;MFC122003200;MFC132003200;MFC142003200;MFC152003200;MFC320000000;MFC330000000;MFC340000000;MFC350000000;MFC360000000;MFE211100000;MFE221100000;MFE312100000;MFE822300000;MFE832300000;MFH151220000;MFH161220000;MFH171220000;MFH181220000;MFH221011100;MFH231011100;MFH231012100;MFH241011100;MFH241012100;MFH251011100;MFH251012100;MFH261012100;MFI111220000;MFI121220000;MFI131220000;MFI141220000;MGA411110000;MGA411201000;MGA412110000;MGA412200000;MGA422110000;MGA431110000;MGA441120000;MGC110100000;MGC110200000;MII700200100;MII700220200;MII700220210;MII700300100;MII700320200;MII700320210;MII700330200;MII700330210;MII700400100;MII700420200;MII700420210;MII700430200;MII700430210;MII700440200;MII700440210;MII700500100;MII700520200;MII700520210;MII700530200;MII700530210;MII700540200;MII700540210;MII700550200;MII700550210;MII700600100;MII700630200;MII700630210;MII700640200;MII700640210;MII700650200;MII700650210;MII700660200;MII700660210;MII701110000;MII701110100;MII701210000;MII701210100;MII701310000;MII701310100;MII702100000;MII702200000;MII702300000;MII702400000;MII702500000;MII702600000;MII702700000;MII702800000;MII801110100;MII801210100;MII802110000;MII802210000;MJE110005000;MJE110010000;MJE110015000;MJE110025000;MJE120005000;MJE120010000;MJE120015000;MJE120025000;MKC130000000;MKC620000000;MKF010000000;MKF020000000;MKI111000000;MKI112000000;MKI113000000;MKI131000000;MKI132000000;MKI171000000;MKI172000000;MKJ401100000;MKJ402100000;MKO100110000;MKO100210000;MKO100310000;MKO100410000;MKO100510000;MKO100610000;MKO100710000;MKO100810000;EEB113310030;EEB113410030;EEB113510030;EEB123110030;EEB123210030;EEB212520030;EEB222120030;EEB912000030;EGG512300030;EGG512400030;EGG512500030;EGG512600030;EGG512700030;EGG512800030;EGG513300030;EGG513400030;EGG700000030;EGJ330000030;EIE102000030;EIE104000030;EIE311000030;EIE431000030;EIE453000030;EIE463110030;EIE463120030;EIE463220030;EIE600000030;EKA121400030;EKA131400030;EKA141400030;EKA151400030;EKA161400030;EKA171400030;EKA181400030;EKA222100030;EKA222200030;EKA232100030;EKA232200030;EKA242100030;EKA242200030;EKA252200030;EKA262200030;EKA272200030;EKA282200030;EKA321400030;EKA324400030;EKA325400030;EKA334400030;EKA335400030;EKA341400030;EKA344400030;EKA351400030;EKA354400030;EKA361400030;EKA364400030;EKA371400030;EKA374400030;EKA384400030;EKA424100030;EKA434100030;EKA444100030;EKB111400030;EKB131400030;EKB212200030;EKD131000030;EKD141000030;EKD151000030;EKD161010030;EKD161020030;EKD171020030;EKD171040030;EKE312000030;EKG111010030;EKG111020030;EKG111040030;EKG111050030;EKG111060030;EKG111070030;EKG111080030;EKG111090030;EKG1110J0030;EKG211210030;EKG211220030;EKG211230030;EKG211240030;EKG211250030;EKG211260030;EKG211270030;EKG211280030;EKG2112A0030;EKG2112B0030;EKG2112C0030;EKG2112D0030;EKG2112E0030;EKG2112F0030;EKG2112G0030;EKG2112H0030;EKG2112I0030;EKG2112J0030;EKG2112K0030;EKK112160030;EKK112260030;EKK122140030;EKK122240030;EKK132210030;EKK162100030;EKK162200030;EKK222120030;EKK222210030;EKK222220030;EKK222320030;EKK232110030;EKK232120030;EKK232180030;EKK232310030;EKK232320030;EKK232380030;EKK232390030;EKK322000030;EKK332000030;EKK332020030;EKK332080030;EKK332090030;EKK342000030;EKK411000030;EKK421000030;EKK431000030;EKK510000030;EKK612110030;EKK612120030;EKK612130030;EKK622110030;EKK622120030;EKK622130030;EKK622140030;EKK622220030;EKK622230030;EKK622240030;EKL112010030;EKL112020030;EKL112030030;EKL122010030;EKL122020030;EKL122030030;EKL122040030;EKL122050030;EKL122200030;EKL122300030;EKL122400030;EKL132010030;EKL142010030;EKL142020030;EKL142030030;EKL142040030;EKL142050030;EKL142060030;EKL142070030;EKL142080030;EKL142090030;EKL152010030;EKL152030030;EKL152050030;EKL152060030;EKL152070030;EKL152090030;EKL162010030;EKL162050030;EKL162060030;EKL162070030;EKL172020030;EKL172060030;EKL172070030;EKL172090030;EKL182010030;EKL182020030;EKN122000030;EKO211000030;EKO212000030;EKO221000030;EKO222000030;EKO231000030;EKO232000030;EKO241000030;EKO242000030;EKO251000030;EKO252000030;EKO261000030;EKO262000030;EKO271000030;EKO272000030;EKO311000030;EKO400010030;EKO400020030;EKO400030030;EKO400040030;EKO400050030;EKO400060030;EKO400070030;EKO400080030;EKO400090030;EKO610000030;EKO620000030;ELD274110030;ELD574110030;ELD611110030;ELD611120030;ELD611130030;ELD611140030;ELD621140030;ELD631140030;ELD641140030;ELD651140030;ELD661110030;ELD671110030;ELD681110030;ELE611110030;ELE621110030;ELE631110030;ELE641110030;ELG622100030;ELG712100030;ELG713100030;ELG714100030;ELG716100030;ELG719110030;ELG719140030;ELG723100030;ELG724100030;ELG726100030;ELG811100030;ELG813100030;ELG814100030;ELG821100030;ELG822100030;ELG823100030;ELG824100030;ELG831100030;ELG832100030;ELG833100030;ELG834100030;ELG841100030;ELG842100030;ELG843100030;ELG844100030;ELG852100030;ELG853100030;ELG854100030;ELG861100030;ELG862100030;ELG863100030;ELG864100030;ELG871100030;ELG872100030;ELG873100030;ELG874100030;ELH811100030;ELH813100030;ELH814100030;ELH821100030;ELH831100030;ELH841100030;ELH851100030;ELH861100030;ELH871100030;ELI811100030;ELI821100030;ELJ123000030;ELJ126000030;ELK421100030;ELK431000030;ELK432000030;ELK433000030;ELK434000030;ELK435000030;ELK436000030;ELK437000030;ELK438020030;ELK438030030;ELK438040030;ELK438050030;ELK438060030;ELK438070030;ELK441000030;ELK442000030;ELK443000030;ELK445000030;ELK446000030;ELK447000030;ELK448020030;ELK448030030;ELK448040030;ELK448050030;ELK448060030;ELK451000030;ELK453000030;ELK454000030;ELK455000030;ELK457000030;ELK458020030;ELK458030030;ELK458040030;ELK461000030;ELK463000030;ELK471000030;ELK473000030;ELK483000030;ELK493000030;ELL413000030;ELL421000030;ELL423000030;ELL430000030;ELL440000030;ELL450000030;ELL460000030;ELL470000030;ELO254210030;ELO554110030;ELR112400030;ELR113400030;ELR114400030;ELR121400030;ELR122400030;ELR123400030;ELR124400030;ELR131400030;ELR132400030;ELR133400030;ELR134400030;ELR141400030;ELR143400030;ELR144400030;ELR151400030;ELR161400030;ELR171400030;ELR181400030;ELR231300030;ELR241300030;ELR261300030;ELR271300030;ELR331300030;ELR341300030;ELR361300030;ELR371300030;ELS111400030;ELS121400030;ELS131400030;ELS221300030;ELS231300030;ELS241400030;ELS251300030;ELS271300030;ELS321300030;EME114400030;EME114600030;EME115400030;EME115500030;EME115600030;EME124200030;EME124300030;EME134100030;EME134200030;EME140100030;EME142100030;EME142200030;EME142300030;EME152200030;EME154100030;EME161100030;EME162100030;EMJ022100030;EMJ140000030;EMJ150000030;EMJ322100030;EMJ322200030;EMK111100030;EMK111400030;EMK112100030;EMK112400030;EMK113100030;EMK113400030;EMK114100030;EMK115100030;EMK116100030;EMK131100030;EMK132100030;EMK132400030;EMK133100030;EMK134100030;EMK710100030;EMK730100030;EMK810100030;EMK912100030;EMK915100030;EMK916100030;EML150100030;EML160100030;EML160300030;EML170120030;EML170130030;EML202000030;EMM112100030;EMM112400030;EMM114100030;EMM114400030;EMM116100030;EMM132100030;EMM134100030;EMM212100030;EMM214100030;EMM314100030;EMM714100030;EMM815000030;EMP211000030;EMP800100030;EMP800200030;ENA111000030;ENA112000030;ENA212000030;ENB111000030;END212000030;END222000030;END232000030;END242000030;END252000030;END262000030;END272000030;END282000030;ENE112000030;ENE122000030;ENE212000030;ENE222000030;ENE322000030;ENE332000030;ENE422000030;ENE432000030;ENE562000030;ENF221000030;ENF231010030;ENF231020030;ENG211000030;ENH112010030;ENH112020030;ENH122110030;ENH122120030;ENH122210030;ENH212110030;ENH212120030;ENH212310030;ENH221010030;ENH222110030;ENH222120030;ENH222310030;ENI112000030;ENI122000030;ENL110000030;ENL120000030;ENL310000030;ENO110000030;ENO122000030;ENO123000030;ENO126000030;ENO127010030;ENP120000030;ENP310000030;ENP600000030;ENS180400030;EOA111400030;EOB210040030;EOB211040030;EOB212040030;EOB214040030;EOB215040030;EOB218240030;EOB313040030;EOB318240030;EOB318340030;EOC144400030;EOC145400030;EOC154400030;EOC155400030;EOC164400030;EOC165400030;EOC315400030;EOC315410030;EOC315420030;EOC315490030;EOC316420030;EOC325400030;EOC335400030;EOC345400030;EOC355400030;EOC365400030;EOC375400030;EOC385430030;EOC445440030;EOC455440030;EOC465420030;ERO580000030;ERO620000030;ERP520000030;ERP540000030;ESF320020030;ESF320050030;ESF620010030;ESF620030030;", + "[Area_List]", + "AREA_11 = |", + "; 11110|", + "; 11140|", + "; 11170|", + "; 11200|", + "; 11215|", + "; 11230|", + "; 11260|", + "; 11290|", + "; 11305|", + "; 11320|", + "; 11350|", + "; 11380|", + "; 11410|", + "; 11440|", + "; 11470|", + "; 11500|", + "; 11530|", + "; 11545|", + "; 11560|", + "; 11590|", + "; 11620|", + "; 11650|", + "; 11680|", + "; 11710|", + "; 11740|", + "AREA_26 = |", + "; 26110|", + "; 26140|", + "; 26170|", + "; 26200|", + "; 26230|", + "; 26260|", + "; 26290|", + "; 26320|", + "; 26350|", + "; 26380|", + "; 26410|", + "; 26440|", + "; 26470|", + "; 26500|", + "; 26530|", + "; 26710|", + "AREA_27 = |", + "; 27110|", + "; 27140|", + "; 27170|", + "; 27200|", + "; 27230|", + "; 27260|", + "; 27290|", + "; 27710|", + "AREA_28 = |", + "; 28110|", + "; 28140|", + "; 28170|", + "; 28177|", + "; 28185|", + "; 28200|", + "; 28237|", + "; 28245|", + "; 28260|", + "; 28710|", + "; 28720|", + "AREA_29 = |", + "; 29110|", + "; 29140|", + "; 29155|", + "; 29170|", + "; 29200|", + "AREA_30 = |", + "; 30110|", + "; 30140|", + "; 30170|", + "; 30200|", + "; 30230|", + "AREA_31 = |", + "; 31110|", + "; 31140|", + "; 31170|", + "; 31200|", + "; 31710|", + "AREA_36 = |", + "; 36000|", + "AREA_41 = |", + "; 41111|", + "; 41113|", + "; 41115|", + "; 41117|", + "; 41131|", + "; 41133|", + "; 41135|", + "; 41150|", + "; 41171|", + "; 41173|", + "; 41195|", + "; 41197|", + "; 41199|", + "; 41210|", + "; 41220|", + "; 41250|", + "; 41271|", + "; 41273|", + "; 41281|", + "; 41285|", + "; 41287|", + "; 41290|", + "; 41310|", + "; 41360|", + "; 41370|", + "; 41390|", + "; 41410|", + "; 41430|", + "; 41450|", + "; 41461|", + "; 41463|", + "; 41465|", + "; 41480|", + "; 41500|", + "; 41550|", + "; 41570|", + "; 41590|", + "; 41610|", + "; 41630|", + "; 41650|", + "; 41670|", + "; 41800|", + "; 41820|", + "; 41830|", + "AREA_43 = |", + "; 43111|", + "; 43112|", + "; 43113|", + "; 43114|", + "; 43130|", + "; 43150|", + "; 43720|", + "; 43730|", + "; 43740|", + "; 43745|", + "; 43750|", + "; 43760|", + "; 43770|", + "; 43800|", + "AREA_44 = |", + "; 44131|", + "; 44133|", + "; 44150|", + "; 44180|", + "; 44200|", + "; 44210|", + "; 44230|", + "; 44250|", + "; 44270|", + "; 44710|", + "; 44730|", + "; 44760|", + "; 44770|", + "; 44790|", + "; 44800|", + "; 44810|", + "; 44825|", + "AREA_46 = |", + "; 46110|", + "; 46130|", + "; 46150|", + "; 46170|", + "; 46230|", + "; 46710|", + "; 46720|", + "; 46730|", + "; 46770|", + "; 46780|", + "; 46790|", + "; 46800|", + "; 46810|", + "; 46820|", + "; 46830|", + "; 46840|", + "; 46860|", + "; 46870|", + "; 46880|", + "; 46890|", + "; 46900|", + "; 46910|", + "AREA_47 = |", + "; 47111|", + "; 47113|", + "; 47130|", + "; 47150|", + "; 47170|", + "; 47190|", + "; 47210|", + "; 47230|", + "; 47250|", + "; 47280|", + "; 47290|", + "; 47720|", + "; 47730|", + "; 47750|", + "; 47760|", + "; 47770|", + "; 47820|", + "; 47830|", + "; 47840|", + "; 47850|", + "; 47900|", + "; 47920|", + "; 47930|", + "; 47940|", + "AREA_48 = |", + "; 48121|", + "; 48123|", + "; 48125|", + "; 48127|", + "; 48129|", + "; 48170|", + "; 48220|", + "; 48240|", + "; 48250|", + "; 48270|", + "; 48310|", + "; 48330|", + "; 48720|", + "; 48730|", + "; 48740|", + "; 48820|", + "; 48840|", + "; 48850|", + "; 48860|", + "; 48870|", + "; 48880|", + "; 48890|", + "AREA_50 = |", + "; 50000|", + "; 50110|", + "; 50130|", + "AREA_51 = |", + "; 51110|", + "; 51130|", + "; 51150|", + "; 51170|", + "; 51190|", + "; 51210|", + "; 51230|", + "; 51720|", + "; 51730|", + "; 51750|", + "; 51760|", + "; 51770|", + "; 51780|", + "; 51790|", + "; 51800|", + "; 51810|", + "; 51820|", + "; 51830|", + "AREA_52 = |", + "; 52111|", + "; 52113|", + "; 52130|", + "; 52140|", + "; 52180|", + "; 52190|", + "; 52210|", + "; 52710|", + "; 52720|", + "; 52730|", + "; 52740|", + "; 52750|", + "; 52770|", + "; 52790|", + "; 52800|", + "AREA_99 = |", + "; 99000|", + "AREA_11 = |종로구; 11110|중구; 11140|용산구; 11170|성동구; 11200|광진구; 11215|동대문구; 11230|중랑구; 11260|성북구; 11290|강북구; 11305|도봉구; 11320|노원구; 11350|은평구; 11380|서대문구; 11410|마포구; 11440|양천구; 11470|강서구; 11500|구로구; 11530|금천구; 11545|영등포구; 11560|동작구; 11590|관악구; 11620|서초구; 11650|강남구; 11680|송파구; 11710|강동구; 11740|", + "AREA_26 = |중구; 26110|서구; 26140|동구; 26170|영도구; 26200|부산진구; 26230|동래구; 26260|남구; 26290|북구; 26320|해운대구; 26350|사하구; 26380|금정구; 26410|강서구; 26440|연제구; 26470|수영구; 26500|사상구; 26530|기장군; 26710|", + "AREA_27 = |중구; 27110|동구; 27140|서구; 27170|남구; 27200|북구; 27230|수성구; 27260|달서구; 27290|달성군; 27710|", + "AREA_28 = |중구; 28110|동구; 28140|남구; 28170|미추홀구; 28177|연수구; 28185|남동구; 28200|부평구; 28237|계양구; 28245|서구; 28260|강화군; 28710|옹진군; 28720|", + "AREA_29 = |동구; 29110|서구; 29140|남구; 29155|북구; 29170|광산구; 29200|", + "AREA_30 = |동구; 30110|중구; 30140|서구; 30170|유성구; 30200|대덕구; 30230|", + "AREA_31 = |중구; 31110|남구; 31140|동구; 31170|북구; 31200|울주군; 31710|", + "AREA_36 = |세종특별자치시; 36000|", + "AREA_41 = |수원시 장안구; 41111|수원시 권선구; 41113|수원시 팔달구; 41115|수원시 영통구; 41117|성남시 수정구; 41131|성남시 중원구; 41133|성남시 분당구; 41135|의정부시; 41150|안양시 만안구; 41171|안양시 동안구; 41173|부천시 원미구; 41195|부천시 소사구; 41197|부천시 오정구; 41199|광명시; 41210|평택시; 41220|동두천시; 41250|안산시 상록구; 41271|안산시 단원구; 41273|고양시 덕양구; 41281|고양시 일산동구; 41285|고양시 일산서구; 41287|과천시; 41290|구리시; 41310|남양주시; 41360|오산시; 41370|시흥시; 41390|군포시; 41410|의왕시; 41430|하남시; 41450|용인시 처인구; 41461|용인시 기흥구; 41463|용인시 수지구; 41465|파주시; 41480|이천시; 41500|안성시; 41550|김포시; 41570|화성시; 41590|광주시; 41610|양주시; 41630|포천시; 41650|여주시; 41670|연천군; 41800|가평군; 41820|양평군; 41830|", + "AREA_43 = |청주시 상당구; 43111|청주시 서원구; 43112|청주시 흥덕구; 43113|청주시 청원구; 43114|충주시; 43130|제천시; 43150|보은군; 43720|옥천군; 43730|영동군; 43740|증평군; 43745|진천군; 43750|괴산군; 43760|음성군; 43770|단양군; 43800|", + "AREA_44 = |천안시 동남구; 44131|천안시 서북구; 44133|공주시; 44150|보령시; 44180|아산시; 44200|서산시; 44210|논산시; 44230|계룡시; 44250|당진시; 44270|금산군; 44710|연기군; 44730|부여군; 44760|서천군; 44770|청양군; 44790|홍성군; 44800|예산군; 44810|태안군; 44825|", + "AREA_46 = |목포시; 46110|여수시; 46130|순천시; 46150|나주시; 46170|광양시; 46230|담양군; 46710|곡성군; 46720|구례군; 46730|고흥군; 46770|보성군; 46780|화순군; 46790|장흥군; 46800|강진군; 46810|해남군; 46820|영암군; 46830|무안군; 46840|함평군; 46860|영광군; 46870|장성군; 46880|완도군; 46890|진도군; 46900|신안군; 46910|", + "AREA_47 = |포항시 남구; 47111|포항시 북구; 47113|경주시; 47130|김천시; 47150|안동시; 47170|구미시; 47190|영주시; 47210|영천시; 47230|상주시; 47250|문경시; 47280|경산시; 47290|군위군; 47720|의성군; 47730|청송군; 47750|영양군; 47760|영덕군; 47770|청도군; 47820|고령군; 47830|성주군; 47840|칠곡군; 47850|예천군; 47900|봉화군; 47920|울진군; 47930|울릉군; 47940|", + "AREA_48 = |창원시 의창구; 48121|창원시 성산구; 48123|창원시 마산합포구; 48125|창원시 마산회원구; 48127|창원시 진해구; 48129|진주시; 48170|통영시; 48220|사천시; 48240|김해시; 48250|밀양시; 48270|거제시; 48310|양산시; 48330|의령군; 48720|함안군; 48730|창녕군; 48740|고성군; 48820|남해군; 48840|하동군; 48850|산청군; 48860|함양군; 48870|거창군; 48880|합천군; 48890|", + "AREA_50 = |제주특별자치도; 50000|제주시; 50110|서귀포시; 50130|", + "AREA_51 = |춘천시; 51110|원주시; 51130|강릉시; 51150|동해시; 51170|태백시; 51190|속초시; 51210|삼척시; 51230|홍천군; 51720|횡성군; 51730|영월군; 51750|평창군; 51760|정선군; 51770|철원군; 51780|화천군; 51790|양구군; 51800|인제군; 51810|고성군; 51820|양양군; 51830|", + "AREA_52 = |전주시 완산구; 52111|전주시 덕진구; 52113|군산시; 52130|익산시; 52140|정읍시; 52180|남원시; 52190|김제시; 52210|완주군; 52710|진안군; 52720|무주군; 52730|장수군; 52740|임실군; 52750|순창군; 52770|고창군; 52790|부안군; 52800|", + "AREA_99 = |국외소재; 99000|" + ] + }, + "ST_log\\ST_log.stlog": { + "format": "obfuscated-log", + "detail": { + "bytes": 149 + }, + "strings": [ + "T*+&*-+.+.", + "*,*V", + "WOPi]pa", + "$\"?%", + "WM;Y", + "W욜맺$\"?%", + "뮨쵱촉ч", + "소뭡검겐*" + ] + }, + "ST_Merge_Code.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 457588, + "raw_off": 1024, + "raw_size": 457728 + }, + { + "name": "DATA", + "va": 462848, + "vsize": 9236, + "raw_off": 458752, + "raw_size": 9728 + }, + { + "name": "BSS", + "va": 475136, + "vsize": 72313, + "raw_off": 468480, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 548864, + "vsize": 50396, + "raw_off": 468480, + "raw_size": 50688 + }, + { + "name": ".edata", + "va": 602112, + "vsize": 80, + "raw_off": 519168, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 606208, + "vsize": 23944, + "raw_off": 519680, + "raw_size": 24064 + }, + { + "name": ".rsrc", + "va": 630784, + "vsize": 113152, + "raw_off": 543744, + "raw_size": 113152 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "designide60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "vcl60.bpl", + "vcl60.bpl", + "VclSmp60.bpl", + "vcl60.bpl", + "winmm.dll", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "RealGridEX6.bpl", + "RealGridEX6.bpl" + ], + "exports": [ + "Calc_Kanjub" + ], + "timestamp": 708992537, + "characteristics": "0x818E" + }, + "strings_total": 7181, + "domain_strings": [ + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "SYSINFO.DBF", + "COSTA.DBF", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + ".DBF", + "Act_LstEqCode", + "sBtnLstEqCodeP", + "CostNaviT", + "tb_BDQTY_X", + "tb_BDQTY", + "ds_BDQTY_X", + "ds_BDQTY", + "tb_BDQTY_Ref8", + "tb_PrjLst_MX", + "ds_PrjLst_M\\", + "tb_BOQ_Refl", + "Act_LstEqCodeExecute", + "ds_PrjLst_MDataChange", + "FormActivate", + "COSTN.NSX", + "COSTA.NSX", + "BDQTY.NSX", + "PRJLST.NSX", + "QCODE.DBF", + "COSTN.DBF", + "BDQTY.DBF", + "IFORM", + "MRG_COSTN.*", + "MRG_COSTA.*", + "MRG_BDQTY.*", + "MRG_BOQ.*", + "MRG_BOQ.DBF", + "MRG_COSTN.DBF", + "MRG_IMG.DBF", + "MRG_COSTA.DBF", + "MRG_QCODE.DBF", + "MRG_BDQTY.DBF", + "_ADD_BOQ", + "Grd_CostN", + "Grd_CostNDblClick", + "Grd_CostNDrawCell", + "Grd_CostNDrawMarker", + "Grd_CostNDrawRow", + "\"$UPPER(NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE)", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "CreateHalftonePalette", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "MROUNDUP", + "MROUNDUD", + "fsMDIForm", + "ST_PLIST.DBF", + "OnActivate", + "sBtnLstEqCode", + "CostNavi", + "ds_PrjLst_M", + "tb_BDQTY_Ref", + "DataPathAlias", + "BOQ11.DBF", + "tb_PrjLst_M", + "PRJLST.DBF", + "tb_BOQ_Ref", + "Select a Date", + "Dr. Halo images" + ] + }, + "ST_Tips.dat": { + "format": "tips-data", + "detail": { + "utf8_html": true, + "bytes": 1636 + }, + "strings": [ + " ", + ")", + ".

2003", + " 8.0", + "", + "
", + ".
", + " \"Ctrl+Z/Ctrl+Shift+Z\"", + " 1024", + "Hello and Welcome to the Tips system ! Now with links huh.", + "ZUser can add own notes/tips (\"Add tip\" SpeedButton)", + "RUser can edit tips (\"Edit tip\" SpeedButton)", + "XUser can deletete tips (\"Delete tip\" SpeedButton)", + "ZUser can change order of tips using \"Drag and Drop\"", + "_Here tips can be saved/loaded to/from stream, file or registry ", + "UHere you can specify events for each button clicking.", + "Here you can display tips using various font colors and styles within same tip...
It is done by using HTML tags in Tips Editor...
Try it out it's easy to use and yet powerful feature!" + ] + }, + "ST_U_APatch.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 103004, + "raw_off": 1024, + "raw_size": 103424 + }, + { + "name": "DATA", + "va": 110592, + "vsize": 880, + "raw_off": 104448, + "raw_size": 1024 + }, + { + "name": "BSS", + "va": 114688, + "vsize": 597, + "raw_off": 105472, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 118784, + "vsize": 22938, + "raw_off": 105472, + "raw_size": 23040 + }, + { + "name": ".reloc", + "va": 143360, + "vsize": 9388, + "raw_off": 128512, + "raw_size": 9728 + }, + { + "name": ".rsrc", + "va": 155648, + "vsize": 33792, + "raw_off": 138240, + "raw_size": 33792 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "vclx60.bpl" + ], + "exports": [], + "timestamp": 708992537, + "characteristics": "0x818E" + }, + "strings_total": 2883, + "domain_strings": [ + "AddSeparateDirs", + "hAl@", + "Please insert last disk in set", + "Please insert disk volume %.1d of %.1d", + "Please insert disk volume %.1d", + "select", + ".STBSC", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TList@Delete$qqri", + "@Controls@TWinControl@Update$qqrv" + ] + }, + "ST_V_Info.CPM": { + "format": "text", + "detail": { + "encoding": "utf-8", + "lines": 3 + }, + "strings": [ + "[V_INFO]", + "E_VER = 26.09", + "M_DAY = 2026-09-01 14:00" + ] + }, + "ST_Viewer.exe": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1116688, + "raw_off": 1024, + "raw_size": 1117184 + }, + { + "name": "DATA", + "va": 1122304, + "vsize": 11880, + "raw_off": 1118208, + "raw_size": 12288 + }, + { + "name": "BSS", + "va": 1134592, + "vsize": 4861, + "raw_off": 1130496, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 1142784, + "vsize": 11964, + "raw_off": 1130496, + "raw_size": 12288 + }, + { + "name": ".tls", + "va": 1155072, + "vsize": 16, + "raw_off": 1142784, + "raw_size": 0 + }, + { + "name": ".rdata", + "va": 1159168, + "vsize": 24, + "raw_off": 1142784, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1163264, + "vsize": 73968, + "raw_off": 1143296, + "raw_size": 74240 + }, + { + "name": ".rsrc", + "va": 1241088, + "vsize": 112128, + "raw_off": 1217536, + "raw_size": 112128 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "advapi32.dll", + "oleaut32.dll", + "kernel32.dll", + "advapi32.dll", + "kernel32.dll", + "version.dll", + "gdi32.dll", + "user32.dll", + "kernel32.dll", + "oleaut32.dll", + "ole32.dll", + "oleaut32.dll", + "comctl32.dll", + "winspool.drv", + "shell32.dll", + "comdlg32.dll", + "winmm.dll", + "HRRES32.DLL", + "kernel32.dll" + ], + "exports": [], + "timestamp": 708992537, + "characteristics": "0x818E" + }, + "strings_total": 15996, + "domain_strings": [ + "clBackground", + "fsMDIForm", + "OnActivate", + "OnDeactivate", + "AutoGenerateValue", + "Transliterate", + "Background", + "RoundRectT", + "RoundCurve", + "TAutoActivate", + "AutoActivate", + "OnDeactivate@TD", + "Excel.Sheet.5", + "FooterAtEOPh{N", + "BackgroundStart", + "lbBackGroundMsg<", + "StopBackgroundD", + "StartBackgroundH", + "AddSeparateDirs", + "Please insert last disk in set", + "Please insert disk volume %.1d of %.1d", + "Please insert disk volume %.1d", + "Costn.DBF", + "Form.DBF", + "Bdqty.DBF", + "PrjLst.DBF", + "sAmTb", + "RoundRect", + "CreateHalftonePalette", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "QTypInfo", + "lbBackGroundMsg", + "Background Processing", + "StopBackground", + "Stop Background", + "StartBackground", + "Start Background", + "Insert record", + "Delete record", + "OLE control activation failed", + "DataSource cannot be changed0Cannot perform this operation on an open dataset\"Dataset not in edit or insert mode1Cannot perform this operation on a closed dataset!Cannot modify a read-only dataset#Nested dataset must inherit from %s", + "Unable to insert an item", + "Unable to insert a line", + "Invalid data type for '%s'&Cannot insert or delete rows from grid List capacity out of bounds (%d)", + "Transliterate륯uI", + "RoundCurve툂B" + ] + }, + "ST_VSetup.EXE": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 8200, + "raw_off": 1024, + "raw_size": 8704 + }, + { + "name": ".rdata", + "va": 16384, + "vsize": 1897, + "raw_off": 9728, + "raw_size": 2048 + }, + { + "name": ".data", + "va": 20480, + "vsize": 1028, + "raw_off": 11776, + "raw_size": 1024 + }, + { + "name": ".rsrc", + "va": 24576, + "vsize": 1600, + "raw_off": 12800, + "raw_size": 2048 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll", + "GDI32.dll", + "ADVAPI32.dll" + ], + "exports": [ + "_MainWndProc@16", + "_StubFileWrite@12" + ], + "timestamp": 927319728, + "characteristics": "0x050F" + }, + "strings_total": 30363, + "domain_strings": [ + "AdjustTokenPrivileges", + "SbOQ@(t%", + "WdBF", + "JSmT/S", + "IksMt", + "#boq", + "AdJ>", + "팯.슌떸0쟔bOQ@(t%왔~O", + "떄AdJ>뭝" + ] + }, + "ST_Wal.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 87340, + "raw_off": 1024, + "raw_size": 87552 + }, + { + "name": "DATA", + "va": 94208, + "vsize": 3048, + "raw_off": 88576, + "raw_size": 3072 + }, + { + "name": "BSS", + "va": 98304, + "vsize": 641, + "raw_off": 91648, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 102400, + "vsize": 31732, + "raw_off": 91648, + "raw_size": 31744 + }, + { + "name": ".reloc", + "va": 135168, + "vsize": 10060, + "raw_off": 123392, + "raw_size": 10240 + }, + { + "name": ".rsrc", + "va": 147456, + "vsize": 192000, + "raw_off": 133632, + "raw_size": 192000 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "user32.dll", + "kernel32.dll", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "ST_COM_V.CPM", + "DP_COMMON.CPM", + "vcl60.bpl" + ], + "exports": [], + "timestamp": 708992537, + "characteristics": "0x818E" + }, + "strings_total": 2861, + "domain_strings": [ + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + " BACKGROUND-COLOR: #999999", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect" + ] + }, + "Stma.URL": { + "format": "text", + "detail": { + "encoding": "utf-8", + "lines": 2 + }, + "strings": [ + "[InternetShortcut]", + "URL=http://www.stma.co.kr/" + ] + }, + "STmate.Cpm": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 1973944, + "raw_off": 1024, + "raw_size": 1974272 + }, + { + "name": "DATA", + "va": 1978368, + "vsize": 12840, + "raw_off": 1975296, + "raw_size": 13312 + }, + { + "name": "BSS", + "va": 1994752, + "vsize": 83941, + "raw_off": 1988608, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 2080768, + "vsize": 95312, + "raw_off": 1988608, + "raw_size": 95744 + }, + { + "name": ".edata", + "va": 2179072, + "vsize": 73, + "raw_off": 2084352, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 2183168, + "vsize": 118336, + "raw_off": 2084864, + "raw_size": 118784 + }, + { + "name": ".rsrc", + "va": 2301952, + "vsize": 1321984, + "raw_off": 2203648, + "raw_size": 1321984 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "version.dll", + "kernel32.dll", + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "comctl32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "imm32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "wininet.dll", + "shell32.dll", + "vcl60.bpl", + "winspool.drv", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "dclhrp60.bpl", + "vcljpg60.bpl", + "vcljpg60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcldb60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "vcldb60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "dclhrp60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "vclx60.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "wsock32.dll", + "Apollo5D6.bpl", + "Apollo5D6.bpl", + "dbrtl60.bpl", + "Apollo5D6.bpl", + "VclSmp60.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGrid6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGridDB6.bpl", + "RealGrid6.bpl", + "hhctrl.ocx", + "ST_COM_V.CPM", + "ST_FUNC_C.CPM", + "DP_COMMON.CPM", + "vcl60.bpl", + "VclSmp60.bpl", + "winmm.dll", + "vcl60.bpl", + "RealGridEX6.bpl", + "vcl60.bpl", + "vcldb60.bpl", + "RealGridEX6.bpl", + "RealGridEX6.bpl", + "vclx60.bpl", + "netapi32.dll", + "rtl60.bpl", + "IPHLPAPI.DLL", + "SX32W.CPM" + ], + "exports": [ + "Calc_Kanjub" + ], + "timestamp": 708992537, + "characteristics": "0x818E" + }, + "strings_total": 29213, + "domain_strings": [ + "Call DeactivateFontsInfo before calling this.", + "Background", + "Foreground", + "Foreground@", + "ctHalfBlock", + "eoHalfPageScroll", + "TBdQtyRecP", + "QTY1", + "QTY2", + "QTY3", + "QTY4", + "TAMT1", + "LAMT1", + "MAMT1", + "SAMT1", + "RATE", + "KWNGP", + "EQCODE", + "X_RATE", + "X_QTY1", + "X_QTY2", + "X_QTY3", + "X_HAL1", + "X_HAL2", + "X_HAL3", + "S_RATE", + "select", + "NAG_HAL", + "ST_MHAL", + "EQ_LHAL", + "EQ_MHAL", + "EQ_SHAL", + "BDQTY.DBF", + "LAMT", + "MAMT", + "SAMT", + "TAMT", + "RATE_L", + "X_QTY", + "X_HAL", + "IFORM", + "CODE=\"W\" .and. (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)", + "CODE=\"W\" .and. TAMT1<>MAMT1+LAMT1+SAMT1", + "TAMT2", + "MAMT2", + "LAMT2", + "SAMT2", + "(SUBSTR(CODE,1,1)$\"LMS\" and (TAMT1<>MAMT1+LAMT1+SAMT1 or TAMT2<>MAMT2+LAMT2+SAMT2)) or (CODE=\"L\" and (LAMT1<>TAMT1 or LAMT2<>TAMT2)) or (CODE=\"M\" and (MAMT1<>TAMT1 or MAMT2<>TAMT2)) or (CODE=\"S\" and (SAMT1<>TAMT1 or SAMT2<>TAMT2))", + "(SUBSTR(CODE,1,1)$\"LMS\" and TAMT1<>MAMT1+LAMT1+SAMT1) or (CODE=\"L\" and LAMT1<>TAMT1) or (CODE=\"M\" and MAMT1<>TAMT1) or (CODE=\"S\" and SAMT1<>TAMT1)", + "BDQTY", + "S_ADJ", + "ADJ_L", + "ADJ_M", + "ADJ_S", + "COSTN.DBF", + "Find_BOQ", + " Find_BOQ ", + "QTY1_B", + "QTY1_N", + "QTY1_H", + "Calc Boq", + "CON_USD*.DBF", + "CON_QTY*.DBF", + ".DBF", + "STmateQty8.CPM", + "ST_QTY", + "Free_Qty", + "EQSYNC.DBF", + "CPM_INFO.DBF", + "CPM_INFO.SMT", + "CPM_INFO_$.DBF", + "KBOQ", + "PRJLST.DBF", + "COSTA.DBF", + "SYSINFO.DBF", + "Select * from Win32_NetworkAdapterConfiguration Where IPEnabled=TRUE", + "Excel.Application", + "Microsoft Excel", + "Excel", + ";COSTK.DBF;COSTN1.DBF;BDQTYD.DBF;BDQTYL.DBF;BDQTYM.DBF;BBOQ.DBF;BOQC.DBF;BOQJ.DBF;BOQM.DBF;BRJ.DBF;PRJ.DBF;ITQTY.DBF;MITQTY.DBF;UITQTY.DBF;PRJLST1.DBF;CHANGE.DBF;IMGINFO.DBF;ILWI.DBF;SAN.DBF;PRLMTM.DBF;PRNDB1.DBF;RATE_A.DBF;RATE_B.DBF;SEED.DBF;START.INI;", + "GrdBoqBigo", + "C_PSAMT_B", + "B_PSAMT_B", + "I_NAG_RATE", + "ROUNDDOWN( [LAMT] * [RAT_1], ", + "ROUNDDOWN( ([L_AMT][+LAB]) * [RAT_1], ", + "[C_AMT_B]+ROUNDDOWN( [C_AMT_B] * (([C_TAMT_C]-[C_TAMT_B])/[C_TAMT_B]), ", + "[C_TAMT_B]", + "+ROUNDDOWN( ", + "(([LAMT][+LAB])-", + "[C_AMT_B]+ROUNDDOWN( ([C_TAMT_C]-[C_TAMT_B]) * [RAT_1], ", + "ROUNDDOWN( ", + "([LAMT][+LAB])", + "ROUNDDOWN( [C_KUNBO] * [RAT_1], ", + "ROUNDDOWN( ([LAMT][+LAB]) * [RAT_1], ", + "[LAMT][+LAB]", + "([TAMT])", + "([LAMT]+[M_AMT]", + "ROUNDDOWN(", + "*[TAMT],0)", + "IF(([LAMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),ROUNDDOWN(", + "*[TAMT],0),([LAMT]+[M_AMT]))", + "ROUNDDOWN( ( ", + "IF(([L_AMT]+[M_AMT])>ROUNDDOWN(", + "*[TAMT],0),([L_AMT]+[M_AMT]))", + "ROUNDDOWN( ((", + "+([TAMT]", + "ROUNDDOWN( ([TAMT]", + "ROUNDDOWN( ([T_AMT]+", + "ROUNDDOWN( [T_AMT] * [RAT_1], ", + "ROUNDDOWN( [T_AMT] * [RAT_1], 0 )", + "ROUNDDOWN( ([T_AMT]-[M_AMT]) * [RAT_1], 0 )", + "ROUNDDOWN( ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*1.4,0) + ROUNDDOWN([LAMT]*[RAT_KY]*[RAT_3]/100,0) + ROUNDDOWN([LAMT]*[RAT_1]*[RAT_2]/100*[RAT_4]/100,0), ", + "ROUNDDOWN( ([M_AMT]+[L_AMT]+[S_AMT]", + "ROUNDDOWN([T_AMT] * [RAT_1], 0)", + "ROUNDDOWN([M_AMT] * [RAT_1], 0)", + "ROUNDDOWN(([TAMT]-[LAMT]", + "ROUND( [C_AD_AMT] , -", + "ROUNDDOWN( [C_AD_AMT] , -", + "ROUNDUP( [C_AD_AMT] , -", + "ROUNDDOWN([T_AMT]", + "halH", + "FormActivate", + "AddSeparateDirs", + "Please insert last disk in set", + "Please insert disk volume %.1d of %.1d", + "Please insert disk volume %.1d", + "TBackgroundLayout", + "BackgroundLayout", + "tb_BdQtyx", + "ds_BdQty", + "tb_BdQty_X", + "ds_BdQty_X", + "tb_BdQty_Im", + "tb_CostA", + "ds_CostA", + "Grd_Rate", + "gBx_Rate0", + "Act_Set_RateP", + "cBx_SetARate", + "Grd_RateDrawCell", + "Grd_RateColumnTitleClick", + "Grd_RateDblClick", + "Grd_RateKeyDown", + "Grd_RateCellExit", + "Grd_RateExit", + "Grd_RateBeforePost", + "Grd_RateCellEnter", + "Grd_RateRowChange", + "Act_Set_RateExecute", + "Grd_RateEnter", + "cBx_SetARateClick", + "LAMT1_R", + "CODE=\"W\" .and. (LEN(TRIM(BQCODE))>5 .or. LEN(TRIM(EQCODE))>5)", + "TwM_Xls_Comp", + "TwM_Xls_ComplpN", + "Xls_Comp", + "COMP_C.DBF", + "POS_D_XLS_COMP", + "MAMT1_O", + "PG_11_O", + "PG_21_O", + "PG_31_O", + "PG_41_O", + "PG_51_O", + "EQCODE_O", + "PG_1_O", + "PG_11", + "PG_21", + "PG_31", + "PG_41", + "PG_51", + "PG_1", + "LAMT1_O", + "SAMT1_O", + "TAMT1_O", + "PG_2", + "PG_3", + "PG_4", + "PG_5", + "ed_EQCODE,", + "\"$UPPER(EQCODE))", + "\"$UPPER(JDCODE+NAME+SIZE+UNIT+GNCODE+PSCODE+EQCODE+ST_NAME)", + "wBx_MAMT", + "ed_Hal", + "Act_Set_Hal", + "ed_HalEnter", + "ed_HalKeyDown", + "Act_Set_HalExecute", + "*.STBSC", + ";NAME;SIZE;UNIT;BQCODE;EQCODE;EDT_DATE;JDCODE;", + "BSC_COSTN.DBF", + "BSC_BDQTY.DBF", + "BSC_COSTN.*", + "BSC_BDQTY.*", + "CostNavi", + "Act_FindBoq", + "sBtnLstEqCode", + "Act_LstEqCode", + "Act_Ed_Qty<", + "pn_LHal", + "pn_MHal", + "sBtnHaLmCost", + "Chk_Auto_Hal", + "pn_XHal", + "sBtnHaLKike", + "Pop_Rate_L", + "Pop_Rate_6", + "mi_SetAmt6", + "mi_Edt_Amt6_Rate", + "mi_HalLt", + "mi_Ed_HalDx", + "mi_Ed_HalL", + "mi_View_HalL", + "Act_FindBoqExecute", + "Act_Ed_QtyExecute", + "Rate_LClick", + "Chk_Auto_HalClick", + "mi_View_HalLClick", + "Auto_Hal", + "PRT.DBF", + "ADJ_", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE+EDT_DATE", + "Edt_Hal_Rate", + "Edt_Hal_Amt", + ".CSTA;*_", + ".CSTA", + "CSTA", + "COSTA.CSTA", + "P_XLS.CPM", + "MAKE_XLS", + " MAKE_XLS ", + "SHOW_XLS", + " SHOW_XLS ", + "FREE_XLS", + " FREE_XLS ", + ")= ROUNDDOWN(", + " = ROUNDDOWN(", + "tb_BdQtyh", + "ds_BdQtyx", + "tb_BdQty_X|", + "mBtn_EDBOQ$", + "mBtn_EDBOQClick", + ".dbf", + "CostNaviP", + "sBtnLstEqCode|", + "ActFindBoq1", + "Act_LstEqCodeExecute", + "\"$UPPER(CODE+NAME+SIZE+UNIT+BQCODE+EQCODE+JDCODE+EDT_DATE+CONTCODE", + "tb_BdQty`", + "tb_Qty", + "FormDeactivate", + "CON_QTY9", + "CON_QTY", + "CONBD_USD_QTY", + "/select,\"", + "OnActivate@", + "OnDeactivate", + "CostNavi|", + "tb_BdQty", + "Act_W2SMt", + "TwM_JajeXLS", + "JajeXLS", + "tb_Boq_", + "rGrd_Boq", + "CBoxSetHalMLSW", + "CBoxSetHal_NBUGAM", + "rGrd_BoqCellEnter", + "rGrd_BoqDblClick", + "rGrd_BoqDrawCell", + "rGrd_BoqExit", + "rGrd_BoqKeyDown", + "rGrd_BoqRowChange", + "MK_CONT_BOQ_", + "Conv Boq", + "ActNewBoq", + "ActMkBoq,", + "ActEditBoq<", + "mi_MkXLST", + "Act_CalBoq ", + "Act_Mk_Boq10", + "Mk_Xls2Boq", + "mi_DefXls_GS", + "Mk_DefXls", + "tb_BoqXXP", + "ds_BoqXXT", + "RDbGrid_Boq\\", + "mi_View_BOQp", + "sBtn_View_BOQt", + "Act_View_BOQ8", + "MkBoq", + "CopyBoq", + "ActEditBoqExecute", + "ActMkBoqExecute", + "Act_CalBoqExecute", + "Mk_DefXlsExecute", + "Mk_Xls2BoqExecute", + "RDbGrid_BoqDrawCell", + "Act_View_BOQExecute", + "POS_F_PRJLST", + "(STmate8x)\\BOQ_INFO", + "MAMT3", + "LAMT3", + "SAMT3", + "TAMT3", + "qty1", + "BOQ.dbf", + "ST_Boq.CPM", + "Edit_Boq", + ".xls", + "ComP_CurBOQ", + "MK_BSCBOQ_EXL", + "BOQ.DBF", + "MK_EXL_BSCBOQ", + "BOQ_E.DBF", + "TAMT4", + "update", + "UhalX", + "lbTax_Email", + "ed_Tax_Email", + "VAT_C", + "VAT_C5", + "VAT_C10", + "VAT_C15", + "VAT_G", + "VAT_G5", + "VAT_G10", + "VAT_G15", + "TAX_EMAIL", + "#,#(VAT)", + " ( Tax: ", + "tb_PrjLst", + "img_Lst_PrjLst", + "List_PrjLst", + ":COSTN.DBF:", + ":COSTN.SMT:", + ":COSTA.DBF:", + ":BDQTY.DBF:", + ":PRJLST.DBF:", + ":PRJLST.SMT:", + ":SYSINFO.DBF:", + "PRJLST.SMT", + ":BOQ", + ".DBF:", + "COSTN.SMT", + "COSTN.NSX", + "COSTA.NSX", + "BDQTY.NSX", + "PRJLST.NSX", + "DOWN_LST.DBF", + "DOWN_LST.SMT", + "UPDATE", + "VAT_P", + "VAT_P5", + "VAT_P10", + "VAT_P15", + "VAT_S", + "VAT_S1", + "Act_PrjLst0", + "Act_Halt", + "tb_Mrg_COSTN", + "mi_Sel_Xls", + "mi_UseExcel", + "Act_PrjLstExecute", + "Act_HaltExecute", + "Act_Use_Xls_Execute", + "mi_Sel_XlsClick", + "ST_CPM\\ST_Boq", + "ST_CPM\\ST_P_XLS", + "ST_PLIST.DBF", + "SET_REP.DBF", + "QCODE.DBF", + "STmate-Exec_Merge_ADD_BOQ", + "MRG_COSTN.DBF", + "MRG_BDQTY.DBF", + "MRG_IMG.DBF", + "MRG_COSTA.DBF", + "MRG_QCODE.DBF", + "MRG_BOQ.DBF", + "MRG_COSTN.*", + "MRG_COSTA.*", + "MRG_BDQTY.*", + "MRG_BOQ.*", + "(STmate8x)\\BOQ_INFO\\", + "PRJ_DBF", + "PRJ_SMT", + "ST_PLIST.SMT", + "ST_PLIST_DBF", + "ST_PLIST_SMT", + "sAmTb", + "@System@@Halt0$qqrv", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "GetForegroundWindow", + "CreateHalftonePalette", + "@Forms@TCustomForm@WMActivate$qqrr20Messages@TWMActivate", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Classes@TBasicActionLink@Update$qqrv", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@Insert$qqri", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Math@RoundTo$qqrxdxzc", + "@Graphics@TCanvas@RoundRect$qqriiiiii", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Stdctrls@TCustomCombo@AdjustDropDown$qqrv", + "@Db@TDataSet@Insert$qqrv", + "@Comctrls@TListItem@Delete$qqrv", + "@Apodset@TApolloTable@Delete$qqrv", + "@Apodset@TApolloTable@DBFilter$qqrv", + "@Apodset@TApolloTable@DbfEncrypt$qqrv", + "@Apodset@TApolloTable@DbfDecrypt$qqrv", + "MROUNDUP", + "MROUNDUD", + "@Graphutil@ColorAdjustLuma$qqruiii", + ")JajeXLS", + "OnActivate", + "Delete selected tip", + "= 360,000 + 36,000(VAT) ", + "wM_Dm_1.ds_BdQty", + "wM_Dm_1.ds_BdQty_X", + "QTY0", + "QTY5", + "QTY6", + "QTY7", + "QTY8", + "QTY9", + "wM_Dm_1.ds_CostA", + "Act_Ed_Qty", + "mi_HalL", + "mi_Ed_HalD", + "Rate.dbf", + "PADL(TRIM(PG_11),12,\" \")", + "PADL(TRIM(PG_21),12,\" \")", + "PADL(TRIM(PG_31),12,\" \")", + "PADL(TRIM(PG_41),12,\" \")", + "PADL(TRIM(PG_51),12,\" \")", + "PG_12", + "PADL(TRIM(PG_12),12,\" \")", + "PG_22", + "PADL(TRIM(PG_22),12,\" \")", + "PG_32", + "PADL(TRIM(PG_32),12,\" \")", + "PG_42", + "PADL(TRIM(PG_42),12,\" \")", + "PG_52", + "PADL(TRIM(PG_52),12,\" \")", + "gBx_Rate", + "Act_Set_Rate", + "o_Rate_L", + "GRASS.DBF", + "wM_Dm_2.ds_BdQty", + "LAMT4", + "MAMT4", + "SAMT4", + "wM_Dm_2.ds_BdQty_X", + "wM_JajeXLS", + "ed_EQCODE", + "STBSC", + "|*.STBSC", + "= 360,000 + 366,000(VAT) ", + "= 396,000 + 36,000(VAT) ", + "mBtn_EDBOQ", + "Color Halftone Settings", + "|Vat", + "Act_PrjLst", + "Excel ", + "DataPathAlias", + "Delete|Erases the selection", + "&Select All|Selects the entire document", + "wM_Xls_Comp", + "BOQ_C", + "sBtn_View_BOQ", + "Act_View_BOQ", + "RDbGrid_Boq", + "ds_BoqXX", + "ActEditBoq", + "ActMkBoq", + "Act_CalBoq", + "mi_MkXLS", + "mi_View_BOQ", + "tb_BoqXX", + "BOQ11.NSX", + "Boq11.dbf", + "TWM_JAJEXLS", + "TWM_XLS_COMP", + "Select a Date", + "Dr. Halo images", + "*_표준시장.CSTA;*_실적.CSTA", + "실적(표준시장)단가목록|*_표준시장.CSTA;*_실적.CSTA", + "북측노무비($/월)= ROUNDDOWN(기준단가 * ", + "북측노무비($/일)= ROUNDDOWN(북측노무비($/월) / 25, 4)", + "북측 = ROUNDDOWN(기준단가 * 북측노무비($/일) * ", + "남측 = ROUNDDOWN(기준단가 * ", + "SOFTWARE\\경영정보(주)\\설계예산(STmate8x)\\BOQ_INFO", + "자재수량집계표양식.xls", + "SOFTWARE\\경영정보(주)\\설계예산(STmate8x)\\BOQ_INFO\\" + ] + }, + "STmate8.Exe": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 91384, + "raw_off": 1024, + "raw_size": 91648 + }, + { + "name": "DATA", + "va": 98304, + "vsize": 2980, + "raw_off": 92672, + "raw_size": 3072 + }, + { + "name": "BSS", + "va": 102400, + "vsize": 1917, + "raw_off": 95744, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 106496, + "vsize": 25716, + "raw_off": 95744, + "raw_size": 26112 + }, + { + "name": ".reloc", + "va": 135168, + "vsize": 9548, + "raw_off": 121856, + "raw_size": 9728 + }, + { + "name": ".rsrc", + "va": 147456, + "vsize": 13824, + "raw_off": 131584, + "raw_size": 13824 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "version.dll", + "kernel32.dll", + "advapi32.dll", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "SX32W.CPM", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "advapi32.dll" + ], + "exports": [], + "timestamp": 708992537, + "characteristics": "0x818E" + }, + "strings_total": 2535, + "domain_strings": [ + "select", + "@System@@Halt0$qqrv", + "SetForegroundWindow", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect" + ] + }, + "STmate_Ins.log": { + "format": "text", + "detail": { + "encoding": "cp949", + "lines": 288 + }, + "strings": [ + "*** Installation Started 09/12/2026 14:24 ***", + "Title: ", + " w26.09 (2026.09.01)", + "Source: C:\\Users\\umsan\\Downloads\\wStSetup_2026_0901(w26.09).EXE", + "File Copy: C:\\", + ")\\System\\UNWISE.EXE", + "RegDB Key: Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\", + "(STmate)", + "RegDB Val: ", + "RegDB Name: DisplayName", + "RegDB Root: 2", + "RegDB Val: C:\\", + "~1\\System\\UNWISE.EXE C:\\", + "~1\\System\\STmate_Ins.log", + "RegDB Name: UninstallString", + "Made Dir: C:\\", + ")\\(TMP)", + ")\\STmate ", + "\\(TMP)", + ")\\COP_LOGO.JPG", + ")\\System\\STmate8.Exe", + ")\\System\\ST_Wal.CPM", + ")\\System\\DP_Common.CPM", + ")\\System\\DP_MinMsg.CPM", + ")\\System\\SX32W.CPM", + ")\\System\\ST_BdSN.CPM", + ")\\System\\ST_Com_V.CPM", + ")\\System\\ST_Func_C.CPM", + ")\\System\\ST_JD_Lst.CPM", + ")\\System\\ST_Merge_Code.CPM", + ")\\System\\ST_U_APatch.CPM", + ")\\System\\ST_V_Info.CPM", + ")\\System\\ST_CPM", + ")\\System\\ST_CPM\\STmateQty8.CPM", + ")\\System\\ST_CPM\\ST_Boq.CPM", + ")\\System\\ST_CPM\\ST_EdiLWi.CPM", + ")\\System\\ST_CPM\\ST_EdSan.CPM", + ")\\System\\ST_CPM\\ST_FindUse.CPM", + ")\\System\\ST_CPM\\ST_Jabpum.CPM", + ")\\System\\ST_CPM\\ST_KanJub.CPM", + ")\\System\\ST_CPM\\ST_PList.CPM", + ")\\System\\ST_CPM\\ST_Prt.CPM", + ")\\System\\ST_CPM\\ST_P_Collect.CPM", + ")\\System\\ST_CPM\\ST_P_ConEst.CPM", + ")\\System\\ST_CPM\\ST_P_Excav.CPM", + ")\\System\\ST_CPM\\ST_P_iLWi.CPM", + ")\\System\\ST_CPM\\ST_P_Joong.CPM", + ")\\System\\ST_CPM\\ST_P_List.CPM", + ")\\System\\ST_CPM\\ST_P_Nae.CPM", + ")\\System\\ST_CPM\\ST_P_San.CPM", + ")\\System\\ST_CPM\\ST_P_XLS.CPM", + ")\\System\\ST_CPM\\ST_SanCal.CPM", + ")\\System\\ST_CPM\\ST_Sys.CPM", + ")\\System\\ST_CPM\\ST_U_ADL.CPM", + ")\\System\\ST_CPM\\ST_U_Archive.CPM", + ")\\System\\ST_CPM\\ST_U_ChgAmt.CPM", + ")\\System\\ST_CPM\\ST_U_ChgCode.CPM", + ")\\System\\ST_CPM\\ST_U_ConBD.CPM", + ")\\System\\ST_CPM\\ST_U_Convert.CPM", + ")\\System\\ST_CPM\\ST_U_DelCode.CPM", + ")\\System\\ST_CPM\\ST_U_DelPrj.CPM", + ")\\System\\ST_CPM\\ST_U_Indx.CPM", + ")\\System\\ST_CPM\\ST_U_Merge.CPM", + ")\\System\\STmate.Cpm", + ")\\System\\STmexe.Cpm", + ")\\System\\JDLCHK.Size.dll", + ")\\System\\JDLCHK.Tab.dll", + ")\\System\\JDLCHK.Tab_33.dll", + ")\\System\\Apollo5D6.bpl", + ")\\System\\BDERTL60.BPL", + ")\\System\\BORLNDMM.DLL", + ")\\System\\DBRTL60.BPL", + ")\\System\\Dclhrp60.bpl", + ")\\System\\DELPHIMM.DLL", + ")\\System\\designide60.bpl", + ")\\System\\FTS32.DLL", + ")\\System\\RealGrid6.bpl", + ")\\System\\RealGridDB6.bpl", + ")\\System\\RealGridEX6.bpl", + ")\\System\\RTL60.BPL", + ")\\System\\SDE50.DLL", + ")\\System\\SDECDX50.DLL", + ")\\System\\SDENSX50.DLL", + ")\\System\\SDENTX50.DLL", + ")\\System\\VCL60.BPL", + ")\\System\\VCLDB60.BPL", + ")\\System\\VCLJPG60.BPL", + ")\\System\\VCLSMP60.BPL", + ")\\System\\VCLX60.BPL", + ")\\System\\CPMARC.CPM", + ")\\System\\CPMUNA.CPM", + ")\\System\\HRRES32.DLL", + ")\\System\\MINIEXTR.DLL", + ")\\System\\SDE32.DLL", + ")\\System\\WLHA32.DLL", + ")\\System\\WUNARJ32.DLL", + "File Copy: C:\\WINDOWS\\system32\\VCF15.ocx", + ")\\System\\BANTAM.DLL", + ")\\System\\CHARSET.CVB", + ")\\System\\FAREAST.BTL", + ")\\System\\IDAPI32.DLL", + ")\\System\\IDDBAS32.DLL", + ")\\System\\IDPDX32.DLL", + ")\\System\\IDR20009.DLL", + ")\\System\\USA.BTL", + ")\\System\\EQSYNC.DBF", + ")\\System\\EQSYNC.SMT", + ")\\System\\RAR.EXE", + ")\\System\\ST_Tips.dat", + ")\\System\\ST_Viewer.exe", + ")\\System\\View_Old_San.CPM", + ")\\System\\ST_BSC", + ")\\System\\ST_BSC\\2007_", + ".JB_M", + ")\\System\\ST_BSC\\2011(", + "_0112)_", + ".JB_1", + ")\\System\\ST_BSC\\2015(", + "_0301,", + ".JB_RA", + "_0309)_", + ".JB_R", + ")\\System\\ST_BSC\\2016(", + "_0307)_", + ")\\System\\ST_BSC\\2017(", + "_0215)_", + ")\\System\\ST_BSC\\2018(", + "_0327)_", + "_0701,", + "_0801)_", + ")\\System\\ST_BSC\\2019(", + "_0101,", + "_0107)_", + "_0417)_", + "_0628)_", + ")\\System\\ST_BSC\\2020(", + "_0102)_", + "_0102,", + "_0527)_", + ")\\System\\ST_BSC\\2021(", + "_0104)_", + "_0421)_", + "_0520)_", + "_0501,", + "_0701)_", + ")\\System\\ST_BSC\\2022(", + "_0103)_", + "_0103,", + "_0425)_", + ")\\System\\ST_BSC\\2023(", + "_0428)_", + ")\\System\\ST_BSC\\2024(", + "_0101)_", + "_0315)_", + ")\\System\\ST_BSC\\2025(", + "_0401)_", + "_0501)_", + "_0809)_", + ")\\System\\ST_BSC\\2026(", + "_0313)_", + "_0413)_", + "_0508,", + ")\\System\\ST_BSC\\GRPCOD_E.BSC", + ")\\System\\ST_BSC\\GRPCOD_Z.BSC", + ")\\System\\ST_BSC\\JDCODE_L.BSC", + ")\\System\\ST_BSC\\JDCODE_M.BSC", + ")\\System\\ST_BSC\\JDCODE_S.BSC", + ")\\System\\ST_BSC\\JDCODE_X.BSC", + ")\\System\\ST_BSC\\JDCODE_Z.BSC", + ")\\System\\ST_BSC\\Valid_Xml.vsl", + ")\\System\\ST_BSC\\", + "(2026_09_01)", + "\\2025(", + ").STBSC", + "\\2026(", + "\\2025", + "\\2025\\2025(", + ".CSTA", + "\\2025\\COSTA.CSTA", + "\\2025\\", + "(2025_04_21).Info", + "(2025_08_04).Info", + "\\2026", + "\\2026\\2026(", + "\\2026\\COSTA.CSTA", + "\\2026\\", + "(2026_05_04).Info", + "(2026_05_27).Info", + "(2026_03_17).Info", + "\\2025-", + ".STBSC", + "\\2026-", + "(06)-", + ")\\System\\ST_VSetup.EXE", + ").STC", + "RegDB Key: Software\\", + "(STmate8x)", + "RegDB Name: InstallDir", + "RegDB Name: Data_Root", + "\\(TMP)\\", + "RegDB Name: TmpDir", + "RegDB Name: ArcDir", + "RegDB Val: 1", + "RegDB Name: ShortCut", + "RegDB Name: Work_Dir", + "RegDB Val: 0", + "RegDB Name: View_Jodal", + "RegDB Key: SOFTWARE\\", + ")\\PRN_INFO", + "RegDB Name: P_KDHC", + "RegDB Name: UseOnline", + "RegDB Key: .Srp", + "RegDB Val: CpmRep", + "RegDB Key: .Stc", + "RegDB Val: CpmComD", + "RegDB Key: .Str", + "RegDB Val: CpmComR", + "RegDB Key: CpmComD", + "RegDB Key: CpmComD\\Defaulticon", + ")\\System\\ST_Viewer.Exe,2", + "RegDB Key: CpmComD\\Shell\\Open\\Command", + ")\\System\\STmate8.Exe /C %1", + "RegDB Key: CpmComR", + "RegDB Key: CpmComR\\Defaulticon", + ")\\System\\ST_Viewer.Exe,1", + "RegDB Key: CpmComR\\Shell\\Open\\Command", + ")\\System\\ST_Viewer.Exe /C %1", + "RegDB Key: CpmRep", + "RegDB Val: ST_ES ", + "RegDB Key: CpmRep\\Shell\\Open\\Command", + ")\\System\\ST_Viewer.Exe %1", + "RegDB Key: CpmRep\\Defaulticon", + ")\\System\\ST_Viewer.Exe,0", + "Made Dir: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\", + "Shell Link: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\", + ".lnk", + "Shell Link: C:\\Users\\umsan\\Desktop\\", + " Viewer.lnk", + "Self-Register: C:\\Windows\\System32\\VCF15.ocx", + "INI New: Created INI", + "INI File: C:\\", + ")\\System\\UNWISE.INI", + "INI Sect: Settings", + "INI Item: Text Font", + "INI Val: ", + "INI Item: Font Character Size", + "INI Val: 9", + "User Rights: Admin", + "Title: 설계예산시스템 w26.09 (2026.09.01)", + "File Copy: C:\\경영정보(주)\\System\\UNWISE.EXE", + "RegDB Key: Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\설계예산시스템(STmate)", + "RegDB Val: 설계예산시스템(STmate)", + "RegDB Val: C:\\경영정~1\\System\\UNWISE.EXE C:\\경영정~1\\System\\STmate_Ins.log", + "Made Dir: C:\\경영정보(주)\\(TMP)", + "Made Dir: C:\\경영정보(주)\\STmate 압축자료", + "Made Dir: C:\\경영정보(주)\\STmate 자료\\(TMP)", + "Made Dir: C:\\경영정보(주)\\STmate 자료\\계약자료", + "File Copy: C:\\경영정보(주)\\COP_LOGO.JPG", + "File Copy: C:\\경영정보(주)\\System\\STmate8.Exe", + "File Copy: C:\\경영정보(주)\\System\\ST_Wal.CPM", + "File Copy: C:\\경영정보(주)\\System\\DP_Common.CPM", + "File Copy: C:\\경영정보(주)\\System\\DP_MinMsg.CPM", + "File Copy: C:\\경영정보(주)\\System\\SX32W.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_BdSN.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_Com_V.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_Func_C.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_JD_Lst.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_Merge_Code.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_U_APatch.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_V_Info.CPM", + "Made Dir: C:\\경영정보(주)\\System\\ST_CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\STmateQty8.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_Boq.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_EdiLWi.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_EdSan.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_FindUse.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_Jabpum.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_KanJub.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_PList.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_Prt.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_Collect.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_ConEst.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_Excav.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_iLWi.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_Joong.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_List.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_Nae.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_San.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_P_XLS.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_SanCal.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_Sys.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_ADL.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_Archive.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_ChgAmt.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_ChgCode.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_ConBD.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_Convert.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_DelCode.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_DelPrj.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_Indx.CPM", + "File Copy: C:\\경영정보(주)\\System\\ST_CPM\\ST_U_Merge.CPM", + "File Copy: C:\\경영정보(주)\\System\\STmate.Cpm", + "File Copy: C:\\경영정보(주)\\System\\STmexe.Cpm", + "File Copy: C:\\경영정보(주)\\System\\JDLCHK.Size.dll", + "File Copy: C:\\경영정보(주)\\System\\JDLCHK.Tab.dll", + "File Copy: C:\\경영정보(주)\\System\\JDLCHK.Tab_33.dll", + "File Copy: C:\\경영정보(주)\\System\\Apollo5D6.bpl", + "File Copy: C:\\경영정보(주)\\System\\BDERTL60.BPL", + "File Copy: C:\\경영정보(주)\\System\\BORLNDMM.DLL", + "File Copy: C:\\경영정보(주)\\System\\DBRTL60.BPL", + "File Copy: C:\\경영정보(주)\\System\\Dclhrp60.bpl", + "File Copy: C:\\경영정보(주)\\System\\DELPHIMM.DLL", + "File Copy: C:\\경영정보(주)\\System\\designide60.bpl", + "File Copy: C:\\경영정보(주)\\System\\FTS32.DLL", + "File Copy: C:\\경영정보(주)\\System\\RealGrid6.bpl", + "File Copy: C:\\경영정보(주)\\System\\RealGridDB6.bpl", + "File Copy: C:\\경영정보(주)\\System\\RealGridEX6.bpl", + "File Copy: C:\\경영정보(주)\\System\\RTL60.BPL", + "File Copy: C:\\경영정보(주)\\System\\SDE50.DLL", + "File Copy: C:\\경영정보(주)\\System\\SDECDX50.DLL", + "File Copy: C:\\경영정보(주)\\System\\SDENSX50.DLL", + "File Copy: C:\\경영정보(주)\\System\\SDENTX50.DLL", + "File Copy: C:\\경영정보(주)\\System\\VCL60.BPL", + "File Copy: C:\\경영정보(주)\\System\\VCLDB60.BPL", + "File Copy: C:\\경영정보(주)\\System\\VCLJPG60.BPL", + "File Copy: C:\\경영정보(주)\\System\\VCLSMP60.BPL", + "File Copy: C:\\경영정보(주)\\System\\VCLX60.BPL", + "File Copy: C:\\경영정보(주)\\System\\CPMARC.CPM", + "File Copy: C:\\경영정보(주)\\System\\CPMUNA.CPM", + "File Copy: C:\\경영정보(주)\\System\\HRRES32.DLL", + "File Copy: C:\\경영정보(주)\\System\\MINIEXTR.DLL", + "File Copy: C:\\경영정보(주)\\System\\SDE32.DLL", + "File Copy: C:\\경영정보(주)\\System\\WLHA32.DLL", + "File Copy: C:\\경영정보(주)\\System\\WUNARJ32.DLL", + "File Copy: C:\\경영정보(주)\\System\\BANTAM.DLL", + "File Copy: C:\\경영정보(주)\\System\\CHARSET.CVB", + "File Copy: C:\\경영정보(주)\\System\\FAREAST.BTL", + "File Copy: C:\\경영정보(주)\\System\\IDAPI32.DLL", + "File Copy: C:\\경영정보(주)\\System\\IDDBAS32.DLL", + "File Copy: C:\\경영정보(주)\\System\\IDPDX32.DLL", + "File Copy: C:\\경영정보(주)\\System\\IDR20009.DLL", + "File Copy: C:\\경영정보(주)\\System\\USA.BTL", + "File Copy: C:\\경영정보(주)\\System\\EQSYNC.DBF", + "File Copy: C:\\경영정보(주)\\System\\EQSYNC.SMT", + "File Copy: C:\\경영정보(주)\\System\\RAR.EXE", + "File Copy: C:\\경영정보(주)\\System\\ST_Tips.dat", + "File Copy: C:\\경영정보(주)\\System\\ST_Viewer.exe", + "File Copy: C:\\경영정보(주)\\System\\View_Old_San.CPM", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2007_제비율.JB_M", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2011(상_0112)_제비율.JB_1", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2015(상_0301,실적)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2015(상_0309)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2016(상_0301,실적)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2016(상_0307)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2017(상_0215)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2018(상_0327)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2018(하_0701,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2018(하_0801)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2019(상_0101,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2019(상_0107)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2019(상_0417)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2019(상_0628)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2020(상_0102)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2020(상_0102,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2020(상_0527)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2021(상_0104)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2021(상_0421)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2021(상_0520)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2021(하_0501,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2021(하_0701)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2022(상_0103)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2022(상_0103,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2022(상_0425)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2022(하_0501,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2023(상_0102)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2023(상_0102,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2023(상_0428)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2024(상_0101)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2024(상_0101,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2024(상_0315)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2025(상_0101)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2025(상_0101,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2025(상_0401)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2025(상_0501)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2025(하_0501,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2025(하_0809)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2026(상_0101)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2026(상_0101,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2026(상_0313)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2026(상_0413)_제비율.JB_R", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\2026(하_0508,표준시장)_제비율.JB_RA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\GRPCOD_E.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\GRPCOD_Z.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\JDCODE_L.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\JDCODE_M.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\JDCODE_S.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\JDCODE_X.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\JDCODE_Z.BSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\Valid_Xml.vsl", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\호환규정코드(2026_09_01)", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\노임기계", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\노임기계\\2025(상_노임,기계경비).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\노임기계\\2025(하_노임,기계경비).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\노임기계\\2026(상_노임,기계경비).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\노임기계\\2026(하_노임,기계경비).STBSC", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\실적단가", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(상,국교,해수부,조달청)_표준시장.CSTA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(상_시장시공,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(상_표준시장,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(상_표준시장[노임외 경비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(상_표준시장[노임외 재료비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(하,국교,해수부,조달청)_표준시장.CSTA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(하_시장시공,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(하_표준시장,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(하_표준시장[노임외 경비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\2025(하_표준시장[노임외 재료비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\COSTA.CSTA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\표준시장단가(2025_04_21).Info", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2025\\표준시장단가(2025_08_04).Info", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(상,국교,해수부,조달청)_표준시장.CSTA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(상_시장시공,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(상_표준시장,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(상_표준시장[노임외 경비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(상_표준시장[노임외 재료비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(하,국교,해수부,조달청)_표준시장.CSTA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(하_표준시장,조달청).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(하_표준시장[노임외 경비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\2026(하_표준시장[노임외 재료비적용],국교,해수부).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\COSTA.CSTA", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\표준시장단가(2026_05_04).Info", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\실적단가\\2026\\표준시장단가(2026_05_27).Info", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\일위대가", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_건축).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_기계설비).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_전기).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_토목).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026\\2026(상_표준일위대가_통신).STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\일위대가\\2026\\표준일위대가(2026_03_17).Info", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\자재단가", + "Made Dir: C:\\경영정보(주)\\System\\ST_BSC\\자재단가\\시설공통자재", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\자재단가\\시설공통자재\\2025-상-시설공통자재.STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\자재단가\\시설공통자재\\2025-하-시설공통자재.STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\자재단가\\시설공통자재\\2026-상(06)-시설공통자재.STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_BSC\\자재단가\\시설공통자재\\2026-상-시설공통자재.STBSC", + "File Copy: C:\\경영정보(주)\\System\\ST_VSetup.EXE", + "File Copy: C:\\경영정보(주)\\STmate 압축자료\\실습(맛보기).STC", + "RegDB Key: Software\\경영정보(주)\\설계예산(STmate8x)", + "RegDB Val: C:\\경영정보(주)\\", + "RegDB Val: C:\\경영정보(주)\\STmate 자료\\", + "RegDB Val: C:\\경영정보(주)\\STmate 자료\\(TMP)\\", + "RegDB Val: C:\\경영정보(주)\\STmate 압축자료\\", + "RegDB Key: SOFTWARE\\경영정보(주)\\PRN_INFO", + "RegDB Val: 자료 압축데이타", + "RegDB Val: C:\\경영정보(주)\\System\\ST_Viewer.Exe,2", + "RegDB Val: C:\\경영정보(주)\\System\\STmate8.Exe /C %1", + "RegDB Val: 보고서 압축데이타", + "RegDB Val: C:\\경영정보(주)\\System\\ST_Viewer.Exe,1", + "RegDB Val: C:\\경영정보(주)\\System\\ST_Viewer.Exe /C %1", + "RegDB Val: ST_ES 보고서", + "RegDB Val: C:\\경영정보(주)\\System\\ST_Viewer.Exe %1", + "RegDB Val: C:\\경영정보(주)\\System\\ST_Viewer.Exe,0", + "Made Dir: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\경영정보(주)", + "Made Dir: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\경영정보(주)\\설계예산시스템", + "Shell Link: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\경영정보(주)\\설계예산시스템\\설계예산시스템.lnk", + "Shell Link: C:\\Users\\umsan\\Desktop\\설계예산시스템.lnk", + "Shell Link: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\경영정보(주)\\설계예산시스템\\설계예산시스템 제거.lnk", + "Shell Link: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\경영정보(주)\\설계예산시스템\\보고서 Viewer.lnk", + "Shell Link: C:\\Users\\umsan\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\경영정보(주)\\경영정보(주) 홈페이지.lnk", + "INI File: C:\\경영정보(주)\\System\\UNWISE.INI", + "INI Val: 굴림" + ] + }, + "STmexe.Cpm": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 65080, + "raw_off": 1024, + "raw_size": 65536 + }, + { + "name": "DATA", + "va": 69632, + "vsize": 864, + "raw_off": 66560, + "raw_size": 1024 + }, + { + "name": "BSS", + "va": 73728, + "vsize": 209, + "raw_off": 67584, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 77824, + "vsize": 13504, + "raw_off": 67584, + "raw_size": 13824 + }, + { + "name": ".edata", + "va": 94208, + "vsize": 91, + "raw_off": 81408, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 98304, + "vsize": 6780, + "raw_off": 81920, + "raw_size": 7168 + }, + { + "name": ".rsrc", + "va": 106496, + "vsize": 7168, + "raw_off": 89088, + "raw_size": 7168 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "borlndmm.dll", + "kernel32.dll", + "version.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl" + ], + "exports": [ + "Chk_Exe", + "Chk_New_Exe" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1601, + "domain_strings": [ + "select", + "@System@@Halt0$qqrv", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem" + ] + }, + "SX32W.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "0000001", + "va": 4096, + "vsize": 1048576, + "raw_off": 4096, + "raw_size": 1048576 + }, + { + "name": "0000002", + "va": 1052672, + "vsize": 45056, + "raw_off": 1052672, + "raw_size": 45056 + }, + { + "name": "0000003", + "va": 1097728, + "vsize": 81992, + "raw_off": 1097728, + "raw_size": 69632 + }, + { + "name": ".rsrc", + "va": 1183744, + "vsize": 4096, + "raw_off": 1167360, + "raw_size": 4096 + }, + { + "name": "0000005", + "va": 1187840, + "vsize": 57344, + "raw_off": 1171456, + "raw_size": 57344 + }, + { + "name": "0000006", + "va": 1245184, + "vsize": 35448, + "raw_off": 1228800, + "raw_size": 32768 + }, + { + "name": "0000007", + "va": 1282048, + "vsize": 3301376, + "raw_off": 1261568, + "raw_size": 3301376 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll", + "ADVAPI32.dll" + ], + "exports": [ + "RNBOsproActivate", + "RNBOsproCheckTerminalService", + "RNBOsproCleanup", + "RNBOsproDecrement", + "RNBOsproEnumServer", + "RNBOsproExtendedRead", + "RNBOsproFindFirstUnit", + "RNBOsproFindNextUnit", + "RNBOsproFormatPacket", + "RNBOsproGetContactServer", + "RNBOsproGetFullStatus", + "RNBOsproGetHardLimit", + "RNBOsproGetKeyInfo", + "RNBOsproGetKeyInfoEx", + "RNBOsproGetKeyType", + "RNBOsproGetSubLicense", + "RNBOsproGetVersion", + "RNBOsproInitialize", + "RNBOsproOverwrite", + "RNBOsproQuery", + "RNBOsproRead", + "RNBOsproReleaseLicense", + "RNBOsproSetConfigFile", + "RNBOsproSetContactServer", + "RNBOsproSetDeveloperCode", + "RNBOsproSetHeartBeat", + "RNBOsproSetProtocol", + "RNBOsproSetSharedLicense", + "RNBOsproWrite" + ], + "timestamp": 1247492041, + "characteristics": "0x210E" + }, + "strings_total": 77568, + "domain_strings": [ + "?ahHAl\\", + "HAlQ", + "RNBOsproActivate", + "VtaX", + "AdjF-o", + "!*Vat", + "\"[,YhAlT", + "dBf`p", + "bdBf", + "%+boQ;6", + "ysadj", + "PrivateBuild", + "깨%+boQ;6" + ] + }, + "UNWISE.EXE": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 59703, + "raw_off": 1024, + "raw_size": 59904 + }, + { + "name": ".rdata", + "va": 65536, + "vsize": 7605, + "raw_off": 60928, + "raw_size": 7680 + }, + { + "name": ".data", + "va": 73728, + "vsize": 7964, + "raw_off": 68608, + "raw_size": 5632 + }, + { + "name": ".rsrc", + "va": 81920, + "vsize": 75256, + "raw_off": 74240, + "raw_size": 75264 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll", + "GDI32.dll", + "comdlg32.dll", + "ADVAPI32.dll", + "ole32.dll" + ], + "exports": [ + "_ItemDlg@16", + "_MainWndProc@16", + "_PromptDlg@16", + "_SharedDlg@16" + ], + "timestamp": 930322529, + "characteristics": "0x010F" + }, + "strings_total": 1416, + "domain_strings": [ + "GetPrivateProfileIntA", + "WritePrivateProfileStringA", + "GetPrivateProfileStringA", + "No Background", + "Delete in-use files: ", + "AdjustTokenPrivileges", + "Select Private Files to Remove", + "The following files should be deleted to remove the software from your system. Press the Select All button to remove all of the listed files or select the files individually.", + "Select System Files to Remove", + "Select the Custom button to select which modifications are to be made during the uninstall. Select the Automatic button for the default uninstall options. Press the Next button to continue.", + "Select Directories to Remove", + "Select INI Files to RemovenThe following INI files were created during the installation. Select those INI files that you want to remove.", + "Select Uninstall Method", + "Select INI Items to EditwThe following INI entries were changed during the installation. Select those INI entries that you want to change back.", + "Select Registry Keys to RemovezThe following Registration Database Keys were created during the installation. Select those keys that you want to remove.", + "Select Registry Keys to Edit", + "The following Registration Database Keys were changed during the installation. Select those keys that you want to change back.", + "Select Icons to Remove{The following icons were added to the Program Manager during the installation. Select those icons that you want to remove.", + "Leaving this file will not harm your system. If you are not sure what to do, you should select the No to All button. Do you want to remove the shared file?", + "vThe following sub-systems were configured during the installation. Select those sub-systems that you want to removed.", + "Select Sub-Systems to RemovebPress the Continue button to remove the selected sub-systems.", + "Select &All", + "&Select None", + "Select Registry Trees to Remove", + "The following registry trees were added during the installation. Select those registry keys that you want removed, including all of their sub-keys..Removing Registration Database Key Sub-Tree:", + "This uninstall must reboot your computer to replace/delete files that were in-use. Press the OK button to reboot your computer.", + "Select Installation PathnameiEnter the full pathname to the installation file with the following attributes:" + ] + }, + "UNWISE.INI": { + "format": "text", + "detail": { + "encoding": "cp949", + "lines": 3 + }, + "strings": [ + "[Settings]", + "Text Font=", + "Font Character Size=9", + "Text Font=굴림" + ] + }, + "USA.BTL": { + "format": "BTLF", + "detail": { + "header": "BTLF01.001\u0000English_US:Paradox:OE" + }, + "strings": [ + "BTLF01.001", + "English_US:Paradox:OEM 437:Binary", + "A0P0D0A0", + "English_US:dBASE:OEM 437:Binary", + "A0D0D0A0", + "English_US:Sybase:OEM 437:Dictionary", + "A0S0D0A2", + "English_US:dBASE:OEM 850:Binary", + "A0D0O0A0", + "English_US:Sybase:OEM 850:Dictionary", + "A0S0O0A2", + "English_US:Oracle:OEM 850:Dictionary", + "A0O0O0A2", + "English_US:Interbase:ANSI 1252:Binary", + "A0I0W2A0", + "English_US:dBASE:ANSI 1252:Binary", + "A0D0W2A0", + "English_US:HP:ROMAN 8:Binary", + "A0H0R0A0", + "French_CA:dBASE:OEM 850:Dictionary", + "CAD0O0A2", + "French_CA:Interbase:ANSI 1252:Dictionary", + "CAI0W2A2", + "fbfp", + "French_CA:dBASE:OEM 863:Dictionary", + "CAD0ODA2" + ] + }, + "VCL60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 822380, + "raw_off": 1024, + "raw_size": 822784 + }, + { + "name": "DATA", + "va": 827392, + "vsize": 5332, + "raw_off": 823808, + "raw_size": 5632 + }, + { + "name": "BSS", + "va": 835584, + "vsize": 761, + "raw_off": 829440, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 839680, + "vsize": 47690, + "raw_off": 829440, + "raw_size": 48128 + }, + { + "name": ".edata", + "va": 888832, + "vsize": 356854, + "raw_off": 877568, + "raw_size": 356864 + }, + { + "name": ".rdata", + "va": 1249280, + "vsize": 33, + "raw_off": 1234432, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 1253376, + "vsize": 63560, + "raw_off": 1234944, + "raw_size": 64000 + }, + { + "name": ".rsrc", + "va": 1318912, + "vsize": 27136, + "raw_off": 1298944, + "raw_size": 27136 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "version.dll", + "kernel32.dll", + "advapi32.dll", + "rtl60.bpl", + "kernel32.dll", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "oleaut32.dll", + "ole32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "comctl32.dll", + "rtl60.bpl", + "winspool.drv", + "rtl60.bpl", + "comdlg32.dll", + "shell32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "advapi32.dll", + "oledlg.dll", + "rtl60.bpl", + "kernel32.dll" + ], + "exports": [ + "@$xp$11Forms@TForm", + "@$xp$11Menus@TMenu", + "@$xp$11TActiveForm", + "@$xp$12Forms@TFrame", + "@$xp$12Mask@Mask__2", + "@$xp$13Forms@TScreen", + "@$xp$13Graphics@TPen", + "@$xp$14Extctrls@TPage", + "@$xp$14Forms@Forms__6", + "@$xp$14Forms@IOleForm", + "@$xp$14Forms@TMonitor", + "@$xp$14Graphics@TFont", + "@$xp$14Graphics@TIcon", + "@$xp$14Grids@Grids__3", + "@$xp$14Grids@Grids__4", + "@$xp$14Mask@TMaskEdit", + "@$xp$14Stdctrls@TEdit", + "@$xp$14Stdctrls@TMemo", + "@$xp$15Buttons@TBitBtn", + "@$xp$15Comctrls@TWidth", + "@$xp$15Controls@TAlign", + "@$xp$15Controls@TMouse", + "@$xp$15Extctrls@TBevel", + "@$xp$15Extctrls@TImage", + "@$xp$15Extctrls@TPanel", + "@$xp$15Extctrls@TShape", + "@$xp$15Extctrls@TTimer", + "@$xp$15Forms@THintInfo", + "@$xp$15Forms@TPosition", + "@$xp$15Forms@TTileMode", + "@$xp$15Graphics@TBrush", + "@$xp$15Graphics@TColor", + "@$xp$15Grids@TDrawGrid", + "@$xp$15Menus@TMainMenu", + "@$xp$15Menus@TMenuItem", + "@$xp$15Stdctrls@TLabel", + "@$xp$15Svcmgr@TService", + "@$xp$15TActiveXControl", + "@$xp$15TConnectionKind", + "@$xp$16Actnlist@TAction", + "@$xp$16Comctrls@THotKey", + "@$xp$16Comctrls@TUpDown", + "@$xp$16Controls@TCursor", + "@$xp$16Extctrls@THeader", + "@$xp$16Forms@TFormState", + "@$xp$16Forms@TFormStyle", + "@$xp$16Forms@THelpEvent", + "@$xp$16Forms@TIdleEvent", + "@$xp$16Forms@TScrollBox", + "@$xp$16Forms@TTimerMode", + "@$xp$16Graphics@TBitmap", + "@$xp$16Graphics@TCanvas", + "@$xp$16Grids@TEditStyle", + "@$xp$16Grids@TGridState", + "@$xp$16Imglist@TOverlay", + "@$xp$16Imglist@TResType", + "@$xp$16Menus@EMenuError", + "@$xp$16Menus@TMenuBreak", + "@$xp$16Menus@TPopupList", + "@$xp$16Menus@TPopupMenu", + "@$xp$16Stdctrls@TButton", + "@$xp$16TConnectionPoint", + "@$xp$17Comctrls@TAddMode", + "@$xp$17Comctrls@TAnimate", + "@$xp$17Comctrls@TCoolBar", + "@$xp$17Comctrls@THitTest", + "@$xp$17Comctrls@TToolBar", + "@$xp$17Controls@TAnchors", + "@$xp$17Controls@TCaption", + "@$xp$17Controls@TControl", + "@$xp$17Controls@TImeMode", + "@$xp$17Controls@TImeName", + "@$xp$17Extactns@TFileRun", + "@$xp$17Extactns@TNextTab", + "@$xp$17Extactns@TShowCmd", + "@$xp$17Extctrls@TRowSize", + "@$xp$17Forms@TBorderIcon", + "@$xp$17Forms@TCloseEvent", + "@$xp$17Forms@TCustomForm", + "@$xp$17Forms@TPrintScale", + "@$xp$17Forms@TShowAction", + "@$xp$17Forms@TWindowHook", + "@$xp$17Graphics@TGraphic", + "@$xp$17Graphics@TPenMode", + "@$xp$17Graphics@TPicture", + "@$xp$17Grids@TCustomGrid", + "@$xp$17Grids@TGridOption", + "@$xp$17Grids@TMovedEvent", + "@$xp$17Grids@TStringGrid", + "@$xp$17Mask@EDBEditError", + "@$xp$17Mask@TMaskedState", + "@$xp$17Olectnrs@TOleForm", + "@$xp$17Printers@EPrinter", + "@$xp$17Printers@TPrinter", + "@$xp$17Stdactns@TEditCut", + "@$xp$17Stdctrls@TListBox", + "@$xp$17Svcmgr@TStartType", + "@$xp$17Svcmgr@TStopEvent", + "@$xp$17TConnectionPoints", + "@$xp$17Valedit@TItemProp", + "@$xp$18Axctrls@TOleStream", + "@$xp$18Buttons@TNumGlyphs", + "@$xp$18Clipbrd@TClipboard", + "@$xp$18Comctrls@TCoolBand", + "@$xp$18Comctrls@THitTests", + "@$xp$18Comctrls@TItemFind", + "@$xp$18Comctrls@TListItem", + "@$xp$18Comctrls@TListView", + "@$xp$18Comctrls@TRichEdit", + "@$xp$18Comctrls@TSortType", + "@$xp$18Comctrls@TTabSheet", + "@$xp$18Comctrls@TTabStyle", + "@$xp$18Comctrls@TTickMark", + "@$xp$18Comctrls@TTrackBar", + "@$xp$18Comctrls@TTreeNode", + "@$xp$18Comctrls@TTreeView", + "@$xp$18Comctrls@TWorkArea", + "@$xp$18Controls@TAlignSet", + "@$xp$18Controls@TBevelCut", + "@$xp$18Controls@TDockTree", + "@$xp$18Controls@TDockZone", + "@$xp$18Controls@TDragKind", + "@$xp$18Controls@TDragMode", + "@$xp$18Controls@TKeyEvent", + "@$xp$18Controls@TTabOrder", + "@$xp$18Dialogs@TMsgDlgBtn", + "@$xp$18Extactns@TSendMail", + "@$xp$18Extctrls@TColorBox", + "@$xp$18Extctrls@TNotebook", + "@$xp$18Extctrls@TPaintBox", + "@$xp$18Extctrls@TSplitter", + "@$xp$18Forms@TApplication", + "@$xp$18Forms@TBorderIcons", + "@$xp$18Forms@TBorderStyle", + "@$xp$18Forms@TCloseAction", + "@$xp$18Forms@TCustomFrame", + "@$xp$18Forms@TWindowState", + "@$xp$18Graphics@TFillMode", + "@$xp$18Graphics@TFontName", + "@$xp$18Graphics@TMetafile", + "@$xp$18Graphics@TPenStyle", + "@$xp$18Grids@TGridOptions", + "@$xp$18Grids@TInplaceEdit", + "@$xp$18Imglist@TImageType", + "@$xp$18Menus@TTrackButton", + "@$xp$18Olectnrs@TSizeMode", + "@$xp$18Stdactns@TEditCopy", + "@$xp$18Stdactns@TEditUndo", + "@$xp$18Stdactns@TFileExit", + "@$xp$18Stdactns@TFileOpen", + "@$xp$18Stdactns@TFontEdit", + "@$xp$18Stdactns@TPrintDlg", + "@$xp$18Stdctrls@TCheckBox", + "@$xp$18Stdctrls@TComboBox", + "@$xp$18Stdctrls@TGroupBox", + "@$xp$18Svcmgr@TDependency", + "@$xp$18Svcmgr@TPauseEvent", + "@$xp$18Svcmgr@TStartEvent", + "@$xp$18TActiveFormControl", + "@$xp$18TActiveFormFactory", + "@$xp$18Toolwin@TEdgeStyle", + "@$xp$18Valedit@TItemProps", + "@$xp$18Valedit@TKeyOption", + "@$xp$19Actnlist@THintEvent", + "@$xp$19Axctrls@IFontAccess", + "@$xp$19Axctrls@TOleGraphic", + "@$xp$19Buttons@TBitBtnKind", + "@$xp$19Comctrls@TCommonAVI", + "@$xp$19Comctrls@TCoolBands", + "@$xp$19Comctrls@TItemState", + "@$xp$19Comctrls@TListItems", + "@$xp$19Comctrls@TNodeState", + "@$xp$19Comctrls@TStatusBar", + "@$xp$19Comctrls@TTickStyle", + "@$xp$19Comctrls@TTreeNodes", + "@$xp$19Comctrls@TUDBtnType", + "@$xp$19Comctrls@TViewStyle", + "@$xp$19Comctrls@TWorkAreas", + "@$xp$19Commdlg@TOFNotifyEx", + "@$xp$19Controls@TBevelEdge", + "@$xp$19Controls@TBevelKind", + "@$xp$19Controls@TDragState", + "@$xp$19Controls@TImageList", + "@$xp$19Dialogs@TFindDialog", + "@$xp$19Dialogs@TFindOption", + "@$xp$19Dialogs@TFontDialog", + "@$xp$19Dialogs@TMsgDlgType", + "@$xp$19Dialogs@TOpenDialog", + "@$xp$19Dialogs@TOpenOption", + "@$xp$19Dialogs@TPrintRange", + "@$xp$19Dialogs@TSaveDialog", + "@$xp$19Extactns@TBrowseURL", + "@$xp$19Extactns@TTabAction", + "@$xp$19Extactns@TURLAction", + "@$xp$19Extctrls@TShapeType", + "@$xp$19Forms@IDesignerHook", + "@$xp$19Forms@TMessageEvent", + "@$xp$19Forms@TScrollBarInc", + "@$xp$19Graphics@TFillStyle", + "@$xp$19Graphics@TFontPitch", + "@$xp$19Graphics@TFontStyle", + "@$xp$19Graphics@TIconImage", + "@$xp$19Graphics@TPenRecall", + "@$xp$19Grids@TGetEditEvent", + "@$xp$19Grids@TGridMovement", + "@$xp$19Grids@TSetEditEvent", + "@$xp$19Imglist@TChangeLink", + "@$xp$19Imglist@TImageIndex", + "@$xp$19Menus@TFindItemKind", + "@$xp$19Menus@TMenuAutoFlag", + "@$xp$19Olectrls@TEnumValue", + "@$xp$19Stdactns@TEditPaste", + "@$xp$19Stdctrls@TScrollBar", + "@$xp$19Svcmgr@TEventLogger", + "@$xp$19Svcmgr@TServiceType", + "@$xp$19Toolwin@TEdgeBorder", + "@$xp$19Toolwin@TToolWindow", + "@$xp$19Valedit@TKeyOptions", + "@$xp$20Actnlist@TActionLink", + "@$xp$20Actnlist@TActionList", + "@$xp$20Axctrls@TFontAdapter", + "@$xp$20Buttons@TButtonState", + "@$xp$20Buttons@TButtonStyle", + "@$xp$20Buttons@TSpeedButton", + "@$xp$20Comctrls@ComCtrls__9", + "@$xp$20Comctrls@TComboBoxEx", + "@$xp$20Comctrls@TConversion", + "@$xp$20Comctrls@TDTDateMode", + "@$xp$20Comctrls@THKModifier", + "@$xp$20Comctrls@TItemChange", + "@$xp$20Comctrls@TItemStates", + "@$xp$20Comctrls@TListColumn", + "@$xp$20Comctrls@TSearchType", + "@$xp$20Comctrls@TTabControl", + "@$xp$20Comctrls@TToolButton", + "@$xp$20Controls@TAnchorKind", + "@$xp$20Controls@TBevelEdges", + "@$xp$20Controls@TBevelWidth", + "@$xp$20Controls@TDragObject", + "@$xp$20Controls@THintWindow", + "@$xp$20Controls@TMouseEvent", + "@$xp$20Controls@TWinControl", + "@$xp$20Dialogs@TColorDialog", + "@$xp$20Dialogs@TFindOptions", + "@$xp$20Dialogs@TOpenOptions", + "@$xp$20Dialogs@TPrintDialog", + "@$xp$20Extctrls@TBevelShape", + "@$xp$20Extctrls@TBevelStyle", + "@$xp$20Extctrls@TBoundLabel", + "@$xp$20Extctrls@TControlBar", + "@$xp$20Extctrls@TRadioGroup", + "@$xp$20Forms@TScrollBarKind", + "@$xp$20Forms@TShortCutEvent", + "@$xp$20Forms@TShowHintEvent", + "@$xp$20Graphics@TBrushStyle", + "@$xp$20Graphics@TFontRecall", + "@$xp$20Graphics@TFontStyles", + "@$xp$20Graphutil@TArrowType", + "@$xp$20Grids@TDrawCellEvent", + "@$xp$20Grids@TGridDrawState", + "@$xp$20Mask@TCustomMaskEdit", + "@$xp$20Menus@TMenuAnimation", + "@$xp$20Menus@TMenuItemStack", + "@$xp$20Olectnrs@TCreateInfo", + "@$xp$20Olectnrs@TCreateType", + "@$xp$20Olectrls@TOleControl", + "@$xp$20Oleserver@TOleServer", + "@$xp$20Stdactns@TEditAction", + "@$xp$20Stdactns@TEditDelete", + "@$xp$20Stdactns@TFileAction", + "@$xp$20Stdactns@TFileSaveAs", + "@$xp$20Stdactns@THelpAction", + "@$xp$20Stdactns@THelpOnHelp", + "@$xp$20Stdactns@THintAction", + "@$xp$20Stdactns@TSearchFind", + "@$xp$20Stdctrls@TCustomEdit", + "@$xp$20Stdctrls@TCustomMemo", + "@$xp$20Stdctrls@TScrollCode", + "@$xp$20Stdctrls@TStaticText", + "@$xp$20Stdctrls@TTextLayout", + "@$xp$20Svcmgr@TDependencies", + "@$xp$20Svcmgr@TServiceEvent", + "@$xp$20TActiveXPropertyPage", + "@$xp$20Toolwin@TEdgeBorders", + "@$xp$21Actnlist@TActionEvent", + "@$xp$21Axctrls@TPropertyPage", + "@$xp$21Buttons@TButtonLayout", + "@$xp$21Comctrls@ComCtrls__34", + "@$xp$21Comctrls@TComboExItem", + "@$xp$21Comctrls@TDisplayCode", + "@$xp$21Comctrls@THKModifiers", + "@$xp$21Comctrls@THeaderStyle", + "@$xp$21Comctrls@TIconOptions", + "@$xp$21Comctrls@TItemRequest", + "@$xp$21Comctrls@TListColumns", + "@$xp$21Comctrls@TPageControl", + "@$xp$21Comctrls@TProgressBar", + "@$xp$21Comctrls@TSearchTypes", + "@$xp$21Comctrls@TStatusPanel", + "@$xp$21Comctrls@TTabPosition", + "@$xp$21Controls@Controls__01", + "@$xp$21Controls@Controls__11", + "@$xp$21Controls@Controls__21", + "@$xp$21Controls@IDockManager", + "@$xp$21Controls@TBorderWidth", + "@$xp$21Controls@TDragMessage", + "@$xp$21Controls@TModalResult", + "@$xp$21Controls@TMouseButton", + "@$xp$21Controls@TUnDockEvent", + "@$xp$21Dialogs@TCommonDialog", + "@$xp$21Dialogs@TFDApplyEvent", + "@$xp$21Dialogs@TOpenOptionEx", + "@$xp$21Extactns@TDownLoadURL", + "@$xp$21Extactns@TOpenPicture", + "@$xp$21Extactns@TPreviousTab", + "@$xp$21Extactns@TSavePicture", + "@$xp$21Extctrls@TCustomPanel", + "@$xp$21Extctrls@TLabeledEdit", + "@$xp$21Extctrls@TResizeStyle", + "@$xp$21Forms@TCustomDockForm", + "@$xp$21Forms@TDefaultMonitor", + "@$xp$21Forms@TExceptionEvent", + "@$xp$21Forms@TScrollBarStyle", + "@$xp$21Graphics@TBitmapImage", + "@$xp$21Graphics@TBrushRecall", + "@$xp$21Graphics@TCanvasState", + "@$xp$21Graphics@TFontCharset", + "@$xp$21Graphics@TPixelFormat", + "@$xp$21Graphics@TSharedImage", + "@$xp$21Grids@TCustomDrawGrid", + "@$xp$21Grids@TGetExtentsFunc", + "@$xp$21Imglist@TDrawingStyle", + "@$xp$21Imglist@TLoadResource", + "@$xp$21Menus@TMenuActionLink", + "@$xp$21Menus@TMenuAnimations", + "@$xp$21Menus@TPopupAlignment", + "@$xp$21Olectnrs@TObjectState", + "@$xp$21Stdactns@TColorSelect", + "@$xp$21Stdactns@TWindowClose", + "@$xp$21Stdctrls@TCustomCombo", + "@$xp$21Stdctrls@TCustomLabel", + "@$xp$21Stdctrls@TRadioButton", + "@$xp$21Stdctrls@TScrollEvent", + "@$xp$21Stdctrls@TScrollStyle", + "@$xp$21Svcmgr@TContinueEvent", + "@$xp$21Svcmgr@TCurrentStatus", + "@$xp$21Svcmgr@TErrorSeverity", + "@$xp$21Svcmgr@TServiceThread", + "@$xp$21Toolwin@TToolDockForm", + "@$xp$22Actnlist@TCustomAction", + "@$xp$22Actnlist@TShortCutList", + "@$xp$22Axctrls@IPictureAccess", + "@$xp$22Axctrls@TCustomAdapter", + "@$xp$22Comctrls@TCalDayOfWeek", + "@$xp$22Comctrls@TComboExItems", + "@$xp$22Comctrls@TCustomHotKey", + "@$xp$22Comctrls@TCustomUpDown", + "@$xp$22Comctrls@TDTDateFormat", + "@$xp$22Comctrls@TDateTimeKind", + "@$xp$22Comctrls@TDrawTabEvent", + "@$xp$22Comctrls@THKInvalidKey", + "@$xp$22Comctrls@TItemRequests", + "@$xp$22Comctrls@TPageScroller", + "@$xp$22Comctrls@TStatusPanels", + "@$xp$22Comctrls@TUDClickEvent", + "@$xp$22Controls@TControlState", + "@$xp$22Controls@TControlStyle", + "@$xp$22Controls@TDragObjectEx", + "@$xp$22Controls@TEndDragEvent", + "@$xp$22Controls@TScalingFlags", + "@$xp$22Dialogs@TFileEditStyle", + "@$xp$22Dialogs@TMsgDlgButtons", + "@$xp$22Dialogs@TOpenOptionsEx", + "@$xp$22Dialogs@TReplaceDialog", + "@$xp$22Extactns@TRichEditBold", + "@$xp$22Extctrls@NaturalNumber", + "@$xp$22Extctrls@TSectionEvent", + "@$xp$22Forms@TCloseQueryEvent", + "@$xp$22Forms@TFormBorderStyle", + "@$xp$22Graphics@TCanvasStates", + "@$xp$22Graphics@TFontDataName", + "@$xp$22Grids@TInplaceEditList", + "@$xp$22Grids@TSelectCellEvent", + "@$xp$22Imglist@TLoadResources", + "@$xp$22Menus@TMenuChangeEvent", + "@$xp$22Olectnrs@IVCLFrameForm", + "@$xp$22Olectnrs@TAutoActivate", + "@$xp$22Olectnrs@TOleContainer", + "@$xp$22Olectrls@EOleCtrlError", + "@$xp$22Olectrls@TEnumPropDesc", + "@$xp$22Oleserver@TConnectKind", + "@$xp$22Printers@TPrinterState", + "@$xp$22Stdactns@TFileOpenWith", + "@$xp$22Stdactns@THelpContents", + "@$xp$22Stdactns@TSearchAction", + "@$xp$22Stdactns@TWindowAction", + "@$xp$22Stdctrls@TEditCharCase", + "@$xp$22Stdctrls@TListBoxStyle", + "@$xp$22TActiveXControlFactory", + "@$xp$22Valedit@TDisplayOption", + "@$xp$23Axctrls@TPictureAdapter", + "@$xp$23Axctrls@TStringsAdapter", + "@$xp$23Comctrls@EDateTimeError", + "@$xp$23Comctrls@EMonthCalError", + "@$xp$23Comctrls@ETreeViewError", + "@$xp$23Comctrls@TAttributeType", + "@$xp$23Comctrls@THKInvalidKeys", + "@$xp$23Comctrls@THeaderControl", + "@$xp$23Comctrls@THeaderSection", + "@$xp$23Comctrls@TLVChangeEvent", + "@$xp$23Comctrls@TLVEditedEvent", + "@$xp$23Comctrls@TLVNotifyEvent", + "@$xp$23Comctrls@TMonthCalendar", + "@$xp$23Comctrls@TTBButtonEvent", + "@$xp$23Comctrls@TTVEditedEvent", + "@$xp$23Comctrls@TUDAlignButton", + "@$xp$23Comctrls@TUDOrientation", + "@$xp$23Controls@TControlCanvas", + "@$xp$23Controls@TCustomControl", + "@$xp$23Controls@TDockDropEvent", + "@$xp$23Controls@TDockOverEvent", + "@$xp$23Controls@TDragDropEvent", + "@$xp$23Controls@TDragImageList", + "@$xp$23Controls@TDragOverEvent", + "@$xp$23Controls@TKeyPressEvent", + "@$xp$23Extactns@TCustomFileRun", + "@$xp$23Extctrls@TBandDragEvent", + "@$xp$23Extctrls@TBandInfoEvent", + "@$xp$23Extctrls@TBandMoveEvent", + "@$xp$23Extctrls@TColorBoxStyle", + "@$xp$23Extctrls@TLabelPosition", + "@$xp$23Forms@TControlScrollBar", + "@$xp$23Forms@TCustomActiveForm", + "@$xp$23Forms@TMonitorDefaultTo", + "@$xp$23Graphics@TMetafileImage", + "@$xp$23Graphics@TProgressEvent", + "@$xp$23Graphics@TProgressStage", + "@$xp$23Listactns@TGetItemEvent", + "@$xp$23Menus@TMenuItemAutoFlag", + "@$xp$23Olectrls@TEnumValueList", + "@$xp$23Olectrls@TEventDispatch", + "@$xp$23Oleserver@TVariantArray", + "@$xp$23Stdactns@TEditSelectAll", + "@$xp$23Stdactns@TSearchReplace", + "@$xp$23Stdactns@TWindowArrange", + "@$xp$23Stdactns@TWindowCascade", + "@$xp$23Stdctrls@TButtonControl", + "@$xp$23Stdctrls@TCheckBoxState", + "@$xp$23Stdctrls@TComboBoxStyle", + "@$xp$23Stdctrls@TCustomListBox", + "@$xp$23Stdctrls@TDrawItemEvent", + "@$xp$23Toolwin@TToolDockObject", + "@$xp$23Valedit@TDisplayOptions", + "@$xp$24Actnlist@TEnumActionProc", + "@$xp$24Axctrls@IAmbientDispatch", + "@$xp$24Axctrls@TAdapterNotifier", + "@$xp$24Axctrls@TReflectorWindow", + "@$xp$24Comctrls@TCommonCalendar", + "@$xp$24Comctrls@TCustomListView", + "@$xp$24Comctrls@TCustomRichEdit", + "@$xp$24Comctrls@TCustomTreeView", + "@$xp$24Comctrls@TDTCalAlignment", + "@$xp$24Comctrls@TDateTimePicker", + "@$xp$24Comctrls@TDrawPanelEvent", + "@$xp$24Comctrls@THeaderSections", + "@$xp$24Comctrls@TLVCompareEvent", + "@$xp$24Comctrls@TLVDeletedEvent", + "@$xp$24Comctrls@TLVEditingEvent", + "@$xp$24Comctrls@TLVInfoTipEvent", + "@$xp$24Comctrls@TMonthCalColors", + "@$xp$24Comctrls@TNodeAttachMode", + "@$xp$24Comctrls@TNumberingStyle", + "@$xp$24Comctrls@TParaAttributes", + "@$xp$24Comctrls@TTVChangedEvent", + "@$xp$24Comctrls@TTVCompareEvent", + "@$xp$24Comctrls@TTVEditingEvent", + "@$xp$24Comctrls@TTextAttributes", + "@$xp$24Controls@TCanResizeEvent", + "@$xp$24Controls@TConstraintSize", + "@$xp$24Controls@TDragDockObject", + "@$xp$24Controls@TGraphicControl", + "@$xp$24Controls@TMouseMoveEvent", + "@$xp$24Controls@TStartDockEvent", + "@$xp$24Controls@TStartDragEvent", + "@$xp$24Extactns@TRichEditAction", + "@$xp$24Extactns@TRichEditItalic", + "@$xp$24Extctrls@TBandPaintEvent", + "@$xp$24Extctrls@TCanResizeEvent", + "@$xp$24Extctrls@TColorBoxStyles", + "@$xp$24Extctrls@TCustomColorBox", + "@$xp$24Graphics@EInvalidGraphic", + "@$xp$24Graphics@IChangeNotifier", + "@$xp$24Graphics@TFontStylesBase", + "@$xp$24Graphics@TGraphicsObject", + "@$xp$24Graphics@TMetafileCanvas", + "@$xp$24Grids@TStringGridStrings", + "@$xp$24Imglist@TCustomImageList", + "@$xp$24Menus@TMenuDrawItemEvent", + "@$xp$24Stdactns@TFilePrintSetup", + "@$xp$24Stdactns@TSearchFindNext", + "@$xp$24Stdctrls@TCustomCheckBox", + "@$xp$24Stdctrls@TCustomComboBox", + "@$xp$24Stdctrls@TCustomGroupBox", + "@$xp$24Stdctrls@TLBGetDataEvent", + "@$xp$24Valedit@TOnValidateEvent", + "@$xp$24Valedit@TValueListEditor", + "@$xp$25Actnlist@TActionListState", + "@$xp$25Actnlist@TContainedAction", + "@$xp$25Axctrls@TPropertyPageImpl", + "@$xp$25Cmadmctl@TCOMAdminCatalog", + "@$xp$25Comctrls@TComboBoxExStyle", + "@$xp$25Comctrls@TCustomDrawStage", + "@$xp$25Comctrls@TCustomDrawState", + "@$xp$25Comctrls@TCustomStatusBar", + "@$xp$25Comctrls@TIconArrangement", + "@$xp$25Comctrls@TLVChangingEvent", + "@$xp$25Comctrls@TLVDrawItemEvent", + "@$xp$25Comctrls@TListArrangement", + "@$xp$25Comctrls@TPageScrollEvent", + "@$xp$25Comctrls@TSearchDirection", + "@$xp$25Comctrls@TTVChangingEvent", + "@$xp$25Comctrls@TTVExpandedEvent", + "@$xp$25Comctrls@TToolButtonState", + "@$xp$25Comctrls@TToolButtonStyle", + "@$xp$25Comctrls@TUDChangingEvent", + "@$xp$25Comctrls@TUpDownDirection", + "@$xp$25Controls@TDockOrientation", + "@$xp$25Controls@TForEachZoneProc", + "@$xp$25Controls@TMouseWheelEvent", + "@$xp$25Controls@TSizeConstraints", + "@$xp$25Dialogs@TFontDialogDevice", + "@$xp$25Dialogs@TFontDialogOption", + "@$xp$25Dialogs@TIncludeItemEvent", + "@$xp$25Extactns@TRichEditBullets", + "@$xp$25Extctrls@TBandPaintOption", + "@$xp$25Forms@TSettingChangeEvent", + "@$xp$25Graphics@TTransparentMode", + "@$xp$25Grids@TOnGetPickListItems", + "@$xp$25Listactns@TListActionLink", + "@$xp$25Olectnrs@TObjectMoveEvent", + "@$xp$25Stdactns@THelpTopicSearch", + "@$xp$25Stdactns@TSearchFindFirst", + "@$xp$25Stdctrls@TLBFindDataEvent", + "@$xp$25Valedit@TGetPickListEvent", + "@$xp$25Valedit@TValueListStrings", + "@$xp$26Actnlist@TCustomActionList", + "@$xp$26Cmadmctl@CoCOMAdminCatalog", + "@$xp$26Comctrls@TComboBoxExStyles", + "@$xp$26Comctrls@TConversionFormat", + "@$xp$26Comctrls@TCoolBandMaximize", + "@$xp$26Comctrls@TCustomComboBoxEx", + "@$xp$26Comctrls@TCustomDrawTarget", + "@$xp$26Comctrls@TCustomTabControl", + "@$xp$26Comctrls@TDrawSectionEvent", + "@$xp$26Comctrls@TLVOwnerDataEvent", + "@$xp$26Comctrls@TMultiSelectStyle", + "@$xp$26Comctrls@TSectionDragEvent", + "@$xp$26Comctrls@TStatusPanelBevel", + "@$xp$26Comctrls@TStatusPanelStyle", + "@$xp$26Comctrls@TTBNewButtonEvent", + "@$xp$26Comctrls@TTVExpandingEvent", + "@$xp$26Comctrls@TTabChangingEvent", + "@$xp$26Comctrls@TTabGetImageEvent", + "@$xp$26Controls@TDragDockObjectEx", + "@$xp$26Controls@TGetSiteInfoEvent", + "@$xp$26Dialogs@TColorDialogOption", + "@$xp$26Dialogs@TFontDialogOptions", + "@$xp$26Dialogs@TPrintDialogOption", + "@$xp$26Extactns@TValidateTabEvent", + "@$xp$26Extctrls@TBandPaintOptions", + "@$xp$26Extctrls@TCustomControlBar", + "@$xp$26Extctrls@TCustomRadioGroup", + "@$xp$26Extdlgs@TOpenPictureDialog", + "@$xp$26Extdlgs@TSavePictureDialog", + "@$xp$26Forms@TScrollingWinControl", + "@$xp$26Graphics@TBitmapHandleType", + "@$xp$26Graphutil@TScrollDirection", + "@$xp$26Grids@TGridScrollDirection", + "@$xp$26Listactns@TListControlItem", + "@$xp$26Listactns@TStaticListItems", + "@$xp$26Stdctrls@TButtonActionLink", + "@$xp$26Stdctrls@TCustomStaticText", + "@$xp$26Stdctrls@TMeasureItemEvent", + "@$xp$26Svcmgr@TServiceApplication", + "@$xp$26Toolwin@TSizingOrientation", + "@$xp$27Appevnts@TApplicationEvents", + "@$xp$27Axctrls@TDefinePropertyPage", + "@$xp$27Comctrls@TComboBoxExStrings", + "@$xp$27Comctrls@TComboBoxExStyleEx", + "@$xp$27Comctrls@TDTParseInputEvent", + "@$xp$27Comctrls@TLVCustomDrawEvent", + "@$xp$27Comctrls@TLVSelectItemEvent", + "@$xp$27Comctrls@TListHotTrackStyle", + "@$xp$27Comctrls@TMultiSelectStyles", + "@$xp$27Comctrls@TSectionTrackEvent", + "@$xp$27Comctrls@TSectionTrackState", + "@$xp$27Comctrls@TTBCustomDrawEvent", + "@$xp$27Comctrls@TTBCustomDrawFlags", + "@$xp$27Comctrls@TTVCollapsingEvent", + "@$xp$27Comctrls@TTVCustomDrawEvent", + "@$xp$27Comctrls@TToolBarDockObject", + "@$xp$27Comctrls@TUDChangingEventEx", + "@$xp$27Controls@TContextPopupEvent", + "@$xp$27Controls@TControlActionLink", + "@$xp$27Controls@TCustomListControl", + "@$xp$27Controls@TDragControlObject", + "@$xp$27Dialogs@TColorDialogOptions", + "@$xp$27Dialogs@TPrintDialogOptions", + "@$xp$27Dialogs@TPrinterSetupDialog", + "@$xp$27Extactns@TListControlAction", + "@$xp$27Extactns@TRichEditAlignLeft", + "@$xp$27Extactns@TRichEditStrikeOut", + "@$xp$27Extactns@TRichEditUnderline", + "@$xp$27Extactns@TURLDownloadStatus", + "@$xp$27Extctrls@TCustomLabeledEdit", + "@$xp$27Graphics@TCanvasOrientation", + "@$xp$27Grids@EInvalidGridOperation", + "@$xp$27Listactns@TCustomListAction", + "@$xp$27Listactns@TListCompareEvent", + "@$xp$27Listactns@TListControlItems", + "@$xp$27Listactns@TStaticListAction", + "@$xp$27Menus@TMenuMeasureItemEvent", + "@$xp$27Printers@TPrinterCapability", + "@$xp$27Stdactns@THelpContextAction", + "@$xp$27Stdactns@TWindowMinimizeAll", + "@$xp$27Stdctrls@TStaticBorderStyle", + "@$xp$27TActiveXPropertyPageFactory", + "@$xp$28Comctrls@THeaderSectionStyle", + "@$xp$28Comctrls@TLVColumnClickEvent", + "@$xp$28Comctrls@TListHotTrackStyles", + "@$xp$28Comctrls@TListViewActionLink", + "@$xp$28Comctrls@TPageScrollerButton", + "@$xp$28Comctrls@TSectionNotifyEvent", + "@$xp$28Extactns@TRichEditAlignRight", + "@$xp$28Forms@TActiveFormBorderStyle", + "@$xp$28Listactns@TGetItemCountEvent", + "@$xp$28Listactns@TItemSelectedEvent", + "@$xp$28Listactns@TListItemsSortType", + "@$xp$28Listactns@TVirtualListAction", + "@$xp$28Printers@TPrinterOrientation", + "@$xp$28Stdactns@TCommonDialogAction", + "@$xp$28Stdactns@TWindowTileVertical", + "@$xp$28Winhelpviewer@IWinHelpTester", + "@$xp$29Comctrls@ECommonCalendarError", + "@$xp$29Comctrls@TConsistentAttribute", + "@$xp$29Comctrls@TCustomHeaderControl", + "@$xp$29Comctrls@TLVColumnRClickEvent", + "@$xp$29Comctrls@TLVSubItemImageEvent", + "@$xp$29Comctrls@TOnGetMonthInfoEvent", + "@$xp$29Comctrls@TRichEditResizeEvent", + "@$xp$29Comctrls@TTrackBarOrientation", + "@$xp$29Controls@TDragControlObjectEx", + "@$xp$29Extactns@TRichEditAlignCenter", + "@$xp$29Printers@TPrinterCapabilities", + "@$xp$30Buttons@TSpeedButtonActionLink", + "@$xp$30Comctrls@TComboBoxExActionLink", + "@$xp$30Comctrls@TConsistentAttributes", + "@$xp$30Comctrls@TCustomDrawPanelEvent", + "@$xp$30Comctrls@TLVOwnerDataFindEvent", + "@$xp$30Comctrls@TLVOwnerDataHintEvent", + "@$xp$30Comctrls@TTBCustomDrawBtnEvent", + "@$xp$30Comctrls@TToolButtonActionLink", + "@$xp$30Controls@TWinControlActionLink", + "@$xp$30Extactns@TListControlSelectAll", + "@$xp$30Listactns@TGetVirtualItemEvent", + "@$xp$30Oleserver@TServerEventDispatch", + "@$xp$30Stdactns@TWindowTileHorizontal", + "@$xp$30Stdctrls@TLBGetDataObjectEvent", + "@$xp$31Cmadmctl@TCOMAdminCatalogObject", + "@$xp$31Comctrls@TLVCustomDrawItemEvent", + "@$xp$31Comctrls@TRichEditProtectChange", + "@$xp$31Comctrls@TRichEditSaveClipboard", + "@$xp$31Comctrls@TTBCustomizeQueryEvent", + "@$xp$31Comctrls@TTVCustomDrawItemEvent", + "@$xp$31Controls@TBaseDragControlObject", + "@$xp$31Controls@TMouseWheelUpDownEvent", + "@$xp$31Extactns@TDownloadProgressEvent", + "@$xp$31Stdctrls@TCustomComboBoxStrings", + "@$xp$32Cmadmctl@CoCOMAdminCatalogObject", + "@$xp$32Comctrls@TCustomDrawSectionEvent", + "@$xp$32Comctrls@TLVCreateItemClassEvent", + "@$xp$32Comctrls@TProgressBarOrientation", + "@$xp$32Comctrls@TTVCreateNodeClassEvent", + "@$xp$32Controls@TConstrainedResizeEvent", + "@$xp$32Menus@TAdvancedMenuDrawItemEvent", + "@$xp$33Appevnts@TCustomApplicationEvents", + "@$xp$33Comctrls@TCustomSectionTrackEvent", + "@$xp$33Comctrls@TPageScrollerButtonState", + "@$xp$33Comctrls@TPageScrollerOrientation", + "@$xp$33Comctrls@TSBCreatePanelClassEvent", + "@$xp$33Graphics@EInvalidGraphicOperation", + "@$xp$34Comctrls@TCustomSectionNotifyEvent", + "@$xp$34Comctrls@TLVCustomDrawSubItemEvent", + "@$xp$34Extactns@TListControlCopySelection", + "@$xp$34Extactns@TListControlMoveSelection", + "@$xp$35Cmadmctl@TCOMAdminCatalogCollection", + "@$xp$35Comctrls@THCCreateSectionClassEvent", + "@$xp$35Comctrls@TLVAdvancedCustomDrawEvent", + "@$xp$35Comctrls@TTBAdvancedCustomDrawEvent", + "@$xp$35Comctrls@TTVAdvancedCustomDrawEvent", + "@$xp$35Extactns@TListControlClearSelection", + "@$xp$36Cmadmctl@CoCOMAdminCatalogCollection", + "@$xp$36Extactns@TListControlDeleteSelection", + "@$xp$37Comctrls@TLVOwnerDataStateChangeEvent", + "@$xp$38Comctrls@TTBAdvancedCustomDrawBtnEvent", + "@$xp$38Controls@TCustomMultiSelectListControl", + "@$xp$39Comctrls@TLVAdvancedCustomDrawItemEvent", + "@$xp$39Comctrls@TTVAdvancedCustomDrawItemEvent", + "@$xp$41Comctrls@TCustomHCCreateSectionClassEvent", + "@$xp$42Comctrls@TLVAdvancedCustomDrawSubItemEvent", + "@$xp$5TDate", + "@$xp$5TTime", + "@Actnlist@CreateAction$qqrp18Classes@TComponentp17System@TMetaClass", + "@Actnlist@CreateActionProc", + "@Actnlist@EnumRegisteredActions$qqrynpqqrx17System@AnsiStringp17System@TMetaClasspv$vpv", + "@Actnlist@EnumRegisteredActionsProc", + "@Actnlist@Finalization$qqrv", + "@Actnlist@RegisterActions$qqrx17System@AnsiStringpp17System@TMetaClassxip17System@TMetaClass", + "@Actnlist@RegisterActionsProc", + "@Actnlist@TAction@", + "@Actnlist@TAction@$bctr$qqrp18Classes@TComponent", + "@Actnlist@TActionLink@", + "@Actnlist@TActionLink@IsCaptionLinked$qqrv", + "@Actnlist@TActionLink@IsCheckedLinked$qqrv", + "@Actnlist@TActionLink@IsEnabledLinked$qqrv", + "@Actnlist@TActionLink@IsGroupIndexLinked$qqrv", + "@Actnlist@TActionLink@IsHelpContextLinked$qqrv", + "@Actnlist@TActionLink@IsHelpLinked$qqrv", + "@Actnlist@TActionLink@IsHintLinked$qqrv", + "@Actnlist@TActionLink@IsImageIndexLinked$qqrv", + "@Actnlist@TActionLink@IsShortCutLinked$qqrv", + "@Actnlist@TActionLink@IsVisibleLinked$qqrv", + "@Actnlist@TActionLink@SetAutoCheck$qqro", + "@Actnlist@TActionLink@SetCaption$qqrx17System@AnsiString", + "@Actnlist@TActionLink@SetChecked$qqro", + "@Actnlist@TActionLink@SetEnabled$qqro", + "@Actnlist@TActionLink@SetGroupIndex$qqri", + "@Actnlist@TActionLink@SetHelpContext$qqri", + "@Actnlist@TActionLink@SetHelpKeyword$qqrx17System@AnsiString", + "@Actnlist@TActionLink@SetHelpType$qqr17Classes@THelpType", + "@Actnlist@TActionLink@SetHint$qqrx17System@AnsiString", + "@Actnlist@TActionLink@SetImageIndex$qqri", + "@Actnlist@TActionLink@SetShortCut$qqrus", + "@Actnlist@TActionLink@SetVisible$qqro", + "@Actnlist@TActionList@", + "@Actnlist@TContainedAction@", + "@Actnlist@TContainedAction@$bdtr$qqrv", + "@Actnlist@TContainedAction@Execute$qqrv", + "@Actnlist@TContainedAction@GetIndex$qqrv", + "@Actnlist@TContainedAction@GetParentComponent$qqrv", + "@Actnlist@TContainedAction@HasParent$qqrv", + "@Actnlist@TContainedAction@IsCategoryStored$qqrv", + "@Actnlist@TContainedAction@ReadState$qqrp15Classes@TReader", + "@Actnlist@TContainedAction@SetActionList$qqrp26Actnlist@TCustomActionList", + "@Actnlist@TContainedAction@SetCategory$qqrx17System@AnsiString", + "@Actnlist@TContainedAction@SetIndex$qqri", + "@Actnlist@TContainedAction@SetParentComponent$qqrp18Classes@TComponent", + "@Actnlist@TContainedAction@Update$qqrv", + "@Actnlist@TCustomAction@", + "@Actnlist@TCustomAction@$bctr$qqrp18Classes@TComponent", + "@Actnlist@TCustomAction@$bdtr$qqrv", + "@Actnlist@TCustomAction@AssignTo$qqrp19Classes@TPersistent", + "@Actnlist@TCustomAction@DoHint$qqrr17System@AnsiString", + "@Actnlist@TCustomAction@Execute$qqrv", + "@Actnlist@TCustomAction@GetSecondaryShortCuts$qqrv", + "@Actnlist@TCustomAction@HandleShortCut$qqrv", + "@Actnlist@TCustomAction@IsSecondaryShortCutsStored$qqrv", + "@Actnlist@TCustomAction@SetAutoCheck$qqro", + "@Actnlist@TCustomAction@SetCaption$qqrx17System@AnsiString", + "@Actnlist@TCustomAction@SetChecked$qqro", + "@Actnlist@TCustomAction@SetEnabled$qqro", + "@Actnlist@TCustomAction@SetGroupIndex$qqrxi", + "@Actnlist@TCustomAction@SetHelpContext$qqri", + "@Actnlist@TCustomAction@SetHelpKeyword$qqrx17System@AnsiString", + "@Actnlist@TCustomAction@SetHelpType$qqr17Classes@THelpType", + "@Actnlist@TCustomAction@SetHint$qqrx17System@AnsiString", + "@Actnlist@TCustomAction@SetImageIndex$qqri", + "@Actnlist@TCustomAction@SetName$qqrx17System@AnsiString", + "@Actnlist@TCustomAction@SetSecondaryShortCuts$qqrpx22Actnlist@TShortCutList", + "@Actnlist@TCustomAction@SetShortCut$qqrus", + "@Actnlist@TCustomAction@SetVisible$qqro", + "@Actnlist@TCustomActionList@", + "@Actnlist@TCustomActionList@$bctr$qqrp18Classes@TComponent", + "@Actnlist@TCustomActionList@$bdtr$qqrv", + "@Actnlist@TCustomActionList@AddAction$qqrp25Actnlist@TContainedAction", + "@Actnlist@TCustomActionList@Change$qqrv", + "@Actnlist@TCustomActionList@ExecuteAction$qqrp20Classes@TBasicAction", + "@Actnlist@TCustomActionList@GetAction$qqri", + "@Actnlist@TCustomActionList@GetActionCount$qqrv", + "@Actnlist@TCustomActionList@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Actnlist@TCustomActionList@ImageListChange$qqrp14System@TObject", + "@Actnlist@TCustomActionList@IsShortCut$qqrr15Messages@TWMKey", + "@Actnlist@TCustomActionList@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Actnlist@TCustomActionList@RemoveAction$qqrp25Actnlist@TContainedAction", + "@Actnlist@TCustomActionList@SetAction$qqrip25Actnlist@TContainedAction", + "@Actnlist@TCustomActionList@SetChildOrder$qqrp18Classes@TComponenti", + "@Actnlist@TCustomActionList@SetImages$qqrp24Imglist@TCustomImageList", + "@Actnlist@TCustomActionList@SetState$qqrx25Actnlist@TActionListState", + "@Actnlist@TCustomActionList@UpdateAction$qqrp20Classes@TBasicAction", + "@Actnlist@TShortCutList@", + "@Actnlist@TShortCutList@Add$qqrx17System@AnsiString", + "@Actnlist@TShortCutList@GetShortCuts$qqri", + "@Actnlist@TShortCutList@IndexOfShortCut$qqrxus", + "@Actnlist@UnRegisterActions$qqrpp17System@TMetaClassxi", + "@Actnlist@UnRegisterActionsProc", + "@Actnlist@initialization$qqrv", + "@Appevnts@Finalization$qqrv", + "@Appevnts@TApplicationEvents@", + "@Appevnts@TCustomApplicationEvents@", + "@Appevnts@TCustomApplicationEvents@$bctr$qqrp18Classes@TComponent", + "@Appevnts@TCustomApplicationEvents@Activate$qqrv", + "@Appevnts@TCustomApplicationEvents@CancelDispatch$qqrv", + "@Appevnts@TCustomApplicationEvents@DoActionExecute$qqrp20Classes@TBasicActionro", + "@Appevnts@TCustomApplicationEvents@DoActionUpdate$qqrp20Classes@TBasicActionro", + "@Appevnts@TCustomApplicationEvents@DoActivate$qqrp14System@TObject", + "@Appevnts@TCustomApplicationEvents@DoDeactivate$qqrp14System@TObject", + "@Appevnts@TCustomApplicationEvents@DoException$qqrp14System@TObjectp18Sysutils@Exception", + "@Appevnts@TCustomApplicationEvents@DoHelp$qqrusiro", + "@Appevnts@TCustomApplicationEvents@DoHint$qqrp14System@TObject", + "@Appevnts@TCustomApplicationEvents@DoIdle$qqrp14System@TObjectro", + "@Appevnts@TCustomApplicationEvents@DoMessage$qqrr6tagMSGro", + "@Appevnts@TCustomApplicationEvents@DoMinimize$qqrp14System@TObject", + "@Appevnts@TCustomApplicationEvents@DoRestore$qqrp14System@TObject", + "@Appevnts@TCustomApplicationEvents@DoSettingChange$qqrp14System@TObjectix17System@AnsiStringri", + "@Appevnts@TCustomApplicationEvents@DoShortcut$qqrr15Messages@TWMKeyro", + "@Appevnts@TCustomApplicationEvents@DoShowHint$qqrr17System@AnsiStringror15Forms@THintInfo", + "@Appevnts@initialization$qqrv", + "@Axctrls@Class_DColorPropPage", + "@Axctrls@Class_DFontPropPage", + "@Axctrls@Class_DPicturePropPage", + "@Axctrls@Class_DStringPropPage", + "@Axctrls@EnumDispatchProperties$qqr36System@%DelphiInterface$t9IDispatch%rx5_GUIDip16Classes@TStrings", + "@Axctrls@Finalization$qqrv", + "@Axctrls@GetOleFont$qqrp14Graphics@TFontr36System@%DelphiInterface$t9IFontDisp%", + "@Axctrls@GetOlePicture$qqrp17Graphics@TPicturer40System@%DelphiInterface$t12IPictureDisp%", + "@Axctrls@GetOleStrings$qqrp16Classes@TStringsr43System@%DelphiInterface$t15Stdvcl@IStrings%", + "@Axctrls@ParkingWindow$qqrv", + "@Axctrls@SetOleFont$qqrp14Graphics@TFont36System@%DelphiInterface$t9IFontDisp%", + "@Axctrls@SetOlePicture$qqrp17Graphics@TPicture40System@%DelphiInterface$t12IPictureDisp%", + "@Axctrls@SetOleStrings$qqrp16Classes@TStrings43System@%DelphiInterface$t15Stdvcl@IStrings%", + "@Axctrls@TActiveForm@", + "@Axctrls@TActiveForm@DefinePropertyPages$qqrynpqqrrx5_GUID$v", + "@Axctrls@TActiveForm@DoDestroy$qqrv", + "@Axctrls@TActiveForm@EventSinkChanged$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TActiveForm@Initialize$qqrv", + "@Axctrls@TActiveFormControl@", + "@Axctrls@TActiveFormControl@DefinePropertyPages$qqrynpqqrrx5_GUID$v", + "@Axctrls@TActiveFormControl@EventSinkChanged$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TActiveFormControl@FreeOnRelease$qqrv", + "@Axctrls@TActiveFormControl@InitializeControl$qqrv", + "@Axctrls@TActiveFormControl@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Axctrls@TActiveFormControl@ObjQueryInterface$qqsrx5_GUIDpv", + "@Axctrls@TActiveFormFactory@", + "@Axctrls@TActiveFormFactory@GetIntfEntry$qqrrx5_GUID", + "@Axctrls@TActiveXControl@", + "@Axctrls@TActiveXControl@$bdtr$qqrv", + "@Axctrls@TActiveXControl@Advise$qqsx39System@%DelphiInterface$t11IAdviseSink%ri", + "@Axctrls@TActiveXControl@Close$qqsi", + "@Axctrls@TActiveXControl@ContextSensitiveHelp$qqsi", + "@Axctrls@TActiveXControl@CreateAdviseHolder$qqrv", + "@Axctrls@TActiveXControl@DAdvise$qqsrx12tagFORMATETCix39System@%DelphiInterface$t11IAdviseSink%ri", + "@Axctrls@TActiveXControl@DUnadvise$qqsi", + "@Axctrls@TActiveXControl@DefinePropertyPages$qqrynpqqrrx5_GUID$v", + "@Axctrls@TActiveXControl@DoVerb$qqsip6tagMSGx42System@%DelphiInterface$t14IOleClientSite%iuirx11Types@TRect", + "@Axctrls@TActiveXControl@Draw$qqsiipvp17tagDVTARGETDEVICEuiuip11Types@TRectt7pqqsi$ii", + "@Axctrls@TActiveXControl@EnableModeless$qqsi", + "@Axctrls@TActiveXControl@EnumAdvise$qqsr41System@%DelphiInterface$t13IEnumSTATDATA%", + "@Axctrls@TActiveXControl@EnumDAdvise$qqsr41System@%DelphiInterface$t13IEnumSTATDATA%", + "@Axctrls@TActiveXControl@EnumFormatEtc$qqsir42System@%DelphiInterface$t14IEnumFORMATETC%", + "@Axctrls@TActiveXControl@EnumVerbs$qqsr40System@%DelphiInterface$t12IEnumOLEVERB%", + "@Axctrls@TActiveXControl@Freeze$qqsiipvri", + "@Axctrls@TActiveXControl@FreezeEvents$qqsi", + "@Axctrls@TActiveXControl@GetAdvise$qqspit1r39System@%DelphiInterface$t11IAdviseSink%", + "@Axctrls@TActiveXControl@GetCanonicalFormatEtc$qqsrx12tagFORMATETCr12tagFORMATETC", + "@Axctrls@TActiveXControl@GetClassID$qqsr5_GUID", + "@Axctrls@TActiveXControl@GetClientSite$qqsr42System@%DelphiInterface$t14IOleClientSite%", + "@Axctrls@TActiveXControl@GetClipboardData$qqsir39System@%DelphiInterface$t11IDataObject%", + "@Axctrls@TActiveXControl@GetColorSet$qqsiipvp17tagDVTARGETDEVICEuirp13tagLOGPALETTE", + "@Axctrls@TActiveXControl@GetContentExtent$qqsr12Types@TPoint", + "@Axctrls@TActiveXControl@GetControlInfo$qqsr14tagCONTROLINFO", + "@Axctrls@TActiveXControl@GetData$qqsrx12tagFORMATETCr12tagSTGMEDIUM", + "@Axctrls@TActiveXControl@GetDataHere$qqsrx12tagFORMATETCr12tagSTGMEDIUM", + "@Axctrls@TActiveXControl@GetDisplayString$qqsir17System@WideString", + "@Axctrls@TActiveXControl@GetExtent$qqsir12Types@TPoint", + "@Axctrls@TActiveXControl@GetInterfaceSafetyOptions$qqsrx5_GUIDpuit2", + "@Axctrls@TActiveXControl@GetMiscStatus$qqsiri", + "@Axctrls@TActiveXControl@GetMoniker$qqsiir35System@%DelphiInterface$t8IMoniker%", + "@Axctrls@TActiveXControl@GetPages$qqsr9tagCAUUID", + "@Axctrls@TActiveXControl@GetPredefinedStrings$qqsir13tagCALPOLESTRr10tagCADWORD", + "@Axctrls@TActiveXControl@GetPredefinedValue$qqsiir17System@OleVariant", + "@Axctrls@TActiveXControl@GetPropFromBag$qqrx17System@WideStringi40System@%DelphiInterface$t12IPropertyBag%36System@%DelphiInterface$t9IErrorLog%", + "@Axctrls@TActiveXControl@GetPropertyID$qqrx17System@WideString", + "@Axctrls@TActiveXControl@GetPropertyString$qqrir17System@AnsiString", + "@Axctrls@TActiveXControl@GetPropertyStrings$qqrip16Classes@TStrings", + "@Axctrls@TActiveXControl@GetPropertyValue$qqriir17System@OleVariant", + "@Axctrls@TActiveXControl@GetSizeMax$qqsrj", + "@Axctrls@TActiveXControl@GetUserClassID$qqsr5_GUID", + "@Axctrls@TActiveXControl@GetUserType$qqsirpb", + "@Axctrls@TActiveXControl@GetWindow$qqsrui", + "@Axctrls@TActiveXControl@Get_BackColor$qqsri", + "@Axctrls@TActiveXControl@Get_Caption$qqsr17System@WideString", + "@Axctrls@TActiveXControl@Get_Enabled$qqsrus", + "@Axctrls@TActiveXControl@Get_Font$qqsr36System@%DelphiInterface$t9IFontDisp%", + "@Axctrls@TActiveXControl@Get_ForeColor$qqsri", + "@Axctrls@TActiveXControl@Get_HWnd$qqsri", + "@Axctrls@TActiveXControl@Get_TabStop$qqsrus", + "@Axctrls@TActiveXControl@Get_Text$qqsr17System@WideString", + "@Axctrls@TActiveXControl@HandsOffStorage$qqsv", + "@Axctrls@TActiveXControl@InPlaceActivate$qqro", + "@Axctrls@TActiveXControl@InPlaceDeactivate$qqsv", + "@Axctrls@TActiveXControl@InitFromData$qqsx39System@%DelphiInterface$t11IDataObject%ii", + "@Axctrls@TActiveXControl@InitNew$qqsv", + "@Axctrls@TActiveXControl@Initialize$qqrv", + "@Axctrls@TActiveXControl@InitializeControl$qqrv", + "@Axctrls@TActiveXControl@IsDirty$qqsv", + "@Axctrls@TActiveXControl@IsUpToDate$qqsv", + "@Axctrls@TActiveXControl@LoadFromStream$qqrx34System@%DelphiInterface$t7IStream%", + "@Axctrls@TActiveXControl@MapPropertyToPage$qqsir5_GUID", + "@Axctrls@TActiveXControl@ObjQueryInterface$qqsrx5_GUIDpv", + "@Axctrls@TActiveXControl@OnAmbientPropertyChange$qqsi", + "@Axctrls@TActiveXControl@OnDocWindowActivate$qqsi", + "@Axctrls@TActiveXControl@OnFrameWindowActivate$qqsi", + "@Axctrls@TActiveXControl@OnMnemonic$qqsp6tagMSG", + "@Axctrls@TActiveXControl@PerformVerb$qqri", + "@Axctrls@TActiveXControl@PersistPropBagInitNew$qqsv", + "@Axctrls@TActiveXControl@PersistPropBagLoad$qqsx40System@%DelphiInterface$t12IPropertyBag%x36System@%DelphiInterface$t9IErrorLog%", + "@Axctrls@TActiveXControl@PersistPropBagSave$qqsx40System@%DelphiInterface$t12IPropertyBag%ii", + "@Axctrls@TActiveXControl@PersistStorageInitNew$qqsx35System@%DelphiInterface$t8IStorage%", + "@Axctrls@TActiveXControl@PersistStorageLoad$qqsx35System@%DelphiInterface$t8IStorage%", + "@Axctrls@TActiveXControl@PersistStorageSave$qqsx35System@%DelphiInterface$t8IStorage%i", + "@Axctrls@TActiveXControl@PersistStreamLoad$qqsx34System@%DelphiInterface$t7IStream%", + "@Axctrls@TActiveXControl@PersistStreamSave$qqsx34System@%DelphiInterface$t7IStream%i", + "@Axctrls@TActiveXControl@PostMessageFilter$qqsuiiiirii", + "@Axctrls@TActiveXControl@PreMessageFilter$qqsuiiiirit5", + "@Axctrls@TActiveXControl@PropChanged$qqri", + "@Axctrls@TActiveXControl@PropChanged$qqrx17System@WideString", + "@Axctrls@TActiveXControl@PropRequestEdit$qqri", + "@Axctrls@TActiveXControl@PropRequestEdit$qqrx17System@WideString", + "@Axctrls@TActiveXControl@PutPropInBag$qqrx17System@WideStringi40System@%DelphiInterface$t12IPropertyBag%", + "@Axctrls@TActiveXControl@QueryGetData$qqsrx12tagFORMATETC", + "@Axctrls@TActiveXControl@QuickActivate$qqsr14tagQACONTAINERr12tagQACONTROL", + "@Axctrls@TActiveXControl@ReactivateAndUndo$qqsv", + "@Axctrls@TActiveXControl@RecreateWnd$qqrv", + "@Axctrls@TActiveXControl@ResizeBorder$qqsrx11Types@TRectx47System@%DelphiInterface$t19IOleInPlaceUIWindow%i", + "@Axctrls@TActiveXControl@SaveCompleted$qqsx35System@%DelphiInterface$t8IStorage%", + "@Axctrls@TActiveXControl@SaveToStream$qqrx34System@%DelphiInterface$t7IStream%", + "@Axctrls@TActiveXControl@SetAdvise$qqsiix39System@%DelphiInterface$t11IAdviseSink%", + "@Axctrls@TActiveXControl@SetClientSite$qqsx42System@%DelphiInterface$t14IOleClientSite%", + "@Axctrls@TActiveXControl@SetColorScheme$qqsrx13tagLOGPALETTE", + "@Axctrls@TActiveXControl@SetContentExtent$qqsrx12Types@TPoint", + "@Axctrls@TActiveXControl@SetData$qqsrx12tagFORMATETCr12tagSTGMEDIUMi", + "@Axctrls@TActiveXControl@SetExtent$qqsirx12Types@TPoint", + "@Axctrls@TActiveXControl@SetHostNames$qqspbt1", + "@Axctrls@TActiveXControl@SetInPlaceSite$qqrx43System@%DelphiInterface$t15IOleInPlaceSite%", + "@Axctrls@TActiveXControl@SetInterfaceSafetyOptions$qqsrx5_GUIDuiui", + "@Axctrls@TActiveXControl@SetMoniker$qqsix35System@%DelphiInterface$t8IMoniker%", + "@Axctrls@TActiveXControl@SetObjectRects$qqsrx11Types@TRectt1", + "@Axctrls@TActiveXControl@Set_BackColor$qqsi", + "@Axctrls@TActiveXControl@Set_Caption$qqsx17System@WideString", + "@Axctrls@TActiveXControl@Set_Enabled$qqsus", + "@Axctrls@TActiveXControl@Set_Font$qqsx36System@%DelphiInterface$t9IFontDisp%", + "@Axctrls@TActiveXControl@Set_ForeColor$qqsi", + "@Axctrls@TActiveXControl@Set_TabStop$qqsus", + "@Axctrls@TActiveXControl@Set_Text$qqsx17System@WideString", + "@Axctrls@TActiveXControl@ShowPropertyDialog$qqrv", + "@Axctrls@TActiveXControl@StdClickEvent$qqrp14System@TObject", + "@Axctrls@TActiveXControl@StdDblClickEvent$qqrp14System@TObject", + "@Axctrls@TActiveXControl@StdKeyDownEvent$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Axctrls@TActiveXControl@StdKeyPressEvent$qqrp14System@TObjectrc", + "@Axctrls@TActiveXControl@StdKeyUpEvent$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Axctrls@TActiveXControl@StdMouseDownEvent$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Axctrls@TActiveXControl@StdMouseMoveEvent$qqrp14System@TObject46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Axctrls@TActiveXControl@StdMouseUpEvent$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Axctrls@TActiveXControl@TranslateAccelerator$qqsr6tagMSG", + "@Axctrls@TActiveXControl@UIDeactivate$qqsv", + "@Axctrls@TActiveXControl@Unadvise$qqsi", + "@Axctrls@TActiveXControl@Unfreeze$qqsi", + "@Axctrls@TActiveXControl@Update$qqsv", + "@Axctrls@TActiveXControl@ViewChanged$qqrv", + "@Axctrls@TActiveXControl@ViewObjectGetExtent$qqsiip17tagDVTARGETDEVICEr12Types@TPoint", + "@Axctrls@TActiveXControl@WndProc$qqrr17Messages@TMessage", + "@Axctrls@TActiveXControlFactory@", + "@Axctrls@TActiveXControlFactory@$bctr$qqrp23Comobj@TComServerObjectp17System@TMetaClasst2rx5_GUIDix17System@AnsiStringi22Comobj@TThreadingModel", + "@Axctrls@TActiveXControlFactory@$bdtr$qqrv", + "@Axctrls@TActiveXControlFactory@AddVerb$qqrix17System@AnsiString", + "@Axctrls@TActiveXControlFactory@GetLicenseFileName$qqrv", + "@Axctrls@TActiveXControlFactory@HasMachineLicense$qqrv", + "@Axctrls@TActiveXControlFactory@UpdateRegistry$qqro", + "@Axctrls@TActiveXPropertyPage@", + "@Axctrls@TActiveXPropertyPage@$bdtr$qqrv", + "@Axctrls@TActiveXPropertyPage@Initialize$qqrv", + "@Axctrls@TActiveXPropertyPageFactory@", + "@Axctrls@TActiveXPropertyPageFactory@$bctr$qqrp23Comobj@TComServerObjectp17System@TMetaClassrx5_GUID", + "@Axctrls@TActiveXPropertyPageFactory@CreateComObject$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TAdapterNotifier@", + "@Axctrls@TAdapterNotifier@$bctr$qqrp22Axctrls@TCustomAdapter", + "@Axctrls@TAdapterNotifier@OnChanged$qqsi", + "@Axctrls@TAdapterNotifier@OnRequestEdit$qqsi", + "@Axctrls@TConnectionPoint@", + "@Axctrls@TConnectionPoint@$bctr$qqrp17TConnectionPointsrx5_GUID15TConnectionKindynpqqrx45System@%DelphiInterface$t17System@IInterface%o$v", + "@Axctrls@TConnectionPoint@$bdtr$qqrv", + "@Axctrls@TConnectionPoint@AddSink$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TConnectionPoint@Advise$qqsx45System@%DelphiInterface$t17System@IInterface%ri", + "@Axctrls@TConnectionPoint@EnumConnections$qqsr44System@%DelphiInterface$t16IEnumConnections%", + "@Axctrls@TConnectionPoint@GetConnectionInterface$qqsr5_GUID", + "@Axctrls@TConnectionPoint@GetConnectionPointContainer$qqsr53System@%DelphiInterface$t25IConnectionPointContainer%", + "@Axctrls@TConnectionPoint@RemoveSink$qqri", + "@Axctrls@TConnectionPoint@Unadvise$qqsi", + "@Axctrls@TConnectionPoints@", + "@Axctrls@TConnectionPoints@$bctr$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TConnectionPoints@$bdtr$qqrv", + "@Axctrls@TConnectionPoints@CreateConnectionPoint$qqrrx5_GUID15TConnectionKindynpqqrx45System@%DelphiInterface$t17System@IInterface%o$v", + "@Axctrls@TConnectionPoints@EnumConnectionPoints$qqsr49System@%DelphiInterface$t21IEnumConnectionPoints%", + "@Axctrls@TConnectionPoints@FindConnectionPoint$qqsrx5_GUIDr44System@%DelphiInterface$t16IConnectionPoint%", + "@Axctrls@TConnectionPoints@GetController$qqrv", + "@Axctrls@TCustomAdapter@", + "@Axctrls@TCustomAdapter@$bctr$qqrv", + "@Axctrls@TCustomAdapter@$bdtr$qqrv", + "@Axctrls@TCustomAdapter@Changed$qqrv", + "@Axctrls@TCustomAdapter@ConnectOleObject$qqr45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TCustomAdapter@ReleaseOleObject$qqrv", + "@Axctrls@TFontAdapter@", + "@Axctrls@TFontAdapter@$bctr$qqrp14Graphics@TFont", + "@Axctrls@TFontAdapter@Changed$qqrv", + "@Axctrls@TFontAdapter@GetOleFont$qqrr36System@%DelphiInterface$t9IFontDisp%", + "@Axctrls@TFontAdapter@SetOleFont$qqrx36System@%DelphiInterface$t9IFontDisp%", + "@Axctrls@TFontAdapter@Update$qqrv", + "@Axctrls@TOleGraphic@", + "@Axctrls@TOleGraphic@Assign$qqrp19Classes@TPersistent", + "@Axctrls@TOleGraphic@Changed$qqrp14System@TObject", + "@Axctrls@TOleGraphic@Draw$qqrp16Graphics@TCanvasrx11Types@TRect", + "@Axctrls@TOleGraphic@GetEmpty$qqrv", + "@Axctrls@TOleGraphic@GetHeight$qqrv", + "@Axctrls@TOleGraphic@GetMMHeight$qqrv", + "@Axctrls@TOleGraphic@GetMMWidth$qqrv", + "@Axctrls@TOleGraphic@GetPalette$qqrv", + "@Axctrls@TOleGraphic@GetTransparent$qqrv", + "@Axctrls@TOleGraphic@GetWidth$qqrv", + "@Axctrls@TOleGraphic@LoadFromClipboardFormat$qqrusuiui", + "@Axctrls@TOleGraphic@LoadFromFile$qqrx17System@AnsiString", + "@Axctrls@TOleGraphic@LoadFromStream$qqrp15Classes@TStream", + "@Axctrls@TOleGraphic@SaveToClipboardFormat$qqrrusruit2", + "@Axctrls@TOleGraphic@SaveToStream$qqrp15Classes@TStream", + "@Axctrls@TOleGraphic@SetHeight$qqri", + "@Axctrls@TOleGraphic@SetPalette$qqrui", + "@Axctrls@TOleGraphic@SetWidth$qqri", + "@Axctrls@TOleStream@", + "@Axctrls@TOleStream@$bctr$qqrx34System@%DelphiInterface$t7IStream%", + "@Axctrls@TOleStream@GetIStream$qqrv", + "@Axctrls@TOleStream@Read$qqrpvi", + "@Axctrls@TOleStream@Seek$qqrius", + "@Axctrls@TOleStream@Write$qqrpxvi", + "@Axctrls@TPictureAdapter@", + "@Axctrls@TPictureAdapter@$bctr$qqrp17Graphics@TPicture", + "@Axctrls@TPictureAdapter@GetOlePicture$qqrr40System@%DelphiInterface$t12IPictureDisp%", + "@Axctrls@TPictureAdapter@SetOlePicture$qqrx40System@%DelphiInterface$t12IPictureDisp%", + "@Axctrls@TPictureAdapter@Update$qqrv", + "@Axctrls@TPropertyPage@", + "@Axctrls@TPropertyPage@$bctr$qqrp18Classes@TComponent", + "@Axctrls@TPropertyPage@$bdtr$qqrv", + "@Axctrls@TPropertyPage@CMChanged$qqrr19Controls@TCMChanged", + "@Axctrls@TPropertyPage@EnumCtlProps$qqrrx5_GUIDp16Classes@TStrings", + "@Axctrls@TPropertyPage@Modified$qqrv", + "@Axctrls@TPropertyPage@UpdateObject$qqrv", + "@Axctrls@TPropertyPage@UpdatePropertyPage$qqrv", + "@Axctrls@TPropertyPageImpl@", + "@Axctrls@TPropertyPageImpl@Activate$qqsuirx11Types@TRecti", + "@Axctrls@TPropertyPageImpl@Apply$qqsv", + "@Axctrls@TPropertyPageImpl@Deactivate$qqsv", + "@Axctrls@TPropertyPageImpl@EditProperty$qqsi", + "@Axctrls@TPropertyPageImpl@GetPageInfo$qqsr15tagPROPPAGEINFO", + "@Axctrls@TPropertyPageImpl@Help$qqspb", + "@Axctrls@TPropertyPageImpl@InitPropertyPage$qqrv", + "@Axctrls@TPropertyPageImpl@IsPageDirty$qqsv", + "@Axctrls@TPropertyPageImpl@Modified$qqrv", + "@Axctrls@TPropertyPageImpl@Move$qqsrx11Types@TRect", + "@Axctrls@TPropertyPageImpl@SetObjects$qqsipa65536$45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@TPropertyPageImpl@SetPageSite$qqsx45System@%DelphiInterface$t17IPropertyPageSite%", + "@Axctrls@TPropertyPageImpl@Show$qqsi", + "@Axctrls@TPropertyPageImpl@TranslateAccelerator$qqsp6tagMSG", + "@Axctrls@TReflectorWindow@", + "@Axctrls@TReflectorWindow@$bctr$qqruip17Controls@TControl", + "@Axctrls@TReflectorWindow@CreateParams$qqrr22Controls@TCreateParams", + "@Axctrls@TReflectorWindow@WMGetDlgCode$qqrr17Messages@TMessage", + "@Axctrls@TReflectorWindow@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Axctrls@TReflectorWindow@WMSize$qqrr16Messages@TWMSize", + "@Axctrls@TStringsAdapter@", + "@Axctrls@TStringsAdapter@$bctr$qqrp16Classes@TStrings", + "@Axctrls@TStringsAdapter@Add$qqsx17System@OleVariantri", + "@Axctrls@TStringsAdapter@Clear$qqsv", + "@Axctrls@TStringsAdapter@Count$qqsri", + "@Axctrls@TStringsAdapter@Get_ControlDefault$qqsir17System@OleVariant", + "@Axctrls@TStringsAdapter@Get_Item$qqsir17System@OleVariant", + "@Axctrls@TStringsAdapter@ReferenceStrings$qqrp16Classes@TStrings", + "@Axctrls@TStringsAdapter@ReleaseStrings$qqrv", + "@Axctrls@TStringsAdapter@Remove$qqsi", + "@Axctrls@TStringsAdapter@Set_ControlDefault$qqsix17System@OleVariant", + "@Axctrls@TStringsAdapter@Set_Item$qqsix17System@OleVariant", + "@Axctrls@TStringsAdapter@_NewEnum$qqsr45System@%DelphiInterface$t17System@IInterface%", + "@Axctrls@initialization$qqrv", + "@Buttons@DrawButtonFace$qqrp16Graphics@TCanvasrx11Types@TRecti20Buttons@TButtonStyleooo", + "@Buttons@Finalization$qqrv", + "@Buttons@TBitBtn@", + "@Buttons@TBitBtn@$bctr$qqrp18Classes@TComponent", + "@Buttons@TBitBtn@$bdtr$qqrv", + "@Buttons@TBitBtn@ActionChange$qqrp14System@TObjecto", + "@Buttons@TBitBtn@CMEnabledChanged$qqrr17Messages@TMessage", + "@Buttons@TBitBtn@CMFontChanged$qqrr17Messages@TMessage", + "@Buttons@TBitBtn@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Buttons@TBitBtn@CNMeasureItem$qqrr23Messages@TWMMeasureItem", + "@Buttons@TBitBtn@Click$qqrv", + "@Buttons@TBitBtn@CreateHandle$qqrv", + "@Buttons@TBitBtn@CreateParams$qqrr22Controls@TCreateParams", + "@Buttons@TBitBtn@DrawItem$qqrrx17tagDRAWITEMSTRUCT", + "@Buttons@TBitBtn@GetGlyph$qqrv", + "@Buttons@TBitBtn@GetKind$qqrv", + "@Buttons@TBitBtn@GetNumGlyphs$qqrv", + "@Buttons@TBitBtn@GetPalette$qqrv", + "@Buttons@TBitBtn@GlyphChanged$qqrp14System@TObject", + "@Buttons@TBitBtn@IsCustom$qqrv", + "@Buttons@TBitBtn@IsCustomCaption$qqrv", + "@Buttons@TBitBtn@SetButtonStyle$qqro", + "@Buttons@TBitBtn@SetGlyph$qqrp16Graphics@TBitmap", + "@Buttons@TBitBtn@SetKind$qqr19Buttons@TBitBtnKind", + "@Buttons@TBitBtn@SetLayout$qqr21Buttons@TButtonLayout", + "@Buttons@TBitBtn@SetMargin$qqri", + "@Buttons@TBitBtn@SetNumGlyphs$qqrzc", + "@Buttons@TBitBtn@SetSpacing$qqri", + "@Buttons@TBitBtn@SetStyle$qqr20Buttons@TButtonStyle", + "@Buttons@TBitBtn@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Buttons@TSpeedButton@", + "@Buttons@TSpeedButton@$bctr$qqrp18Classes@TComponent", + "@Buttons@TSpeedButton@$bdtr$qqrv", + "@Buttons@TSpeedButton@ActionChange$qqrp14System@TObjecto", + "@Buttons@TSpeedButton@CMButtonPressed$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@CMDialogChar$qqrr15Messages@TWMKey", + "@Buttons@TSpeedButton@CMEnabledChanged$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@CMFontChanged$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@CMMouseEnter$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@CMMouseLeave$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@CMSysColorChange$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@CMTextChanged$qqrr17Messages@TMessage", + "@Buttons@TSpeedButton@Click$qqrv", + "@Buttons@TSpeedButton@GetActionLinkClass$qqrv", + "@Buttons@TSpeedButton@GetGlyph$qqrv", + "@Buttons@TSpeedButton@GetNumGlyphs$qqrv", + "@Buttons@TSpeedButton@GetPalette$qqrv", + "@Buttons@TSpeedButton@GlyphChanged$qqrp14System@TObject", + "@Buttons@TSpeedButton@Loaded$qqrv", + "@Buttons@TSpeedButton@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Buttons@TSpeedButton@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Buttons@TSpeedButton@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Buttons@TSpeedButton@Paint$qqrv", + "@Buttons@TSpeedButton@SetAllowAllUp$qqro", + "@Buttons@TSpeedButton@SetDown$qqro", + "@Buttons@TSpeedButton@SetFlat$qqro", + "@Buttons@TSpeedButton@SetGlyph$qqrp16Graphics@TBitmap", + "@Buttons@TSpeedButton@SetGroupIndex$qqri", + "@Buttons@TSpeedButton@SetLayout$qqr21Buttons@TButtonLayout", + "@Buttons@TSpeedButton@SetMargin$qqri", + "@Buttons@TSpeedButton@SetNumGlyphs$qqrzc", + "@Buttons@TSpeedButton@SetSpacing$qqri", + "@Buttons@TSpeedButton@SetTransparent$qqro", + "@Buttons@TSpeedButton@UpdateExclusive$qqrv", + "@Buttons@TSpeedButton@UpdateTracking$qqrv", + "@Buttons@TSpeedButton@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Buttons@TSpeedButtonActionLink@", + "@Buttons@TSpeedButtonActionLink@AssignClient$qqrp14System@TObject", + "@Buttons@TSpeedButtonActionLink@IsCheckedLinked$qqrv", + "@Buttons@TSpeedButtonActionLink@IsGroupIndexLinked$qqrv", + "@Buttons@TSpeedButtonActionLink@SetChecked$qqro", + "@Buttons@TSpeedButtonActionLink@SetGroupIndex$qqri", + "@Buttons@initialization$qqrv", + "@Clipbrd@CF_COMPONENT", + "@Clipbrd@CF_PICTURE", + "@Clipbrd@Clipboard$qqrv", + "@Clipbrd@Finalization$qqrv", + "@Clipbrd@SetClipboard$qqrp18Clipbrd@TClipboard", + "@Clipbrd@TClipboard@", + "@Clipbrd@TClipboard@Adding$qqrv", + "@Clipbrd@TClipboard@Assign$qqrp19Classes@TPersistent", + "@Clipbrd@TClipboard@AssignGraphic$qqrp17Graphics@TGraphic", + "@Clipbrd@TClipboard@AssignPicture$qqrp17Graphics@TPicture", + "@Clipbrd@TClipboard@AssignTo$qqrp19Classes@TPersistent", + "@Clipbrd@TClipboard@AssignToBitmap$qqrp16Graphics@TBitmap", + "@Clipbrd@TClipboard@AssignToMetafile$qqrp18Graphics@TMetafile", + "@Clipbrd@TClipboard@AssignToPicture$qqrp17Graphics@TPicture", + "@Clipbrd@TClipboard@Clear$qqrv", + "@Clipbrd@TClipboard@Close$qqrv", + "@Clipbrd@TClipboard@GetAsHandle$qqrus", + "@Clipbrd@TClipboard@GetAsText$qqrv", + "@Clipbrd@TClipboard@GetClipboardWindow$qqrv", + "@Clipbrd@TClipboard@GetComponent$qqrp18Classes@TComponentt1", + "@Clipbrd@TClipboard@GetFormatCount$qqrv", + "@Clipbrd@TClipboard@GetFormats$qqri", + "@Clipbrd@TClipboard@GetTextBuf$qqrpci", + "@Clipbrd@TClipboard@HasFormat$qqrus", + "@Clipbrd@TClipboard@MainWndProc$qqrr17Messages@TMessage", + "@Clipbrd@TClipboard@Open$qqrv", + "@Clipbrd@TClipboard@SetAsHandle$qqrusui", + "@Clipbrd@TClipboard@SetAsText$qqrx17System@AnsiString", + "@Clipbrd@TClipboard@SetBuffer$qqruspvi", + "@Clipbrd@TClipboard@SetComponent$qqrp18Classes@TComponent", + "@Clipbrd@TClipboard@SetTextBuf$qqrpc", + "@Clipbrd@TClipboard@WndProc$qqrr17Messages@TMessage", + "@Clipbrd@initialization$qqrv", + "@Cmadmctl@CoCOMAdminCatalog@", + "@Cmadmctl@CoCOMAdminCatalog@Create$qqrp17System@TMetaClass", + "@Cmadmctl@CoCOMAdminCatalogCollection@", + "@Cmadmctl@CoCOMAdminCatalogCollection@Create$qqrp17System@TMetaClass", + "@Cmadmctl@CoCOMAdminCatalogObject@", + "@Cmadmctl@CoCOMAdminCatalogObject@Create$qqrp17System@TMetaClass", + "@Cmadmctl@Finalization$qqrv", + "@Cmadmctl@TCOMAdminCatalog@", + "@Cmadmctl@TCOMAdminCatalog@$bctr$qqrp18Classes@TComponent", + "@Cmadmctl@TCOMAdminCatalog@$bdtr$qqrv", + "@Cmadmctl@TCOMAdminCatalog@BackupREGDB$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalog@Connect$qqrv", + "@Cmadmctl@TCOMAdminCatalog@ConnectTo$qqr53System@%DelphiInterface$t25Comadmin@ICOMAdminCatalog%", + "@Cmadmctl@TCOMAdminCatalog@Disconnect$qqrv", + "@Cmadmctl@TCOMAdminCatalog@ExportApplication$qqrx17System@WideStringt1i", + "@Cmadmctl@TCOMAdminCatalog@GetCollection$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalog@GetCollectionByQuery$qqrx17System@WideStringrp12tagSAFEARRAY", + "@Cmadmctl@TCOMAdminCatalog@GetDefaultInterface$qqrv", + "@Cmadmctl@TCOMAdminCatalog@GetEventClassesForIID$qqrx17System@WideStringrp12tagSAFEARRAYt2t2", + "@Cmadmctl@TCOMAdminCatalog@GetMultipleComponentsInfo$qqrx17System@WideStringrp12tagSAFEARRAYt2t2t2t2", + "@Cmadmctl@TCOMAdminCatalog@Get_MajorVersion$qqrv", + "@Cmadmctl@TCOMAdminCatalog@Get_MinorVersion$qqrv", + "@Cmadmctl@TCOMAdminCatalog@ICOMAdminCatalog_Connect$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalog@ImportComponent$qqrx17System@WideStringt1", + "@Cmadmctl@TCOMAdminCatalog@InitServerData$qqrv", + "@Cmadmctl@TCOMAdminCatalog@InstallApplication$qqrx17System@WideStringt1it1t1t1", + "@Cmadmctl@TCOMAdminCatalog@InstallComponent$qqrx17System@WideStringt1t1t1", + "@Cmadmctl@TCOMAdminCatalog@InstallEventClass$qqrx17System@WideStringt1t1t1", + "@Cmadmctl@TCOMAdminCatalog@InstallMultipleComponents$qqrx17System@WideStringrp12tagSAFEARRAYt2", + "@Cmadmctl@TCOMAdminCatalog@InstallMultipleEventClasses$qqrx17System@WideStringrp12tagSAFEARRAYt2", + "@Cmadmctl@TCOMAdminCatalog@QueryApplicationFile$qqrx17System@WideStringr17System@WideStringt2rust4rp12tagSAFEARRAY", + "@Cmadmctl@TCOMAdminCatalog@RefreshComponents$qqrv", + "@Cmadmctl@TCOMAdminCatalog@RefreshRouter$qqrv", + "@Cmadmctl@TCOMAdminCatalog@RestoreREGDB$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalog@ServiceCheck$qqri", + "@Cmadmctl@TCOMAdminCatalog@ShutdownApplication$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalog@StartApplication$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalog@StartRouter$qqrv", + "@Cmadmctl@TCOMAdminCatalog@StopRouter$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@", + "@Cmadmctl@TCOMAdminCatalogCollection@$bctr$qqrp18Classes@TComponent", + "@Cmadmctl@TCOMAdminCatalogCollection@$bdtr$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Add$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Connect$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@ConnectTo$qqr55System@%DelphiInterface$t27Comadmin@ICatalogCollection%", + "@Cmadmctl@TCOMAdminCatalogCollection@Disconnect$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@GetCollection$qqrx17System@WideStringrx17System@OleVariant", + "@Cmadmctl@TCOMAdminCatalogCollection@GetDefaultInterface$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@GetUtilInterface$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_AddEnabled$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_Count$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_DataStoreMajorVersion$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_DataStoreMinorVersion$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_Item$qqri", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_Name$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Get_RemoveEnabled$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@InitServerData$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@Populate$qqrv", + "@Cmadmctl@TCOMAdminCatalogCollection@PopulateByKey$qqrp12tagSAFEARRAY", + "@Cmadmctl@TCOMAdminCatalogCollection@PopulateByQuery$qqrx17System@WideStringi", + "@Cmadmctl@TCOMAdminCatalogCollection@Remove$qqri", + "@Cmadmctl@TCOMAdminCatalogCollection@SaveChanges$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@", + "@Cmadmctl@TCOMAdminCatalogObject@$bctr$qqrp18Classes@TComponent", + "@Cmadmctl@TCOMAdminCatalogObject@$bdtr$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@Connect$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@ConnectTo$qqr51System@%DelphiInterface$t23Comadmin@ICatalogObject%", + "@Cmadmctl@TCOMAdminCatalogObject@Disconnect$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@GetDefaultInterface$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@Get_Key$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@Get_Name$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@Get_Valid$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@Get_Value$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalogObject@InitServerData$qqrv", + "@Cmadmctl@TCOMAdminCatalogObject@IsPropertyReadOnly$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalogObject@IsPropertyWriteOnly$qqrx17System@WideString", + "@Cmadmctl@TCOMAdminCatalogObject@Set_Value$qqrx17System@WideStringrx17System@OleVariant", + "@Cmadmctl@initialization$qqrv", + "@Comctrls@CheckCommonControl$qqri", + "@Comctrls@CheckToolMenuDropdown$qqrp20Comctrls@TToolButton", + "@Comctrls@ECommonCalendarError@", + "@Comctrls@EDateTimeError@", + "@Comctrls@EMonthCalError@", + "@Comctrls@ETreeViewError@", + "@Comctrls@Finalization$qqrv", + "@Comctrls@GetComCtlVersion$qqrv", + "@Comctrls@InitCommonControl$qqri", + "@Comctrls@TAnimate@", + "@Comctrls@TAnimate@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TAnimate@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TAnimate@CNCommand$qqrr19Messages@TWMCommand", + "@Comctrls@TAnimate@CanAutoSize$qqrrit1", + "@Comctrls@TAnimate@CheckOpen$qqrv", + "@Comctrls@TAnimate@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TAnimate@CreateWnd$qqrv", + "@Comctrls@TAnimate@DestroyWnd$qqrv", + "@Comctrls@TAnimate@DoClose$qqrv", + "@Comctrls@TAnimate@DoOpen$qqrv", + "@Comctrls@TAnimate@DoStart$qqrv", + "@Comctrls@TAnimate@DoStop$qqrv", + "@Comctrls@TAnimate@GetActualResHandle$qqrv", + "@Comctrls@TAnimate@GetActualResId$qqrv", + "@Comctrls@TAnimate@GetAnimateParams$qqrpv", + "@Comctrls@TAnimate@GetFrameInfo$qqrv", + "@Comctrls@TAnimate@InternalClose$qqrv", + "@Comctrls@TAnimate@InternalOpen$qqrv", + "@Comctrls@TAnimate@Loaded$qqrv", + "@Comctrls@TAnimate@Play$qqrususi", + "@Comctrls@TAnimate@Reset$qqrv", + "@Comctrls@TAnimate@Seek$qqrs", + "@Comctrls@TAnimate@SetActive$qqro", + "@Comctrls@TAnimate@SetAnimateParams$qqrpxv", + "@Comctrls@TAnimate@SetCenter$qqro", + "@Comctrls@TAnimate@SetCommonAVI$qqr19Comctrls@TCommonAVI", + "@Comctrls@TAnimate@SetFileName$qqr17System@AnsiString", + "@Comctrls@TAnimate@SetOpen$qqro", + "@Comctrls@TAnimate@SetRepetitions$qqri", + "@Comctrls@TAnimate@SetResHandle$qqrui", + "@Comctrls@TAnimate@SetResId$qqri", + "@Comctrls@TAnimate@SetResName$qqr17System@AnsiString", + "@Comctrls@TAnimate@SetStartFrame$qqrs", + "@Comctrls@TAnimate@SetStopFrame$qqrs", + "@Comctrls@TAnimate@SetTimers$qqro", + "@Comctrls@TAnimate@SetTransparent$qqro", + "@Comctrls@TAnimate@Stop$qqrv", + "@Comctrls@TAnimate@UpdateActiveState$qqrv", + "@Comctrls@TAnimate@WMNCCalcSize$qqrr22Messages@TWMNCCalcSize", + "@Comctrls@TAnimate@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Comctrls@TAnimate@WMNCPaint$qqrr17Messages@TMessage", + "@Comctrls@TAnimate@WMSize$qqrr16Messages@TWMSize", + "@Comctrls@TAnimate@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Comctrls@TComboBoxEx@", + "@Comctrls@TComboBoxExActionLink@", + "@Comctrls@TComboBoxExActionLink@AddItem$qqr17System@AnsiStringipv", + "@Comctrls@TComboBoxExActionLink@AddItem$qqrp26Listactns@TListControlItem", + "@Comctrls@TComboBoxExStrings@", + "@Comctrls@TComboBoxExStrings@$bctr$qqrp26Comctrls@TCustomComboBoxEx", + "@Comctrls@TComboBoxExStrings@$bdtr$qqrv", + "@Comctrls@TComboBoxExStrings@Add$qqrx17System@AnsiString", + "@Comctrls@TComboBoxExStrings@AddItem$qqrx17System@AnsiStringxixixixipv", + "@Comctrls@TComboBoxExStrings@AddObject$qqrx17System@AnsiStringp14System@TObject", + "@Comctrls@TComboBoxExStrings@Clear$qqrv", + "@Comctrls@TComboBoxExStrings@Delete$qqri", + "@Comctrls@TComboBoxExStrings@Exchange$qqrii", + "@Comctrls@TComboBoxExStrings@Get$qqri", + "@Comctrls@TComboBoxExStrings@GetCapacity$qqrv", + "@Comctrls@TComboBoxExStrings@GetCount$qqrv", + "@Comctrls@TComboBoxExStrings@GetItemClass$qqrv", + "@Comctrls@TComboBoxExStrings@GetItemsClass$qqrv", + "@Comctrls@TComboBoxExStrings@GetObject$qqri", + "@Comctrls@TComboBoxExStrings@GetSortType$qqrv", + "@Comctrls@TComboBoxExStrings@IndexOf$qqrx17System@AnsiString", + "@Comctrls@TComboBoxExStrings@IndexOfName$qqrx17System@AnsiString", + "@Comctrls@TComboBoxExStrings@Insert$qqrix17System@AnsiString", + "@Comctrls@TComboBoxExStrings@Move$qqrii", + "@Comctrls@TComboBoxExStrings@Put$qqrix17System@AnsiString", + "@Comctrls@TComboBoxExStrings@PutObject$qqrip14System@TObject", + "@Comctrls@TComboBoxExStrings@SetItems$qqrpx22Comctrls@TComboExItems", + "@Comctrls@TComboBoxExStrings@SetSortType$qqrx28Listactns@TListItemsSortType", + "@Comctrls@TComboBoxExStrings@SetUpdateState$qqro", + "@Comctrls@TComboExItem@", + "@Comctrls@TComboExItem@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TComboExItem@SetCaption$qqrx17System@AnsiString", + "@Comctrls@TComboExItem@SetData$qqrpxv", + "@Comctrls@TComboExItem@SetDisplayName$qqrx17System@AnsiString", + "@Comctrls@TComboExItem@SetImageIndex$qqrxi", + "@Comctrls@TComboExItem@SetIndex$qqri", + "@Comctrls@TComboExItem@SetOverlayImageIndex$qqrxi", + "@Comctrls@TComboExItem@SetSelectedImageIndex$qqrxi", + "@Comctrls@TComboExItems@", + "@Comctrls@TComboExItems@Add$qqrv", + "@Comctrls@TComboExItems@AddItem$qqrx17System@AnsiStringxixixixipv", + "@Comctrls@TComboExItems@GetComboItem$qqrxi", + "@Comctrls@TComboExItems@Insert$qqri", + "@Comctrls@TComboExItems@Notify$qqrp23Classes@TCollectionItem31Classes@TCollectionNotification", + "@Comctrls@TComboExItems@SetItem$qqrxi", + "@Comctrls@TCommonCalendar@", + "@Comctrls@TCommonCalendar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCommonCalendar@$bdtr$qqrv", + "@Comctrls@TCommonCalendar@BoldDays$qqrpxuixirui", + "@Comctrls@TCommonCalendar@CheckEmptyDate$qqrv", + "@Comctrls@TCommonCalendar@CheckValidDate$qqr16System@TDateTime", + "@Comctrls@TCommonCalendar@CreateWnd$qqrv", + "@Comctrls@TCommonCalendar@DoStoreEndDate$qqrv", + "@Comctrls@TCommonCalendar@DoStoreMaxDate$qqrv", + "@Comctrls@TCommonCalendar@DoStoreMinDate$qqrv", + "@Comctrls@TCommonCalendar@GetCalStyles$qqrv", + "@Comctrls@TCommonCalendar@GetDate$qqrv", + "@Comctrls@TCommonCalendar@SetCalColors$qqrp24Comctrls@TMonthCalColors", + "@Comctrls@TCommonCalendar@SetDate$qqr16System@TDateTime", + "@Comctrls@TCommonCalendar@SetDateTime$qqr16System@TDateTime", + "@Comctrls@TCommonCalendar@SetEndDate$qqr16System@TDateTime", + "@Comctrls@TCommonCalendar@SetFirstDayOfWeek$qqr22Comctrls@TCalDayOfWeek", + "@Comctrls@TCommonCalendar@SetMaxDate$qqr16System@TDateTime", + "@Comctrls@TCommonCalendar@SetMaxSelectRange$qqri", + "@Comctrls@TCommonCalendar@SetMinDate$qqr16System@TDateTime", + "@Comctrls@TCommonCalendar@SetMonthDelta$qqri", + "@Comctrls@TCommonCalendar@SetMultiSelect$qqro", + "@Comctrls@TCommonCalendar@SetRange$qqr16System@TDateTimet1", + "@Comctrls@TCommonCalendar@SetSelectedRange$qqr16System@TDateTimet1", + "@Comctrls@TCommonCalendar@SetShowToday$qqro", + "@Comctrls@TCommonCalendar@SetShowTodayCircle$qqro", + "@Comctrls@TCommonCalendar@SetWeekNumbers$qqro", + "@Comctrls@TConversion@", + "@Comctrls@TConversion@ConvertReadStream$qqrp15Classes@TStreampci", + "@Comctrls@TConversion@ConvertWriteStream$qqrp15Classes@TStreampci", + "@Comctrls@TCoolBand@", + "@Comctrls@TCoolBand@$bctr$qqrp19Classes@TCollection", + "@Comctrls@TCoolBand@$bdtr$qqrv", + "@Comctrls@TCoolBand@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TCoolBand@BitmapChanged$qqrp14System@TObject", + "@Comctrls@TCoolBand@CoolBar$qqrv", + "@Comctrls@TCoolBand@GetDisplayName$qqrv", + "@Comctrls@TCoolBand@GetHeight$qqrv", + "@Comctrls@TCoolBand@GetVisible$qqrv", + "@Comctrls@TCoolBand@IsBitmapStored$qqrv", + "@Comctrls@TCoolBand@IsColorStored$qqrv", + "@Comctrls@TCoolBand@ParentBitmapChanged$qqrv", + "@Comctrls@TCoolBand@ParentColorChanged$qqrv", + "@Comctrls@TCoolBand@SetBitmap$qqrp16Graphics@TBitmap", + "@Comctrls@TCoolBand@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Comctrls@TCoolBand@SetBreak$qqro", + "@Comctrls@TCoolBand@SetColor$qqr15Graphics@TColor", + "@Comctrls@TCoolBand@SetControl$qqrp20Controls@TWinControl", + "@Comctrls@TCoolBand@SetFixedBackground$qqro", + "@Comctrls@TCoolBand@SetFixedSize$qqro", + "@Comctrls@TCoolBand@SetHorizontalOnly$qqro", + "@Comctrls@TCoolBand@SetImageIndex$qqri", + "@Comctrls@TCoolBand@SetMinHeight$qqri", + "@Comctrls@TCoolBand@SetMinWidth$qqri", + "@Comctrls@TCoolBand@SetParentBitmap$qqro", + "@Comctrls@TCoolBand@SetParentColor$qqro", + "@Comctrls@TCoolBand@SetText$qqrx17System@AnsiString", + "@Comctrls@TCoolBand@SetVisible$qqro", + "@Comctrls@TCoolBand@SetWidth$qqri", + "@Comctrls@TCoolBands@", + "@Comctrls@TCoolBands@$bctr$qqrp17Comctrls@TCoolBar", + "@Comctrls@TCoolBands@Add$qqrv", + "@Comctrls@TCoolBands@FindBand$qqrp17Controls@TControl", + "@Comctrls@TCoolBands@GetItem$qqri", + "@Comctrls@TCoolBands@GetOwner$qqrv", + "@Comctrls@TCoolBands@HaveGraphic$qqrv", + "@Comctrls@TCoolBands@SetItem$qqrip18Comctrls@TCoolBand", + "@Comctrls@TCoolBands@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TCoolBar@", + "@Comctrls@TCoolBar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCoolBar@$bdtr$qqrv", + "@Comctrls@TCoolBar@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Comctrls@TCoolBar@BeginUpdate$qqrv", + "@Comctrls@TCoolBar@BitmapChanged$qqrp14System@TObject", + "@Comctrls@TCoolBar@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCoolBar@CMControlChange$qqrr25Controls@TCMControlChange", + "@Comctrls@TCoolBar@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Comctrls@TCoolBar@CMSysColorChange$qqrr17Messages@TMessage", + "@Comctrls@TCoolBar@CMSysFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TCoolBar@CMWinIniChange$qqrr24Messages@TWMWinIniChange", + "@Comctrls@TCoolBar@CNBandChange$qqrr17Messages@TMessage", + "@Comctrls@TCoolBar@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCoolBar@CanAutoSize$qqrrit1", + "@Comctrls@TCoolBar@Change$qqrv", + "@Comctrls@TCoolBar@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCoolBar@CreateWnd$qqrv", + "@Comctrls@TCoolBar@EndUpdate$qqrv", + "@Comctrls@TCoolBar@FlipChildren$qqro", + "@Comctrls@TCoolBar@GetAlign$qqrv", + "@Comctrls@TCoolBar@GetCaptionFont$qqrv", + "@Comctrls@TCoolBar@GetCaptionFontHeight$qqrv", + "@Comctrls@TCoolBar@GetCaptionSize$qqrp18Comctrls@TCoolBand", + "@Comctrls@TCoolBar@GetPalette$qqrv", + "@Comctrls@TCoolBar@GetRowHeight$qqri", + "@Comctrls@TCoolBar@HitTest$qqrrx12Types@TPoint", + "@Comctrls@TCoolBar@ImageListChange$qqrp14System@TObject", + "@Comctrls@TCoolBar@IsAutoSized$qqrv", + "@Comctrls@TCoolBar@IsBackgroundDirty$qqrv", + "@Comctrls@TCoolBar@Loaded$qqrv", + "@Comctrls@TCoolBar@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCoolBar@PaintWindow$qqrui", + "@Comctrls@TCoolBar@PtInGripRect$qqrrx12Types@TPointrp18Comctrls@TCoolBand", + "@Comctrls@TCoolBar@ReadBands$qqrv", + "@Comctrls@TCoolBar@RefreshControl$qqrp18Comctrls@TCoolBand", + "@Comctrls@TCoolBar@SetAlign$qqr15Controls@TAlign", + "@Comctrls@TCoolBar@SetBandBorderStyle$qqr22Forms@TFormBorderStyle", + "@Comctrls@TCoolBar@SetBandMaximize$qqr26Comctrls@TCoolBandMaximize", + "@Comctrls@TCoolBar@SetBands$qqrp19Comctrls@TCoolBands", + "@Comctrls@TCoolBar@SetBitmap$qqrp16Graphics@TBitmap", + "@Comctrls@TCoolBar@SetFixedOrder$qqro", + "@Comctrls@TCoolBar@SetFixedSize$qqro", + "@Comctrls@TCoolBar@SetImageList$qqrui", + "@Comctrls@TCoolBar@SetImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCoolBar@SetShowText$qqro", + "@Comctrls@TCoolBar@SetVertical$qqro", + "@Comctrls@TCoolBar@UpdateBand$qqri", + "@Comctrls@TCoolBar@UpdateBands$qqrv", + "@Comctrls@TCoolBar@UpdateItem$qqriii", + "@Comctrls@TCoolBar@WMCaptureChanged$qqrr17Messages@TMessage", + "@Comctrls@TCoolBar@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Comctrls@TCoolBar@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Comctrls@TCoolBar@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Comctrls@TCoolBar@WMNotifyFormat$qqrr17Messages@TMessage", + "@Comctrls@TCoolBar@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Comctrls@TCoolBar@WMSize$qqrr16Messages@TWMSize", + "@Comctrls@TCoolBar@WndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomComboBoxEx@", + "@Comctrls@TCustomComboBoxEx@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomComboBoxEx@$bdtr$qqrv", + "@Comctrls@TCustomComboBoxEx@ActionChange$qqrp14System@TObjecto", + "@Comctrls@TCustomComboBoxEx@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomComboBoxEx@CMParentColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomComboBoxEx@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomComboBoxEx@ComboExWndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomComboBoxEx@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomComboBoxEx@CreateWnd$qqrv", + "@Comctrls@TCustomComboBoxEx@DestroyWnd$qqrv", + "@Comctrls@TCustomComboBoxEx@Focused$qqrv", + "@Comctrls@TCustomComboBoxEx@GetActionLinkClass$qqrv", + "@Comctrls@TCustomComboBoxEx@GetDropDownCount$qqrv", + "@Comctrls@TCustomComboBoxEx@GetItemCount$qqrv", + "@Comctrls@TCustomComboBoxEx@GetItemHt$qqrv", + "@Comctrls@TCustomComboBoxEx@GetItemsClass$qqrv", + "@Comctrls@TCustomComboBoxEx@GetSelText$qqrv", + "@Comctrls@TCustomComboBoxEx@ImageListChange$qqrp14System@TObject", + "@Comctrls@TCustomComboBoxEx@IsItemsExStored$qqrv", + "@Comctrls@TCustomComboBoxEx@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCustomComboBoxEx@SetDropDownCount$qqrxi", + "@Comctrls@TCustomComboBoxEx@SetImages$qqrpx24Imglist@TCustomImageList", + "@Comctrls@TCustomComboBoxEx@SetItemsEx$qqrpx22Comctrls@TComboExItems", + "@Comctrls@TCustomComboBoxEx@SetSelText$qqrx17System@AnsiString", + "@Comctrls@TCustomComboBoxEx@SetStyle$qqr25Comctrls@TComboBoxExStyle", + "@Comctrls@TCustomComboBoxEx@SetStyleEx$qqrx55System@%Set$t27Comctrls@TComboBoxExStyleEx$iuc$0$iuc$4%", + "@Comctrls@TCustomComboBoxEx@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Comctrls@TCustomComboBoxEx@WndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomHeaderControl@", + "@Comctrls@TCustomHeaderControl@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomHeaderControl@$bdtr$qqrv", + "@Comctrls@TCustomHeaderControl@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomHeaderControl@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Comctrls@TCustomHeaderControl@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomHeaderControl@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomHeaderControl@CreateSection$qqrv", + "@Comctrls@TCustomHeaderControl@CreateSections$qqrv", + "@Comctrls@TCustomHeaderControl@CreateWnd$qqrv", + "@Comctrls@TCustomHeaderControl@DestroyWnd$qqrv", + "@Comctrls@TCustomHeaderControl@DoSectionDrag$qqrp23Comctrls@THeaderSectiont1", + "@Comctrls@TCustomHeaderControl@DoSectionEndDrag$qqrv", + "@Comctrls@TCustomHeaderControl@DrawSection$qqrp23Comctrls@THeaderSectionrx11Types@TRecto", + "@Comctrls@TCustomHeaderControl@FlipChildren$qqro", + "@Comctrls@TCustomHeaderControl@ImageListChange$qqrp14System@TObject", + "@Comctrls@TCustomHeaderControl@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCustomHeaderControl@SectionClick$qqrp23Comctrls@THeaderSection", + "@Comctrls@TCustomHeaderControl@SectionDrag$qqrp23Comctrls@THeaderSectiont1ro", + "@Comctrls@TCustomHeaderControl@SectionEndDrag$qqrv", + "@Comctrls@TCustomHeaderControl@SectionResize$qqrp23Comctrls@THeaderSection", + "@Comctrls@TCustomHeaderControl@SectionTrack$qqrp23Comctrls@THeaderSectioni27Comctrls@TSectionTrackState", + "@Comctrls@TCustomHeaderControl@SetDragReorder$qqrxo", + "@Comctrls@TCustomHeaderControl@SetFullDrag$qqro", + "@Comctrls@TCustomHeaderControl@SetHotTrack$qqro", + "@Comctrls@TCustomHeaderControl@SetImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomHeaderControl@SetSections$qqrp24Comctrls@THeaderSections", + "@Comctrls@TCustomHeaderControl@SetStyle$qqr21Comctrls@THeaderStyle", + "@Comctrls@TCustomHeaderControl@UpdateItem$qqrii", + "@Comctrls@TCustomHeaderControl@UpdateSection$qqri", + "@Comctrls@TCustomHeaderControl@UpdateSections$qqrv", + "@Comctrls@TCustomHeaderControl@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Comctrls@TCustomHeaderControl@WMSize$qqrr16Messages@TWMSize", + "@Comctrls@TCustomHeaderControl@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Comctrls@TCustomHeaderControl@WndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomHotKey@", + "@Comctrls@TCustomHotKey@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomHotKey@AdjustHeight$qqrv", + "@Comctrls@TCustomHotKey@CNCommand$qqrr19Messages@TWMCommand", + "@Comctrls@TCustomHotKey@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomHotKey@CreateWnd$qqrv", + "@Comctrls@TCustomHotKey@GetHotKey$qqrv", + "@Comctrls@TCustomHotKey@HotKeyToShortCut$qqri", + "@Comctrls@TCustomHotKey@SetAutoSize$qqro", + "@Comctrls@TCustomHotKey@SetHotKey$qqrus", + "@Comctrls@TCustomHotKey@SetInvalidKeys$qqr50System@%Set$t22Comctrls@THKInvalidKey$iuc$0$iuc$7%", + "@Comctrls@TCustomHotKey@SetModifiers$qqr48System@%Set$t20Comctrls@THKModifier$iuc$0$iuc$3%", + "@Comctrls@TCustomHotKey@ShortCutToHotKey$qqrus", + "@Comctrls@TCustomHotKey@UpdateHeight$qqrv", + "@Comctrls@TCustomListView@", + "@Comctrls@TCustomListView@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomListView@$bdtr$qqrv", + "@Comctrls@TCustomListView@ActionChange$qqrp14System@TObjecto", + "@Comctrls@TCustomListView@AddItem$qqr17System@AnsiStringp14System@TObject", + "@Comctrls@TCustomListView@AlphaSort$qqrv", + "@Comctrls@TCustomListView@AreItemsStored$qqrv", + "@Comctrls@TCustomListView@Arrange$qqr25Comctrls@TListArrangement", + "@Comctrls@TCustomListView@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomListView@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomListView@CMDrag$qqrr16Controls@TCMDrag", + "@Comctrls@TCustomListView@CMFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomListView@CMHintShow$qqrr17Messages@TMessage", + "@Comctrls@TCustomListView@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Comctrls@TCustomListView@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomListView@CanChange$qqrp18Comctrls@TListItemi", + "@Comctrls@TCustomListView@CanEdit$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@CanvasChanged$qqrp14System@TObject", + "@Comctrls@TCustomListView@Change$qqrp18Comctrls@TListItemi", + "@Comctrls@TCustomListView@ChangeScale$qqrii", + "@Comctrls@TCustomListView@Clear$qqrv", + "@Comctrls@TCustomListView@ClearSelection$qqrv", + "@Comctrls@TCustomListView@ColClick$qqrp20Comctrls@TListColumn", + "@Comctrls@TCustomListView@ColRightClick$qqrp20Comctrls@TListColumnrx12Types@TPoint", + "@Comctrls@TCustomListView@ColumnsShowing$qqrv", + "@Comctrls@TCustomListView@CopySelection$qqrp27Controls@TCustomListControl", + "@Comctrls@TCustomListView@CreateListItem$qqrv", + "@Comctrls@TCustomListView@CreateListItems$qqrv", + "@Comctrls@TCustomListView@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomListView@CreateWnd$qqrv", + "@Comctrls@TCustomListView@CustomDraw$qqrrx11Types@TRect25Comctrls@TCustomDrawStage", + "@Comctrls@TCustomListView@CustomDrawItem$qqrp18Comctrls@TListItem48System@%Set$t20Comctrls@ComCtrls__9$iuc$0$iuc$8%25Comctrls@TCustomDrawStage", + "@Comctrls@TCustomListView@CustomDrawSubItem$qqrp18Comctrls@TListItemi48System@%Set$t20Comctrls@ComCtrls__9$iuc$0$iuc$8%25Comctrls@TCustomDrawStage", + "@Comctrls@TCustomListView@CustomSort$qqrpqqsiii$ii", + "@Comctrls@TCustomListView@Delete$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@DeleteSelected$qqrv", + "@Comctrls@TCustomListView@DestroyWnd$qqrv", + "@Comctrls@TCustomListView@DoAutoSize$qqrv", + "@Comctrls@TCustomListView@DoDragOver$qqrp20Controls@TDragObjectiio", + "@Comctrls@TCustomListView@DoEndDrag$qqrp14System@TObjectii", + "@Comctrls@TCustomListView@DoInfoTip$qqrp18Comctrls@TListItemr17System@AnsiString", + "@Comctrls@TCustomListView@DoStartDrag$qqrrp20Controls@TDragObject", + "@Comctrls@TCustomListView@DrawItem$qqrp18Comctrls@TListItemrx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Comctrls@TCustomListView@DrawWorkAreas$qqrv", + "@Comctrls@TCustomListView@Edit$qqrrx10tagLVITEMA", + "@Comctrls@TCustomListView@EditWndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomListView@FindCaption$qqri17System@AnsiStringooo", + "@Comctrls@TCustomListView@FindData$qqripvoo", + "@Comctrls@TCustomListView@GetActionLinkClass$qqrv", + "@Comctrls@TCustomListView@GetBoundingRect$qqrv", + "@Comctrls@TCustomListView@GetColumnFromIndex$qqri", + "@Comctrls@TCustomListView@GetColumnFromTag$qqri", + "@Comctrls@TCustomListView@GetCount$qqrv", + "@Comctrls@TCustomListView@GetDragImages$qqrv", + "@Comctrls@TCustomListView@GetDropTarget$qqrv", + "@Comctrls@TCustomListView@GetFocused$qqrv", + "@Comctrls@TCustomListView@GetHitTestInfoAt$qqrii", + "@Comctrls@TCustomListView@GetHoverTime$qqrv", + "@Comctrls@TCustomListView@GetImageIndex$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@GetItem$qqrrx10tagLVITEMA", + "@Comctrls@TCustomListView@GetItemAt$qqrii", + "@Comctrls@TCustomListView@GetItemIndex$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@GetItemIndex$qqrv", + "@Comctrls@TCustomListView@GetNearestItem$qqrrx12Types@TPoint25Comctrls@TSearchDirection", + "@Comctrls@TCustomListView@GetNextItem$qqrp18Comctrls@TListItem25Comctrls@TSearchDirection47System@%Set$t19Comctrls@TItemState$iuc$0$iuc$5%", + "@Comctrls@TCustomListView@GetSearchString$qqrv", + "@Comctrls@TCustomListView@GetSelCount$qqrv", + "@Comctrls@TCustomListView@GetSelected$qqrv", + "@Comctrls@TCustomListView@GetSubItemImage$qqrp18Comctrls@TListItemiri", + "@Comctrls@TCustomListView@GetTopItem$qqrv", + "@Comctrls@TCustomListView@GetViewOrigin$qqrv", + "@Comctrls@TCustomListView@GetVisibleRowCount$qqrv", + "@Comctrls@TCustomListView@HeaderWndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomListView@ImageListChange$qqrp14System@TObject", + "@Comctrls@TCustomListView@InsertItem$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@IsCustomDrawn$qqr26Comctrls@TCustomDrawTarget25Comctrls@TCustomDrawStage", + "@Comctrls@TCustomListView@IsEditing$qqrv", + "@Comctrls@TCustomListView@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Comctrls@TCustomListView@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCustomListView@OwnerDataFetch$qqrp18Comctrls@TListItem50System@%Set$t22Comctrls@TItemRequests$iuc$0$iuc$4%", + "@Comctrls@TCustomListView@OwnerDataFind$qqr18Comctrls@TItemFindx17System@AnsiStringrx12Types@TPointpvi25Comctrls@TSearchDirectiono", + "@Comctrls@TCustomListView@OwnerDataHint$qqrii", + "@Comctrls@TCustomListView@OwnerDataStateChange$qqrii47System@%Set$t19Comctrls@TItemState$iuc$0$iuc$5%t3", + "@Comctrls@TCustomListView@ResetExStyles$qqrv", + "@Comctrls@TCustomListView@RestoreChecks$qqrv", + "@Comctrls@TCustomListView@SaveChecks$qqrv", + "@Comctrls@TCustomListView@Scroll$qqrii", + "@Comctrls@TCustomListView@SelectAll$qqrv", + "@Comctrls@TCustomListView@SetAllocBy$qqri", + "@Comctrls@TCustomListView@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Comctrls@TCustomListView@SetCheckboxes$qqro", + "@Comctrls@TCustomListView@SetColumnClick$qqro", + "@Comctrls@TCustomListView@SetColumnHeaders$qqro", + "@Comctrls@TCustomListView@SetDropTarget$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@SetFlatScrollBars$qqro", + "@Comctrls@TCustomListView@SetFocused$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@SetFullDrag$qqro", + "@Comctrls@TCustomListView@SetGridLines$qqro", + "@Comctrls@TCustomListView@SetHideSelection$qqro", + "@Comctrls@TCustomListView@SetHotTrack$qqro", + "@Comctrls@TCustomListView@SetHotTrackStyles$qqr55System@%Set$t27Comctrls@TListHotTrackStyle$iuc$0$iuc$2%", + "@Comctrls@TCustomListView@SetHoverTime$qqri", + "@Comctrls@TCustomListView@SetIconOptions$qqrp21Comctrls@TIconOptions", + "@Comctrls@TCustomListView@SetImageList$qqruii", + "@Comctrls@TCustomListView@SetItemIndex$qqrxi", + "@Comctrls@TCustomListView@SetItems$qqrp19Comctrls@TListItems", + "@Comctrls@TCustomListView@SetLargeImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomListView@SetListColumns$qqrp21Comctrls@TListColumns", + "@Comctrls@TCustomListView@SetMultiSelect$qqro", + "@Comctrls@TCustomListView@SetOwnerData$qqro", + "@Comctrls@TCustomListView@SetOwnerDraw$qqro", + "@Comctrls@TCustomListView@SetReadOnly$qqro", + "@Comctrls@TCustomListView@SetRowSelect$qqro", + "@Comctrls@TCustomListView@SetSelected$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomListView@SetShowWorkAreas$qqrxo", + "@Comctrls@TCustomListView@SetSmallImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomListView@SetSortType$qqr18Comctrls@TSortType", + "@Comctrls@TCustomListView@SetStateImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomListView@SetTextBkColor$qqr15Graphics@TColor", + "@Comctrls@TCustomListView@SetTextColor$qqr15Graphics@TColor", + "@Comctrls@TCustomListView@SetViewStyle$qqr19Comctrls@TViewStyle", + "@Comctrls@TCustomListView@StringWidth$qqr17System@AnsiString", + "@Comctrls@TCustomListView@UpdateColumn$qqri", + "@Comctrls@TCustomListView@UpdateColumns$qqrv", + "@Comctrls@TCustomListView@UpdateItems$qqrii", + "@Comctrls@TCustomListView@ValidHeaderHandle$qqrv", + "@Comctrls@TCustomListView@WMContextMenu$qqrr23Messages@TWMContextMenu", + "@Comctrls@TCustomListView@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Comctrls@TCustomListView@WMNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomListView@WMPaint$qqrr17Messages@TWMPaint", + "@Comctrls@TCustomListView@WMParentNotify$qqrr24Messages@TWMParentNotify", + "@Comctrls@TCustomListView@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Comctrls@TCustomListView@WndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomRichEdit@", + "@Comctrls@TCustomRichEdit@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomRichEdit@$bdtr$qqrv", + "@Comctrls@TCustomRichEdit@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomRichEdit@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomRichEdit@CMFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomRichEdit@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomRichEdit@Clear$qqrv", + "@Comctrls@TCustomRichEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomRichEdit@CreateWnd$qqrv", + "@Comctrls@TCustomRichEdit@DestroyWnd$qqrv", + "@Comctrls@TCustomRichEdit@DoSetMaxLength$qqri", + "@Comctrls@TCustomRichEdit@FindText$qqrx17System@AnsiStringii48System@%Set$t20Comctrls@TSearchType$iuc$0$iuc$1%", + "@Comctrls@TCustomRichEdit@GetCaretPos$qqrv", + "@Comctrls@TCustomRichEdit@GetPlainText$qqrv", + "@Comctrls@TCustomRichEdit@GetSelLength$qqrv", + "@Comctrls@TCustomRichEdit@GetSelStart$qqrv", + "@Comctrls@TCustomRichEdit@GetSelText$qqrv", + "@Comctrls@TCustomRichEdit@GetSelTextBuf$qqrpci", + "@Comctrls@TCustomRichEdit@Print$qqrx17System@AnsiString", + "@Comctrls@TCustomRichEdit@ProtectChange$qqrii", + "@Comctrls@TCustomRichEdit@RegisterConversionFormat$qqrp17System@TMetaClassx17System@AnsiStringt1", + "@Comctrls@TCustomRichEdit@RequestSize$qqrrx11Types@TRect", + "@Comctrls@TCustomRichEdit@SaveClipboard$qqrii", + "@Comctrls@TCustomRichEdit@SelectionChange$qqrv", + "@Comctrls@TCustomRichEdit@SetCaretPos$qqrrx12Types@TPoint", + "@Comctrls@TCustomRichEdit@SetDefAttributes$qqrp24Comctrls@TTextAttributes", + "@Comctrls@TCustomRichEdit@SetHideScrollBars$qqro", + "@Comctrls@TCustomRichEdit@SetHideSelection$qqro", + "@Comctrls@TCustomRichEdit@SetPlainText$qqro", + "@Comctrls@TCustomRichEdit@SetRichEditStrings$qqrp16Classes@TStrings", + "@Comctrls@TCustomRichEdit@SetSelAttributes$qqrp24Comctrls@TTextAttributes", + "@Comctrls@TCustomRichEdit@SetSelLength$qqri", + "@Comctrls@TCustomRichEdit@SetSelStart$qqri", + "@Comctrls@TCustomRichEdit@WMNCDestroy$qqrr20Messages@TWMNoParams", + "@Comctrls@TCustomRichEdit@WMPaint$qqrr17Messages@TWMPaint", + "@Comctrls@TCustomRichEdit@WMRButtonUp$qqrr17Messages@TWMMouse", + "@Comctrls@TCustomRichEdit@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Comctrls@TCustomRichEdit@WMSetFont$qqrr19Messages@TWMSetFont", + "@Comctrls@TCustomStatusBar@", + "@Comctrls@TCustomStatusBar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomStatusBar@$bdtr$qqrv", + "@Comctrls@TCustomStatusBar@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomStatusBar@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomStatusBar@CMParentFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomStatusBar@CMSysColorChange$qqrr17Messages@TMessage", + "@Comctrls@TCustomStatusBar@CMSysFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomStatusBar@CMWinIniChange$qqrr17Messages@TMessage", + "@Comctrls@TCustomStatusBar@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Comctrls@TCustomStatusBar@ChangeScale$qqrii", + "@Comctrls@TCustomStatusBar@CreatePanel$qqrv", + "@Comctrls@TCustomStatusBar@CreatePanels$qqrv", + "@Comctrls@TCustomStatusBar@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomStatusBar@CreateWnd$qqrv", + "@Comctrls@TCustomStatusBar@DoHint$qqrv", + "@Comctrls@TCustomStatusBar@DoRightToLeftAlignment$qqrr17System@AnsiString18Classes@TAlignmento", + "@Comctrls@TCustomStatusBar@DrawPanel$qqrp21Comctrls@TStatusPanelrx11Types@TRect", + "@Comctrls@TCustomStatusBar@ExecuteAction$qqrp20Classes@TBasicAction", + "@Comctrls@TCustomStatusBar@FlipChildren$qqro", + "@Comctrls@TCustomStatusBar@GetPanelClass$qqrv", + "@Comctrls@TCustomStatusBar@IsFontStored$qqrv", + "@Comctrls@TCustomStatusBar@SetBounds$qqriiii", + "@Comctrls@TCustomStatusBar@SetPanels$qqrp22Comctrls@TStatusPanels", + "@Comctrls@TCustomStatusBar@SetParent$qqrp20Controls@TWinControl", + "@Comctrls@TCustomStatusBar@SetSimplePanel$qqro", + "@Comctrls@TCustomStatusBar@SetSimpleText$qqrx17System@AnsiString", + "@Comctrls@TCustomStatusBar@SetSizeGrip$qqro", + "@Comctrls@TCustomStatusBar@SetUseSystemFont$qqrxo", + "@Comctrls@TCustomStatusBar@SyncToSystemFont$qqrv", + "@Comctrls@TCustomStatusBar@UpdatePanel$qqrio", + "@Comctrls@TCustomStatusBar@UpdatePanels$qqroo", + "@Comctrls@TCustomStatusBar@UpdateSimpleText$qqrv", + "@Comctrls@TCustomStatusBar@ValidateSizeGrip$qqro", + "@Comctrls@TCustomStatusBar@WMGetTextLength$qqrr20Messages@TWMNoParams", + "@Comctrls@TCustomStatusBar@WMPaint$qqrr17Messages@TWMPaint", + "@Comctrls@TCustomStatusBar@WMSize$qqrr16Messages@TWMSize", + "@Comctrls@TCustomTabControl@", + "@Comctrls@TCustomTabControl@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomTabControl@$bdtr$qqrv", + "@Comctrls@TCustomTabControl@AdjustClientRect$qqrr11Types@TRect", + "@Comctrls@TCustomTabControl@CMDialogChar$qqrr15Messages@TWMKey", + "@Comctrls@TCustomTabControl@CMFontChanged$qqrpv", + "@Comctrls@TCustomTabControl@CMSysColorChange$qqrr17Messages@TMessage", + "@Comctrls@TCustomTabControl@CMTabStopChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomTabControl@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Comctrls@TCustomTabControl@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomTabControl@CanChange$qqrv", + "@Comctrls@TCustomTabControl@CanShowTab$qqri", + "@Comctrls@TCustomTabControl@Change$qqrv", + "@Comctrls@TCustomTabControl@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomTabControl@CreateWnd$qqrv", + "@Comctrls@TCustomTabControl@DrawTab$qqrirx11Types@TRecto", + "@Comctrls@TCustomTabControl@GetDisplayRect$qqrv", + "@Comctrls@TCustomTabControl@GetHitTestInfoAt$qqrii", + "@Comctrls@TCustomTabControl@GetImageIndex$qqri", + "@Comctrls@TCustomTabControl@GetTabIndex$qqrv", + "@Comctrls@TCustomTabControl@ImageListChange$qqrp14System@TObject", + "@Comctrls@TCustomTabControl@IndexOfTabAt$qqrii", + "@Comctrls@TCustomTabControl@InternalSetMultiLine$qqro", + "@Comctrls@TCustomTabControl@Loaded$qqrv", + "@Comctrls@TCustomTabControl@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCustomTabControl@RowCount$qqrv", + "@Comctrls@TCustomTabControl@ScrollTabs$qqri", + "@Comctrls@TCustomTabControl@SetHotTrack$qqro", + "@Comctrls@TCustomTabControl@SetImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomTabControl@SetMultiLine$qqro", + "@Comctrls@TCustomTabControl@SetMultiSelect$qqro", + "@Comctrls@TCustomTabControl@SetOwnerDraw$qqro", + "@Comctrls@TCustomTabControl@SetRaggedRight$qqro", + "@Comctrls@TCustomTabControl@SetScrollOpposite$qqro", + "@Comctrls@TCustomTabControl@SetStyle$qqr18Comctrls@TTabStyle", + "@Comctrls@TCustomTabControl@SetTabHeight$qqrs", + "@Comctrls@TCustomTabControl@SetTabIndex$qqri", + "@Comctrls@TCustomTabControl@SetTabPosition$qqr21Comctrls@TTabPosition", + "@Comctrls@TCustomTabControl@SetTabWidth$qqrs", + "@Comctrls@TCustomTabControl@SetTabs$qqrp16Classes@TStrings", + "@Comctrls@TCustomTabControl@TCMAdjustRect$qqrr17Messages@TMessage", + "@Comctrls@TCustomTabControl@TabRect$qqri", + "@Comctrls@TCustomTabControl@TabsChanged$qqrv", + "@Comctrls@TCustomTabControl@UpdateTabImages$qqrv", + "@Comctrls@TCustomTabControl@UpdateTabSize$qqrv", + "@Comctrls@TCustomTabControl@WMDestroy$qqrr20Messages@TWMNoParams", + "@Comctrls@TCustomTabControl@WMNotifyFormat$qqrr17Messages@TMessage", + "@Comctrls@TCustomTabControl@WMSize$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@", + "@Comctrls@TCustomTreeView@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomTreeView@$bdtr$qqrv", + "@Comctrls@TCustomTreeView@Added$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@AlphaSort$qqro", + "@Comctrls@TCustomTreeView@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@CMDrag$qqrr16Controls@TCMDrag", + "@Comctrls@TCustomTreeView@CMFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@CMSysColorChange$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomTreeView@CanChange$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@CanCollapse$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@CanEdit$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@CanExpand$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@CanvasChanged$qqrp14System@TObject", + "@Comctrls@TCustomTreeView@Change$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@ClearSelection$qqro", + "@Comctrls@TCustomTreeView@Collapse$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@ControlSelectNode$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@ControlShiftSelectNode$qqrp18Comctrls@TTreeNodeo", + "@Comctrls@TCustomTreeView@CreateNode$qqrv", + "@Comctrls@TCustomTreeView@CreateNodes$qqrv", + "@Comctrls@TCustomTreeView@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomTreeView@CreateWnd$qqrv", + "@Comctrls@TCustomTreeView@CustomDraw$qqrrx11Types@TRect25Comctrls@TCustomDrawStage", + "@Comctrls@TCustomTreeView@CustomDrawItem$qqrp18Comctrls@TTreeNode48System@%Set$t20Comctrls@ComCtrls__9$iuc$0$iuc$8%25Comctrls@TCustomDrawStagero", + "@Comctrls@TCustomTreeView@CustomSort$qqrpqqsiii$iio", + "@Comctrls@TCustomTreeView@Delete$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@Deselect$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@DestroyWnd$qqrv", + "@Comctrls@TCustomTreeView@DoDragOver$qqrp20Controls@TDragObjectiio", + "@Comctrls@TCustomTreeView@DoEndDrag$qqrp14System@TObjectii", + "@Comctrls@TCustomTreeView@DoEnter$qqrv", + "@Comctrls@TCustomTreeView@DoExit$qqrv", + "@Comctrls@TCustomTreeView@DoStartDrag$qqrrp20Controls@TDragObject", + "@Comctrls@TCustomTreeView@Edit$qqrrx10tagTVITEMA", + "@Comctrls@TCustomTreeView@EditWndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@Expand$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@FindNextToSelect$qqrv", + "@Comctrls@TCustomTreeView@FinishSelection$qqrp18Comctrls@TTreeNode46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Comctrls@TCustomTreeView@FullCollapse$qqrv", + "@Comctrls@TCustomTreeView@FullExpand$qqrv", + "@Comctrls@TCustomTreeView@GetChangeDelay$qqrv", + "@Comctrls@TCustomTreeView@GetDragImages$qqrv", + "@Comctrls@TCustomTreeView@GetDropTarget$qqrv", + "@Comctrls@TCustomTreeView@GetHitTestInfoAt$qqrii", + "@Comctrls@TCustomTreeView@GetImageIndex$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@GetIndent$qqrv", + "@Comctrls@TCustomTreeView@GetNodeAt$qqrii", + "@Comctrls@TCustomTreeView@GetNodeFromItem$qqrrx10tagTVITEMA", + "@Comctrls@TCustomTreeView@GetSelected$qqrv", + "@Comctrls@TCustomTreeView@GetSelectedIndex$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@GetSelection$qqri", + "@Comctrls@TCustomTreeView@GetSelectionCount$qqrv", + "@Comctrls@TCustomTreeView@GetSelections$qqrp13Classes@TList", + "@Comctrls@TCustomTreeView@GetTopItem$qqrv", + "@Comctrls@TCustomTreeView@ImageListChange$qqrp14System@TObject", + "@Comctrls@TCustomTreeView@InvalidateSelectionsRects$qqrv", + "@Comctrls@TCustomTreeView@IsCustomDrawn$qqr26Comctrls@TCustomDrawTarget25Comctrls@TCustomDrawStage", + "@Comctrls@TCustomTreeView@IsEditing$qqrv", + "@Comctrls@TCustomTreeView@LoadFromFile$qqrx17System@AnsiString", + "@Comctrls@TCustomTreeView@LoadFromStream$qqrp15Classes@TStream", + "@Comctrls@TCustomTreeView@Loaded$qqrv", + "@Comctrls@TCustomTreeView@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Comctrls@TCustomTreeView@NodeDeselect$qqri", + "@Comctrls@TCustomTreeView@NodeSelect$qqrp18Comctrls@TTreeNodei", + "@Comctrls@TCustomTreeView@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCustomTreeView@OnChangeTimer$qqrp14System@TObject", + "@Comctrls@TCustomTreeView@SaveToFile$qqrx17System@AnsiString", + "@Comctrls@TCustomTreeView@SaveToStream$qqrp15Classes@TStream", + "@Comctrls@TCustomTreeView@Select$qqrp13Classes@TList", + "@Comctrls@TCustomTreeView@Select$qqrp18Comctrls@TTreeNode46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Comctrls@TCustomTreeView@Select$qqrppx18Comctrls@TTreeNodexi", + "@Comctrls@TCustomTreeView@SelectNode$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@SetAutoExpand$qqro", + "@Comctrls@TCustomTreeView@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Comctrls@TCustomTreeView@SetButtonStyle$qqro", + "@Comctrls@TCustomTreeView@SetChangeDelay$qqri", + "@Comctrls@TCustomTreeView@SetDragMode$qqr18Controls@TDragMode", + "@Comctrls@TCustomTreeView@SetDropTarget$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@SetHideSelection$qqro", + "@Comctrls@TCustomTreeView@SetHotTrack$qqro", + "@Comctrls@TCustomTreeView@SetImageList$qqruii", + "@Comctrls@TCustomTreeView@SetImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomTreeView@SetIndent$qqri", + "@Comctrls@TCustomTreeView@SetLineStyle$qqro", + "@Comctrls@TCustomTreeView@SetMultiSelect$qqrxo", + "@Comctrls@TCustomTreeView@SetMultiSelectStyle$qqrx55System@%Set$t27Comctrls@TMultiSelectStyles$iuc$0$iuc$3%", + "@Comctrls@TCustomTreeView@SetReadOnly$qqro", + "@Comctrls@TCustomTreeView@SetRootStyle$qqro", + "@Comctrls@TCustomTreeView@SetRowSelect$qqro", + "@Comctrls@TCustomTreeView@SetSelected$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@SetSortType$qqr18Comctrls@TSortType", + "@Comctrls@TCustomTreeView@SetStateImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TCustomTreeView@SetToolTips$qqro", + "@Comctrls@TCustomTreeView@SetTopItem$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@SetTreeNodes$qqrp19Comctrls@TTreeNodes", + "@Comctrls@TCustomTreeView@ShiftSelectNode$qqrp18Comctrls@TTreeNodeoo", + "@Comctrls@TCustomTreeView@Subselect$qqrp18Comctrls@TTreeNodeo", + "@Comctrls@TCustomTreeView@ValidateSelection$qqrv", + "@Comctrls@TCustomTreeView@WMContextMenu$qqrr23Messages@TWMContextMenu", + "@Comctrls@TCustomTreeView@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Comctrls@TCustomTreeView@WMNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomTreeView@WndProc$qqrr17Messages@TMessage", + "@Comctrls@TCustomUpDown@", + "@Comctrls@TCustomUpDown@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TCustomUpDown@CMAllChildrenFlipped$qqrr17Messages@TMessage", + "@Comctrls@TCustomUpDown@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TCustomUpDown@CanChange$qqrv", + "@Comctrls@TCustomUpDown@Click$qqr19Comctrls@TUDBtnType", + "@Comctrls@TCustomUpDown@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TCustomUpDown@CreateWnd$qqrv", + "@Comctrls@TCustomUpDown@DoCanChange$qqrss", + "@Comctrls@TCustomUpDown@GetPosition$qqrv", + "@Comctrls@TCustomUpDown@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TCustomUpDown@SetAlignButton$qqr23Comctrls@TUDAlignButton", + "@Comctrls@TCustomUpDown@SetArrowKeys$qqro", + "@Comctrls@TCustomUpDown@SetAssociate$qqrp20Controls@TWinControl", + "@Comctrls@TCustomUpDown@SetIncrement$qqri", + "@Comctrls@TCustomUpDown@SetMax$qqrs", + "@Comctrls@TCustomUpDown@SetMin$qqrs", + "@Comctrls@TCustomUpDown@SetOrientation$qqr23Comctrls@TUDOrientation", + "@Comctrls@TCustomUpDown@SetPosition$qqrs", + "@Comctrls@TCustomUpDown@SetThousands$qqro", + "@Comctrls@TCustomUpDown@SetWrap$qqro", + "@Comctrls@TCustomUpDown@UndoAutoResizing$qqrp20Controls@TWinControl", + "@Comctrls@TCustomUpDown@WMHScroll$qqrr18Messages@TWMScroll", + "@Comctrls@TCustomUpDown@WMSize$qqrr16Messages@TWMSize", + "@Comctrls@TCustomUpDown@WMVScroll$qqrr18Messages@TWMScroll", + "@Comctrls@TDateTimePicker@", + "@Comctrls@TDateTimePicker@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TDateTimePicker@AdjustHeight$qqrv", + "@Comctrls@TDateTimePicker@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TDateTimePicker@CMFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TDateTimePicker@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TDateTimePicker@Change$qqrv", + "@Comctrls@TDateTimePicker@CheckEmptyDate$qqrv", + "@Comctrls@TDateTimePicker@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TDateTimePicker@CreateWnd$qqrv", + "@Comctrls@TDateTimePicker@GetCalendarHandle$qqrv", + "@Comctrls@TDateTimePicker@GetTime$qqrv", + "@Comctrls@TDateTimePicker@MsgSetCalColors$qqri15Graphics@TColor", + "@Comctrls@TDateTimePicker@MsgSetDateTime$qqrrx11_SYSTEMTIME", + "@Comctrls@TDateTimePicker@MsgSetRange$qqrip11_SYSTEMTIME", + "@Comctrls@TDateTimePicker@SetCalAlignment$qqr24Comctrls@TDTCalAlignment", + "@Comctrls@TDateTimePicker@SetChecked$qqro", + "@Comctrls@TDateTimePicker@SetDateFormat$qqr22Comctrls@TDTDateFormat", + "@Comctrls@TDateTimePicker@SetDateMode$qqr20Comctrls@TDTDateMode", + "@Comctrls@TDateTimePicker@SetFormat$qqrx17System@AnsiString", + "@Comctrls@TDateTimePicker@SetKind$qqr22Comctrls@TDateTimeKind", + "@Comctrls@TDateTimePicker@SetParseInput$qqro", + "@Comctrls@TDateTimePicker@SetShowCheckbox$qqro", + "@Comctrls@TDateTimePicker@SetTime$qqr16System@TDateTime", + "@Comctrls@THeaderControl@", + "@Comctrls@THeaderControl@GetOnDrawSection$qqrv", + "@Comctrls@THeaderControl@GetOnSectionClick$qqrv", + "@Comctrls@THeaderControl@GetOnSectionResize$qqrv", + "@Comctrls@THeaderControl@GetOnSectionTrack$qqrv", + "@Comctrls@THeaderControl@SetOnDrawSection$qqrxynpqqrp23Comctrls@THeaderControlp23Comctrls@THeaderSectionrx11Types@TRecto$v", + "@Comctrls@THeaderControl@SetOnSectionClick$qqrxynpqqrp23Comctrls@THeaderControlp23Comctrls@THeaderSection$v", + "@Comctrls@THeaderControl@SetOnSectionResize$qqrxynpqqrp23Comctrls@THeaderControlp23Comctrls@THeaderSection$v", + "@Comctrls@THeaderControl@SetOnSectionTrack$qqrxynpqqrp23Comctrls@THeaderControlp23Comctrls@THeaderSectioni27Comctrls@TSectionTrackState$v", + "@Comctrls@THeaderSection@", + "@Comctrls@THeaderSection@$bctr$qqrp19Classes@TCollection", + "@Comctrls@THeaderSection@Assign$qqrp19Classes@TPersistent", + "@Comctrls@THeaderSection@GetDisplayName$qqrv", + "@Comctrls@THeaderSection@GetLeft$qqrv", + "@Comctrls@THeaderSection@GetRight$qqrv", + "@Comctrls@THeaderSection@IsBiDiModeStored$qqrv", + "@Comctrls@THeaderSection@ParentBiDiModeChanged$qqrv", + "@Comctrls@THeaderSection@SetAlignment$qqr18Classes@TAlignment", + "@Comctrls@THeaderSection@SetAutoSize$qqro", + "@Comctrls@THeaderSection@SetBiDiMode$qqr17Classes@TBiDiMode", + "@Comctrls@THeaderSection@SetImageIndex$qqrxi", + "@Comctrls@THeaderSection@SetMaxWidth$qqri", + "@Comctrls@THeaderSection@SetMinWidth$qqri", + "@Comctrls@THeaderSection@SetParentBiDiMode$qqro", + "@Comctrls@THeaderSection@SetStyle$qqr28Comctrls@THeaderSectionStyle", + "@Comctrls@THeaderSection@SetText$qqrx17System@AnsiString", + "@Comctrls@THeaderSection@SetWidth$qqri", + "@Comctrls@THeaderSection@UseRightToLeftAlignment$qqrv", + "@Comctrls@THeaderSection@UseRightToLeftReading$qqrv", + "@Comctrls@THeaderSections@", + "@Comctrls@THeaderSections@$bctr$qqrp29Comctrls@TCustomHeaderControl", + "@Comctrls@THeaderSections@Add$qqrv", + "@Comctrls@THeaderSections@AddItem$qqrp23Comctrls@THeaderSectioni", + "@Comctrls@THeaderSections@GetItem$qqri", + "@Comctrls@THeaderSections@GetOwner$qqrv", + "@Comctrls@THeaderSections@Insert$qqri", + "@Comctrls@THeaderSections@SetItem$qqrip23Comctrls@THeaderSection", + "@Comctrls@THeaderSections@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@THotKey@", + "@Comctrls@TIconOptions@", + "@Comctrls@TIconOptions@$bctr$qqrp24Comctrls@TCustomListView", + "@Comctrls@TIconOptions@SetArrangement$qqr25Comctrls@TIconArrangement", + "@Comctrls@TIconOptions@SetAutoArrange$qqro", + "@Comctrls@TIconOptions@SetWrapText$qqro", + "@Comctrls@TListColumn@", + "@Comctrls@TListColumn@$bctr$qqrp19Classes@TCollection", + "@Comctrls@TListColumn@$bdtr$qqrv", + "@Comctrls@TListColumn@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TListColumn@DefineProperties$qqrp14Classes@TFiler", + "@Comctrls@TListColumn@DoChange$qqrv", + "@Comctrls@TListColumn@GetDisplayName$qqrv", + "@Comctrls@TListColumn@GetWidth$qqrv", + "@Comctrls@TListColumn@IsWidthStored$qqrv", + "@Comctrls@TListColumn@ReadData$qqrp15Classes@TReader", + "@Comctrls@TListColumn@SetAlignment$qqr18Classes@TAlignment", + "@Comctrls@TListColumn@SetAutoSize$qqro", + "@Comctrls@TListColumn@SetCaption$qqrx17System@AnsiString", + "@Comctrls@TListColumn@SetImageIndex$qqri", + "@Comctrls@TListColumn@SetIndex$qqri", + "@Comctrls@TListColumn@SetMaxWidth$qqri", + "@Comctrls@TListColumn@SetMinWidth$qqri", + "@Comctrls@TListColumn@SetWidth$qqri", + "@Comctrls@TListColumn@WriteData$qqrp15Classes@TWriter", + "@Comctrls@TListColumns@", + "@Comctrls@TListColumns@$bctr$qqrp24Comctrls@TCustomListView", + "@Comctrls@TListColumns@Add$qqrv", + "@Comctrls@TListColumns@GetItem$qqri", + "@Comctrls@TListColumns@GetOwner$qqrv", + "@Comctrls@TListColumns@Owner$qqrv", + "@Comctrls@TListColumns@SetItem$qqrip20Comctrls@TListColumn", + "@Comctrls@TListColumns@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TListColumns@UpdateCols$qqrv", + "@Comctrls@TListItem@", + "@Comctrls@TListItem@$bctr$qqrp19Comctrls@TListItems", + "@Comctrls@TListItem@$bdtr$qqrv", + "@Comctrls@TListItem@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TListItem@CancelEdit$qqrv", + "@Comctrls@TListItem@Delete$qqrv", + "@Comctrls@TListItem@DisplayRect$qqr21Comctrls@TDisplayCode", + "@Comctrls@TListItem@EditCaption$qqrv", + "@Comctrls@TListItem@GetChecked$qqrv", + "@Comctrls@TListItem@GetHandle$qqrv", + "@Comctrls@TListItem@GetIndex$qqrv", + "@Comctrls@TListItem@GetLeft$qqrv", + "@Comctrls@TListItem@GetListView$qqrv", + "@Comctrls@TListItem@GetPosition$qqrv", + "@Comctrls@TListItem@GetState$qqri", + "@Comctrls@TListItem@GetSubItemImage$qqri", + "@Comctrls@TListItem@GetTop$qqrv", + "@Comctrls@TListItem@IsEqual$qqrp18Comctrls@TListItem", + "@Comctrls@TListItem@MakeVisible$qqro", + "@Comctrls@TListItem@SetCaption$qqrx17System@AnsiString", + "@Comctrls@TListItem@SetChecked$qqro", + "@Comctrls@TListItem@SetData$qqrpv", + "@Comctrls@TListItem@SetImage$qqrii", + "@Comctrls@TListItem@SetIndent$qqri", + "@Comctrls@TListItem@SetLeft$qqri", + "@Comctrls@TListItem@SetPosition$qqrrx12Types@TPoint", + "@Comctrls@TListItem@SetState$qqrio", + "@Comctrls@TListItem@SetSubItemImage$qqrixi", + "@Comctrls@TListItem@SetSubItems$qqrp16Classes@TStrings", + "@Comctrls@TListItem@SetTop$qqri", + "@Comctrls@TListItem@Update$qqrv", + "@Comctrls@TListItem@WorkArea$qqrv", + "@Comctrls@TListItems@", + "@Comctrls@TListItems@$bctr$qqrp24Comctrls@TCustomListView", + "@Comctrls@TListItems@$bdtr$qqrv", + "@Comctrls@TListItems@Add$qqrv", + "@Comctrls@TListItems@AddItem$qqrp18Comctrls@TListItemi", + "@Comctrls@TListItems@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TListItems@BeginUpdate$qqrv", + "@Comctrls@TListItems@Clear$qqrv", + "@Comctrls@TListItems@CreateItem$qqrip18Comctrls@TListItem", + "@Comctrls@TListItems@DefineProperties$qqrp14Classes@TFiler", + "@Comctrls@TListItems@Delete$qqri", + "@Comctrls@TListItems@EndUpdate$qqrv", + "@Comctrls@TListItems@GetCount$qqrv", + "@Comctrls@TListItems@GetHandle$qqrv", + "@Comctrls@TListItems@GetItem$qqri", + "@Comctrls@TListItems@IndexOf$qqrp18Comctrls@TListItem", + "@Comctrls@TListItems@Insert$qqri", + "@Comctrls@TListItems@ReadData$qqrp15Classes@TStream", + "@Comctrls@TListItems@SetCount$qqri", + "@Comctrls@TListItems@SetItem$qqrip18Comctrls@TListItem", + "@Comctrls@TListItems@SetUpdateState$qqro", + "@Comctrls@TListItems@WriteData$qqrp15Classes@TStream", + "@Comctrls@TListView@", + "@Comctrls@TListViewActionLink@", + "@Comctrls@TListViewActionLink@AddItem$qqr17System@AnsiStringipv", + "@Comctrls@TListViewActionLink@AddItem$qqrp26Listactns@TListControlItem", + "@Comctrls@TListViewActionLink@SetImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TMonthCalColors@", + "@Comctrls@TMonthCalColors@$bctr$qqrp24Comctrls@TCommonCalendar", + "@Comctrls@TMonthCalColors@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TMonthCalColors@SetAllColors$qqrv", + "@Comctrls@TMonthCalColors@SetColor$qqri15Graphics@TColor", + "@Comctrls@TMonthCalendar@", + "@Comctrls@TMonthCalendar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TMonthCalendar@CMFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TMonthCalendar@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TMonthCalendar@CanAutoSize$qqrrit1", + "@Comctrls@TMonthCalendar@ConstrainedResize$qqrrit1t1t1", + "@Comctrls@TMonthCalendar@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TMonthCalendar@GetCalendarHandle$qqrv", + "@Comctrls@TMonthCalendar@MsgSetCalColors$qqri15Graphics@TColor", + "@Comctrls@TMonthCalendar@MsgSetDateTime$qqrrx11_SYSTEMTIME", + "@Comctrls@TMonthCalendar@MsgSetRange$qqrip11_SYSTEMTIME", + "@Comctrls@TPageControl@", + "@Comctrls@TPageControl@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TPageControl@$bdtr$qqrv", + "@Comctrls@TPageControl@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Comctrls@TPageControl@CMDialogKey$qqrr15Messages@TWMKey", + "@Comctrls@TPageControl@CMDockClient$qqrr22Controls@TCMDockClient", + "@Comctrls@TPageControl@CMDockNotification$qqrr28Controls@TCMDockNotification", + "@Comctrls@TPageControl@CMUnDockClient$qqrr24Controls@TCMUnDockClient", + "@Comctrls@TPageControl@CanShowTab$qqri", + "@Comctrls@TPageControl@Change$qqrv", + "@Comctrls@TPageControl@ChangeActivePage$qqrp18Comctrls@TTabSheet", + "@Comctrls@TPageControl@DeleteTab$qqrp18Comctrls@TTabSheeti", + "@Comctrls@TPageControl@DoAddDockClient$qqrp17Controls@TControlrx11Types@TRect", + "@Comctrls@TPageControl@DoRemoveDockClient$qqrp17Controls@TControl", + "@Comctrls@TPageControl@DockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Comctrls@TPageControl@FindNextPage$qqrp18Comctrls@TTabSheetoo", + "@Comctrls@TPageControl@GetActivePageIndex$qqrv", + "@Comctrls@TPageControl@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Comctrls@TPageControl@GetDockClientFromMousePos$qqrrx12Types@TPoint", + "@Comctrls@TPageControl@GetImageIndex$qqri", + "@Comctrls@TPageControl@GetPage$qqri", + "@Comctrls@TPageControl@GetPageCount$qqrv", + "@Comctrls@TPageControl@GetPageFromDockClient$qqrp17Controls@TControl", + "@Comctrls@TPageControl@GetSiteInfo$qqrp17Controls@TControlr11Types@TRectrx12Types@TPointro", + "@Comctrls@TPageControl@InsertPage$qqrp18Comctrls@TTabSheet", + "@Comctrls@TPageControl@InsertTab$qqrp18Comctrls@TTabSheet", + "@Comctrls@TPageControl@Loaded$qqrv", + "@Comctrls@TPageControl@MoveTab$qqrii", + "@Comctrls@TPageControl@RemovePage$qqrp18Comctrls@TTabSheet", + "@Comctrls@TPageControl@SelectNextPage$qqroo", + "@Comctrls@TPageControl@SetActivePage$qqrp18Comctrls@TTabSheet", + "@Comctrls@TPageControl@SetActivePageIndex$qqrxi", + "@Comctrls@TPageControl@SetChildOrder$qqrp18Classes@TComponenti", + "@Comctrls@TPageControl@ShowControl$qqrp17Controls@TControl", + "@Comctrls@TPageControl@UpdateActivePage$qqrv", + "@Comctrls@TPageControl@UpdateTab$qqrp18Comctrls@TTabSheet", + "@Comctrls@TPageControl@UpdateTabHighlights$qqrv", + "@Comctrls@TPageControl@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Comctrls@TPageControl@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Comctrls@TPageScroller@", + "@Comctrls@TPageScroller@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TPageScroller@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Comctrls@TPageScroller@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TPageScroller@CMControlChange$qqrr25Controls@TCMControlChange", + "@Comctrls@TPageScroller@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TPageScroller@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TPageScroller@CreateWnd$qqrv", + "@Comctrls@TPageScroller@DoSetControl$qqrp20Controls@TWinControl", + "@Comctrls@TPageScroller@GetButtonState$qqr28Comctrls@TPageScrollerButton", + "@Comctrls@TPageScroller@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TPageScroller@Scroll$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii33Comctrls@TPageScrollerOrientationri", + "@Comctrls@TPageScroller@SetAutoScroll$qqro", + "@Comctrls@TPageScroller@SetButtonSize$qqri", + "@Comctrls@TPageScroller@SetControl$qqrp20Controls@TWinControl", + "@Comctrls@TPageScroller@SetDragScroll$qqro", + "@Comctrls@TPageScroller@SetMargin$qqri", + "@Comctrls@TPageScroller@SetOrientation$qqr33Comctrls@TPageScrollerOrientation", + "@Comctrls@TPageScroller@SetPosition$qqri", + "@Comctrls@TPageScroller@UpdatePreferredSize$qqrv", + "@Comctrls@TPageScroller@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Comctrls@TParaAttributes@", + "@Comctrls@TParaAttributes@$bctr$qqrp24Comctrls@TCustomRichEdit", + "@Comctrls@TParaAttributes@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TParaAttributes@GetAlignment$qqrv", + "@Comctrls@TParaAttributes@GetAttributes$qqrr11_paraformat", + "@Comctrls@TParaAttributes@GetFirstIndent$qqrv", + "@Comctrls@TParaAttributes@GetLeftIndent$qqrv", + "@Comctrls@TParaAttributes@GetNumbering$qqrv", + "@Comctrls@TParaAttributes@GetRightIndent$qqrv", + "@Comctrls@TParaAttributes@GetTab$qqruc", + "@Comctrls@TParaAttributes@GetTabCount$qqrv", + "@Comctrls@TParaAttributes@InitPara$qqrr11_paraformat", + "@Comctrls@TParaAttributes@SetAlignment$qqr18Classes@TAlignment", + "@Comctrls@TParaAttributes@SetAttributes$qqrr11_paraformat", + "@Comctrls@TParaAttributes@SetFirstIndent$qqri", + "@Comctrls@TParaAttributes@SetLeftIndent$qqri", + "@Comctrls@TParaAttributes@SetNumbering$qqr24Comctrls@TNumberingStyle", + "@Comctrls@TParaAttributes@SetRightIndent$qqri", + "@Comctrls@TParaAttributes@SetTab$qqruci", + "@Comctrls@TParaAttributes@SetTabCount$qqri", + "@Comctrls@TProgressBar@", + "@Comctrls@TProgressBar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TProgressBar@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TProgressBar@CreateWnd$qqrv", + "@Comctrls@TProgressBar@DestroyWnd$qqrv", + "@Comctrls@TProgressBar@GetMax$qqrv", + "@Comctrls@TProgressBar@GetMin$qqrv", + "@Comctrls@TProgressBar@GetPosition$qqrv", + "@Comctrls@TProgressBar@SetMax$qqri", + "@Comctrls@TProgressBar@SetMin$qqri", + "@Comctrls@TProgressBar@SetOrientation$qqr32Comctrls@TProgressBarOrientation", + "@Comctrls@TProgressBar@SetParams$qqrii", + "@Comctrls@TProgressBar@SetPosition$qqri", + "@Comctrls@TProgressBar@SetSmooth$qqro", + "@Comctrls@TProgressBar@SetStep$qqri", + "@Comctrls@TProgressBar@StepBy$qqri", + "@Comctrls@TProgressBar@StepIt$qqrv", + "@Comctrls@TRichEdit@", + "@Comctrls@TStatusBar@", + "@Comctrls@TStatusBar@GetOnDrawPanel$qqrv", + "@Comctrls@TStatusBar@SetOnDrawPanel$qqrxynpqqrp19Comctrls@TStatusBarp21Comctrls@TStatusPanelrx11Types@TRect$v", + "@Comctrls@TStatusPanel@", + "@Comctrls@TStatusPanel@$bctr$qqrp19Classes@TCollection", + "@Comctrls@TStatusPanel@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TStatusPanel@GetDisplayName$qqrv", + "@Comctrls@TStatusPanel@IsBiDiModeStored$qqrv", + "@Comctrls@TStatusPanel@ParentBiDiModeChanged$qqrv", + "@Comctrls@TStatusPanel@SetAlignment$qqr18Classes@TAlignment", + "@Comctrls@TStatusPanel@SetBevel$qqr26Comctrls@TStatusPanelBevel", + "@Comctrls@TStatusPanel@SetBiDiMode$qqr17Classes@TBiDiMode", + "@Comctrls@TStatusPanel@SetParentBiDiMode$qqro", + "@Comctrls@TStatusPanel@SetStyle$qqr26Comctrls@TStatusPanelStyle", + "@Comctrls@TStatusPanel@SetText$qqrx17System@AnsiString", + "@Comctrls@TStatusPanel@SetWidth$qqri", + "@Comctrls@TStatusPanel@UseRightToLeftAlignment$qqrv", + "@Comctrls@TStatusPanel@UseRightToLeftReading$qqrv", + "@Comctrls@TStatusPanels@", + "@Comctrls@TStatusPanels@$bctr$qqrp25Comctrls@TCustomStatusBar", + "@Comctrls@TStatusPanels@Add$qqrv", + "@Comctrls@TStatusPanels@AddItem$qqrp21Comctrls@TStatusPaneli", + "@Comctrls@TStatusPanels@GetItem$qqri", + "@Comctrls@TStatusPanels@GetOwner$qqrv", + "@Comctrls@TStatusPanels@Insert$qqri", + "@Comctrls@TStatusPanels@SetItem$qqrip21Comctrls@TStatusPanel", + "@Comctrls@TStatusPanels@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TTabControl@", + "@Comctrls@TTabSheet@", + "@Comctrls@TTabSheet@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TTabSheet@$bdtr$qqrv", + "@Comctrls@TTabSheet@CMShowingChanged$qqrr17Messages@TMessage", + "@Comctrls@TTabSheet@CMTextChanged$qqrr17Messages@TMessage", + "@Comctrls@TTabSheet@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TTabSheet@DoHide$qqrv", + "@Comctrls@TTabSheet@DoShow$qqrv", + "@Comctrls@TTabSheet@GetPageIndex$qqrv", + "@Comctrls@TTabSheet@GetTabIndex$qqrv", + "@Comctrls@TTabSheet@ReadState$qqrp15Classes@TReader", + "@Comctrls@TTabSheet@SetHighlighted$qqro", + "@Comctrls@TTabSheet@SetImageIndex$qqri", + "@Comctrls@TTabSheet@SetPageControl$qqrp21Comctrls@TPageControl", + "@Comctrls@TTabSheet@SetPageIndex$qqri", + "@Comctrls@TTabSheet@SetTabShowing$qqro", + "@Comctrls@TTabSheet@SetTabVisible$qqro", + "@Comctrls@TTabSheet@UpdateTabShowing$qqrv", + "@Comctrls@TTextAttributes@", + "@Comctrls@TTextAttributes@$bctr$qqrp24Comctrls@TCustomRichEdit23Comctrls@TAttributeType", + "@Comctrls@TTextAttributes@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TTextAttributes@AssignTo$qqrp19Classes@TPersistent", + "@Comctrls@TTextAttributes@GetAttributes$qqrr21Richedit@TCharFormatA", + "@Comctrls@TTextAttributes@GetCharset$qqrv", + "@Comctrls@TTextAttributes@GetColor$qqrv", + "@Comctrls@TTextAttributes@GetConsistentAttributes$qqrv", + "@Comctrls@TTextAttributes@GetHeight$qqrv", + "@Comctrls@TTextAttributes@GetName$qqrv", + "@Comctrls@TTextAttributes@GetPitch$qqrv", + "@Comctrls@TTextAttributes@GetProtected$qqrv", + "@Comctrls@TTextAttributes@GetSize$qqrv", + "@Comctrls@TTextAttributes@GetStyle$qqrv", + "@Comctrls@TTextAttributes@InitFormat$qqrr21Richedit@TCharFormatA", + "@Comctrls@TTextAttributes@SetAttributes$qqrr21Richedit@TCharFormatA", + "@Comctrls@TTextAttributes@SetCharset$qqruc", + "@Comctrls@TTextAttributes@SetColor$qqr15Graphics@TColor", + "@Comctrls@TTextAttributes@SetHeight$qqri", + "@Comctrls@TTextAttributes@SetName$qqr17System@AnsiString", + "@Comctrls@TTextAttributes@SetPitch$qqr19Graphics@TFontPitch", + "@Comctrls@TTextAttributes@SetProtected$qqro", + "@Comctrls@TTextAttributes@SetSize$qqri", + "@Comctrls@TTextAttributes@SetStyle$qqr47System@%Set$t19Graphics@TFontStyle$iuc$0$iuc$3%", + "@Comctrls@TToolBar@", + "@Comctrls@TToolBar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TToolBar@$bdtr$qqrv", + "@Comctrls@TToolBar@AdjustControl$qqrp17Controls@TControl", + "@Comctrls@TToolBar@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Comctrls@TToolBar@BeginUpdate$qqrv", + "@Comctrls@TToolBar@ButtonIndex$qqriii", + "@Comctrls@TToolBar@CMColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@CMControlChange$qqrr25Controls@TCMControlChange", + "@Comctrls@TToolBar@CMDialogChar$qqrr15Messages@TWMKey", + "@Comctrls@TToolBar@CMEnabledChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@CMFontChanged$qqrpv", + "@Comctrls@TToolBar@CMParentColorChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@CMSysFontChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@CNChar$qqrr15Messages@TWMKey", + "@Comctrls@TToolBar@CNDropDownClosed$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@CNNotify$qqrr18Messages@TWMNotify", + "@Comctrls@TToolBar@CNSysKeyDown$qqrr15Messages@TWMKey", + "@Comctrls@TToolBar@CanAutoSize$qqrrit1", + "@Comctrls@TToolBar@CancelMenu$qqrv", + "@Comctrls@TToolBar@CanvasChanged$qqrp14System@TObject", + "@Comctrls@TToolBar@ChangeScale$qqrii", + "@Comctrls@TToolBar@CheckMenuDropdown$qqrp20Comctrls@TToolButton", + "@Comctrls@TToolBar@ClearTempMenu$qqrv", + "@Comctrls@TToolBar@ClickButton$qqrp20Comctrls@TToolButton", + "@Comctrls@TToolBar@CreateButtons$qqrii", + "@Comctrls@TToolBar@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TToolBar@CreateWnd$qqrv", + "@Comctrls@TToolBar@CustomDraw$qqrrx11Types@TRect25Comctrls@TCustomDrawStage", + "@Comctrls@TToolBar@CustomDrawButton$qqrp20Comctrls@TToolButton48System@%Set$t20Comctrls@ComCtrls__9$iuc$0$iuc$8%25Comctrls@TCustomDrawStager49System@%Set$t21Comctrls@ComCtrls__34$iuc$0$iuc$4%", + "@Comctrls@TToolBar@DisabledImageListChange$qqrp14System@TObject", + "@Comctrls@TToolBar@DoGetButton$qqrp13tagNMTOOLBARA", + "@Comctrls@TToolBar@DoQueryDelete$qqri", + "@Comctrls@TToolBar@DoQueryInsert$qqri", + "@Comctrls@TToolBar@EndUpdate$qqrv", + "@Comctrls@TToolBar@FindButtonFromAccel$qqrus", + "@Comctrls@TToolBar@FlipChildren$qqro", + "@Comctrls@TToolBar@GetButton$qqri", + "@Comctrls@TToolBar@GetButtonCount$qqrv", + "@Comctrls@TToolBar@GetButtonSize$qqrrit1", + "@Comctrls@TToolBar@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Comctrls@TToolBar@GetRowCount$qqrv", + "@Comctrls@TToolBar@HotImageListChange$qqrp14System@TObject", + "@Comctrls@TToolBar@ImageListChange$qqrp14System@TObject", + "@Comctrls@TToolBar@InitMenu$qqrp20Comctrls@TToolButton", + "@Comctrls@TToolBar@InsertButton$qqrp17Controls@TControl", + "@Comctrls@TToolBar@InternalButtonCount$qqrv", + "@Comctrls@TToolBar@IsCustomDrawn$qqr26Comctrls@TCustomDrawTarget25Comctrls@TCustomDrawStage", + "@Comctrls@TToolBar@LoadImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TToolBar@Loaded$qqrv", + "@Comctrls@TToolBar@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TToolBar@RecreateButtons$qqrv", + "@Comctrls@TToolBar@RecreateButtonsFromToolbar$qqrv", + "@Comctrls@TToolBar@RefreshButton$qqri", + "@Comctrls@TToolBar@RemoveButton$qqrp17Controls@TControl", + "@Comctrls@TToolBar@ReorderButton$qqriii", + "@Comctrls@TToolBar@RepositionButton$qqri", + "@Comctrls@TToolBar@RepositionButtons$qqri", + "@Comctrls@TToolBar@ResizeButtons$qqrv", + "@Comctrls@TToolBar@SaveButtons$qqro", + "@Comctrls@TToolBar@SetButtonHeight$qqri", + "@Comctrls@TToolBar@SetButtonWidth$qqri", + "@Comctrls@TToolBar@SetCustomizable$qqrxo", + "@Comctrls@TToolBar@SetDisabledImageList$qqrui", + "@Comctrls@TToolBar@SetDisabledImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TToolBar@SetFlat$qqro", + "@Comctrls@TToolBar@SetHotImageList$qqrui", + "@Comctrls@TToolBar@SetHotImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TToolBar@SetImageList$qqrui", + "@Comctrls@TToolBar@SetImages$qqrp24Imglist@TCustomImageList", + "@Comctrls@TToolBar@SetIndent$qqri", + "@Comctrls@TToolBar@SetList$qqro", + "@Comctrls@TToolBar@SetMenu$qqrpx15Menus@TMainMenu", + "@Comctrls@TToolBar@SetShowCaptions$qqro", + "@Comctrls@TToolBar@SetTransparent$qqro", + "@Comctrls@TToolBar@SetWrapable$qqro", + "@Comctrls@TToolBar@TrackMenu$qqrp20Comctrls@TToolButton", + "@Comctrls@TToolBar@UpdateButton$qqri", + "@Comctrls@TToolBar@UpdateButtonState$qqri", + "@Comctrls@TToolBar@UpdateButtonStates$qqrv", + "@Comctrls@TToolBar@UpdateButtons$qqrv", + "@Comctrls@TToolBar@UpdateImages$qqrv", + "@Comctrls@TToolBar@UpdateItem$qqriii", + "@Comctrls@TToolBar@UpdateItem2$qqriii", + "@Comctrls@TToolBar@WMCaptureChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Comctrls@TToolBar@WMGetDlgCode$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@WMGetText$qqrr19Messages@TWMGetText", + "@Comctrls@TToolBar@WMGetTextLength$qqrr20Messages@TWMNoParams", + "@Comctrls@TToolBar@WMKeyDown$qqrr15Messages@TWMKey", + "@Comctrls@TToolBar@WMNotifyFormat$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@WMSetText$qqrr19Messages@TWMSetText", + "@Comctrls@TToolBar@WMSize$qqrr16Messages@TWMSize", + "@Comctrls@TToolBar@WMSysChar$qqrr15Messages@TWMKey", + "@Comctrls@TToolBar@WMSysCommand$qqrr22Messages@TWMSysCommand", + "@Comctrls@TToolBar@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Comctrls@TToolBar@WMWindowPosChanging$qqrr24Messages@TWMWindowPosMsg", + "@Comctrls@TToolBar@WndProc$qqrr17Messages@TMessage", + "@Comctrls@TToolBar@WrapButtons$qqrrit1", + "@Comctrls@TToolBarDockObject@", + "@Comctrls@TToolBarDockObject@AdjustDockRect$qqrrx11Types@TRect", + "@Comctrls@TToolBarDockObject@DrawDragDockImage$qqrv", + "@Comctrls@TToolBarDockObject@EraseDragDockImage$qqrv", + "@Comctrls@TToolBarDockObject@GetDragCursor$qqroii", + "@Comctrls@TToolBarDockObject@ToolDockImage$qqro", + "@Comctrls@TToolButton@", + "@Comctrls@TToolButton@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TToolButton@ActionChange$qqrp14System@TObjecto", + "@Comctrls@TToolButton@AssignTo$qqrp19Classes@TPersistent", + "@Comctrls@TToolButton@BeginUpdate$qqrv", + "@Comctrls@TToolButton@CMEnabledChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolButton@CMHitTest$qqrr21Messages@TWMNCHitTest", + "@Comctrls@TToolButton@CMTextChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolButton@CMVisibleChanged$qqrr17Messages@TMessage", + "@Comctrls@TToolButton@CheckMenuDropdown$qqrv", + "@Comctrls@TToolButton@Click$qqrv", + "@Comctrls@TToolButton@EndUpdate$qqrv", + "@Comctrls@TToolButton@GetActionLinkClass$qqrv", + "@Comctrls@TToolButton@GetButtonState$qqrv", + "@Comctrls@TToolButton@GetIndex$qqrv", + "@Comctrls@TToolButton@IsCheckedStored$qqrv", + "@Comctrls@TToolButton@IsImageIndexStored$qqrv", + "@Comctrls@TToolButton@IsWidthStored$qqrv", + "@Comctrls@TToolButton@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Comctrls@TToolButton@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Comctrls@TToolButton@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Comctrls@TToolButton@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Comctrls@TToolButton@Paint$qqrv", + "@Comctrls@TToolButton@RefreshControl$qqrv", + "@Comctrls@TToolButton@SetAutoSize$qqro", + "@Comctrls@TToolButton@SetBounds$qqriiii", + "@Comctrls@TToolButton@SetButtonState$qqruc", + "@Comctrls@TToolButton@SetDown$qqro", + "@Comctrls@TToolButton@SetDropdownMenu$qqrp16Menus@TPopupMenu", + "@Comctrls@TToolButton@SetGrouped$qqro", + "@Comctrls@TToolButton@SetImageIndex$qqri", + "@Comctrls@TToolButton@SetIndeterminate$qqro", + "@Comctrls@TToolButton@SetMarked$qqro", + "@Comctrls@TToolButton@SetMenuItem$qqrp15Menus@TMenuItem", + "@Comctrls@TToolButton@SetStyle$qqr25Comctrls@TToolButtonStyle", + "@Comctrls@TToolButton@SetToolBar$qqrp17Comctrls@TToolBar", + "@Comctrls@TToolButton@SetWrap$qqro", + "@Comctrls@TToolButton@UpdateControl$qqrv", + "@Comctrls@TToolButton@ValidateContainer$qqrp18Classes@TComponent", + "@Comctrls@TToolButtonActionLink@", + "@Comctrls@TToolButtonActionLink@AssignClient$qqrp14System@TObject", + "@Comctrls@TToolButtonActionLink@IsCheckedLinked$qqrv", + "@Comctrls@TToolButtonActionLink@IsImageIndexLinked$qqrv", + "@Comctrls@TToolButtonActionLink@SetChecked$qqro", + "@Comctrls@TToolButtonActionLink@SetImageIndex$qqri", + "@Comctrls@TTrackBar@", + "@Comctrls@TTrackBar@$bctr$qqrp18Classes@TComponent", + "@Comctrls@TTrackBar@CNHScroll$qqrr18Messages@TWMScroll", + "@Comctrls@TTrackBar@CNVScroll$qqrr18Messages@TWMScroll", + "@Comctrls@TTrackBar@Changed$qqrv", + "@Comctrls@TTrackBar@CreateParams$qqrr22Controls@TCreateParams", + "@Comctrls@TTrackBar@CreateWnd$qqrv", + "@Comctrls@TTrackBar@DestroyWnd$qqrv", + "@Comctrls@TTrackBar@GetThumbLength$qqrv", + "@Comctrls@TTrackBar@SetFrequency$qqri", + "@Comctrls@TTrackBar@SetLineSize$qqri", + "@Comctrls@TTrackBar@SetMax$qqri", + "@Comctrls@TTrackBar@SetMin$qqri", + "@Comctrls@TTrackBar@SetOrientation$qqr29Comctrls@TTrackBarOrientation", + "@Comctrls@TTrackBar@SetPageSize$qqri", + "@Comctrls@TTrackBar@SetParams$qqriii", + "@Comctrls@TTrackBar@SetPosition$qqri", + "@Comctrls@TTrackBar@SetSelEnd$qqri", + "@Comctrls@TTrackBar@SetSelStart$qqri", + "@Comctrls@TTrackBar@SetSliderVisible$qqro", + "@Comctrls@TTrackBar@SetThumbLength$qqri", + "@Comctrls@TTrackBar@SetTick$qqri", + "@Comctrls@TTrackBar@SetTickMarks$qqr18Comctrls@TTickMark", + "@Comctrls@TTrackBar@SetTickStyle$qqr19Comctrls@TTickStyle", + "@Comctrls@TTrackBar@UpdateSelection$qqrv", + "@Comctrls@TTreeNode@", + "@Comctrls@TTreeNode@$bctr$qqrp19Comctrls@TTreeNodes", + "@Comctrls@TTreeNode@$bdtr$qqrv", + "@Comctrls@TTreeNode@AlphaSort$qqro", + "@Comctrls@TTreeNode@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TTreeNode@Collapse$qqro", + "@Comctrls@TTreeNode@CompareCount$qqri", + "@Comctrls@TTreeNode@CustomSort$qqrpqqsiii$iio", + "@Comctrls@TTreeNode@Delete$qqrv", + "@Comctrls@TTreeNode@DeleteChildren$qqrv", + "@Comctrls@TTreeNode@DisplayRect$qqro", + "@Comctrls@TTreeNode@DoCanExpand$qqro", + "@Comctrls@TTreeNode@DoExpand$qqro", + "@Comctrls@TTreeNode@EditText$qqrv", + "@Comctrls@TTreeNode@EndEdit$qqro", + "@Comctrls@TTreeNode@Expand$qqro", + "@Comctrls@TTreeNode@ExpandItem$qqroo", + "@Comctrls@TTreeNode@GetAbsoluteIndex$qqrv", + "@Comctrls@TTreeNode@GetChildren$qqrv", + "@Comctrls@TTreeNode@GetCount$qqrv", + "@Comctrls@TTreeNode@GetCut$qqrv", + "@Comctrls@TTreeNode@GetDropTarget$qqrv", + "@Comctrls@TTreeNode@GetExpanded$qqrv", + "@Comctrls@TTreeNode@GetFocused$qqrv", + "@Comctrls@TTreeNode@GetHandle$qqrv", + "@Comctrls@TTreeNode@GetIndex$qqrv", + "@Comctrls@TTreeNode@GetItem$qqri", + "@Comctrls@TTreeNode@GetLastChild$qqrv", + "@Comctrls@TTreeNode@GetLevel$qqrv", + "@Comctrls@TTreeNode@GetNext$qqrv", + "@Comctrls@TTreeNode@GetNextChild$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@GetNextVisible$qqrv", + "@Comctrls@TTreeNode@GetParent$qqrv", + "@Comctrls@TTreeNode@GetPrev$qqrv", + "@Comctrls@TTreeNode@GetPrevChild$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@GetPrevVisible$qqrv", + "@Comctrls@TTreeNode@GetSelected$qqrv", + "@Comctrls@TTreeNode@GetState$qqr19Comctrls@TNodeState", + "@Comctrls@TTreeNode@GetTreeView$qqrv", + "@Comctrls@TTreeNode@HasAsParent$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@IndexOf$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@InternalMove$qqrp18Comctrls@TTreeNodet1p9_TREEITEM17Comctrls@TAddMode", + "@Comctrls@TTreeNode@IsEqual$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@IsFirstNode$qqrv", + "@Comctrls@TTreeNode@IsNodeVisible$qqrv", + "@Comctrls@TTreeNode@MakeVisible$qqrv", + "@Comctrls@TTreeNode@MoveTo$qqrp18Comctrls@TTreeNode24Comctrls@TNodeAttachMode", + "@Comctrls@TTreeNode@ReadData$qqrp15Classes@TStreamp18Comctrls@TNodeInfo", + "@Comctrls@TTreeNode@SetChildren$qqro", + "@Comctrls@TTreeNode@SetCut$qqro", + "@Comctrls@TTreeNode@SetData$qqrpv", + "@Comctrls@TTreeNode@SetDropTarget$qqro", + "@Comctrls@TTreeNode@SetExpanded$qqro", + "@Comctrls@TTreeNode@SetFocused$qqro", + "@Comctrls@TTreeNode@SetImageIndex$qqri", + "@Comctrls@TTreeNode@SetItem$qqrip18Comctrls@TTreeNode", + "@Comctrls@TTreeNode@SetOverlayIndex$qqri", + "@Comctrls@TTreeNode@SetSelected$qqro", + "@Comctrls@TTreeNode@SetSelectedBit$qqro", + "@Comctrls@TTreeNode@SetSelectedIndex$qqri", + "@Comctrls@TTreeNode@SetState$qqr19Comctrls@TNodeStateo", + "@Comctrls@TTreeNode@SetStateIndex$qqri", + "@Comctrls@TTreeNode@SetText$qqrx17System@AnsiString", + "@Comctrls@TTreeNode@WriteData$qqrp15Classes@TStreamp18Comctrls@TNodeInfo", + "@Comctrls@TTreeNode@getFirstChild$qqrv", + "@Comctrls@TTreeNode@getNextSibling$qqrv", + "@Comctrls@TTreeNode@getPrevSibling$qqrv", + "@Comctrls@TTreeNodes@", + "@Comctrls@TTreeNodes@$bctr$qqrp24Comctrls@TCustomTreeView", + "@Comctrls@TTreeNodes@$bdtr$qqrv", + "@Comctrls@TTreeNodes@Add$qqrp18Comctrls@TTreeNodex17System@AnsiString", + "@Comctrls@TTreeNodes@AddChild$qqrp18Comctrls@TTreeNodex17System@AnsiString", + "@Comctrls@TTreeNodes@AddChildFirst$qqrp18Comctrls@TTreeNodex17System@AnsiString", + "@Comctrls@TTreeNodes@AddChildObject$qqrp18Comctrls@TTreeNodex17System@AnsiStringpv", + "@Comctrls@TTreeNodes@AddChildObjectFirst$qqrp18Comctrls@TTreeNodex17System@AnsiStringpv", + "@Comctrls@TTreeNodes@AddFirst$qqrp18Comctrls@TTreeNodex17System@AnsiString", + "@Comctrls@TTreeNodes@AddItem$qqrp9_TREEITEMt1rx10tagTVITEMA17Comctrls@TAddMode", + "@Comctrls@TTreeNodes@AddNode$qqrp18Comctrls@TTreeNodet1x17System@AnsiStringpv24Comctrls@TNodeAttachMode", + "@Comctrls@TTreeNodes@AddObject$qqrp18Comctrls@TTreeNodex17System@AnsiStringpv", + "@Comctrls@TTreeNodes@AddObjectFirst$qqrp18Comctrls@TTreeNodex17System@AnsiStringpv", + "@Comctrls@TTreeNodes@AddedNode$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNodes@AlphaSort$qqro", + "@Comctrls@TTreeNodes@Assign$qqrp19Classes@TPersistent", + "@Comctrls@TTreeNodes@BeginUpdate$qqrv", + "@Comctrls@TTreeNodes@Clear$qqrv", + "@Comctrls@TTreeNodes@ClearCache$qqrv", + "@Comctrls@TTreeNodes@CreateItem$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNodes@CustomSort$qqrpqqsiii$iio", + "@Comctrls@TTreeNodes@DefineProperties$qqrp14Classes@TFiler", + "@Comctrls@TTreeNodes@Delete$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNodes@EndUpdate$qqrv", + "@Comctrls@TTreeNodes@GetCount$qqrv", + "@Comctrls@TTreeNodes@GetFirstNode$qqrv", + "@Comctrls@TTreeNodes@GetHandle$qqrv", + "@Comctrls@TTreeNodes@GetNode$qqrp9_TREEITEM", + "@Comctrls@TTreeNodes@GetNodeFromIndex$qqri", + "@Comctrls@TTreeNodes@Insert$qqrp18Comctrls@TTreeNodex17System@AnsiString", + "@Comctrls@TTreeNodes@InsertNode$qqrp18Comctrls@TTreeNodet1x17System@AnsiStringpv", + "@Comctrls@TTreeNodes@InsertObject$qqrp18Comctrls@TTreeNodex17System@AnsiStringpv", + "@Comctrls@TTreeNodes@ReadData$qqrp15Classes@TStream", + "@Comctrls@TTreeNodes@ReadExpandedState$qqrp15Classes@TStream", + "@Comctrls@TTreeNodes@Repaint$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNodes@SetItem$qqrip18Comctrls@TTreeNode", + "@Comctrls@TTreeNodes@SetUpdateState$qqro", + "@Comctrls@TTreeNodes@WriteData$qqrp15Classes@TStream", + "@Comctrls@TTreeNodes@WriteExpandedState$qqrp15Classes@TStream", + "@Comctrls@TTreeView@", + "@Comctrls@TUpDown@", + "@Comctrls@TWorkArea@", + "@Comctrls@TWorkArea@$bctr$qqrp19Classes@TCollection", + "@Comctrls@TWorkArea@GetDisplayName$qqrv", + "@Comctrls@TWorkArea@SetColor$qqrx15Graphics@TColor", + "@Comctrls@TWorkArea@SetDisplayName$qqrx17System@AnsiString", + "@Comctrls@TWorkArea@SetRect$qqrrx11Types@TRect", + "@Comctrls@TWorkAreas@", + "@Comctrls@TWorkAreas@Add$qqrv", + "@Comctrls@TWorkAreas@Changed$qqrv", + "@Comctrls@TWorkAreas@Delete$qqri", + "@Comctrls@TWorkAreas@GetItem$qqri", + "@Comctrls@TWorkAreas@Insert$qqri", + "@Comctrls@TWorkAreas@SetItem$qqripx18Comctrls@TWorkArea", + "@Comctrls@TWorkAreas@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@initialization$qqrv", + "@Comstrs@Finalization$qqrv", + "@Comstrs@_sCalRangeNeedsMultiSelect", + "@Comstrs@_sDateTimeMax", + "@Comstrs@_sDateTimeMin", + "@Comstrs@_sFailSetCalDateTime", + "@Comstrs@_sFailSetCalMaxSelRange", + "@Comstrs@_sFailSetCalMinMaxRange", + "@Comstrs@_sFailsetCalSelRange", + "@Comstrs@_sHKAssigned", + "@Comstrs@_sHKError", + "@Comstrs@_sHKInvalid", + "@Comstrs@_sHKInvalidWindow", + "@Comstrs@_sInsertError", + "@Comstrs@_sInvalidComCtl32", + "@Comstrs@_sInvalidIndex", + "@Comstrs@_sInvalidLevel", + "@Comstrs@_sInvalidLevelEx", + "@Comstrs@_sInvalidOwner", + "@Comstrs@_sNeedAllowNone", + "@Comstrs@_sPageIndexError", + "@Comstrs@_sRichEditInsertError", + "@Comstrs@_sRichEditLoadFail", + "@Comstrs@_sRichEditSaveFail", + "@Comstrs@_sTabFailClear", + "@Comstrs@_sTabFailDelete", + "@Comstrs@_sTabFailGetObject", + "@Comstrs@_sTabFailRetrieve", + "@Comstrs@_sTabFailSet", + "@Comstrs@_sTabFailSetObject", + "@Comstrs@_sTabMustBeMultiLine", + "@Comstrs@_sTooManyPanels", + "@Comstrs@_sUDAssociated", + "@Comstrs@_sUnableToCreateColumn", + "@Comstrs@_sUnableToCreateItem", + "@Comstrs@initialization$qqrv", + "@Consts@Finalization$qqrv", + "@Consts@_SAbortButton", + "@Consts@_SAddRemoveButtons", + "@Consts@_SAllActions", + "@Consts@_SAllButton", + "@Consts@_SAllCommands", + "@Consts@_SAssignSubItemError", + "@Consts@_SBG", + "@Consts@_SBitmapEmpty", + "@Consts@_SBitsIndexError", + "@Consts@_SBoldFont", + "@Consts@_SBoldItalicFont", + "@Consts@_SBrowserExecError", + "@Consts@_SCancelButton", + "@Consts@_SCannotDragForm", + "@Consts@_SCannotFocus", + "@Consts@_SCannotHideActionBand", + "@Consts@_SCannotOpenAVI", + "@Consts@_SCannotOpenClipboard", + "@Consts@_SCannotShowModal", + "@Consts@_SCantWriteResourceStreamError", + "@Consts@_SCardDLLNotLoaded", + "@Consts@_SChangeIconSize", + "@Consts@_SCirularReferencesNotAllowed", + "@Consts@_SClassMismatch", + "@Consts@_SClientNotSet", + "@Consts@_SCloseButton", + "@Consts@_SColorBoxCustomCaption", + "@Consts@_SColorPrefix", + "@Consts@_SColorTags", + "@Consts@_SConfirmCreateDir", + "@Consts@_SContinue", + "@Consts@_SControlParentSetToSelf", + "@Consts@_SCustomColors", + "@Consts@_SCustomError", + "@Consts@_SCustomize", + "@Consts@_SDateEncodeError", + "@Consts@_SDdeConvErr", + "@Consts@_SDdeErr", + "@Consts@_SDdeMemErr", + "@Consts@_SDdeNoConnect", + "@Consts@_SDefault", + "@Consts@_SDefaultFilter", + "@Consts@_SDeleteItemWithSubItems", + "@Consts@_SDeviceOnPort", + "@Consts@_SDimsDoNotMatch", + "@Consts@_SDirNameCap", + "@Consts@_SDirsCap", + "@Consts@_SDockTreeRemoveError", + "@Consts@_SDockZoneHasNoCtl", + "@Consts@_SDockZoneNotFound", + "@Consts@_SDockedCtlNeedsName", + "@Consts@_SDrivesCap", + "@Consts@_SDuplicateCardId", + "@Consts@_SDuplicateItem", + "@Consts@_SDuplicateMenus", + "@Consts@_SDuplicateReference", + "@Consts@_SErrorActionManagerNotAssigned", + "@Consts@_SErrorDownloadingURL", + "@Consts@_SErrorLoadingFile", + "@Consts@_SErrorSettingCount", + "@Consts@_SErrorSettingPath", + "@Consts@_SExecute", + "@Consts@_SExpand", + "@Consts@_SFB", + "@Consts@_SFG", + "@Consts@_SFileRunDialogTitle", + "@Consts@_SFilesCap", + "@Consts@_SFixedColTooBig", + "@Consts@_SFixedRowTooBig", + "@Consts@_SGridTooLarge", + "@Consts@_SGroupIndexTooLow", + "@Consts@_SHelpButton", + "@Consts@_SIconToClipboard", + "@Consts@_SIgnoreButton", + "@Consts@_SImageCanvasNeedsBitmap", + "@Consts@_SImageIndexError", + "@Consts@_SImageReadFail", + "@Consts@_SImageWriteFail", + "@Consts@_SIndexOutOfRange", + "@Consts@_SIniFileWriteError", + "@Consts@_SInsertLineError", + "@Consts@_SInterrogate", + "@Consts@_SInvalidActionCreation", + "@Consts@_SInvalidActionEnumeration", + "@Consts@_SInvalidActionRegistration", + "@Consts@_SInvalidActionUnregistration", + "@Consts@_SInvalidBitmap", + "@Consts@_SInvalidClipFmt", + "@Consts@_SInvalidCurrentItem", + "@Consts@_SInvalidEnumValue", + "@Consts@_SInvalidIcon", + "@Consts@_SInvalidImage", + "@Consts@_SInvalidImageList", + "@Consts@_SInvalidImageSize", + "@Consts@_SInvalidMemoSize", + "@Consts@_SInvalidMetafile", + "@Consts@_SInvalidNumber", + "@Consts@_SInvalidPixelFormat", + "@Consts@_SInvalidPrinter", + "@Consts@_SInvalidPrinterOp", + "@Consts@_SInvalidRegType", + "@Consts@_SInvalidStringGridOp", + "@Consts@_SInvalidTabIndex", + "@Consts@_SInvalidTabPosition", + "@Consts@_SInvalidTabStyle", + "@Consts@_SItalicFont", + "@Consts@_SKeyCaption", + "@Consts@_SKeyConflict", + "@Consts@_SKeyNotFound", + "@Consts@_SLBPutError", + "@Consts@_SListBoxMustBeVirtual", + "@Consts@_SMCIAVIVideo", + "@Consts@_SMCICDAudio", + "@Consts@_SMCIDAT", + "@Consts@_SMCIDigitalVideo", + "@Consts@_SMCIMMMovie", + "@Consts@_SMCINil", + "@Consts@_SMCIOther", + "@Consts@_SMCIOverlay", + "@Consts@_SMCIScanner", + "@Consts@_SMCISequencer", + "@Consts@_SMCIUnknownError", + "@Consts@_SMCIVCR", + "@Consts@_SMCIVideodisc", + "@Consts@_SMCIWaveAudio", + "@Consts@_SMDIChildNotVisible", + "@Consts@_SMPOpenFilter", + "@Consts@_SMaskEditErr", + "@Consts@_SMaskErr", + "@Consts@_SMenuIndexError", + "@Consts@_SMenuNotFound", + "@Consts@_SMenuReinserted", + "@Consts@_SMoreButtons", + "@Consts@_SMsgDlgAbort", + "@Consts@_SMsgDlgAll", + "@Consts@_SMsgDlgCancel", + "@Consts@_SMsgDlgConfirm", + "@Consts@_SMsgDlgError", + "@Consts@_SMsgDlgHelp", + "@Consts@_SMsgDlgHelpHelp", + "@Consts@_SMsgDlgHelpNone", + "@Consts@_SMsgDlgIgnore", + "@Consts@_SMsgDlgInformation", + "@Consts@_SMsgDlgNo", + "@Consts@_SMsgDlgNoToAll", + "@Consts@_SMsgDlgOK", + "@Consts@_SMsgDlgRetry", + "@Consts@_SMsgDlgWarning", + "@Consts@_SMsgDlgYes", + "@Consts@_SMsgDlgYesToAll", + "@Consts@_SMultiSelectRequired", + "@Consts@_SNetworkCap", + "@Consts@_SNoButton", + "@Consts@_SNoCanvasHandle", + "@Consts@_SNoCategory", + "@Consts@_SNoColumnMoving", + "@Consts@_SNoDefaultPrinter", + "@Consts@_SNoEqualsInKey", + "@Consts@_SNoMDIForm", + "@Consts@_SNoName", + "@Consts@_SNoTimers", + "@Consts@_SNoVolumeLabel", + "@Consts@_SNotOpenErr", + "@Consts@_SNotPrinting", + "@Consts@_SOKButton", + "@Consts@_SOldTShape", + "@Consts@_SOleGraphic", + "@Consts@_SOpenFileTitle", + "@Consts@_SOutOfRange", + "@Consts@_SOutOfResources", + "@Consts@_SOutlineBadLevel", + "@Consts@_SOutlineError", + "@Consts@_SOutlineExpandError", + "@Consts@_SOutlineFileLoad", + "@Consts@_SOutlineIndexError", + "@Consts@_SOutlineLongLine", + "@Consts@_SOutlineMaxLevels", + "@Consts@_SOutlineSelection", + "@Consts@_SParentGivenNotAParent", + "@Consts@_SParentRequired", + "@Consts@_SPause", + "@Consts@_SPictureDesc", + "@Consts@_SPictureLabel", + "@Consts@_SPreviewLabel", + "@Consts@_SPrinterIndexError", + "@Consts@_SPrinting", + "@Consts@_SPropertiesVerb", + "@Consts@_SPropertyOutOfRange", + "@Consts@_SPutObjectError", + "@Consts@_SRegularFont", + "@Consts@_SReplaceImage", + "@Consts@_SResetActionToolBar", + "@Consts@_SResetUsageData", + "@Consts@_SRestoreDefaultSchedule", + "@Consts@_SRetryButton", + "@Consts@_SScanLine", + "@Consts@_SScrollBarRange", + "@Consts@_SSelectDirCap", + "@Consts@_SSendError", + "@Consts@_SSeparator", + "@Consts@_SServiceFailed", + "@Consts@_SServiceInstallFailed", + "@Consts@_SServiceInstallOK", + "@Consts@_SServiceUninstallFailed", + "@Consts@_SServiceUninstallOK", + "@Consts@_SShutdown", + "@Consts@_SStart", + "@Consts@_SStop", + "@Consts@_STextNotFound", + "@Consts@_STooManyDeleted", + "@Consts@_STooManyImages", + "@Consts@_STwoMDIForms", + "@Consts@_SUnableToSaveSettings", + "@Consts@_SUnknownClipboardFormat", + "@Consts@_SUnknownConversion", + "@Consts@_SUnknownExtension", + "@Consts@_SUntitled", + "@Consts@_SUrlMonDllMissing", + "@Consts@_SVBitmaps", + "@Consts@_SVEnhMetafiles", + "@Consts@_SVIcons", + "@Consts@_SVMetafiles", + "@Consts@_SValueCaption", + "@Consts@_SVisibleChanged", + "@Consts@_SWindowClass", + "@Consts@_SWindowCreate", + "@Consts@_SWindowDCError", + "@Consts@_SYesButton", + "@Consts@_SmkcAlt", + "@Consts@_SmkcBkSp", + "@Consts@_SmkcCtrl", + "@Consts@_SmkcDel", + "@Consts@_SmkcDown", + "@Consts@_SmkcEnd", + "@Consts@_SmkcEnter", + "@Consts@_SmkcEsc", + "@Consts@_SmkcHome", + "@Consts@_SmkcIns", + "@Consts@_SmkcLeft", + "@Consts@_SmkcPgDn", + "@Consts@_SmkcPgUp", + "@Consts@_SmkcRight", + "@Consts@_SmkcShift", + "@Consts@_SmkcSpace", + "@Consts@_SmkcTab", + "@Consts@_SmkcUp", + "@Consts@_sAllFilter", + "@Consts@_srNone", + "@Consts@_srUnknown", + "@Consts@initialization$qqrv", + "@Controls@AnchorAlign", + "@Controls@AnimateWindowProc", + "@Controls@CancelDrag$qqrv", + "@Controls@ChangeBiDiModeAlignment$qqrr18Classes@TAlignment", + "@Controls@CreationControl", + "@Controls@CursorToIdent$qqrir17System@AnsiString", + "@Controls@CursorToString$qqr16Controls@TCursor", + "@Controls@DefaultDockTreeClass", + "@Controls@DragDone$qqro", + "@Controls@Finalization$qqrv", + "@Controls@FindControl$qqrui", + "@Controls@FindDragTarget$qqrrx12Types@TPointo", + "@Controls@FindVCLWindow$qqrrx12Types@TPoint", + "@Controls@GetCaptureControl$qqrv", + "@Controls@GetCursorValues$qqrynpqqrx17System@AnsiString$v", + "@Controls@GetLongHint$qqrx17System@AnsiString", + "@Controls@GetShortHint$qqrx17System@AnsiString", + "@Controls@IdentToCursor$qqrx17System@AnsiStringri", + "@Controls@Imm32GetCompositionString$qqriuipvui", + "@Controls@Imm32GetContext$qqrui", + "@Controls@Imm32GetConversionStatus$qqriruit2", + "@Controls@Imm32IsIME$qqrui", + "@Controls@Imm32NotifyIME$qqriuiuiui", + "@Controls@Imm32ReleaseContext$qqruii", + "@Controls@Imm32SetCompositionFont$qqrip11tagLOGFONTA", + "@Controls@Imm32SetCompositionWindow$qqrip18tagCOMPOSITIONFORM", + "@Controls@Imm32SetConversionStatus$qqriuiui", + "@Controls@Imm32SetOpenStatus$qqrio", + "@Controls@InitWndProc$qqsuiiii", + "@Controls@IsAbortResult$qqrxi", + "@Controls@IsAnAllResult$qqrxi", + "@Controls@IsDragObject$qqrp14System@TObject", + "@Controls@IsNegativeResult$qqrxi", + "@Controls@IsPositiveResult$qqrxi", + "@Controls@Mouse", + "@Controls@MoveWindowOrg$qqruiii", + "@Controls@NewStyleControls", + "@Controls@SendAppMessage$qqruiii", + "@Controls@SetCaptureControl$qqrp17Controls@TControl", + "@Controls@SetImeMode$qqrui17Controls@TImeMode", + "@Controls@SetImeName$qqr17System@AnsiString", + "@Controls@StringToCursor$qqrx17System@AnsiString", + "@Controls@StripAllFromResult$qqrxi", + "@Controls@TBaseDragControlObject@", + "@Controls@TBaseDragControlObject@$bctr$qqrp17Controls@TControl", + "@Controls@TBaseDragControlObject@Assign$qqrp20Controls@TDragObject", + "@Controls@TBaseDragControlObject@EndDrag$qqrp14System@TObjectii", + "@Controls@TBaseDragControlObject@Finished$qqrp14System@TObjectiio", + "@Controls@TControl@", + "@Controls@TControl@$bctr$qqrp18Classes@TComponent", + "@Controls@TControl@$bdtr$qqrv", + "@Controls@TControl@ActionChange$qqrp14System@TObjecto", + "@Controls@TControl@AdjustSize$qqrv", + "@Controls@TControl@AssignTo$qqrp19Classes@TPersistent", + "@Controls@TControl@BeginAutoDrag$qqrv", + "@Controls@TControl@BeginDrag$qqroi", + "@Controls@TControl@BringToFront$qqrv", + "@Controls@TControl@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMColorChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Controls@TControl@CMEnabledChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMFloat$qqrr17Controls@TCMFloat", + "@Controls@TControl@CMFontChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMHintShow$qqrr17Messages@TMessage", + "@Controls@TControl@CMHitTest$qqrr21Messages@TWMNCHitTest", + "@Controls@TControl@CMMouseEnter$qqrr17Messages@TMessage", + "@Controls@TControl@CMMouseLeave$qqrr17Messages@TMessage", + "@Controls@TControl@CMMouseWheel$qqrr22Controls@TCMMouseWheel", + "@Controls@TControl@CMParentBiDiModeChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMParentColorChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMParentFontChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMParentShowHintChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMSysFontChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CMVisibleChanged$qqrr17Messages@TMessage", + "@Controls@TControl@CalcCursorPos$qqrv", + "@Controls@TControl@CalcDockSizes$qqrv", + "@Controls@TControl@CanAutoSize$qqrrit1", + "@Controls@TControl@CanResize$qqrrit1", + "@Controls@TControl@ChangeScale$qqrii", + "@Controls@TControl@Changed$qqrv", + "@Controls@TControl@CheckNewSize$qqrrit1", + "@Controls@TControl@Click$qqrv", + "@Controls@TControl@ClientToParent$qqrrx12Types@TPointp20Controls@TWinControl", + "@Controls@TControl@ClientToScreen$qqrrx12Types@TPoint", + "@Controls@TControl@ConstrainedResize$qqrrit1t1t1", + "@Controls@TControl@CreateFloatingDockSite$qqrrx11Types@TRect", + "@Controls@TControl@DblClick$qqrv", + "@Controls@TControl@DefaultDockImage$qqrp24Controls@TDragDockObjecto", + "@Controls@TControl@DefaultHandler$qqrpv", + "@Controls@TControl@DefineProperties$qqrp14Classes@TFiler", + "@Controls@TControl@DesignWndProc$qqrr17Messages@TMessage", + "@Controls@TControl@DoActionChange$qqrp14System@TObject", + "@Controls@TControl@DoCanAutoSize$qqrrit1", + "@Controls@TControl@DoCanResize$qqrrit1", + "@Controls@TControl@DoConstrainedResize$qqrrit1", + "@Controls@TControl@DoConstraintsChange$qqrp14System@TObject", + "@Controls@TControl@DoContextPopup$qqrrx12Types@TPointro", + "@Controls@TControl@DoDock$qqrp20Controls@TWinControlr11Types@TRect", + "@Controls@TControl@DoDragMsg$qqrr16Controls@TCMDrag", + "@Controls@TControl@DoEndDock$qqrp14System@TObjectii", + "@Controls@TControl@DoEndDrag$qqrp14System@TObjectii", + "@Controls@TControl@DoMouseDown$qqrr17Messages@TWMMouse21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Controls@TControl@DoMouseUp$qqrr17Messages@TWMMouse21Controls@TMouseButton", + "@Controls@TControl@DoMouseWheel$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%irx12Types@TPoint", + "@Controls@TControl@DoMouseWheelDown$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%rx12Types@TPoint", + "@Controls@TControl@DoMouseWheelUp$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%rx12Types@TPoint", + "@Controls@TControl@DoStartDock$qqrrp20Controls@TDragObject", + "@Controls@TControl@DoStartDrag$qqrrp20Controls@TDragObject", + "@Controls@TControl@Dock$qqrp20Controls@TWinControlrx11Types@TRect", + "@Controls@TControl@DockTrackNoTarget$qqrp24Controls@TDragDockObjectii", + "@Controls@TControl@DragCanceled$qqrv", + "@Controls@TControl@DragDrop$qqrp14System@TObjectii", + "@Controls@TControl@DragOver$qqrp14System@TObjectii19Controls@TDragStatero", + "@Controls@TControl@Dragging$qqrv", + "@Controls@TControl@DrawDragDockImage$qqrp24Controls@TDragDockObject", + "@Controls@TControl@DrawTextBiDiModeFlags$qqri", + "@Controls@TControl@DrawTextBiDiModeFlagsReadingOnly$qqrv", + "@Controls@TControl@EndDrag$qqro", + "@Controls@TControl@EraseDragDockImage$qqrp24Controls@TDragDockObject", + "@Controls@TControl@FontChanged$qqrp14System@TObject", + "@Controls@TControl@GetAction$qqrv", + "@Controls@TControl@GetActionLinkClass$qqrv", + "@Controls@TControl@GetBoundsRect$qqrv", + "@Controls@TControl@GetClientHeight$qqrv", + "@Controls@TControl@GetClientOrigin$qqrv", + "@Controls@TControl@GetClientRect$qqrv", + "@Controls@TControl@GetClientWidth$qqrv", + "@Controls@TControl@GetControlsAlignment$qqrv", + "@Controls@TControl@GetDeviceContext$qqrrui", + "@Controls@TControl@GetDockEdge$qqrrx12Types@TPoint", + "@Controls@TControl@GetDragImages$qqrv", + "@Controls@TControl@GetEnabled$qqrv", + "@Controls@TControl@GetFloating$qqrv", + "@Controls@TControl@GetFloatingDockSiteClass$qqrv", + "@Controls@TControl@GetLRDockWidth$qqrv", + "@Controls@TControl@GetMouseCapture$qqrv", + "@Controls@TControl@GetPalette$qqrv", + "@Controls@TControl@GetParentComponent$qqrv", + "@Controls@TControl@GetPopupMenu$qqrv", + "@Controls@TControl@GetTBDockHeight$qqrv", + "@Controls@TControl@GetText$qqrv", + "@Controls@TControl@GetTextBuf$qqrpci", + "@Controls@TControl@GetTextLen$qqrv", + "@Controls@TControl@GetUndockHeight$qqrv", + "@Controls@TControl@GetUndockWidth$qqrv", + "@Controls@TControl@HasParent$qqrv", + "@Controls@TControl@Hide$qqrv", + "@Controls@TControl@InitiateAction$qqrv", + "@Controls@TControl@Invalidate$qqrv", + "@Controls@TControl@InvalidateControl$qqroo", + "@Controls@TControl@IsAnchorsStored$qqrv", + "@Controls@TControl@IsBiDiModeStored$qqrv", + "@Controls@TControl@IsCaptionStored$qqrv", + "@Controls@TControl@IsColorStored$qqrv", + "@Controls@TControl@IsEnabledStored$qqrv", + "@Controls@TControl@IsFontStored$qqrv", + "@Controls@TControl@IsHelpContextStored$qqrv", + "@Controls@TControl@IsHintStored$qqrv", + "@Controls@TControl@IsOnClickStored$qqrv", + "@Controls@TControl@IsRightToLeft$qqrv", + "@Controls@TControl@IsShowHintStored$qqrv", + "@Controls@TControl@IsVisibleStored$qqrv", + "@Controls@TControl@Loaded$qqrv", + "@Controls@TControl@ManualDock$qqrp20Controls@TWinControlp17Controls@TControl15Controls@TAlign", + "@Controls@TControl@ManualFloat$qqrrx11Types@TRect", + "@Controls@TControl@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Controls@TControl@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Controls@TControl@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Controls@TControl@MouseWheelHandler$qqrr17Messages@TMessage", + "@Controls@TControl@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Controls@TControl@PaletteChanged$qqro", + "@Controls@TControl@ParentToClient$qqrrx12Types@TPointp20Controls@TWinControl", + "@Controls@TControl@Perform$qqruiii", + "@Controls@TControl@PositionDockRect$qqrp24Controls@TDragDockObject", + "@Controls@TControl@ReadIsControl$qqrp15Classes@TReader", + "@Controls@TControl@ReadState$qqrp15Classes@TReader", + "@Controls@TControl@Refresh$qqrv", + "@Controls@TControl@Repaint$qqrv", + "@Controls@TControl@ReplaceDockedControl$qqrp17Controls@TControlp20Controls@TWinControlt115Controls@TAlign", + "@Controls@TControl@RequestAlign$qqrv", + "@Controls@TControl@Resize$qqrv", + "@Controls@TControl@ScreenToClient$qqrrx12Types@TPoint", + "@Controls@TControl@SendCancelMode$qqrp17Controls@TControl", + "@Controls@TControl@SendDockNotification$qqruiii", + "@Controls@TControl@SendToBack$qqrv", + "@Controls@TControl@SetAction$qqrp20Classes@TBasicAction", + "@Controls@TControl@SetAlign$qqr15Controls@TAlign", + "@Controls@TControl@SetAnchors$qqr48System@%Set$t20Controls@TAnchorKind$iuc$0$iuc$3%", + "@Controls@TControl@SetAutoSize$qqro", + "@Controls@TControl@SetBiDiMode$qqr17Classes@TBiDiMode", + "@Controls@TControl@SetBounds$qqriiii", + "@Controls@TControl@SetBoundsRect$qqrrx11Types@TRect", + "@Controls@TControl@SetClientHeight$qqri", + "@Controls@TControl@SetClientSize$qqrrx12Types@TPoint", + "@Controls@TControl@SetClientWidth$qqri", + "@Controls@TControl@SetColor$qqr15Graphics@TColor", + "@Controls@TControl@SetConstraints$qqrpx25Controls@TSizeConstraints", + "@Controls@TControl@SetCursor$qqr16Controls@TCursor", + "@Controls@TControl@SetDesktopFont$qqro", + "@Controls@TControl@SetDragMode$qqr18Controls@TDragMode", + "@Controls@TControl@SetEnabled$qqro", + "@Controls@TControl@SetFont$qqrp14Graphics@TFont", + "@Controls@TControl@SetHeight$qqri", + "@Controls@TControl@SetHelpContext$qqrxi", + "@Controls@TControl@SetHelpKeyword$qqrx17System@AnsiString", + "@Controls@TControl@SetHostDockSite$qqrp20Controls@TWinControl", + "@Controls@TControl@SetLeft$qqri", + "@Controls@TControl@SetMouseCapture$qqro", + "@Controls@TControl@SetName$qqrx17System@AnsiString", + "@Controls@TControl@SetParent$qqrp20Controls@TWinControl", + "@Controls@TControl@SetParentBiDiMode$qqro", + "@Controls@TControl@SetParentColor$qqro", + "@Controls@TControl@SetParentComponent$qqrp18Classes@TComponent", + "@Controls@TControl@SetParentFont$qqro", + "@Controls@TControl@SetParentShowHint$qqro", + "@Controls@TControl@SetPopupMenu$qqrp16Menus@TPopupMenu", + "@Controls@TControl@SetShowHint$qqro", + "@Controls@TControl@SetText$qqrx17System@AnsiString", + "@Controls@TControl@SetTextBuf$qqrpc", + "@Controls@TControl@SetTop$qqri", + "@Controls@TControl@SetVisible$qqro", + "@Controls@TControl@SetWidth$qqri", + "@Controls@TControl@SetZOrder$qqro", + "@Controls@TControl@SetZOrderPosition$qqri", + "@Controls@TControl@Show$qqrv", + "@Controls@TControl@Update$qqrv", + "@Controls@TControl@UpdateAnchorRules$qqrv", + "@Controls@TControl@UpdateBoundsRect$qqrrx11Types@TRect", + "@Controls@TControl@UseRightToLeftAlignment$qqrv", + "@Controls@TControl@UseRightToLeftReading$qqrv", + "@Controls@TControl@UseRightToLeftScrollBar$qqrv", + "@Controls@TControl@VisibleChanging$qqrv", + "@Controls@TControl@WMCancelMode$qqrr20Messages@TWMNoParams", + "@Controls@TControl@WMContextMenu$qqrr23Messages@TWMContextMenu", + "@Controls@TControl@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMMButtonDblClk$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMMButtonDown$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMMButtonUp$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMMouseMove$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMMouseWheel$qqrr22Messages@TWMMouseWheel", + "@Controls@TControl@WMNCLButtonDown$qqrr24Messages@TWMNCHitMessage", + "@Controls@TControl@WMRButtonDblClk$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMRButtonDown$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMRButtonUp$qqrr17Messages@TWMMouse", + "@Controls@TControl@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Controls@TControl@WndProc$qqrr17Messages@TMessage", + "@Controls@TControl@WriteIsControl$qqrp15Classes@TWriter", + "@Controls@TControlActionLink@", + "@Controls@TControlActionLink@AssignClient$qqrp14System@TObject", + "@Controls@TControlActionLink@DoShowHint$qqrr17System@AnsiString", + "@Controls@TControlActionLink@IsCaptionLinked$qqrv", + "@Controls@TControlActionLink@IsEnabledLinked$qqrv", + "@Controls@TControlActionLink@IsHelpLinked$qqrv", + "@Controls@TControlActionLink@IsHintLinked$qqrv", + "@Controls@TControlActionLink@IsOnExecuteLinked$qqrv", + "@Controls@TControlActionLink@IsVisibleLinked$qqrv", + "@Controls@TControlActionLink@SetCaption$qqrx17System@AnsiString", + "@Controls@TControlActionLink@SetEnabled$qqro", + "@Controls@TControlActionLink@SetHelpContext$qqri", + "@Controls@TControlActionLink@SetHelpKeyword$qqrx17System@AnsiString", + "@Controls@TControlActionLink@SetHelpType$qqr17Classes@THelpType", + "@Controls@TControlActionLink@SetHint$qqrx17System@AnsiString", + "@Controls@TControlActionLink@SetOnExecute$qqrynpqqrp14System@TObject$v", + "@Controls@TControlActionLink@SetVisible$qqro", + "@Controls@TControlCanvas@", + "@Controls@TControlCanvas@$bdtr$qqrv", + "@Controls@TControlCanvas@CreateHandle$qqrv", + "@Controls@TControlCanvas@FreeHandle$qqrv", + "@Controls@TControlCanvas@SetControl$qqrp17Controls@TControl", + "@Controls@TControlCanvas@UpdateTextFlags$qqrv", + "@Controls@TCustomControl@", + "@Controls@TCustomControl@$bctr$qqrp18Classes@TComponent", + "@Controls@TCustomControl@$bdtr$qqrv", + "@Controls@TCustomControl@Paint$qqrv", + "@Controls@TCustomControl@PaintWindow$qqrui", + "@Controls@TCustomControl@WMPaint$qqrr17Messages@TWMPaint", + "@Controls@TCustomListControl@", + "@Controls@TCustomListControl@MoveSelection$qqrp27Controls@TCustomListControl", + "@Controls@TCustomMultiSelectListControl@", + "@Controls@TDockTree@", + "@Controls@TDockTree@$bctr$qqrp20Controls@TWinControl", + "@Controls@TDockTree@$bdtr$qqrv", + "@Controls@TDockTree@AdjustDockRect$qqrp17Controls@TControlr11Types@TRect", + "@Controls@TDockTree@BeginUpdate$qqrv", + "@Controls@TDockTree@ControlVisibilityChanged$qqrp17Controls@TControlo", + "@Controls@TDockTree@DrawSizeSplitter$qqrv", + "@Controls@TDockTree@EndUpdate$qqrv", + "@Controls@TDockTree@FindControlZone$qqrp17Controls@TControl", + "@Controls@TDockTree@ForEachAt$qqrp18Controls@TDockZoneynpqqrp18Controls@TDockZone$v", + "@Controls@TDockTree@GetControlBounds$qqrp17Controls@TControlr11Types@TRect", + "@Controls@TDockTree@GetNextLimit$qqrp18Controls@TDockZone", + "@Controls@TDockTree@HitTest$qqrrx12Types@TPointri", + "@Controls@TDockTree@InsertControl$qqrp17Controls@TControl15Controls@TAlignt1", + "@Controls@TDockTree@InsertNewParent$qqrp18Controls@TDockZonet125Controls@TDockOrientationo", + "@Controls@TDockTree@InsertSibling$qqrp18Controls@TDockZonet1o", + "@Controls@TDockTree@InternalHitTest$qqrrx12Types@TPointri", + "@Controls@TDockTree@LoadFromStream$qqrp15Classes@TStream", + "@Controls@TDockTree@PaintDockFrame$qqrp16Graphics@TCanvasp17Controls@TControlrx11Types@TRect", + "@Controls@TDockTree@PaintSite$qqrui", + "@Controls@TDockTree@PositionDockRect$qqrp17Controls@TControlt115Controls@TAlignr11Types@TRect", + "@Controls@TDockTree@PruneZone$qqrp18Controls@TDockZone", + "@Controls@TDockTree@RemoveControl$qqrp17Controls@TControl", + "@Controls@TDockTree@RemoveZone$qqrp18Controls@TDockZone", + "@Controls@TDockTree@ResetBounds$qqro", + "@Controls@TDockTree@SaveToStream$qqrp15Classes@TStream", + "@Controls@TDockTree@ScaleZone$qqrp18Controls@TDockZone", + "@Controls@TDockTree@SetNewBounds$qqrp18Controls@TDockZone", + "@Controls@TDockTree@SetReplacingControl$qqrp17Controls@TControl", + "@Controls@TDockTree@ShiftZone$qqrp18Controls@TDockZone", + "@Controls@TDockTree@SplitterMouseDown$qqrp18Controls@TDockZonerx12Types@TPoint", + "@Controls@TDockTree@SplitterMouseUp$qqrv", + "@Controls@TDockTree@UpdateAll$qqrv", + "@Controls@TDockTree@UpdateZone$qqrp18Controls@TDockZone", + "@Controls@TDockTree@WindowProc$qqrr17Messages@TMessage", + "@Controls@TDockZone@", + "@Controls@TDockZone@$bctr$qqrp18Controls@TDockTree", + "@Controls@TDockZone@ExpandZoneLimit$qqri", + "@Controls@TDockZone@FirstVisibleChild$qqrv", + "@Controls@TDockZone@GetChildCount$qqrv", + "@Controls@TDockZone@GetControlName$qqrv", + "@Controls@TDockZone@GetHeightWidth$qqri", + "@Controls@TDockZone@GetLimitBegin$qqrv", + "@Controls@TDockZone@GetLimitSize$qqrv", + "@Controls@TDockZone@GetTopLeft$qqri", + "@Controls@TDockZone@GetVisible$qqrv", + "@Controls@TDockZone@GetVisibleChildCount$qqrv", + "@Controls@TDockZone@GetZoneLimit$qqrv", + "@Controls@TDockZone@NextVisible$qqrv", + "@Controls@TDockZone@PrevVisible$qqrv", + "@Controls@TDockZone@ResetChildren$qqrv", + "@Controls@TDockZone@ResetZoneLimits$qqrv", + "@Controls@TDockZone@SetControlName$qqrx17System@AnsiString", + "@Controls@TDockZone@SetZoneLimit$qqrxi", + "@Controls@TDockZone@Update$qqrv", + "@Controls@TDragControlObject@", + "@Controls@TDragControlObject@GetDragCursor$qqroii", + "@Controls@TDragControlObject@GetDragImages$qqrv", + "@Controls@TDragControlObject@HideDragImage$qqrv", + "@Controls@TDragControlObject@ShowDragImage$qqrv", + "@Controls@TDragControlObjectEx@", + "@Controls@TDragControlObjectEx@BeforeDestruction$qqrv", + "@Controls@TDragDockObject@", + "@Controls@TDragDockObject@$bctr$qqrp17Controls@TControl", + "@Controls@TDragDockObject@$bdtr$qqrv", + "@Controls@TDragDockObject@AdjustDockRect$qqrrx11Types@TRect", + "@Controls@TDragDockObject@Assign$qqrp20Controls@TDragObject", + "@Controls@TDragDockObject@DrawDragDockImage$qqrv", + "@Controls@TDragDockObject@EndDrag$qqrp14System@TObjectii", + "@Controls@TDragDockObject@EraseDragDockImage$qqrv", + "@Controls@TDragDockObject@GetDragCursor$qqroii", + "@Controls@TDragDockObject@GetFrameWidth$qqrv", + "@Controls@TDragDockObject@SetBrush$qqrp15Graphics@TBrush", + "@Controls@TDragDockObjectEx@", + "@Controls@TDragDockObjectEx@BeforeDestruction$qqrv", + "@Controls@TDragImageList@", + "@Controls@TDragImageList@BeginDrag$qqruiii", + "@Controls@TDragImageList@CombineDragCursor$qqrv", + "@Controls@TDragImageList@DragLock$qqruiii", + "@Controls@TDragImageList@DragMove$qqrii", + "@Controls@TDragImageList@DragUnlock$qqrv", + "@Controls@TDragImageList@EndDrag$qqrv", + "@Controls@TDragImageList@GetHotSpot$qqrv", + "@Controls@TDragImageList@HideDragImage$qqrv", + "@Controls@TDragImageList@Initialize$qqrv", + "@Controls@TDragImageList@SetDragCursor$qqr16Controls@TCursor", + "@Controls@TDragImageList@SetDragImage$qqriii", + "@Controls@TDragImageList@ShowDragImage$qqrv", + "@Controls@TDragObject@", + "@Controls@TDragObject@AfterConstruction$qqrv", + "@Controls@TDragObject@Assign$qqrp20Controls@TDragObject", + "@Controls@TDragObject@BeforeDestruction$qqrv", + "@Controls@TDragObject@Capture$qqrv", + "@Controls@TDragObject@Finished$qqrp14System@TObjectiio", + "@Controls@TDragObject@GetDragCursor$qqroii", + "@Controls@TDragObject@GetDragImages$qqrv", + "@Controls@TDragObject@GetName$qqrv", + "@Controls@TDragObject@HideDragImage$qqrv", + "@Controls@TDragObject@Instance$qqrv", + "@Controls@TDragObject@MainWndProc$qqrr17Messages@TMessage", + "@Controls@TDragObject@ReleaseCapture$qqrui", + "@Controls@TDragObject@ShowDragImage$qqrv", + "@Controls@TDragObject@WndProc$qqrr17Messages@TMessage", + "@Controls@TDragObjectEx@", + "@Controls@TDragObjectEx@BeforeDestruction$qqrv", + "@Controls@TGraphicControl@", + "@Controls@TGraphicControl@$bctr$qqrp18Classes@TComponent", + "@Controls@TGraphicControl@$bdtr$qqrv", + "@Controls@TGraphicControl@Paint$qqrv", + "@Controls@TGraphicControl@WMPaint$qqrr17Messages@TWMPaint", + "@Controls@THintWindow@", + "@Controls@THintWindow@$bctr$qqrp18Classes@TComponent", + "@Controls@THintWindow@ActivateHint$qqrrx11Types@TRectx17System@AnsiString", + "@Controls@THintWindow@ActivateHintData$qqrrx11Types@TRectx17System@AnsiStringpv", + "@Controls@THintWindow@CMTextChanged$qqrr17Messages@TMessage", + "@Controls@THintWindow@CalcHintRect$qqrix17System@AnsiStringpv", + "@Controls@THintWindow@CreateParams$qqrr22Controls@TCreateParams", + "@Controls@THintWindow@IsHintMsg$qqrr6tagMSG", + "@Controls@THintWindow@NCPaint$qqrui", + "@Controls@THintWindow@Paint$qqrv", + "@Controls@THintWindow@ReleaseHandle$qqrv", + "@Controls@THintWindow@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Controls@THintWindow@WMNCPaint$qqrr17Messages@TMessage", + "@Controls@THintWindow@WMPrint$qqrr17Messages@TMessage", + "@Controls@TImageList@", + "@Controls@TMouse@", + "@Controls@TMouse@$bctr$qqrv", + "@Controls@TMouse@$bdtr$qqrv", + "@Controls@TMouse@GetCapture$qqrv", + "@Controls@TMouse@GetCursorPos$qqrv", + "@Controls@TMouse@GetIsDragging$qqrv", + "@Controls@TMouse@GetMouseData$qqrv", + "@Controls@TMouse@GetNativeData$qqrv", + "@Controls@TMouse@GetRegisteredData$qqrv", + "@Controls@TMouse@SetCapture$qqrxui", + "@Controls@TMouse@SetCursorPos$qqrrx12Types@TPoint", + "@Controls@TMouse@SettingChanged$qqri", + "@Controls@TSizeConstraints@", + "@Controls@TSizeConstraints@$bctr$qqrp17Controls@TControl", + "@Controls@TSizeConstraints@AssignTo$qqrp19Classes@TPersistent", + "@Controls@TSizeConstraints@Change$qqrv", + "@Controls@TSizeConstraints@SetConstraints$qqrii", + "@Controls@TWinControl@", + "@Controls@TWinControl@$bctr$qqrp18Classes@TComponent", + "@Controls@TWinControl@$bctr$qqrui", + "@Controls@TWinControl@$bdtr$qqrv", + "@Controls@TWinControl@ActionChange$qqrp14System@TObjecto", + "@Controls@TWinControl@AddBiDiModeExStyle$qqrrui", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TWinControl@AdjustSize$qqrv", + "@Controls@TWinControl@AlignControl$qqrp17Controls@TControl", + "@Controls@TWinControl@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Controls@TWinControl@AssignTo$qqrp19Classes@TPersistent", + "@Controls@TWinControl@Broadcast$qqrpv", + "@Controls@TWinControl@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMBorderChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMChildKey$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMColorChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMControlListChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMCursorChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Controls@TWinControl@CMDialogChar$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CMDialogKey$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CMDockClient$qqrr22Controls@TCMDockClient", + "@Controls@TWinControl@CMDrag$qqrr16Controls@TCMDrag", + "@Controls@TWinControl@CMEnabledChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMEnter$qqrr20Messages@TWMNoParams", + "@Controls@TWinControl@CMExit$qqrr20Messages@TWMNoParams", + "@Controls@TWinControl@CMFloat$qqrr17Controls@TCMFloat", + "@Controls@TWinControl@CMFocusChanged$qqrr24Controls@TCMFocusChanged", + "@Controls@TWinControl@CMFontChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMFontChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMInvalidate$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMParentCtl3DChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMRecreateWnd$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMShowHintChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMShowingChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMSysColorChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMSysFontChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMTimeChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMUnDockClient$qqrr24Controls@TCMUnDockClient", + "@Controls@TWinControl@CMVisibleChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@CMWinIniChange$qqrr24Messages@TWMWinIniChange", + "@Controls@TWinControl@CNChar$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CNKeyDown$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CNKeyUp$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CNSysChar$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CNSysKeyDown$qqrr15Messages@TWMKey", + "@Controls@TWinControl@CalcConstraints$qqrrit1t1t1", + "@Controls@TWinControl@CanAutoSize$qqrrit1", + "@Controls@TWinControl@CanFocus$qqrv", + "@Controls@TWinControl@CanResize$qqrrit1", + "@Controls@TWinControl@ChangeScale$qqrii", + "@Controls@TWinControl@ConstrainedResize$qqrrit1t1t1", + "@Controls@TWinControl@ContainsControl$qqrp17Controls@TControl", + "@Controls@TWinControl@ControlAtPos$qqrrx12Types@TPointoo", + "@Controls@TWinControl@ControlsAligned$qqrv", + "@Controls@TWinControl@CreateDockManager$qqrv", + "@Controls@TWinControl@CreateHandle$qqrv", + "@Controls@TWinControl@CreateParams$qqrr22Controls@TCreateParams", + "@Controls@TWinControl@CreateParentedControl$qqrp17System@TMetaClassui", + "@Controls@TWinControl@CreateSubClass$qqrr22Controls@TCreateParamspc", + "@Controls@TWinControl@CreateWindowHandle$qqrrx22Controls@TCreateParams", + "@Controls@TWinControl@CreateWnd$qqrv", + "@Controls@TWinControl@CustomAlignInsertBefore$qqrp17Controls@TControlt1", + "@Controls@TWinControl@CustomAlignPosition$qqrp17Controls@TControlrit2t2t2r11Types@TRectrx19Controls@TAlignInfo", + "@Controls@TWinControl@DefaultHandler$qqrpv", + "@Controls@TWinControl@DefineProperties$qqrp14Classes@TFiler", + "@Controls@TWinControl@DestroyHandle$qqrv", + "@Controls@TWinControl@DestroyWindowHandle$qqrv", + "@Controls@TWinControl@DestroyWnd$qqrv", + "@Controls@TWinControl@DisableAlign$qqrv", + "@Controls@TWinControl@DoAddDockClient$qqrp17Controls@TControlrx11Types@TRect", + "@Controls@TWinControl@DoDockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Controls@TWinControl@DoEnter$qqrv", + "@Controls@TWinControl@DoExit$qqrv", + "@Controls@TWinControl@DoFlipChildren$qqrv", + "@Controls@TWinControl@DoKeyDown$qqrr15Messages@TWMKey", + "@Controls@TWinControl@DoKeyPress$qqrr15Messages@TWMKey", + "@Controls@TWinControl@DoKeyUp$qqrr15Messages@TWMKey", + "@Controls@TWinControl@DoRemoveDockClient$qqrp17Controls@TControl", + "@Controls@TWinControl@DoUnDock$qqrp20Controls@TWinControlp17Controls@TControl", + "@Controls@TWinControl@DockDrop$qqrp24Controls@TDragDockObjectii", + "@Controls@TWinControl@DockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Controls@TWinControl@EnableAlign$qqrv", + "@Controls@TWinControl@FindChildControl$qqrx17System@AnsiString", + "@Controls@TWinControl@FindNextControl$qqrp20Controls@TWinControlooo", + "@Controls@TWinControl@FixupTabList$qqrv", + "@Controls@TWinControl@FlipChildren$qqro", + "@Controls@TWinControl@Focused$qqrv", + "@Controls@TWinControl@GetActionLinkClass$qqrv", + "@Controls@TWinControl@GetAlignDisabled$qqrv", + "@Controls@TWinControl@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Controls@TWinControl@GetClientOrigin$qqrv", + "@Controls@TWinControl@GetClientRect$qqrv", + "@Controls@TWinControl@GetControl$qqri", + "@Controls@TWinControl@GetControlCount$qqrv", + "@Controls@TWinControl@GetControlExtents$qqrv", + "@Controls@TWinControl@GetDeviceContext$qqrrui", + "@Controls@TWinControl@GetDockClientCount$qqrv", + "@Controls@TWinControl@GetDockClients$qqri", + "@Controls@TWinControl@GetHandle$qqrv", + "@Controls@TWinControl@GetParentHandle$qqrv", + "@Controls@TWinControl@GetSiteInfo$qqrp17Controls@TControlr11Types@TRectrx12Types@TPointro", + "@Controls@TWinControl@GetTabOrder$qqrv", + "@Controls@TWinControl@GetTabOrderList$qqrp13Classes@TList", + "@Controls@TWinControl@GetTopParentHandle$qqrv", + "@Controls@TWinControl@GetVisibleDockClientCount$qqrv", + "@Controls@TWinControl@HandleAllocated$qqrv", + "@Controls@TWinControl@HandleNeeded$qqrv", + "@Controls@TWinControl@Insert$qqrp17Controls@TControl", + "@Controls@TWinControl@InsertControl$qqrp17Controls@TControl", + "@Controls@TWinControl@Invalidate$qqrv", + "@Controls@TWinControl@InvalidateFrame$qqrv", + "@Controls@TWinControl@InvokeHelp$qqrv", + "@Controls@TWinControl@IsControlMouseMsg$qqrr17Messages@TWMMouse", + "@Controls@TWinControl@IsCtl3DStored$qqrv", + "@Controls@TWinControl@IsMenuKey$qqrr15Messages@TWMKey", + "@Controls@TWinControl@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Controls@TWinControl@KeyPress$qqrrc", + "@Controls@TWinControl@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Controls@TWinControl@MainWndProc$qqrr17Messages@TMessage", + "@Controls@TWinControl@NotifyControls$qqrus", + "@Controls@TWinControl@PaintControls$qqruip17Controls@TControl", + "@Controls@TWinControl@PaintHandler$qqrr17Messages@TWMPaint", + "@Controls@TWinControl@PaintTo$qqrp16Graphics@TCanvasii", + "@Controls@TWinControl@PaintTo$qqruiii", + "@Controls@TWinControl@PaintWindow$qqrui", + "@Controls@TWinControl@PaletteChanged$qqro", + "@Controls@TWinControl@PrecedingWindow$qqrp20Controls@TWinControl", + "@Controls@TWinControl@ReadDesignSize$qqrp15Classes@TReader", + "@Controls@TWinControl@ReadState$qqrp15Classes@TReader", + "@Controls@TWinControl@Realign$qqrv", + "@Controls@TWinControl@RecreateWnd$qqrv", + "@Controls@TWinControl@ReloadDockedControl$qqrx17System@AnsiStringrp17Controls@TControl", + "@Controls@TWinControl@Remove$qqrp17Controls@TControl", + "@Controls@TWinControl@RemoveControl$qqrp17Controls@TControl", + "@Controls@TWinControl@RemoveFocus$qqro", + "@Controls@TWinControl@Repaint$qqrv", + "@Controls@TWinControl@ResetIme$qqrv", + "@Controls@TWinControl@ResetImeComposition$qqrui", + "@Controls@TWinControl@ScaleBy$qqrii", + "@Controls@TWinControl@ScaleControls$qqrii", + "@Controls@TWinControl@ScrollBy$qqrii", + "@Controls@TWinControl@SelectFirst$qqrv", + "@Controls@TWinControl@SelectNext$qqrp20Controls@TWinControloo", + "@Controls@TWinControl@SetBevelCut$qqrix18Controls@TBevelCut", + "@Controls@TWinControl@SetBevelEdges$qqrx47System@%Set$t19Controls@TBevelEdge$iuc$0$iuc$3%", + "@Controls@TWinControl@SetBevelKind$qqrx19Controls@TBevelKind", + "@Controls@TWinControl@SetBevelWidth$qqrxi", + "@Controls@TWinControl@SetBorderWidth$qqri", + "@Controls@TWinControl@SetBounds$qqriiii", + "@Controls@TWinControl@SetChildOrder$qqrp18Classes@TComponenti", + "@Controls@TWinControl@SetCtl3D$qqro", + "@Controls@TWinControl@SetDockSite$qqro", + "@Controls@TWinControl@SetFocus$qqrv", + "@Controls@TWinControl@SetIme$qqrv", + "@Controls@TWinControl@SetImeCompositionWindow$qqrp14Graphics@TFontii", + "@Controls@TWinControl@SetParentCtl3D$qqro", + "@Controls@TWinControl@SetParentWindow$qqrui", + "@Controls@TWinControl@SetTabOrder$qqrs", + "@Controls@TWinControl@SetTabStop$qqro", + "@Controls@TWinControl@SetUseDockManager$qqro", + "@Controls@TWinControl@SetZOrder$qqro", + "@Controls@TWinControl@SetZOrderPosition$qqri", + "@Controls@TWinControl@ShowControl$qqrp17Controls@TControl", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@UpdateBounds$qqrv", + "@Controls@TWinControl@UpdateControlState$qqrv", + "@Controls@TWinControl@UpdateShowing$qqrv", + "@Controls@TWinControl@UpdateTabOrder$qqrs", + "@Controls@TWinControl@WMChar$qqrr15Messages@TWMKey", + "@Controls@TWinControl@WMCharToItem$qqrr22Messages@TWMCharToItem", + "@Controls@TWinControl@WMCommand$qqrr19Messages@TWMCommand", + "@Controls@TWinControl@WMCompareItem$qqrr23Messages@TWMCompareItem", + "@Controls@TWinControl@WMContextMenu$qqrr23Messages@TWMContextMenu", + "@Controls@TWinControl@WMDeleteItem$qqrr22Messages@TWMDeleteItem", + "@Controls@TWinControl@WMDestroy$qqrr20Messages@TWMNoParams", + "@Controls@TWinControl@WMDrawItem$qqrr20Messages@TWMDrawItem", + "@Controls@TWinControl@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Controls@TWinControl@WMFontChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMHScroll$qqrr18Messages@TWMScroll", + "@Controls@TWinControl@WMIMEEndComp$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMIMEStartComp$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMKeyDown$qqrr15Messages@TWMKey", + "@Controls@TWinControl@WMKeyUp$qqrr15Messages@TWMKey", + "@Controls@TWinControl@WMKillFocus$qqrr20Messages@TWMSetFocus", + "@Controls@TWinControl@WMMeasureItem$qqrr23Messages@TWMMeasureItem", + "@Controls@TWinControl@WMMove$qqrr16Messages@TWMMove", + "@Controls@TWinControl@WMNCCalcSize$qqrr22Messages@TWMNCCalcSize", + "@Controls@TWinControl@WMNCDestroy$qqrr20Messages@TWMNoParams", + "@Controls@TWinControl@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Controls@TWinControl@WMNCPaint$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMNotify$qqrr18Messages@TWMNotify", + "@Controls@TWinControl@WMPaint$qqrr17Messages@TWMPaint", + "@Controls@TWinControl@WMPaletteChanged$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMParentNotify$qqrr24Messages@TWMParentNotify", + "@Controls@TWinControl@WMQueryNewPalette$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Controls@TWinControl@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Controls@TWinControl@WMSize$qqrr16Messages@TWMSize", + "@Controls@TWinControl@WMSysColorChange$qqrr20Messages@TWMNoParams", + "@Controls@TWinControl@WMSysCommand$qqrr22Messages@TWMSysCommand", + "@Controls@TWinControl@WMSysKeyDown$qqrr15Messages@TWMKey", + "@Controls@TWinControl@WMSysKeyUp$qqrr15Messages@TWMKey", + "@Controls@TWinControl@WMTimeChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMVKeyToItem$qqrr22Messages@TWMCharToItem", + "@Controls@TWinControl@WMVScroll$qqrr18Messages@TWMScroll", + "@Controls@TWinControl@WMWinIniChange$qqrr17Messages@TMessage", + "@Controls@TWinControl@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Controls@TWinControl@WMWindowPosChanging$qqrr24Messages@TWMWindowPosMsg", + "@Controls@TWinControl@WndProc$qqrr17Messages@TMessage", + "@Controls@TWinControl@WriteDesignSize$qqrp15Classes@TWriter", + "@Controls@TWinControlActionLink@", + "@Controls@TWinControlActionLink@AssignClient$qqrp14System@TObject", + "@Controls@TWinControlActionLink@IsHelpContextLinked$qqrv", + "@Controls@TWinControlActionLink@SetHelpContext$qqri", + "@Controls@Win32NLSEnableIME$qqruio", + "@Controls@initialization$qqrv", + "@Dialogs@CreateMessageDialog$qqrx17System@AnsiString19Dialogs@TMsgDlgType47System@%Set$t18Dialogs@TMsgDlgBtn$iuc$0$iuc$10%", + "@Dialogs@Finalization$qqrv", + "@Dialogs@ForceCurrentDirectory", + "@Dialogs@InputBox$qqrx17System@AnsiStringt1t1", + "@Dialogs@InputQuery$qqrx17System@AnsiStringt1r17System@AnsiString", + "@Dialogs@MessageDlg$qqrx17System@AnsiString19Dialogs@TMsgDlgType47System@%Set$t18Dialogs@TMsgDlgBtn$iuc$0$iuc$10%i", + "@Dialogs@MessageDlgPos$qqrx17System@AnsiString19Dialogs@TMsgDlgType47System@%Set$t18Dialogs@TMsgDlgBtn$iuc$0$iuc$10%iii", + "@Dialogs@MessageDlgPosHelp$qqrx17System@AnsiString19Dialogs@TMsgDlgType47System@%Set$t18Dialogs@TMsgDlgBtn$iuc$0$iuc$10%iiit1", + "@Dialogs@PromptForFileName$qqrr17System@AnsiStringx17System@AnsiStringt2t2t2o", + "@Dialogs@ShowMessage$qqrx17System@AnsiString", + "@Dialogs@ShowMessageFmt$qqrx17System@AnsiStringpx14System@TVarRecxi", + "@Dialogs@ShowMessagePos$qqrx17System@AnsiStringii", + "@Dialogs@TColorDialog@", + "@Dialogs@TColorDialog@$bctr$qqrp18Classes@TComponent", + "@Dialogs@TColorDialog@$bdtr$qqrv", + "@Dialogs@TColorDialog@Execute$qqrv", + "@Dialogs@TColorDialog@SetCustomColors$qqrp16Classes@TStrings", + "@Dialogs@TCommonDialog@", + "@Dialogs@TCommonDialog@$bctr$qqrp18Classes@TComponent", + "@Dialogs@TCommonDialog@$bdtr$qqrv", + "@Dialogs@TCommonDialog@DefaultHandler$qqrpv", + "@Dialogs@TCommonDialog@DoClose$qqrv", + "@Dialogs@TCommonDialog@DoShow$qqrv", + "@Dialogs@TCommonDialog@MainWndProc$qqrr17Messages@TMessage", + "@Dialogs@TCommonDialog@MessageHook$qqrr17Messages@TMessage", + "@Dialogs@TCommonDialog@TaskModalDialog$qqrpvt1", + "@Dialogs@TCommonDialog@WMDestroy$qqrr20Messages@TWMNoParams", + "@Dialogs@TCommonDialog@WMInitDialog$qqrr22Messages@TWMInitDialog", + "@Dialogs@TCommonDialog@WMNCDestroy$qqrr20Messages@TWMNoParams", + "@Dialogs@TCommonDialog@WndProc$qqrr17Messages@TMessage", + "@Dialogs@TFindDialog@", + "@Dialogs@TFindDialog@$bctr$qqrp18Classes@TComponent", + "@Dialogs@TFindDialog@$bdtr$qqrv", + "@Dialogs@TFindDialog@CloseDialog$qqrv", + "@Dialogs@TFindDialog@Execute$qqrv", + "@Dialogs@TFindDialog@Find$qqrv", + "@Dialogs@TFindDialog@GetFindText$qqrv", + "@Dialogs@TFindDialog@GetLeft$qqrv", + "@Dialogs@TFindDialog@GetPosition$qqrv", + "@Dialogs@TFindDialog@GetReplaceText$qqrv", + "@Dialogs@TFindDialog@GetTop$qqrv", + "@Dialogs@TFindDialog@MessageHook$qqrr17Messages@TMessage", + "@Dialogs@TFindDialog@Replace$qqrv", + "@Dialogs@TFindDialog@SetFindText$qqrx17System@AnsiString", + "@Dialogs@TFindDialog@SetLeft$qqri", + "@Dialogs@TFindDialog@SetPosition$qqrrx12Types@TPoint", + "@Dialogs@TFindDialog@SetReplaceText$qqrx17System@AnsiString", + "@Dialogs@TFindDialog@SetTop$qqri", + "@Dialogs@TFontDialog@", + "@Dialogs@TFontDialog@$bctr$qqrp18Classes@TComponent", + "@Dialogs@TFontDialog@$bdtr$qqrv", + "@Dialogs@TFontDialog@Apply$qqrui", + "@Dialogs@TFontDialog@DoApply$qqrui", + "@Dialogs@TFontDialog@Execute$qqrv", + "@Dialogs@TFontDialog@SetFont$qqrp14Graphics@TFont", + "@Dialogs@TFontDialog@UpdateFromLogFont$qqrrx11tagLOGFONTA", + "@Dialogs@TFontDialog@WndProc$qqrr17Messages@TMessage", + "@Dialogs@TOpenDialog@", + "@Dialogs@TOpenDialog@$bctr$qqrp18Classes@TComponent", + "@Dialogs@TOpenDialog@$bdtr$qqrv", + "@Dialogs@TOpenDialog@CanClose$qqrr7tagOFNA", + "@Dialogs@TOpenDialog@DefineProperties$qqrp14Classes@TFiler", + "@Dialogs@TOpenDialog@DoCanClose$qqrv", + "@Dialogs@TOpenDialog@DoExecute$qqrpv", + "@Dialogs@TOpenDialog@DoFolderChange$qqrv", + "@Dialogs@TOpenDialog@DoIncludeItem$qqrrx19Commdlg@TOFNotifyExro", + "@Dialogs@TOpenDialog@DoSelectionChange$qqrv", + "@Dialogs@TOpenDialog@DoTypeChange$qqrv", + "@Dialogs@TOpenDialog@Execute$qqrv", + "@Dialogs@TOpenDialog@GetFileName$qqrv", + "@Dialogs@TOpenDialog@GetFileNames$qqrr7tagOFNA", + "@Dialogs@TOpenDialog@GetFilterIndex$qqrv", + "@Dialogs@TOpenDialog@GetStaticRect$qqrv", + "@Dialogs@TOpenDialog@ReadFileEditStyle$qqrp15Classes@TReader", + "@Dialogs@TOpenDialog@SetHistoryList$qqrp16Classes@TStrings", + "@Dialogs@TOpenDialog@SetInitialDir$qqrx17System@AnsiString", + "@Dialogs@TOpenDialog@WndProc$qqrr17Messages@TMessage", + "@Dialogs@TPrintDialog@", + "@Dialogs@TPrintDialog@Execute$qqrv", + "@Dialogs@TPrintDialog@SetNumCopies$qqri", + "@Dialogs@TPrinterSetupDialog@", + "@Dialogs@TPrinterSetupDialog@Execute$qqrv", + "@Dialogs@TReplaceDialog@", + "@Dialogs@TReplaceDialog@$bctr$qqrp18Classes@TComponent", + "@Dialogs@TSaveDialog@", + "@Dialogs@TSaveDialog@Execute$qqrv", + "@Dialogs@initialization$qqrv", + "@Extactns@Finalization$qqrv", + "@Extactns@TBrowseURL@", + "@Extactns@TBrowseURL@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TCustomFileRun@", + "@Extactns@TCustomFileRun@$bctr$qqrp18Classes@TComponent", + "@Extactns@TCustomFileRun@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TCustomFileRun@HandlesTarget$qqrp14System@TObject", + "@Extactns@TCustomFileRun@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Extactns@TCustomFileRun@SetBrowseDlg$qqrpx19Dialogs@TOpenDialog", + "@Extactns@TCustomFileRun@SetParentControl$qqrpx20Controls@TWinControl", + "@Extactns@TCustomFileRun@SetupBrowseDialog$qqrv", + "@Extactns@TCustomFileRun@UpdateTarget$qqrp14System@TObject", + "@Extactns@TDownLoadURL@", + "@Extactns@TDownLoadURL@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TDownLoadURL@GetBindInfo$qqsruir12_tagBINDINFO", + "@Extactns@TDownLoadURL@GetPriority$qqspv", + "@Extactns@TDownLoadURL@OnDataAvailable$qqsuiuip12tagFORMATETCp12tagSTGMEDIUM", + "@Extactns@TDownLoadURL@OnLowResource$qqsui", + "@Extactns@TDownLoadURL@OnObjectAvailable$qqsrx5_GUID45System@%DelphiInterface$t17System@IInterface%", + "@Extactns@TDownLoadURL@OnProgress$qqsuiuiuipb", + "@Extactns@TDownLoadURL@OnStartBinding$qqsui35System@%DelphiInterface$t8IBinding%", + "@Extactns@TDownLoadURL@OnStopBinding$qqslpb", + "@Extactns@TFileRun@", + "@Extactns@TListControlAction@", + "@Extactns@TListControlAction@$bctr$qqrp18Classes@TComponent", + "@Extactns@TListControlAction@HandlesTarget$qqrp14System@TObject", + "@Extactns@TListControlAction@IsEnabled$qqrp14System@TObject", + "@Extactns@TListControlAction@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Extactns@TListControlAction@SetListControl$qqrpx27Controls@TCustomListControl", + "@Extactns@TListControlClearSelection@", + "@Extactns@TListControlClearSelection@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TListControlClearSelection@UpdateTarget$qqrp14System@TObject", + "@Extactns@TListControlCopySelection@", + "@Extactns@TListControlCopySelection@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TListControlCopySelection@HandlesTarget$qqrp14System@TObject", + "@Extactns@TListControlCopySelection@SetDestination$qqrpx27Controls@TCustomListControl", + "@Extactns@TListControlCopySelection@UpdateTarget$qqrp14System@TObject", + "@Extactns@TListControlDeleteSelection@", + "@Extactns@TListControlDeleteSelection@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TListControlDeleteSelection@UpdateTarget$qqrp14System@TObject", + "@Extactns@TListControlMoveSelection@", + "@Extactns@TListControlMoveSelection@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TListControlSelectAll@", + "@Extactns@TListControlSelectAll@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TListControlSelectAll@UpdateTarget$qqrp14System@TObject", + "@Extactns@TNextTab@", + "@Extactns@TNextTab@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TNextTab@UpdateTarget$qqrp14System@TObject", + "@Extactns@TOpenPicture@", + "@Extactns@TOpenPicture@GetDialog$qqrv", + "@Extactns@TOpenPicture@Getdialogclass$qqrv", + "@Extactns@TPreviousTab@", + "@Extactns@TPreviousTab@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TPreviousTab@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditAction@", + "@Extactns@TRichEditAction@$bctr$qqrp18Classes@TComponent", + "@Extactns@TRichEditAction@CurrText$qqrp24Comctrls@TCustomRichEdit", + "@Extactns@TRichEditAction@HandlesTarget$qqrp14System@TObject", + "@Extactns@TRichEditAction@SetFontStyle$qqrp24Comctrls@TCustomRichEdit19Graphics@TFontStyle", + "@Extactns@TRichEditAlignCenter@", + "@Extactns@TRichEditAlignCenter@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditAlignCenter@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditAlignLeft@", + "@Extactns@TRichEditAlignLeft@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditAlignLeft@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditAlignRight@", + "@Extactns@TRichEditAlignRight@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditAlignRight@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditBold@", + "@Extactns@TRichEditBold@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditBold@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditBullets@", + "@Extactns@TRichEditBullets@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditBullets@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditItalic@", + "@Extactns@TRichEditItalic@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditItalic@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditStrikeOut@", + "@Extactns@TRichEditStrikeOut@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditStrikeOut@UpdateTarget$qqrp14System@TObject", + "@Extactns@TRichEditUnderline@", + "@Extactns@TRichEditUnderline@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TRichEditUnderline@UpdateTarget$qqrp14System@TObject", + "@Extactns@TSavePicture@", + "@Extactns@TSavePicture@GetDialog$qqrv", + "@Extactns@TSavePicture@Getdialogclass$qqrv", + "@Extactns@TSendMail@", + "@Extactns@TSendMail@$bdtr$qqrv", + "@Extactns@TSendMail@ExecuteTarget$qqrp14System@TObject", + "@Extactns@TSendMail@GetText$qqrv", + "@Extactns@TSendMail@HandlesTarget$qqrp14System@TObject", + "@Extactns@TSendMail@SetText$qqrpx16Classes@TStrings", + "@Extactns@TSendMail@UpdateTarget$qqrp14System@TObject", + "@Extactns@TTabAction@", + "@Extactns@TTabAction@$bctr$qqrp18Classes@TComponent", + "@Extactns@TTabAction@HandlesTarget$qqrp14System@TObject", + "@Extactns@TTabAction@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Extactns@TTabAction@SelectNextTab$qqro", + "@Extactns@TTabAction@UpdateTarget$qqrp14System@TObject", + "@Extactns@TURLAction@", + "@Extactns@TURLAction@HandlesTarget$qqrp14System@TObject", + "@Extactns@TURLAction@UpdateTarget$qqrp14System@TObject", + "@Extactns@initialization$qqrv", + "@Extctrls@Finalization$qqrv", + "@Extctrls@Frame3D$qqrp16Graphics@TCanvasr11Types@TRect15Graphics@TColort3i", + "@Extctrls@NotebookHandlesNeeded$qqrp18Extctrls@TNotebook", + "@Extctrls@TBevel@", + "@Extctrls@TBevel@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TBevel@Paint$qqrv", + "@Extctrls@TBevel@SetShape$qqr20Extctrls@TBevelShape", + "@Extctrls@TBevel@SetStyle$qqr20Extctrls@TBevelStyle", + "@Extctrls@TBoundLabel@", + "@Extctrls@TBoundLabel@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TBoundLabel@AdjustBounds$qqrv", + "@Extctrls@TBoundLabel@GetHeight$qqrv", + "@Extctrls@TBoundLabel@GetLeft$qqrv", + "@Extctrls@TBoundLabel@GetTop$qqrv", + "@Extctrls@TBoundLabel@GetWidth$qqrv", + "@Extctrls@TBoundLabel@SetHeight$qqrxi", + "@Extctrls@TBoundLabel@SetWidth$qqrxi", + "@Extctrls@TColorBox@", + "@Extctrls@TControlBar@", + "@Extctrls@TCustomColorBox@", + "@Extctrls@TCustomColorBox@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TCustomColorBox@CloseUp$qqrv", + "@Extctrls@TCustomColorBox@ColorCallBack$qqrx17System@AnsiString", + "@Extctrls@TCustomColorBox@CreateWnd$qqrv", + "@Extctrls@TCustomColorBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Extctrls@TCustomColorBox@GetColor$qqri", + "@Extctrls@TCustomColorBox@GetColorName$qqri", + "@Extctrls@TCustomColorBox@GetSelected$qqrv", + "@Extctrls@TCustomColorBox@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Extctrls@TCustomColorBox@KeyPress$qqrrc", + "@Extctrls@TCustomColorBox@PickCustomColor$qqrv", + "@Extctrls@TCustomColorBox@PopulateList$qqrv", + "@Extctrls@TCustomColorBox@Select$qqrv", + "@Extctrls@TCustomColorBox@SetDefaultColorColor$qqrx15Graphics@TColor", + "@Extctrls@TCustomColorBox@SetNoneColorColor$qqrx15Graphics@TColor", + "@Extctrls@TCustomColorBox@SetSelected$qqrx15Graphics@TColor", + "@Extctrls@TCustomColorBox@SetStyle$qqr52System@%Set$t24Extctrls@TColorBoxStyles$iuc$0$iuc$6%", + "@Extctrls@TCustomControlBar@", + "@Extctrls@TCustomControlBar@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TCustomControlBar@$bdtr$qqrv", + "@Extctrls@TCustomControlBar@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Extctrls@TCustomControlBar@CMControlListChange$qqrr29Controls@TCMControlListChange", + "@Extctrls@TCustomControlBar@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Extctrls@TCustomControlBar@CNKeyDown$qqrr15Messages@TWMKey", + "@Extctrls@TCustomControlBar@CanAutoSize$qqrrit1", + "@Extctrls@TCustomControlBar@CreateParams$qqrr22Controls@TCreateParams", + "@Extctrls@TCustomControlBar@DoAlignControl$qqrp17Controls@TControl", + "@Extctrls@TCustomControlBar@DoBandMove$qqrp17Controls@TControlr11Types@TRect", + "@Extctrls@TCustomControlBar@DoBandPaint$qqrp17Controls@TControlp16Graphics@TCanvasr11Types@TRectr53System@%Set$t25Extctrls@TBandPaintOption$iuc$0$iuc$1%", + "@Extctrls@TCustomControlBar@DoPaletteChange$qqrv", + "@Extctrls@TCustomControlBar@DockControl$qqrp17Controls@TControlrx11Types@TRectp13Classes@TListt3t3pvot2iio", + "@Extctrls@TCustomControlBar@DockOver$qqrp24Controls@TDragDockObjectii19Controls@TDragStatero", + "@Extctrls@TCustomControlBar@DragControl$qqrp17Controls@TControliio", + "@Extctrls@TCustomControlBar@FindPos$qqrp17Controls@TControl", + "@Extctrls@TCustomControlBar@FlipChildren$qqro", + "@Extctrls@TCustomControlBar@GetControlInfo$qqrp17Controls@TControlr11Types@TRectrit3", + "@Extctrls@TCustomControlBar@GetPalette$qqrv", + "@Extctrls@TCustomControlBar@GetSiteInfo$qqrp17Controls@TControlr11Types@TRectrx12Types@TPointro", + "@Extctrls@TCustomControlBar@HitTest$qqrii", + "@Extctrls@TCustomControlBar@HitTest2$qqrii", + "@Extctrls@TCustomControlBar@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@TCustomControlBar@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@TCustomControlBar@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@TCustomControlBar@Paint$qqrv", + "@Extctrls@TCustomControlBar@PaintControlFrame$qqrp16Graphics@TCanvasp17Controls@TControlr11Types@TRect", + "@Extctrls@TCustomControlBar@PictureChanged$qqrp14System@TObject", + "@Extctrls@TCustomControlBar@SetPicture$qqrpx17Graphics@TPicture", + "@Extctrls@TCustomControlBar@SetRowSize$qqri", + "@Extctrls@TCustomControlBar@SetRowSnap$qqro", + "@Extctrls@TCustomControlBar@StickControls$qqrv", + "@Extctrls@TCustomControlBar@UnDockControl$qqrp17Controls@TControl", + "@Extctrls@TCustomControlBar@UpdateItems$qqrp17Controls@TControl", + "@Extctrls@TCustomControlBar@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Extctrls@TCustomLabeledEdit@", + "@Extctrls@TCustomLabeledEdit@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TCustomLabeledEdit@CMBidimodechanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomLabeledEdit@CMEnabledchanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomLabeledEdit@CMVisiblechanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomLabeledEdit@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Extctrls@TCustomLabeledEdit@SetBounds$qqriiii", + "@Extctrls@TCustomLabeledEdit@SetLabelPosition$qqrx23Extctrls@TLabelPosition", + "@Extctrls@TCustomLabeledEdit@SetLabelSpacing$qqrxi", + "@Extctrls@TCustomLabeledEdit@SetName$qqrx17System@AnsiString", + "@Extctrls@TCustomLabeledEdit@SetParent$qqrp20Controls@TWinControl", + "@Extctrls@TCustomLabeledEdit@SetupInternalLabel$qqrv", + "@Extctrls@TCustomPanel@", + "@Extctrls@TCustomPanel@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Extctrls@TCustomPanel@CMBorderChanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomPanel@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomPanel@CMDockClient$qqrr22Controls@TCMDockClient", + "@Extctrls@TCustomPanel@CMIsToolControl$qqrr17Messages@TMessage", + "@Extctrls@TCustomPanel@CMTextChanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomPanel@CanAutoSize$qqrrit1", + "@Extctrls@TCustomPanel@CreateParams$qqrr22Controls@TCreateParams", + "@Extctrls@TCustomPanel@GetControlsAlignment$qqrv", + "@Extctrls@TCustomPanel@Paint$qqrv", + "@Extctrls@TCustomPanel@SetAlignment$qqr18Classes@TAlignment", + "@Extctrls@TCustomPanel@SetBevelInner$qqr18Controls@TBevelCut", + "@Extctrls@TCustomPanel@SetBevelOuter$qqr18Controls@TBevelCut", + "@Extctrls@TCustomPanel@SetBevelWidth$qqri", + "@Extctrls@TCustomPanel@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Extctrls@TCustomPanel@SetBorderWidth$qqri", + "@Extctrls@TCustomPanel@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Extctrls@TCustomRadioGroup@", + "@Extctrls@TCustomRadioGroup@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TCustomRadioGroup@$bdtr$qqrv", + "@Extctrls@TCustomRadioGroup@ArrangeButtons$qqrv", + "@Extctrls@TCustomRadioGroup@ButtonClick$qqrp14System@TObject", + "@Extctrls@TCustomRadioGroup@CMEnabledChanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomRadioGroup@CMFontChanged$qqrr17Messages@TMessage", + "@Extctrls@TCustomRadioGroup@CanModify$qqrv", + "@Extctrls@TCustomRadioGroup@FlipChildren$qqro", + "@Extctrls@TCustomRadioGroup@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Extctrls@TCustomRadioGroup@ItemsChange$qqrp14System@TObject", + "@Extctrls@TCustomRadioGroup@Loaded$qqrv", + "@Extctrls@TCustomRadioGroup@ReadState$qqrp15Classes@TReader", + "@Extctrls@TCustomRadioGroup@SetButtonCount$qqri", + "@Extctrls@TCustomRadioGroup@SetColumns$qqri", + "@Extctrls@TCustomRadioGroup@SetItemIndex$qqri", + "@Extctrls@TCustomRadioGroup@SetItems$qqrp16Classes@TStrings", + "@Extctrls@TCustomRadioGroup@UpdateButtons$qqrv", + "@Extctrls@TCustomRadioGroup@WMSize$qqrr16Messages@TWMSize", + "@Extctrls@THeader@", + "@Extctrls@THeader@$bctr$qqrp18Classes@TComponent", + "@Extctrls@THeader@$bdtr$qqrv", + "@Extctrls@THeader@CreateParams$qqrr22Controls@TCreateParams", + "@Extctrls@THeader@FreeSections$qqrv", + "@Extctrls@THeader@GetWidth$qqri", + "@Extctrls@THeader@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@THeader@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@THeader@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@THeader@Paint$qqrv", + "@Extctrls@THeader@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Extctrls@THeader@SetSections$qqrp16Classes@TStrings", + "@Extctrls@THeader@SetWidth$qqrii", + "@Extctrls@THeader@Sized$qqrii", + "@Extctrls@THeader@Sizing$qqrii", + "@Extctrls@THeader@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Extctrls@THeader@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Extctrls@THeader@WMSize$qqrr16Messages@TWMSize", + "@Extctrls@TImage@", + "@Extctrls@TImage@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TImage@$bdtr$qqrv", + "@Extctrls@TImage@CanAutoSize$qqrrit1", + "@Extctrls@TImage@DestRect$qqrv", + "@Extctrls@TImage@DoPaletteChange$qqrv", + "@Extctrls@TImage@GetCanvas$qqrv", + "@Extctrls@TImage@GetPalette$qqrv", + "@Extctrls@TImage@Paint$qqrv", + "@Extctrls@TImage@PictureChanged$qqrp14System@TObject", + "@Extctrls@TImage@Progress$qqrp14System@TObject23Graphics@TProgressStageucorx11Types@TRectx17System@AnsiString", + "@Extctrls@TImage@SetCenter$qqro", + "@Extctrls@TImage@SetPicture$qqrp17Graphics@TPicture", + "@Extctrls@TImage@SetProportional$qqro", + "@Extctrls@TImage@SetStretch$qqro", + "@Extctrls@TImage@SetTransparent$qqro", + "@Extctrls@TLabeledEdit@", + "@Extctrls@TNotebook@", + "@Extctrls@TNotebook@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TNotebook@$bdtr$qqrv", + "@Extctrls@TNotebook@CreateParams$qqrr22Controls@TCreateParams", + "@Extctrls@TNotebook@GetActivePage$qqrv", + "@Extctrls@TNotebook@GetChildOwner$qqrv", + "@Extctrls@TNotebook@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Extctrls@TNotebook@ReadState$qqrp15Classes@TReader", + "@Extctrls@TNotebook@SetActivePage$qqrx17System@AnsiString", + "@Extctrls@TNotebook@SetPageIndex$qqri", + "@Extctrls@TNotebook@SetPages$qqrp16Classes@TStrings", + "@Extctrls@TNotebook@ShowControl$qqrp17Controls@TControl", + "@Extctrls@TPage@", + "@Extctrls@TPage@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TPage@Paint$qqrv", + "@Extctrls@TPage@ReadState$qqrp15Classes@TReader", + "@Extctrls@TPage@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Extctrls@TPaintBox@", + "@Extctrls@TPaintBox@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TPaintBox@Paint$qqrv", + "@Extctrls@TPanel@", + "@Extctrls@TRadioGroup@", + "@Extctrls@TShape@", + "@Extctrls@TShape@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TShape@$bdtr$qqrv", + "@Extctrls@TShape@Paint$qqrv", + "@Extctrls@TShape@SetBrush$qqrp15Graphics@TBrush", + "@Extctrls@TShape@SetPen$qqrp13Graphics@TPen", + "@Extctrls@TShape@SetShape$qqr19Extctrls@TShapeType", + "@Extctrls@TShape@StyleChanged$qqrp14System@TObject", + "@Extctrls@TSplitter@", + "@Extctrls@TSplitter@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TSplitter@$bdtr$qqrv", + "@Extctrls@TSplitter@AllocateLineDC$qqrv", + "@Extctrls@TSplitter@CalcSplitSize$qqriirit3", + "@Extctrls@TSplitter@CanResize$qqrri", + "@Extctrls@TSplitter@DoCanResize$qqrri", + "@Extctrls@TSplitter@DrawLine$qqrv", + "@Extctrls@TSplitter@FindControl$qqrv", + "@Extctrls@TSplitter@FocusKeyDown$qqrp14System@TObjectrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Extctrls@TSplitter@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@TSplitter@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@TSplitter@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Extctrls@TSplitter@Paint$qqrv", + "@Extctrls@TSplitter@ReleaseLineDC$qqrv", + "@Extctrls@TSplitter@RequestAlign$qqrv", + "@Extctrls@TSplitter@SetBeveled$qqro", + "@Extctrls@TSplitter@StopSizing$qqrv", + "@Extctrls@TSplitter@UpdateControlSize$qqrv", + "@Extctrls@TSplitter@UpdateSize$qqrii", + "@Extctrls@TTimer@", + "@Extctrls@TTimer@$bctr$qqrp18Classes@TComponent", + "@Extctrls@TTimer@$bdtr$qqrv", + "@Extctrls@TTimer@SetEnabled$qqro", + "@Extctrls@TTimer@SetInterval$qqrui", + "@Extctrls@TTimer@SetOnTimer$qqrynpqqrp14System@TObject$v", + "@Extctrls@TTimer@Timer$qqrv", + "@Extctrls@TTimer@UpdateTimer$qqrv", + "@Extctrls@TTimer@WndProc$qqrr17Messages@TMessage", + "@Extctrls@initialization$qqrv", + "@Extdlgs@Finalization$qqrv", + "@Extdlgs@TOpenPictureDialog@", + "@Extdlgs@TOpenPictureDialog@$bctr$qqrp18Classes@TComponent", + "@Extdlgs@TOpenPictureDialog@DoClose$qqrv", + "@Extdlgs@TOpenPictureDialog@DoSelectionChange$qqrv", + "@Extdlgs@TOpenPictureDialog@DoShow$qqrv", + "@Extdlgs@TOpenPictureDialog@Execute$qqrv", + "@Extdlgs@TOpenPictureDialog@IsFilterStored$qqrv", + "@Extdlgs@TOpenPictureDialog@PreviewClick$qqrp14System@TObject", + "@Extdlgs@TOpenPictureDialog@PreviewKeyPress$qqrp14System@TObjectrc", + "@Extdlgs@TSavePictureDialog@", + "@Extdlgs@TSavePictureDialog@Execute$qqrv", + "@Extdlgs@initialization$qqrv", + "@Forms@AllocateHWnd$qqrynpqqrr17Messages@TMessage$v", + "@Forms@Application", + "@Forms@Ctl3DBtnWndProc", + "@Forms@Ctl3DCtlColorEx", + "@Forms@Ctl3DDlgFramePaint", + "@Forms@DeallocateHWnd$qqrui", + "@Forms@DisableTaskWindows$qqrui", + "@Forms@DoneCtl3D$qqrv", + "@Forms@EnableTaskWindows$qqrpv", + "@Forms@Finalization$qqrv", + "@Forms@ForegroundTask$qqrv", + "@Forms@FreeObjectInstance$qqrpv", + "@Forms@GetParentForm$qqrp17Controls@TControl", + "@Forms@HintWindowClass", + "@Forms@InitCtl3D$qqrv", + "@Forms@IsAccel$qqrusx17System@AnsiString", + "@Forms@KeyDataToShiftState$qqri", + "@Forms@KeyboardStateToShiftState$qqrpxuc", + "@Forms@KeyboardStateToShiftState$qqrv", + "@Forms@KeysToShiftState$qqrus", + "@Forms@MakeObjectInstance$qqrynpqqrr17Messages@TMessage$v", + "@Forms@RestoreFocusState$qqrpv", + "@Forms@SaveFocusState$qqrv", + "@Forms@Screen", + "@Forms@SetAutoSubClass$qqro", + "@Forms@Subclass3DDlg$qqruius", + "@Forms@Subclass3DWnd$qqrui", + "@Forms@TApplication@", + "@Forms@TApplication@$bctr$qqrp18Classes@TComponent", + "@Forms@TApplication@$bdtr$qqrv", + "@Forms@TApplication@ActivateHint$qqrrx12Types@TPoint", + "@Forms@TApplication@BringToFront$qqrv", + "@Forms@TApplication@CancelHint$qqrv", + "@Forms@TApplication@CheckIniChange$qqrr17Messages@TMessage", + "@Forms@TApplication@ControlDestroyed$qqrp17Controls@TControl", + "@Forms@TApplication@CreateForm$qqrp17System@TMetaClasspv", + "@Forms@TApplication@CreateHandle$qqrv", + "@Forms@TApplication@DispatchAction$qqrip20Classes@TBasicAction", + "@Forms@TApplication@DoActionIdle$qqrv", + "@Forms@TApplication@DoMouseIdle$qqrv", + "@Forms@TApplication@DoNormalizeTopMosts$qqro", + "@Forms@TApplication@ExecuteAction$qqrp20Classes@TBasicAction", + "@Forms@TApplication@GetCurrentHelpFile$qqrv", + "@Forms@TApplication@GetDialogHandle$qqrv", + "@Forms@TApplication@GetExeName$qqrv", + "@Forms@TApplication@GetIconHandle$qqrv", + "@Forms@TApplication@GetTitle$qqrv", + "@Forms@TApplication@HandleException$qqrp14System@TObject", + "@Forms@TApplication@HandleMessage$qqrv", + "@Forms@TApplication@HelpCommand$qqrii", + "@Forms@TApplication@HelpContext$qqri", + "@Forms@TApplication@HelpJump$qqrx17System@AnsiString", + "@Forms@TApplication@HelpKeyword$qqrx17System@AnsiString", + "@Forms@TApplication@HideHint$qqrv", + "@Forms@TApplication@HintMouseMessage$qqrp17Controls@TControlr17Messages@TMessage", + "@Forms@TApplication@HintTimerExpired$qqrv", + "@Forms@TApplication@HookMainWindow$qqrynpqqrr17Messages@TMessage$o", + "@Forms@TApplication@HookSynchronizeWakeup$qqrv", + "@Forms@TApplication@IconChanged$qqrp14System@TObject", + "@Forms@TApplication@Idle$qqrrx6tagMSG", + "@Forms@TApplication@Initialize$qqrv", + "@Forms@TApplication@InvokeHelp$qqrusi", + "@Forms@TApplication@IsDlgMsg$qqrr6tagMSG", + "@Forms@TApplication@IsHintMsg$qqrr6tagMSG", + "@Forms@TApplication@IsKeyMsg$qqrr6tagMSG", + "@Forms@TApplication@IsMDIMsg$qqrr6tagMSG", + "@Forms@TApplication@IsRightToLeft$qqrv", + "@Forms@TApplication@IsShortCut$qqrr15Messages@TWMKey", + "@Forms@TApplication@MessageBox$qqrpxct1i", + "@Forms@TApplication@Minimize$qqrv", + "@Forms@TApplication@NormalizeAllTopMosts$qqrv", + "@Forms@TApplication@NormalizeTopMosts$qqrv", + "@Forms@TApplication@NotifyForms$qqrus", + "@Forms@TApplication@ProcessMessage$qqrr6tagMSG", + "@Forms@TApplication@ProcessMessages$qqrv", + "@Forms@TApplication@Restore$qqrv", + "@Forms@TApplication@RestoreTopMosts$qqrv", + "@Forms@TApplication@Run$qqrv", + "@Forms@TApplication@SetBiDiMode$qqr17Classes@TBiDiMode", + "@Forms@TApplication@SetDialogHandle$qqrui", + "@Forms@TApplication@SetHandle$qqrui", + "@Forms@TApplication@SetHint$qqrx17System@AnsiString", + "@Forms@TApplication@SetHintColor$qqr15Graphics@TColor", + "@Forms@TApplication@SetIcon$qqrp14Graphics@TIcon", + "@Forms@TApplication@SetShowHint$qqro", + "@Forms@TApplication@SetTitle$qqrx17System@AnsiString", + "@Forms@TApplication@SettingChange$qqrr25Messages@TWMSettingChange", + "@Forms@TApplication@ShowException$qqrp18Sysutils@Exception", + "@Forms@TApplication@StartHintTimer$qqri16Forms@TTimerMode", + "@Forms@TApplication@StopHintTimer$qqrv", + "@Forms@TApplication@Terminate$qqrv", + "@Forms@TApplication@UnhookMainWindow$qqrynpqqrr17Messages@TMessage$o", + "@Forms@TApplication@UnhookSynchronizeWakeup$qqrv", + "@Forms@TApplication@UpdateAction$qqrp20Classes@TBasicAction", + "@Forms@TApplication@UpdateVisible$qqrv", + "@Forms@TApplication@UseRightToLeftAlignment$qqrv", + "@Forms@TApplication@UseRightToLeftReading$qqrv", + "@Forms@TApplication@UseRightToLeftScrollBar$qqrv", + "@Forms@TApplication@ValidateHelpSystem$qqrv", + "@Forms@TApplication@WakeMainThread$qqrp14System@TObject", + "@Forms@TApplication@WndProc$qqrr17Messages@TMessage", + "@Forms@TControlScrollBar@", + "@Forms@TControlScrollBar@$bctr$qqrp26Forms@TScrollingWinControl20Forms@TScrollBarKind", + "@Forms@TControlScrollBar@Assign$qqrp19Classes@TPersistent", + "@Forms@TControlScrollBar@CalcAutoRange$qqrv", + "@Forms@TControlScrollBar@ChangeBiDiPosition$qqrv", + "@Forms@TControlScrollBar@ControlSize$qqroo", + "@Forms@TControlScrollBar@DoSetRange$qqri", + "@Forms@TControlScrollBar@GetScrollPos$qqrv", + "@Forms@TControlScrollBar@IsIncrementStored$qqrv", + "@Forms@TControlScrollBar@IsRangeStored$qqrv", + "@Forms@TControlScrollBar@IsScrollBarVisible$qqrv", + "@Forms@TControlScrollBar@NeedsScrollBarVisible$qqrv", + "@Forms@TControlScrollBar@ScrollMessage$qqrr18Messages@TWMScroll", + "@Forms@TControlScrollBar@SetButtonSize$qqri", + "@Forms@TControlScrollBar@SetColor$qqr15Graphics@TColor", + "@Forms@TControlScrollBar@SetParentColor$qqro", + "@Forms@TControlScrollBar@SetPosition$qqri", + "@Forms@TControlScrollBar@SetRange$qqri", + "@Forms@TControlScrollBar@SetSize$qqri", + "@Forms@TControlScrollBar@SetStyle$qqr21Forms@TScrollBarStyle", + "@Forms@TControlScrollBar@SetThumbSize$qqri", + "@Forms@TControlScrollBar@SetVisible$qqro", + "@Forms@TControlScrollBar@Update$qqroo", + "@Forms@TCustomActiveForm@", + "@Forms@TCustomActiveForm@$bctr$qqrp18Classes@TComponent", + "@Forms@TCustomActiveForm@CreateParams$qqrr22Controls@TCreateParams", + "@Forms@TCustomActiveForm@SetAxBorderStyle$qqr28Forms@TActiveFormBorderStyle", + "@Forms@TCustomActiveForm@WantChildKey$qqrp17Controls@TControlr17Messages@TMessage", + "@Forms@TCustomDockForm@", + "@Forms@TCustomDockForm@$bctr$qqrp18Classes@TComponent", + "@Forms@TCustomDockForm@CMControlListChange$qqrr17Messages@TMessage", + "@Forms@TCustomDockForm@CMDockNotification$qqrr28Controls@TCMDockNotification", + "@Forms@TCustomDockForm@CMUnDockClient$qqrr24Controls@TCMUnDockClient", + "@Forms@TCustomDockForm@CMVisibleChanged$qqrr17Messages@TMessage", + "@Forms@TCustomDockForm@DoAddDockClient$qqrp17Controls@TControlrx11Types@TRect", + "@Forms@TCustomDockForm@DoRemoveDockClient$qqrp17Controls@TControl", + "@Forms@TCustomDockForm@GetSiteInfo$qqrp17Controls@TControlr11Types@TRectrx12Types@TPointro", + "@Forms@TCustomDockForm@Loaded$qqrv", + "@Forms@TCustomDockForm@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Forms@TCustomDockForm@WMNCLButtonDown$qqrr24Messages@TWMNCHitMessage", + "@Forms@TCustomForm@", + "@Forms@TCustomForm@$bctr$qqrp18Classes@TComponent", + "@Forms@TCustomForm@$bctr$qqrp18Classes@TComponenti", + "@Forms@TCustomForm@$bdtr$qqrv", + "@Forms@TCustomForm@Activate$qqrv", + "@Forms@TCustomForm@ActiveChanged$qqrv", + "@Forms@TCustomForm@AfterConstruction$qqrv", + "@Forms@TCustomForm@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Forms@TCustomForm@BeforeDestruction$qqrv", + "@Forms@TCustomForm@BeginAutoDrag$qqrv", + "@Forms@TCustomForm@CMActionExecute$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMActionUpdate$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMActivate$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@CMAppSysCommand$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMColorChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMDeactivate$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@CMDialogKey$qqrr15Messages@TWMKey", + "@Forms@TCustomForm@CMFontChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMIconChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMIsShortCut$qqrr15Messages@TWMKey", + "@Forms@TCustomForm@CMMenuChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMParentBiDiModeChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMParentFontChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMRelease$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMShowingChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMTextChanged$qqrr17Messages@TMessage", + "@Forms@TCustomForm@CMUIActivate$qqrpv", + "@Forms@TCustomForm@ChangeScale$qqrii", + "@Forms@TCustomForm@ClientWndProc$qqrr17Messages@TMessage", + "@Forms@TCustomForm@Close$qqrv", + "@Forms@TCustomForm@CloseModal$qqrv", + "@Forms@TCustomForm@CloseQuery$qqrv", + "@Forms@TCustomForm@CreateParams$qqrr22Controls@TCreateParams", + "@Forms@TCustomForm@CreateWindowHandle$qqrrx22Controls@TCreateParams", + "@Forms@TCustomForm@CreateWnd$qqrv", + "@Forms@TCustomForm@Deactivate$qqrv", + "@Forms@TCustomForm@DefaultHandler$qqrpv", + "@Forms@TCustomForm@DefineProperties$qqrp14Classes@TFiler", + "@Forms@TCustomForm@DefocusControl$qqrp20Controls@TWinControlo", + "@Forms@TCustomForm@DestroyWindowHandle$qqrv", + "@Forms@TCustomForm@DoClose$qqrr18Forms@TCloseAction", + "@Forms@TCustomForm@DoCreate$qqrv", + "@Forms@TCustomForm@DoDestroy$qqrv", + "@Forms@TCustomForm@DoDock$qqrp20Controls@TWinControlr11Types@TRect", + "@Forms@TCustomForm@DoHide$qqrv", + "@Forms@TCustomForm@DoShow$qqrv", + "@Forms@TCustomForm@Dock$qqrp20Controls@TWinControlrx11Types@TRect", + "@Forms@TCustomForm@FocusControl$qqrp20Controls@TWinControl", + "@Forms@TCustomForm@GetActiveMDIChild$qqrv", + "@Forms@TCustomForm@GetCanvas$qqrv", + "@Forms@TCustomForm@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Forms@TCustomForm@GetClientRect$qqrv", + "@Forms@TCustomForm@GetFloating$qqrv", + "@Forms@TCustomForm@GetFormImage$qqrv", + "@Forms@TCustomForm@GetIconHandle$qqrv", + "@Forms@TCustomForm@GetMDIChildCount$qqrv", + "@Forms@TCustomForm@GetMDIChildren$qqri", + "@Forms@TCustomForm@GetMonitor$qqrv", + "@Forms@TCustomForm@GetPixelsPerInch$qqrv", + "@Forms@TCustomForm@GetScaled$qqrv", + "@Forms@TCustomForm@GetTextHeight$qqrv", + "@Forms@TCustomForm@HandleCreateException$qqrv", + "@Forms@TCustomForm@Hide$qqrv", + "@Forms@TCustomForm@IconChanged$qqrp14System@TObject", + "@Forms@TCustomForm@InitAlphaBlending$qqrr22Controls@TCreateParams", + "@Forms@TCustomForm@IsAutoScrollStored$qqrv", + "@Forms@TCustomForm@IsClientSizeStored$qqrv", + "@Forms@TCustomForm@IsForm$qqrv", + "@Forms@TCustomForm@IsFormSizeStored$qqrv", + "@Forms@TCustomForm@IsIconStored$qqrv", + "@Forms@TCustomForm@IsShortCut$qqrr15Messages@TWMKey", + "@Forms@TCustomForm@Loaded$qqrv", + "@Forms@TCustomForm@MakeFullyVisible$qqrp14Forms@TMonitor", + "@Forms@TCustomForm@MergeMenu$qqro", + "@Forms@TCustomForm@MouseWheelHandler$qqrr17Messages@TMessage", + "@Forms@TCustomForm@NormalColor$qqrv", + "@Forms@TCustomForm@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Forms@TCustomForm@Paint$qqrv", + "@Forms@TCustomForm@PaintWindow$qqrui", + "@Forms@TCustomForm@PaletteChanged$qqro", + "@Forms@TCustomForm@Print$qqrv", + "@Forms@TCustomForm@QueryInterface$qqsrx5_GUIDpv", + "@Forms@TCustomForm@ReadIgnoreFontProperty$qqrp15Classes@TReader", + "@Forms@TCustomForm@ReadState$qqrp15Classes@TReader", + "@Forms@TCustomForm@ReadTextHeight$qqrp15Classes@TReader", + "@Forms@TCustomForm@RefreshMDIMenu$qqrv", + "@Forms@TCustomForm@Release$qqrv", + "@Forms@TCustomForm@RequestAlign$qqrv", + "@Forms@TCustomForm@Resizing$qqr18Forms@TWindowState", + "@Forms@TCustomForm@SendCancelMode$qqrp17Controls@TControl", + "@Forms@TCustomForm@SetActive$qqro", + "@Forms@TCustomForm@SetActiveControl$qqrp20Controls@TWinControl", + "@Forms@TCustomForm@SetAlphaBlend$qqrxo", + "@Forms@TCustomForm@SetAlphaBlendValue$qqrxuc", + "@Forms@TCustomForm@SetBorderIcons$qqr45System@%Set$t17Forms@TBorderIcon$iuc$0$iuc$3%", + "@Forms@TCustomForm@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Forms@TCustomForm@SetChildOrder$qqrp18Classes@TComponenti", + "@Forms@TCustomForm@SetClientHeight$qqri", + "@Forms@TCustomForm@SetClientWidth$qqri", + "@Forms@TCustomForm@SetDesigner$qqr47System@%DelphiInterface$t19Forms@IDesignerHook%", + "@Forms@TCustomForm@SetFocus$qqrv", + "@Forms@TCustomForm@SetFocusedControl$qqrp20Controls@TWinControl", + "@Forms@TCustomForm@SetFormStyle$qqr16Forms@TFormStyle", + "@Forms@TCustomForm@SetIcon$qqrp14Graphics@TIcon", + "@Forms@TCustomForm@SetLayeredAttribs$qqrv", + "@Forms@TCustomForm@SetMenu$qqrp15Menus@TMainMenu", + "@Forms@TCustomForm@SetObjectMenuItem$qqrp15Menus@TMenuItem", + "@Forms@TCustomForm@SetParent$qqrp20Controls@TWinControl", + "@Forms@TCustomForm@SetParentBiDiMode$qqro", + "@Forms@TCustomForm@SetPixelsPerInch$qqri", + "@Forms@TCustomForm@SetPosition$qqr15Forms@TPosition", + "@Forms@TCustomForm@SetScaled$qqro", + "@Forms@TCustomForm@SetTransparentColor$qqrxo", + "@Forms@TCustomForm@SetTransparentColorValue$qqrx15Graphics@TColor", + "@Forms@TCustomForm@SetVisible$qqro", + "@Forms@TCustomForm@SetWindowFocus$qqrv", + "@Forms@TCustomForm@SetWindowMenu$qqrp15Menus@TMenuItem", + "@Forms@TCustomForm@SetWindowState$qqr18Forms@TWindowState", + "@Forms@TCustomForm@SetWindowToMonitor$qqrv", + "@Forms@TCustomForm@Show$qqrv", + "@Forms@TCustomForm@ShowModal$qqrv", + "@Forms@TCustomForm@UpdateActions$qqrv", + "@Forms@TCustomForm@UpdateWindowState$qqrv", + "@Forms@TCustomForm@ValidateRename$qqrp18Classes@TComponentx17System@AnsiStringt2", + "@Forms@TCustomForm@VisibleChanging$qqrv", + "@Forms@TCustomForm@WMActivate$qqrr20Messages@TWMActivate", + "@Forms@TCustomForm@WMClose$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@WMCommand$qqrr19Messages@TWMCommand", + "@Forms@TCustomForm@WMDestroy$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@WMEnterMenuLoop$qqrr17Messages@TMessage", + "@Forms@TCustomForm@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Forms@TCustomForm@WMGetMinMaxInfo$qqrr25Messages@TWMGetMinMaxInfo", + "@Forms@TCustomForm@WMHelp$qqrr16Messages@TWMHelp", + "@Forms@TCustomForm@WMIconEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Forms@TCustomForm@WMInitMenuPopup$qqrr25Messages@TWMInitMenuPopup", + "@Forms@TCustomForm@WMMDIActivate$qqrr23Messages@TWMMDIActivate", + "@Forms@TCustomForm@WMMenuChar$qqrr20Messages@TWMMenuChar", + "@Forms@TCustomForm@WMMenuSelect$qqrr22Messages@TWMMenuSelect", + "@Forms@TCustomForm@WMNCCreate$qqrr20Messages@TWMNCCreate", + "@Forms@TCustomForm@WMNCLButtonDown$qqrr24Messages@TWMNCHitMessage", + "@Forms@TCustomForm@WMNextDlgCtl$qqrr22Messages@TWMNextDlgCtl", + "@Forms@TCustomForm@WMPaint$qqrr17Messages@TWMPaint", + "@Forms@TCustomForm@WMQueryDragIcon$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@WMQueryEndSession$qqrr27Messages@TWMQueryEndSession", + "@Forms@TCustomForm@WMSettingChange$qqrr17Messages@TMessage", + "@Forms@TCustomForm@WMShowWindow$qqrr22Messages@TWMShowWindow", + "@Forms@TCustomForm@WMSysCommand$qqrr22Messages@TWMSysCommand", + "@Forms@TCustomForm@WMWindowPosChanging$qqrr24Messages@TWMWindowPosMsg", + "@Forms@TCustomForm@WantChildKey$qqrp17Controls@TControlr17Messages@TMessage", + "@Forms@TCustomForm@WndProc$qqrr17Messages@TMessage", + "@Forms@TCustomForm@WritePixelsPerInch$qqrp15Classes@TWriter", + "@Forms@TCustomForm@WriteTextHeight$qqrp15Classes@TWriter", + "@Forms@TCustomFrame@", + "@Forms@TCustomFrame@$bctr$qqrp18Classes@TComponent", + "@Forms@TCustomFrame@AddActionList$qqrp26Actnlist@TCustomActionList", + "@Forms@TCustomFrame@CreateParams$qqrr22Controls@TCreateParams", + "@Forms@TCustomFrame@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Forms@TCustomFrame@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Forms@TCustomFrame@RemoveActionList$qqrp26Actnlist@TCustomActionList", + "@Forms@TCustomFrame@SetParent$qqrp20Controls@TWinControl", + "@Forms@TForm@", + "@Forms@TForm@ArrangeIcons$qqrv", + "@Forms@TForm@Cascade$qqrv", + "@Forms@TForm@Next$qqrv", + "@Forms@TForm@Previous$qqrv", + "@Forms@TForm@Tile$qqrv", + "@Forms@TFrame@", + "@Forms@TMonitor@", + "@Forms@TMonitor@GetBoundsRect$qqrv", + "@Forms@TMonitor@GetHeight$qqrv", + "@Forms@TMonitor@GetLeft$qqrv", + "@Forms@TMonitor@GetPrimary$qqrv", + "@Forms@TMonitor@GetTop$qqrv", + "@Forms@TMonitor@GetWidth$qqrv", + "@Forms@TMonitor@GetWorkareaRect$qqrv", + "@Forms@TScreen@", + "@Forms@TScreen@$bctr$qqrp18Classes@TComponent", + "@Forms@TScreen@$bdtr$qqrv", + "@Forms@TScreen@AddDataModule$qqrp19Classes@TDataModule", + "@Forms@TScreen@AddForm$qqrp17Forms@TCustomForm", + "@Forms@TScreen@AlignForm$qqrp17Forms@TCustomForm", + "@Forms@TScreen@AlignForms$qqrp17Forms@TCustomFormr11Types@TRect", + "@Forms@TScreen@CreateCursors$qqrv", + "@Forms@TScreen@DeleteCursor$qqri", + "@Forms@TScreen@DestroyCursors$qqrv", + "@Forms@TScreen@DisableAlign$qqrv", + "@Forms@TScreen@EnableAlign$qqrv", + "@Forms@TScreen@FindMonitor$qqri", + "@Forms@TScreen@GetCursors$qqri", + "@Forms@TScreen@GetCustomFormCount$qqrv", + "@Forms@TScreen@GetCustomForms$qqri", + "@Forms@TScreen@GetDataModule$qqri", + "@Forms@TScreen@GetDataModuleCount$qqrv", + "@Forms@TScreen@GetDefaultIME$qqrv", + "@Forms@TScreen@GetDesktopHeight$qqrv", + "@Forms@TScreen@GetDesktopLeft$qqrv", + "@Forms@TScreen@GetDesktopRect$qqrv", + "@Forms@TScreen@GetDesktopTop$qqrv", + "@Forms@TScreen@GetDesktopWidth$qqrv", + "@Forms@TScreen@GetFonts$qqrv", + "@Forms@TScreen@GetForm$qqri", + "@Forms@TScreen@GetFormCount$qqrv", + "@Forms@TScreen@GetHeight$qqrv", + "@Forms@TScreen@GetImes$qqrv", + "@Forms@TScreen@GetMetricSettings$qqrv", + "@Forms@TScreen@GetMonitor$qqri", + "@Forms@TScreen@GetMonitorCount$qqrv", + "@Forms@TScreen@GetWidth$qqrv", + "@Forms@TScreen@GetWorkAreaHeight$qqrv", + "@Forms@TScreen@GetWorkAreaLeft$qqrv", + "@Forms@TScreen@GetWorkAreaRect$qqrv", + "@Forms@TScreen@GetWorkAreaTop$qqrv", + "@Forms@TScreen@GetWorkAreaWidth$qqrv", + "@Forms@TScreen@IconFontChanged$qqrp14System@TObject", + "@Forms@TScreen@InsertCursor$qqriui", + "@Forms@TScreen@MonitorFromPoint$qqrrx12Types@TPoint23Forms@TMonitorDefaultTo", + "@Forms@TScreen@MonitorFromRect$qqrrx11Types@TRect23Forms@TMonitorDefaultTo", + "@Forms@TScreen@MonitorFromWindow$qqrxui23Forms@TMonitorDefaultTo", + "@Forms@TScreen@Realign$qqrv", + "@Forms@TScreen@RemoveDataModule$qqrp19Classes@TDataModule", + "@Forms@TScreen@RemoveForm$qqrp17Forms@TCustomForm", + "@Forms@TScreen@ResetFonts$qqrv", + "@Forms@TScreen@SetCursor$qqr16Controls@TCursor", + "@Forms@TScreen@SetCursors$qqriui", + "@Forms@TScreen@SetHintFont$qqrp14Graphics@TFont", + "@Forms@TScreen@SetIconFont$qqrp14Graphics@TFont", + "@Forms@TScreen@SetMenuFont$qqrp14Graphics@TFont", + "@Forms@TScreen@UpdateLastActive$qqrv", + "@Forms@TScrollBox@", + "@Forms@TScrollBox@$bctr$qqrp18Classes@TComponent", + "@Forms@TScrollBox@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Forms@TScrollBox@CreateParams$qqrr22Controls@TCreateParams", + "@Forms@TScrollBox@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Forms@TScrollBox@WMNCHitTest$qqrr17Messages@TMessage", + "@Forms@TScrollingWinControl@", + "@Forms@TScrollingWinControl@$bctr$qqrp18Classes@TComponent", + "@Forms@TScrollingWinControl@$bdtr$qqrv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Forms@TScrollingWinControl@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Forms@TScrollingWinControl@AutoScrollEnabled$qqrv", + "@Forms@TScrollingWinControl@AutoScrollInView$qqrp17Controls@TControl", + "@Forms@TScrollingWinControl@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Forms@TScrollingWinControl@CalcAutoRange$qqrv", + "@Forms@TScrollingWinControl@ChangeScale$qqrii", + "@Forms@TScrollingWinControl@CreateParams$qqrr22Controls@TCreateParams", + "@Forms@TScrollingWinControl@CreateWnd$qqrv", + "@Forms@TScrollingWinControl@DisableAutoRange$qqrv", + "@Forms@TScrollingWinControl@DoFlipChildren$qqrv", + "@Forms@TScrollingWinControl@EnableAutoRange$qqrv", + "@Forms@TScrollingWinControl@Resizing$qqr18Forms@TWindowState", + "@Forms@TScrollingWinControl@ScaleScrollBars$qqrii", + "@Forms@TScrollingWinControl@ScrollInView$qqrp17Controls@TControl", + "@Forms@TScrollingWinControl@SetAutoScroll$qqro", + "@Forms@TScrollingWinControl@SetHorzScrollBar$qqrp23Forms@TControlScrollBar", + "@Forms@TScrollingWinControl@SetVertScrollBar$qqrp23Forms@TControlScrollBar", + "@Forms@TScrollingWinControl@UpdateScrollBars$qqrv", + "@Forms@TScrollingWinControl@WMHScroll$qqrr18Messages@TWMScroll", + "@Forms@TScrollingWinControl@WMSize$qqrr16Messages@TWMSize", + "@Forms@TScrollingWinControl@WMVScroll$qqrr18Messages@TWMScroll", + "@Forms@ValidParentForm$qqrp17Controls@TControl", + "@Forms@initialization$qqrv", + "@GetPackageInfoTable", + "@Graphics@AllocPatternBitmap$qqr15Graphics@TColort1", + "@Graphics@BytesPerScanline$qqriii", + "@Graphics@CharsetToIdent$qqrir17System@AnsiString", + "@Graphics@ColorToIdent$qqrir17System@AnsiString", + "@Graphics@ColorToRGB$qqr15Graphics@TColor", + "@Graphics@ColorToString$qqr15Graphics@TColor", + "@Graphics@CopyPalette$qqrui", + "@Graphics@CreateGrayMappedBmp$qqrui", + "@Graphics@CreateGrayMappedRes$qqruipc", + "@Graphics@CreateMappedBmp$qqruipx15Graphics@TColorxit2xi", + "@Graphics@CreateMappedRes$qqruipcpx15Graphics@TColorxit3xi", + "@Graphics@DDBsOnly", + "@Graphics@DefFontData", + "@Graphics@EInvalidGraphic@", + "@Graphics@EInvalidGraphicOperation@", + "@Graphics@Finalization$qqrv", + "@Graphics@FreeMemoryContexts$qqrv", + "@Graphics@GetCharsetValues$qqrynpqqrx17System@AnsiString$v", + "@Graphics@GetColorValues$qqrynpqqrx17System@AnsiString$v", + "@Graphics@GetDIB$qqruiuipvt3", + "@Graphics@GetDIBSizes$qqruiruit2", + "@Graphics@GetDefFontCharSet$qqrv", + "@Graphics@GraphicExtension$qqrp17System@TMetaClass", + "@Graphics@GraphicFileMask$qqrp17System@TMetaClass", + "@Graphics@GraphicFilter$qqrp17System@TMetaClass", + "@Graphics@IdentToCharset$qqrx17System@AnsiStringri", + "@Graphics@IdentToColor$qqrx17System@AnsiStringri", + "@Graphics@PaletteChanged$qqrv", + "@Graphics@StringToColor$qqrx17System@AnsiString", + "@Graphics@SystemPalette16", + "@Graphics@TBitmap@", + "@Graphics@TBitmap@$bctr$qqrv", + "@Graphics@TBitmap@$bdtr$qqrv", + "@Graphics@TBitmap@Assign$qqrp19Classes@TPersistent", + "@Graphics@TBitmap@Changed$qqrp14System@TObject", + "@Graphics@TBitmap@Changing$qqrp14System@TObject", + "@Graphics@TBitmap@CopyImage$qqruiuirx13tagDIBSECTION", + "@Graphics@TBitmap@DIBNeeded$qqrv", + "@Graphics@TBitmap@Dormant$qqrv", + "@Graphics@TBitmap@Draw$qqrp16Graphics@TCanvasrx11Types@TRect", + "@Graphics@TBitmap@FreeContext$qqrv", + "@Graphics@TBitmap@FreeImage$qqrv", + "@Graphics@TBitmap@GetCanvas$qqrv", + "@Graphics@TBitmap@GetEmpty$qqrv", + "@Graphics@TBitmap@GetHandle$qqrv", + "@Graphics@TBitmap@GetHandleType$qqrv", + "@Graphics@TBitmap@GetHeight$qqrv", + "@Graphics@TBitmap@GetMaskHandle$qqrv", + "@Graphics@TBitmap@GetMonochrome$qqrv", + "@Graphics@TBitmap@GetPalette$qqrv", + "@Graphics@TBitmap@GetPixelFormat$qqrv", + "@Graphics@TBitmap@GetScanline$qqri", + "@Graphics@TBitmap@GetTransparentColor$qqrv", + "@Graphics@TBitmap@GetWidth$qqrv", + "@Graphics@TBitmap@HandleAllocated$qqrv", + "@Graphics@TBitmap@HandleNeeded$qqrv", + "@Graphics@TBitmap@LoadFromClipboardFormat$qqrusuiui", + "@Graphics@TBitmap@LoadFromResourceID$qqruii", + "@Graphics@TBitmap@LoadFromResourceName$qqruix17System@AnsiString", + "@Graphics@TBitmap@LoadFromStream$qqrp15Classes@TStream", + "@Graphics@TBitmap@Mask$qqr15Graphics@TColor", + "@Graphics@TBitmap@MaskHandleNeeded$qqrv", + "@Graphics@TBitmap@NewImage$qqruiuirx13tagDIBSECTIONop15Classes@TStream", + "@Graphics@TBitmap@PaletteNeeded$qqrv", + "@Graphics@TBitmap@ReadDIB$qqrp15Classes@TStreamuip19tagBITMAPFILEHEADER", + "@Graphics@TBitmap@ReadData$qqrp15Classes@TStream", + "@Graphics@TBitmap@ReadStream$qqrp15Classes@TStreami", + "@Graphics@TBitmap@ReleaseHandle$qqrv", + "@Graphics@TBitmap@ReleaseMaskHandle$qqrv", + "@Graphics@TBitmap@ReleasePalette$qqrv", + "@Graphics@TBitmap@SaveToClipboardFormat$qqrrusruit2", + "@Graphics@TBitmap@SaveToStream$qqrp15Classes@TStream", + "@Graphics@TBitmap@SetHandle$qqrui", + "@Graphics@TBitmap@SetHandleType$qqr26Graphics@TBitmapHandleType", + "@Graphics@TBitmap@SetHeight$qqri", + "@Graphics@TBitmap@SetMaskHandle$qqrui", + "@Graphics@TBitmap@SetMonochrome$qqro", + "@Graphics@TBitmap@SetPalette$qqrui", + "@Graphics@TBitmap@SetPixelFormat$qqr21Graphics@TPixelFormat", + "@Graphics@TBitmap@SetTransparentColor$qqr15Graphics@TColor", + "@Graphics@TBitmap@SetTransparentMode$qqr25Graphics@TTransparentMode", + "@Graphics@TBitmap@SetWidth$qqri", + "@Graphics@TBitmap@TransparentColorStored$qqrv", + "@Graphics@TBitmap@WriteData$qqrp15Classes@TStream", + "@Graphics@TBitmap@WriteStream$qqrp15Classes@TStreamo", + "@Graphics@TBitmapImage@", + "@Graphics@TBitmapImage@$bdtr$qqrv", + "@Graphics@TBitmapImage@FreeHandle$qqrv", + "@Graphics@TBrush@", + "@Graphics@TBrush@$bctr$qqrv", + "@Graphics@TBrush@$bdtr$qqrv", + "@Graphics@TBrush@Assign$qqrp19Classes@TPersistent", + "@Graphics@TBrush@GetBitmap$qqrv", + "@Graphics@TBrush@GetColor$qqrv", + "@Graphics@TBrush@GetData$qqrr19Graphics@TBrushData", + "@Graphics@TBrush@GetHandle$qqrv", + "@Graphics@TBrush@GetStyle$qqrv", + "@Graphics@TBrush@SetBitmap$qqrp16Graphics@TBitmap", + "@Graphics@TBrush@SetColor$qqr15Graphics@TColor", + "@Graphics@TBrush@SetData$qqrrx19Graphics@TBrushData", + "@Graphics@TBrush@SetHandle$qqrui", + "@Graphics@TBrush@SetStyle$qqr20Graphics@TBrushStyle", + "@Graphics@TBrushRecall@", + "@Graphics@TBrushRecall@$bctr$qqrp15Graphics@TBrush", + "@Graphics@TCanvas@", + "@Graphics@TCanvas@$bctr$qqrv", + "@Graphics@TCanvas@$bdtr$qqrv", + "@Graphics@TCanvas@Arc$qqriiiiiiii", + "@Graphics@TCanvas@BrushChanged$qqrp14System@TObject", + "@Graphics@TCanvas@BrushCopy$qqrrx11Types@TRectp16Graphics@TBitmapt115Graphics@TColor", + "@Graphics@TCanvas@Changed$qqrv", + "@Graphics@TCanvas@Changing$qqrv", + "@Graphics@TCanvas@Chord$qqriiiiiiii", + "@Graphics@TCanvas@CopyRect$qqrrx11Types@TRectp16Graphics@TCanvast1", + "@Graphics@TCanvas@CreateBrush$qqrv", + "@Graphics@TCanvas@CreateFont$qqrv", + "@Graphics@TCanvas@CreateHandle$qqrv", + "@Graphics@TCanvas@CreatePen$qqrv", + "@Graphics@TCanvas@DeselectHandles$qqrv", + "@Graphics@TCanvas@Draw$qqriip17Graphics@TGraphic", + "@Graphics@TCanvas@DrawFocusRect$qqrrx11Types@TRect", + "@Graphics@TCanvas@Ellipse$qqriiii", + "@Graphics@TCanvas@Ellipse$qqrrx11Types@TRect", + "@Graphics@TCanvas@FillRect$qqrrx11Types@TRect", + "@Graphics@TCanvas@FloodFill$qqrii15Graphics@TColor19Graphics@TFillStyle", + "@Graphics@TCanvas@FontChanged$qqrp14System@TObject", + "@Graphics@TCanvas@FrameRect$qqrrx11Types@TRect", + "@Graphics@TCanvas@GetCanvasOrientation$qqrv", + "@Graphics@TCanvas@GetClipRect$qqrv", + "@Graphics@TCanvas@GetHandle$qqrv", + "@Graphics@TCanvas@GetPenPos$qqrv", + "@Graphics@TCanvas@GetPixel$qqrii", + "@Graphics@TCanvas@HandleAllocated$qqrv", + "@Graphics@TCanvas@LineTo$qqrii", + "@Graphics@TCanvas@Lock$qqrv", + "@Graphics@TCanvas@MoveTo$qqrii", + "@Graphics@TCanvas@PenChanged$qqrp14System@TObject", + "@Graphics@TCanvas@Pie$qqriiiiiiii", + "@Graphics@TCanvas@PolyBezier$qqrpx12Types@TPointxi", + "@Graphics@TCanvas@PolyBezierTo$qqrpx12Types@TPointxi", + "@Graphics@TCanvas@Polygon$qqrpx12Types@TPointxi", + "@Graphics@TCanvas@Polyline$qqrpx12Types@TPointxi", + "@Graphics@TCanvas@Rectangle$qqriiii", + "@Graphics@TCanvas@Rectangle$qqrrx11Types@TRect", + "@Graphics@TCanvas@Refresh$qqrv", + "@Graphics@TCanvas@RequiredState$qqr50System@%Set$t22Graphics@TCanvasStates$iuc$0$iuc$3%", + "@Graphics@TCanvas@RoundRect$qqriiiiii", + "@Graphics@TCanvas@SetBrush$qqrp15Graphics@TBrush", + "@Graphics@TCanvas@SetFont$qqrp14Graphics@TFont", + "@Graphics@TCanvas@SetHandle$qqrui", + "@Graphics@TCanvas@SetPen$qqrp13Graphics@TPen", + "@Graphics@TCanvas@SetPenPos$qqrrx12Types@TPoint", + "@Graphics@TCanvas@SetPixel$qqrii15Graphics@TColor", + "@Graphics@TCanvas@StretchDraw$qqrrx11Types@TRectp17Graphics@TGraphic", + "@Graphics@TCanvas@TextExtent$qqrx17System@AnsiString", + "@Graphics@TCanvas@TextHeight$qqrx17System@AnsiString", + "@Graphics@TCanvas@TextOut$qqriix17System@AnsiString", + "@Graphics@TCanvas@TextRect$qqrrx11Types@TRectiix17System@AnsiString", + "@Graphics@TCanvas@TextWidth$qqrx17System@AnsiString", + "@Graphics@TCanvas@TryLock$qqrv", + "@Graphics@TCanvas@Unlock$qqrv", + "@Graphics@TFont@", + "@Graphics@TFont@$bctr$qqrv", + "@Graphics@TFont@$bdtr$qqrv", + "@Graphics@TFont@Assign$qqrp19Classes@TPersistent", + "@Graphics@TFont@Changed$qqrv", + "@Graphics@TFont@GetCharset$qqrv", + "@Graphics@TFont@GetData$qqrr18Graphics@TFontData", + "@Graphics@TFont@GetHandle$qqrv", + "@Graphics@TFont@GetHeight$qqrv", + "@Graphics@TFont@GetName$qqrv", + "@Graphics@TFont@GetPitch$qqrv", + "@Graphics@TFont@GetSize$qqrv", + "@Graphics@TFont@GetStyle$qqrv", + "@Graphics@TFont@SetCharset$qqruc", + "@Graphics@TFont@SetColor$qqr15Graphics@TColor", + "@Graphics@TFont@SetData$qqrrx18Graphics@TFontData", + "@Graphics@TFont@SetHandle$qqrui", + "@Graphics@TFont@SetHeight$qqri", + "@Graphics@TFont@SetName$qqrx17System@AnsiString", + "@Graphics@TFont@SetPitch$qqr19Graphics@TFontPitch", + "@Graphics@TFont@SetSize$qqri", + "@Graphics@TFont@SetStyle$qqr47System@%Set$t19Graphics@TFontStyle$iuc$0$iuc$3%", + "@Graphics@TFontRecall@", + "@Graphics@TFontRecall@$bctr$qqrp14Graphics@TFont", + "@Graphics@TGraphic@", + "@Graphics@TGraphic@$bctr$qqrv", + "@Graphics@TGraphic@Changed$qqrp14System@TObject", + "@Graphics@TGraphic@DefineProperties$qqrp14Classes@TFiler", + "@Graphics@TGraphic@Equals$qqrp17Graphics@TGraphic", + "@Graphics@TGraphic@GetPalette$qqrv", + "@Graphics@TGraphic@GetTransparent$qqrv", + "@Graphics@TGraphic@LoadFromFile$qqrx17System@AnsiString", + "@Graphics@TGraphic@Progress$qqrp14System@TObject23Graphics@TProgressStageucorx11Types@TRectx17System@AnsiString", + "@Graphics@TGraphic@ReadData$qqrp15Classes@TStream", + "@Graphics@TGraphic@SaveToFile$qqrx17System@AnsiString", + "@Graphics@TGraphic@SetModified$qqro", + "@Graphics@TGraphic@SetPalette$qqrui", + "@Graphics@TGraphic@SetTransparent$qqro", + "@Graphics@TGraphic@WriteData$qqrp15Classes@TStream", + "@Graphics@TGraphicsObject@", + "@Graphics@TGraphicsObject@Changed$qqrv", + "@Graphics@TGraphicsObject@HandleAllocated$qqrv", + "@Graphics@TGraphicsObject@Lock$qqrv", + "@Graphics@TGraphicsObject@Unlock$qqrv", + "@Graphics@TIcon@", + "@Graphics@TIcon@$bctr$qqrv", + "@Graphics@TIcon@$bdtr$qqrv", + "@Graphics@TIcon@Assign$qqrp19Classes@TPersistent", + "@Graphics@TIcon@Draw$qqrp16Graphics@TCanvasrx11Types@TRect", + "@Graphics@TIcon@GetEmpty$qqrv", + "@Graphics@TIcon@GetHandle$qqrv", + "@Graphics@TIcon@GetHeight$qqrv", + "@Graphics@TIcon@GetWidth$qqrv", + "@Graphics@TIcon@HandleAllocated$qqrv", + "@Graphics@TIcon@HandleNeeded$qqrv", + "@Graphics@TIcon@ImageNeeded$qqrv", + "@Graphics@TIcon@LoadFromClipboardFormat$qqrusuiui", + "@Graphics@TIcon@LoadFromStream$qqrp15Classes@TStream", + "@Graphics@TIcon@NewImage$qqruip21Classes@TMemoryStream", + "@Graphics@TIcon@ReleaseHandle$qqrv", + "@Graphics@TIcon@SaveToClipboardFormat$qqrrusruit2", + "@Graphics@TIcon@SaveToStream$qqrp15Classes@TStream", + "@Graphics@TIcon@SetHandle$qqrui", + "@Graphics@TIcon@SetHeight$qqri", + "@Graphics@TIcon@SetTransparent$qqro", + "@Graphics@TIcon@SetWidth$qqri", + "@Graphics@TIconImage@", + "@Graphics@TIconImage@$bdtr$qqrv", + "@Graphics@TIconImage@FreeHandle$qqrv", + "@Graphics@TMetafile@", + "@Graphics@TMetafile@$bctr$qqrv", + "@Graphics@TMetafile@$bdtr$qqrv", + "@Graphics@TMetafile@Assign$qqrp19Classes@TPersistent", + "@Graphics@TMetafile@Clear$qqrv", + "@Graphics@TMetafile@Draw$qqrp16Graphics@TCanvasrx11Types@TRect", + "@Graphics@TMetafile@GetAuthor$qqrv", + "@Graphics@TMetafile@GetDesc$qqrv", + "@Graphics@TMetafile@GetEmpty$qqrv", + "@Graphics@TMetafile@GetHandle$qqrv", + "@Graphics@TMetafile@GetHeight$qqrv", + "@Graphics@TMetafile@GetInch$qqrv", + "@Graphics@TMetafile@GetMMHeight$qqrv", + "@Graphics@TMetafile@GetMMWidth$qqrv", + "@Graphics@TMetafile@GetPalette$qqrv", + "@Graphics@TMetafile@GetWidth$qqrv", + "@Graphics@TMetafile@HandleAllocated$qqrv", + "@Graphics@TMetafile@LoadFromClipboardFormat$qqrusuiui", + "@Graphics@TMetafile@LoadFromStream$qqrp15Classes@TStream", + "@Graphics@TMetafile@NewImage$qqrv", + "@Graphics@TMetafile@ReadData$qqrp15Classes@TStream", + "@Graphics@TMetafile@ReadEMFStream$qqrp15Classes@TStream", + "@Graphics@TMetafile@ReadWMFStream$qqrp15Classes@TStreami", + "@Graphics@TMetafile@ReleaseHandle$qqrv", + "@Graphics@TMetafile@SaveToClipboardFormat$qqrrusruit2", + "@Graphics@TMetafile@SaveToFile$qqrx17System@AnsiString", + "@Graphics@TMetafile@SaveToStream$qqrp15Classes@TStream", + "@Graphics@TMetafile@SetHandle$qqrui", + "@Graphics@TMetafile@SetHeight$qqri", + "@Graphics@TMetafile@SetInch$qqrus", + "@Graphics@TMetafile@SetMMHeight$qqri", + "@Graphics@TMetafile@SetMMWidth$qqri", + "@Graphics@TMetafile@SetTransparent$qqro", + "@Graphics@TMetafile@SetWidth$qqri", + "@Graphics@TMetafile@TestEMF$qqrp15Classes@TStream", + "@Graphics@TMetafile@UniqueImage$qqrv", + "@Graphics@TMetafile@WriteData$qqrp15Classes@TStream", + "@Graphics@TMetafile@WriteEMFStream$qqrp15Classes@TStream", + "@Graphics@TMetafile@WriteWMFStream$qqrp15Classes@TStream", + "@Graphics@TMetafileCanvas@", + "@Graphics@TMetafileCanvas@$bctr$qqrp18Graphics@TMetafileui", + "@Graphics@TMetafileCanvas@$bctr$qqrp18Graphics@TMetafileuix17System@AnsiStringt3", + "@Graphics@TMetafileCanvas@$bdtr$qqrv", + "@Graphics@TMetafileImage@", + "@Graphics@TMetafileImage@$bdtr$qqrv", + "@Graphics@TMetafileImage@FreeHandle$qqrv", + "@Graphics@TPen@", + "@Graphics@TPen@$bctr$qqrv", + "@Graphics@TPen@$bdtr$qqrv", + "@Graphics@TPen@Assign$qqrp19Classes@TPersistent", + "@Graphics@TPen@GetColor$qqrv", + "@Graphics@TPen@GetData$qqrr17Graphics@TPenData", + "@Graphics@TPen@GetHandle$qqrv", + "@Graphics@TPen@GetStyle$qqrv", + "@Graphics@TPen@GetWidth$qqrv", + "@Graphics@TPen@SetColor$qqr15Graphics@TColor", + "@Graphics@TPen@SetData$qqrrx17Graphics@TPenData", + "@Graphics@TPen@SetHandle$qqrui", + "@Graphics@TPen@SetMode$qqr17Graphics@TPenMode", + "@Graphics@TPen@SetStyle$qqr18Graphics@TPenStyle", + "@Graphics@TPen@SetWidth$qqri", + "@Graphics@TPenRecall@", + "@Graphics@TPenRecall@$bctr$qqrp13Graphics@TPen", + "@Graphics@TPicture@", + "@Graphics@TPicture@$bctr$qqrv", + "@Graphics@TPicture@$bdtr$qqrv", + "@Graphics@TPicture@Assign$qqrp19Classes@TPersistent", + "@Graphics@TPicture@AssignTo$qqrp19Classes@TPersistent", + "@Graphics@TPicture@Changed$qqrp14System@TObject", + "@Graphics@TPicture@DefineProperties$qqrp14Classes@TFiler", + "@Graphics@TPicture@ForceType$qqrp17System@TMetaClass", + "@Graphics@TPicture@GetBitmap$qqrv", + "@Graphics@TPicture@GetHeight$qqrv", + "@Graphics@TPicture@GetIcon$qqrv", + "@Graphics@TPicture@GetMetafile$qqrv", + "@Graphics@TPicture@GetWidth$qqrv", + "@Graphics@TPicture@LoadFromClipboardFormat$qqrusuiui", + "@Graphics@TPicture@LoadFromFile$qqrx17System@AnsiString", + "@Graphics@TPicture@LoadFromStream$qqrp15Classes@TStream", + "@Graphics@TPicture@Progress$qqrp14System@TObject23Graphics@TProgressStageucorx11Types@TRectx17System@AnsiString", + "@Graphics@TPicture@ReadData$qqrp15Classes@TStream", + "@Graphics@TPicture@RegisterClipboardFormat$qqrp17System@TMetaClassust1", + "@Graphics@TPicture@RegisterFileFormat$qqrp17System@TMetaClassx17System@AnsiStringt2t1", + "@Graphics@TPicture@RegisterFileFormatRes$qqrp17System@TMetaClassx17System@AnsiStringit1", + "@Graphics@TPicture@SaveToClipboardFormat$qqrrusruit2", + "@Graphics@TPicture@SaveToFile$qqrx17System@AnsiString", + "@Graphics@TPicture@SaveToStream$qqrp15Classes@TStream", + "@Graphics@TPicture@SetBitmap$qqrp16Graphics@TBitmap", + "@Graphics@TPicture@SetGraphic$qqrp17Graphics@TGraphic", + "@Graphics@TPicture@SetIcon$qqrp14Graphics@TIcon", + "@Graphics@TPicture@SetMetafile$qqrp18Graphics@TMetafile", + "@Graphics@TPicture@SupportsClipboardFormat$qqrp17System@TMetaClassus", + "@Graphics@TPicture@UnregisterGraphicClass$qqrp17System@TMetaClasst1", + "@Graphics@TPicture@WriteData$qqrp15Classes@TStream", + "@Graphics@TSharedImage@", + "@Graphics@TSharedImage@Reference$qqrv", + "@Graphics@TSharedImage@Release$qqrv", + "@Graphics@TransparentStretchBlt$qqruiiiiiuiiiiiuiii", + "@Graphics@initialization$qqrv", + "@Graphutil@ColorAdjustLuma$qqruiii", + "@Graphutil@ColorHLSToRGB$qqrususus", + "@Graphutil@ColorRGBToHLS$qqruirust2t2", + "@Graphutil@DrawArrow$qqrp16Graphics@TCanvas26Graphutil@TScrollDirectionrx12Types@TPointi", + "@Graphutil@DrawCheck$qqrp16Graphics@TCanvasrx12Types@TPointio", + "@Graphutil@DrawChevron$qqrp16Graphics@TCanvas26Graphutil@TScrollDirectionrx12Types@TPointi", + "@Graphutil@Finalization$qqrv", + "@Graphutil@GetHighLightColor$qqrx15Graphics@TColor", + "@Graphutil@GetShadowColor$qqrx15Graphics@TColor", + "@Graphutil@initialization$qqrv", + "@Grids@EInvalidGridOperation@", + "@Grids@Finalization$qqrv", + "@Grids@TCustomDrawGrid@", + "@Grids@TCustomDrawGrid@CellRect$qqrii", + "@Grids@TCustomDrawGrid@ColumnMoved$qqrii", + "@Grids@TCustomDrawGrid@DrawCell$qqriirx11Types@TRect42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Grids@TCustomDrawGrid@GetEditMask$qqrii", + "@Grids@TCustomDrawGrid@GetEditText$qqrii", + "@Grids@TCustomDrawGrid@MouseToCell$qqriirit3", + "@Grids@TCustomDrawGrid@RowMoved$qqrii", + "@Grids@TCustomDrawGrid@SelectCell$qqrii", + "@Grids@TCustomDrawGrid@SetEditText$qqriix17System@AnsiString", + "@Grids@TCustomDrawGrid@TopLeftChanged$qqrv", + "@Grids@TCustomGrid@", + "@Grids@TCustomGrid@$bctr$qqrp18Classes@TComponent", + "@Grids@TCustomGrid@$bdtr$qqrv", + "@Grids@TCustomGrid@AdjustSize$qqriio", + "@Grids@TCustomGrid@BeginColumnDrag$qqrrit1rx12Types@TPoint", + "@Grids@TCustomGrid@BeginRowDrag$qqrrit1rx12Types@TPoint", + "@Grids@TCustomGrid@BoxRect$qqriiii", + "@Grids@TCustomGrid@CMCancelMode$qqrr17Messages@TMessage", + "@Grids@TCustomGrid@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Grids@TCustomGrid@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Grids@TCustomGrid@CMFontChanged$qqrr17Messages@TMessage", + "@Grids@TCustomGrid@CMShowingChanged$qqrr17Messages@TMessage", + "@Grids@TCustomGrid@CMWantSpecialKey$qqrr15Messages@TWMKey", + "@Grids@TCustomGrid@CalcCoordFromPoint$qqriirx19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@CalcDrawInfo$qqrr19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@CalcDrawInfoXY$qqrr19Grids@TGridDrawInfoii", + "@Grids@TCustomGrid@CalcFixedInfo$qqrr19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@CalcMaxTopLeft$qqrrx16Grids@TGridCoordrx19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@CalcSizingState$qqriir16Grids@TGridStaterit4t4r19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@CanEditAcceptKey$qqrc", + "@Grids@TCustomGrid@CanEditModify$qqrv", + "@Grids@TCustomGrid@CanEditShow$qqrv", + "@Grids@TCustomGrid@CanGridAcceptKey$qqrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Grids@TCustomGrid@CancelMode$qqrv", + "@Grids@TCustomGrid@CellRect$qqrii", + "@Grids@TCustomGrid@ChangeGridOrientation$qqro", + "@Grids@TCustomGrid@ChangeSize$qqrii", + "@Grids@TCustomGrid@CheckColumnDrag$qqrrit1rx12Types@TPoint", + "@Grids@TCustomGrid@CheckRowDrag$qqrrit1rx12Types@TPoint", + "@Grids@TCustomGrid@ClampInView$qqrrx16Grids@TGridCoord", + "@Grids@TCustomGrid@ColWidthsChanged$qqrv", + "@Grids@TCustomGrid@ColumnMoved$qqrii", + "@Grids@TCustomGrid@CreateEditor$qqrv", + "@Grids@TCustomGrid@CreateParams$qqrr22Controls@TCreateParams", + "@Grids@TCustomGrid@DefineProperties$qqrp14Classes@TFiler", + "@Grids@TCustomGrid@DeleteColumn$qqri", + "@Grids@TCustomGrid@DeleteRow$qqri", + "@Grids@TCustomGrid@DoExit$qqrv", + "@Grids@TCustomGrid@DoMouseWheelDown$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%rx12Types@TPoint", + "@Grids@TCustomGrid@DoMouseWheelUp$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%rx12Types@TPoint", + "@Grids@TCustomGrid@DrawMove$qqrv", + "@Grids@TCustomGrid@DrawSizingLine$qqrrx19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@EndColumnDrag$qqrrit1rx12Types@TPoint", + "@Grids@TCustomGrid@EndRowDrag$qqrrit1rx12Types@TPoint", + "@Grids@TCustomGrid@FocusCell$qqriio", + "@Grids@TCustomGrid@GetColWidths$qqri", + "@Grids@TCustomGrid@GetEditLimit$qqrv", + "@Grids@TCustomGrid@GetEditMask$qqrii", + "@Grids@TCustomGrid@GetEditStyle$qqrii", + "@Grids@TCustomGrid@GetEditText$qqrii", + "@Grids@TCustomGrid@GetGridHeight$qqrv", + "@Grids@TCustomGrid@GetGridWidth$qqrv", + "@Grids@TCustomGrid@GetRowHeights$qqri", + "@Grids@TCustomGrid@GetSelection$qqrv", + "@Grids@TCustomGrid@GetTabStops$qqri", + "@Grids@TCustomGrid@GetVisibleColCount$qqrv", + "@Grids@TCustomGrid@GetVisibleRowCount$qqrv", + "@Grids@TCustomGrid@GridRectToScreenRect$qqrrx15Grids@TGridRectr11Types@TRecto", + "@Grids@TCustomGrid@HideEdit$qqrv", + "@Grids@TCustomGrid@HideEditor$qqrv", + "@Grids@TCustomGrid@Initialize$qqrv", + "@Grids@TCustomGrid@InvalidateCell$qqrii", + "@Grids@TCustomGrid@InvalidateCol$qqri", + "@Grids@TCustomGrid@InvalidateEditor$qqrv", + "@Grids@TCustomGrid@InvalidateGrid$qqrv", + "@Grids@TCustomGrid@InvalidateRect$qqrrx15Grids@TGridRect", + "@Grids@TCustomGrid@InvalidateRow$qqri", + "@Grids@TCustomGrid@IsActiveControl$qqrv", + "@Grids@TCustomGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Grids@TCustomGrid@KeyPress$qqrrc", + "@Grids@TCustomGrid@ModifyScrollBar$qqruiuiuio", + "@Grids@TCustomGrid@MouseCoord$qqrii", + "@Grids@TCustomGrid@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TCustomGrid@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TCustomGrid@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TCustomGrid@MoveAdjust$qqrriii", + "@Grids@TCustomGrid@MoveAnchor$qqrrx16Grids@TGridCoord", + "@Grids@TCustomGrid@MoveAndScroll$qqriir19Grids@TGridDrawInfor23Grids@TGridAxisDrawInfoirx12Types@TPoint", + "@Grids@TCustomGrid@MoveColRow$qqriioo", + "@Grids@TCustomGrid@MoveColumn$qqrii", + "@Grids@TCustomGrid@MoveCurrent$qqriioo", + "@Grids@TCustomGrid@MoveRow$qqrii", + "@Grids@TCustomGrid@MoveTopLeft$qqrii", + "@Grids@TCustomGrid@Paint$qqrv", + "@Grids@TCustomGrid@ReadColWidths$qqrp15Classes@TReader", + "@Grids@TCustomGrid@ReadRowHeights$qqrp15Classes@TReader", + "@Grids@TCustomGrid@ResizeCol$qqriii", + "@Grids@TCustomGrid@ResizeRow$qqriii", + "@Grids@TCustomGrid@RowHeightsChanged$qqrv", + "@Grids@TCustomGrid@RowMoved$qqrii", + "@Grids@TCustomGrid@ScrollData$qqrii", + "@Grids@TCustomGrid@ScrollDataInfo$qqriir19Grids@TGridDrawInfo", + "@Grids@TCustomGrid@SelectCell$qqrii", + "@Grids@TCustomGrid@SelectionMoved$qqrrx15Grids@TGridRect", + "@Grids@TCustomGrid@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Grids@TCustomGrid@SetCol$qqri", + "@Grids@TCustomGrid@SetColCount$qqri", + "@Grids@TCustomGrid@SetColWidths$qqrii", + "@Grids@TCustomGrid@SetDefaultColWidth$qqri", + "@Grids@TCustomGrid@SetDefaultRowHeight$qqri", + "@Grids@TCustomGrid@SetEditText$qqriix17System@AnsiString", + "@Grids@TCustomGrid@SetEditorMode$qqro", + "@Grids@TCustomGrid@SetFixedColor$qqr15Graphics@TColor", + "@Grids@TCustomGrid@SetFixedCols$qqri", + "@Grids@TCustomGrid@SetFixedRows$qqri", + "@Grids@TCustomGrid@SetGridLineWidth$qqri", + "@Grids@TCustomGrid@SetLeftCol$qqri", + "@Grids@TCustomGrid@SetOptions$qqr46System@%Set$t17Grids@TGridOption$iuc$0$iuc$14%", + "@Grids@TCustomGrid@SetRow$qqri", + "@Grids@TCustomGrid@SetRowCount$qqri", + "@Grids@TCustomGrid@SetRowHeights$qqrii", + "@Grids@TCustomGrid@SetScrollBars$qqr21Stdctrls@TScrollStyle", + "@Grids@TCustomGrid@SetSelection$qqrrx15Grids@TGridRect", + "@Grids@TCustomGrid@SetTabStops$qqrio", + "@Grids@TCustomGrid@SetTopRow$qqri", + "@Grids@TCustomGrid@ShowEditor$qqrv", + "@Grids@TCustomGrid@ShowEditorChar$qqrc", + "@Grids@TCustomGrid@SizeChanged$qqrii", + "@Grids@TCustomGrid@Sizing$qqrii", + "@Grids@TCustomGrid@TimedScroll$qqr42System@%Set$t14Grids@Grids__4$iuc$0$iuc$3%", + "@Grids@TCustomGrid@TopLeftChanged$qqrv", + "@Grids@TCustomGrid@TopLeftMoved$qqrrx16Grids@TGridCoord", + "@Grids@TCustomGrid@UpdateDesigner$qqrv", + "@Grids@TCustomGrid@UpdateEdit$qqrv", + "@Grids@TCustomGrid@UpdateScrollPos$qqrv", + "@Grids@TCustomGrid@UpdateScrollRange$qqrv", + "@Grids@TCustomGrid@UpdateText$qqrv", + "@Grids@TCustomGrid@WMCancelMode$qqrr20Messages@TWMNoParams", + "@Grids@TCustomGrid@WMChar$qqrr15Messages@TWMKey", + "@Grids@TCustomGrid@WMCommand$qqrr19Messages@TWMCommand", + "@Grids@TCustomGrid@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Grids@TCustomGrid@WMHScroll$qqrr18Messages@TWMScroll", + "@Grids@TCustomGrid@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Grids@TCustomGrid@WMLButtonDown$qqrr17Messages@TMessage", + "@Grids@TCustomGrid@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Grids@TCustomGrid@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Grids@TCustomGrid@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Grids@TCustomGrid@WMSize$qqrr16Messages@TWMSize", + "@Grids@TCustomGrid@WMTimer$qqrr17Messages@TWMTimer", + "@Grids@TCustomGrid@WMVScroll$qqrr18Messages@TWMScroll", + "@Grids@TCustomGrid@WriteColWidths$qqrp15Classes@TWriter", + "@Grids@TCustomGrid@WriteRowHeights$qqrp15Classes@TWriter", + "@Grids@TDrawGrid@", + "@Grids@TInplaceEdit@", + "@Grids@TInplaceEdit@$bctr$qqrp18Classes@TComponent", + "@Grids@TInplaceEdit@BoundsChanged$qqrv", + "@Grids@TInplaceEdit@CMShowingChanged$qqrr17Messages@TMessage", + "@Grids@TInplaceEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Grids@TInplaceEdit@DblClick$qqrv", + "@Grids@TInplaceEdit@Deselect$qqrv", + "@Grids@TInplaceEdit@DoMouseWheel$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%irx12Types@TPoint", + "@Grids@TInplaceEdit@EditCanModify$qqrv", + "@Grids@TInplaceEdit@Hide$qqrv", + "@Grids@TInplaceEdit@InternalMove$qqrrx11Types@TRecto", + "@Grids@TInplaceEdit@Invalidate$qqrv", + "@Grids@TInplaceEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Grids@TInplaceEdit@KeyPress$qqrrc", + "@Grids@TInplaceEdit@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Grids@TInplaceEdit@Move$qqrrx11Types@TRect", + "@Grids@TInplaceEdit@PosEqual$qqrrx11Types@TRect", + "@Grids@TInplaceEdit@SetFocus$qqrv", + "@Grids@TInplaceEdit@SetGrid$qqrp17Grids@TCustomGrid", + "@Grids@TInplaceEdit@UpdateContents$qqrv", + "@Grids@TInplaceEdit@UpdateLoc$qqrrx11Types@TRect", + "@Grids@TInplaceEdit@Visible$qqrv", + "@Grids@TInplaceEdit@WMClear$qqrpv", + "@Grids@TInplaceEdit@WMCut$qqrpv", + "@Grids@TInplaceEdit@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Grids@TInplaceEdit@WMPaste$qqrpv", + "@Grids@TInplaceEdit@WndProc$qqrr17Messages@TMessage", + "@Grids@TInplaceEditList@", + "@Grids@TInplaceEditList@$bctr$qqrp18Classes@TComponent", + "@Grids@TInplaceEditList@BoundsChanged$qqrv", + "@Grids@TInplaceEditList@ButtonRect$qqrv", + "@Grids@TInplaceEditList@CMCancelMode$qqrr22Controls@TCMCancelMode", + "@Grids@TInplaceEditList@CloseUp$qqro", + "@Grids@TInplaceEditList@DblClick$qqrv", + "@Grids@TInplaceEditList@DoDropDownKeys$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Grids@TInplaceEditList@DoEditButtonClick$qqrv", + "@Grids@TInplaceEditList@DoGetPickListItems$qqrv", + "@Grids@TInplaceEditList@DropDown$qqrv", + "@Grids@TInplaceEditList@GetPickList$qqrv", + "@Grids@TInplaceEditList@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Grids@TInplaceEditList@ListMouseUp$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TInplaceEditList@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TInplaceEditList@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TInplaceEditList@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Grids@TInplaceEditList@OverButton$qqrrx12Types@TPoint", + "@Grids@TInplaceEditList@PaintWindow$qqrui", + "@Grids@TInplaceEditList@RestoreContents$qqrv", + "@Grids@TInplaceEditList@StopTracking$qqrv", + "@Grids@TInplaceEditList@TrackButton$qqrii", + "@Grids@TInplaceEditList@UpdateContents$qqrv", + "@Grids@TInplaceEditList@WMCancelMode$qqrr17Messages@TMessage", + "@Grids@TInplaceEditList@WMKillFocus$qqrr17Messages@TMessage", + "@Grids@TInplaceEditList@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Grids@TInplaceEditList@WMPaint$qqrr17Messages@TWMPaint", + "@Grids@TInplaceEditList@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Grids@TInplaceEditList@WndProc$qqrr17Messages@TMessage", + "@Grids@TStringGrid@", + "@Grids@TStringGrid@$bctr$qqrp18Classes@TComponent", + "@Grids@TStringGrid@$bdtr$qqrv", + "@Grids@TStringGrid@ColumnMoved$qqrii", + "@Grids@TStringGrid@DisableEditUpdate$qqrv", + "@Grids@TStringGrid@DrawCell$qqriirx11Types@TRect42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Grids@TStringGrid@EnableEditUpdate$qqrv", + "@Grids@TStringGrid@EnsureColRow$qqrio", + "@Grids@TStringGrid@EnsureDataRow$qqri", + "@Grids@TStringGrid@GetCells$qqrii", + "@Grids@TStringGrid@GetCols$qqri", + "@Grids@TStringGrid@GetEditText$qqrii", + "@Grids@TStringGrid@GetObjects$qqrii", + "@Grids@TStringGrid@GetRows$qqri", + "@Grids@TStringGrid@Initialize$qqrv", + "@Grids@TStringGrid@RowMoved$qqrii", + "@Grids@TStringGrid@SetCells$qqriix17System@AnsiString", + "@Grids@TStringGrid@SetCols$qqrip16Classes@TStrings", + "@Grids@TStringGrid@SetEditText$qqriix17System@AnsiString", + "@Grids@TStringGrid@SetObjects$qqriip14System@TObject", + "@Grids@TStringGrid@SetRows$qqrip16Classes@TStrings", + "@Grids@TStringGrid@SetUpdateState$qqro", + "@Grids@TStringGrid@Update$qqrii", + "@Grids@TStringGridStrings@", + "@Grids@TStringGridStrings@$bctr$qqrp17Grids@TStringGridi", + "@Grids@TStringGridStrings@Add$qqrx17System@AnsiString", + "@Grids@TStringGridStrings@Assign$qqrp19Classes@TPersistent", + "@Grids@TStringGridStrings@CalcXY$qqririt2", + "@Grids@TStringGridStrings@Clear$qqrv", + "@Grids@TStringGridStrings@Delete$qqri", + "@Grids@TStringGridStrings@Get$qqri", + "@Grids@TStringGridStrings@GetCount$qqrv", + "@Grids@TStringGridStrings@GetObject$qqri", + "@Grids@TStringGridStrings@Insert$qqrix17System@AnsiString", + "@Grids@TStringGridStrings@Put$qqrix17System@AnsiString", + "@Grids@TStringGridStrings@PutObject$qqrip14System@TObject", + "@Grids@TStringGridStrings@SetUpdateState$qqro", + "@Grids@initialization$qqrv", + "@Imglist@Finalization$qqrv", + "@Imglist@TChangeLink@", + "@Imglist@TChangeLink@$bdtr$qqrv", + "@Imglist@TChangeLink@Change$qqrv", + "@Imglist@TCustomImageList@", + "@Imglist@TCustomImageList@$bctr$qqrii", + "@Imglist@TCustomImageList@$bctr$qqrp18Classes@TComponent", + "@Imglist@TCustomImageList@$bdtr$qqrv", + "@Imglist@TCustomImageList@Add$qqrp16Graphics@TBitmapt1", + "@Imglist@TCustomImageList@AddIcon$qqrp14Graphics@TIcon", + "@Imglist@TCustomImageList@AddImages$qqrp24Imglist@TCustomImageList", + "@Imglist@TCustomImageList@AddMasked$qqrp16Graphics@TBitmap15Graphics@TColor", + "@Imglist@TCustomImageList@Assign$qqrp19Classes@TPersistent", + "@Imglist@TCustomImageList@AssignTo$qqrp19Classes@TPersistent", + "@Imglist@TCustomImageList@BeginUpdate$qqrv", + "@Imglist@TCustomImageList@Change$qqrv", + "@Imglist@TCustomImageList@CheckImage$qqrp17Graphics@TGraphic", + "@Imglist@TCustomImageList@Clear$qqrv", + "@Imglist@TCustomImageList@CopyImages$qqrui", + "@Imglist@TCustomImageList@CreateImageList$qqrv", + "@Imglist@TCustomImageList@DefineProperties$qqrp14Classes@TFiler", + "@Imglist@TCustomImageList@Delete$qqri", + "@Imglist@TCustomImageList@DoDraw$qqrip16Graphics@TCanvasiiuio", + "@Imglist@TCustomImageList@Draw$qqrp16Graphics@TCanvasiii21Imglist@TDrawingStyle18Imglist@TImageTypeo", + "@Imglist@TCustomImageList@Draw$qqrp16Graphics@TCanvasiiio", + "@Imglist@TCustomImageList@DrawOverlay$qqrp16Graphics@TCanvasiiizc21Imglist@TDrawingStyle18Imglist@TImageTypeo", + "@Imglist@TCustomImageList@DrawOverlay$qqrp16Graphics@TCanvasiiizco", + "@Imglist@TCustomImageList@EndUpdate$qqrv", + "@Imglist@TCustomImageList@Equal$qqrp24Imglist@TCustomImageList", + "@Imglist@TCustomImageList@FileLoad$qqr16Imglist@TResTypex17System@AnsiString15Graphics@TColor", + "@Imglist@TCustomImageList@FreeHandle$qqrv", + "@Imglist@TCustomImageList@GetBitmap$qqrip16Graphics@TBitmap", + "@Imglist@TCustomImageList@GetBitmapHandle$qqrui", + "@Imglist@TCustomImageList@GetBkColor$qqrv", + "@Imglist@TCustomImageList@GetCount$qqrv", + "@Imglist@TCustomImageList@GetHandle$qqrv", + "@Imglist@TCustomImageList@GetHotSpot$qqrv", + "@Imglist@TCustomImageList@GetIcon$qqrip14Graphics@TIcon", + "@Imglist@TCustomImageList@GetIcon$qqrip14Graphics@TIcon21Imglist@TDrawingStyle18Imglist@TImageType", + "@Imglist@TCustomImageList@GetImageBitmap$qqrv", + "@Imglist@TCustomImageList@GetImageHandle$qqrp16Graphics@TBitmapt1", + "@Imglist@TCustomImageList@GetImages$qqrip16Graphics@TBitmapt2", + "@Imglist@TCustomImageList@GetInstRes$qqrui16Imglist@TResTypeuii49System@%Set$t21Imglist@TLoadResource$iuc$0$iuc$5%15Graphics@TColor", + "@Imglist@TCustomImageList@GetInstRes$qqrui16Imglist@TResTypex17System@AnsiStringi49System@%Set$t21Imglist@TLoadResource$iuc$0$iuc$5%15Graphics@TColor", + "@Imglist@TCustomImageList@GetMaskBitmap$qqrv", + "@Imglist@TCustomImageList@GetResource$qqr16Imglist@TResTypex17System@AnsiStringi49System@%Set$t21Imglist@TLoadResource$iuc$0$iuc$5%15Graphics@TColor", + "@Imglist@TCustomImageList@HandleAllocated$qqrv", + "@Imglist@TCustomImageList@HandleNeeded$qqrv", + "@Imglist@TCustomImageList@InitBitmap$qqrv", + "@Imglist@TCustomImageList@Initialize$qqrv", + "@Imglist@TCustomImageList@Insert$qqrip16Graphics@TBitmapt2", + "@Imglist@TCustomImageList@InsertIcon$qqrip14Graphics@TIcon", + "@Imglist@TCustomImageList@InsertImage$qqrip16Graphics@TBitmapt215Graphics@TColor", + "@Imglist@TCustomImageList@InsertMasked$qqrip16Graphics@TBitmap15Graphics@TColor", + "@Imglist@TCustomImageList@InternalGetInstRes$qqrui16Imglist@TResTypepci49System@%Set$t21Imglist@TLoadResource$iuc$0$iuc$5%15Graphics@TColor", + "@Imglist@TCustomImageList@Move$qqrii", + "@Imglist@TCustomImageList@Overlay$qqrizc", + "@Imglist@TCustomImageList@ReadD2Stream$qqrp15Classes@TStream", + "@Imglist@TCustomImageList@ReadD3Stream$qqrp15Classes@TStream", + "@Imglist@TCustomImageList@ReadData$qqrp15Classes@TStream", + "@Imglist@TCustomImageList@RegisterChanges$qqrp19Imglist@TChangeLink", + "@Imglist@TCustomImageList@Replace$qqrip16Graphics@TBitmapt2", + "@Imglist@TCustomImageList@ReplaceIcon$qqrip14Graphics@TIcon", + "@Imglist@TCustomImageList@ReplaceMasked$qqrip16Graphics@TBitmap15Graphics@TColor", + "@Imglist@TCustomImageList@ResInstLoad$qqrui16Imglist@TResTypex17System@AnsiString15Graphics@TColor", + "@Imglist@TCustomImageList@ResourceLoad$qqr16Imglist@TResTypex17System@AnsiString15Graphics@TColor", + "@Imglist@TCustomImageList@SetBkColor$qqr15Graphics@TColor", + "@Imglist@TCustomImageList@SetDrawingStyle$qqr21Imglist@TDrawingStyle", + "@Imglist@TCustomImageList@SetHandle$qqrui", + "@Imglist@TCustomImageList@SetHeight$qqri", + "@Imglist@TCustomImageList@SetNewDimensions$qqrui", + "@Imglist@TCustomImageList@SetWidth$qqri", + "@Imglist@TCustomImageList@UnRegisterChanges$qqrp19Imglist@TChangeLink", + "@Imglist@TCustomImageList@WriteData$qqrp15Classes@TStream", + "@Imglist@initialization$qqrv", + "@Listactns@Finalization$qqrv", + "@Listactns@TCustomListAction@", + "@Listactns@TCustomListAction@$bctr$qqrp18Classes@TComponent", + "@Listactns@TCustomListAction@ExecuteTarget$qqrp14System@TObject", + "@Listactns@TCustomListAction@GetCount$qqrv", + "@Listactns@TCustomListAction@GetString$qqri", + "@Listactns@TCustomListAction@HandlesTarget$qqrp14System@TObject", + "@Listactns@TCustomListAction@Loaded$qqrv", + "@Listactns@TCustomListAction@SetActive$qqrxo", + "@Listactns@TCustomListAction@SetImages$qqrpx24Imglist@TCustomImageList", + "@Listactns@TCustomListAction@SetItemIndex$qqrxi", + "@Listactns@TCustomListAction@SetString$qqrix17System@AnsiString", + "@Listactns@TListActionLink@", + "@Listactns@TListActionLink@AddItem$qqr17System@AnsiStringipv", + "@Listactns@TListActionLink@AddItem$qqrp26Listactns@TListControlItem", + "@Listactns@TListActionLink@IsActiveLinked$qqrv", + "@Listactns@TListActionLink@IsImagesLinked$qqrv", + "@Listactns@TListActionLink@RefreshControl$qqrv", + "@Listactns@TListActionLink@SetAction$qqrp20Classes@TBasicAction", + "@Listactns@TListActionLink@SetActive$qqrxo", + "@Listactns@TListActionLink@SetImages$qqrp24Imglist@TCustomImageList", + "@Listactns@TListActionLink@SetItemIndex$qqrxi", + "@Listactns@TListControlItem@", + "@Listactns@TListControlItem@$bctr$qqrp19Classes@TCollection", + "@Listactns@TListControlItem@Assign$qqrp19Classes@TPersistent", + "@Listactns@TListControlItem@Changed$qqrv", + "@Listactns@TListControlItem@GetDisplayName$qqrv", + "@Listactns@TListControlItem@SetCaption$qqrx17System@AnsiString", + "@Listactns@TListControlItem@SetData$qqrpxv", + "@Listactns@TListControlItem@SetImageIndex$qqrxi", + "@Listactns@TListControlItems@", + "@Listactns@TListControlItems@Add$qqrv", + "@Listactns@TListControlItems@CompareItems$qqrp26Listactns@TListControlItemt1", + "@Listactns@TListControlItems@CustomSort$qqrpqqrp27Listactns@TListControlItemsii$i", + "@Listactns@TListControlItems@ExchangeItems$qqrii", + "@Listactns@TListControlItems@GetListItem$qqrxi", + "@Listactns@TListControlItems@QuickSort$qqriipqqrp27Listactns@TListControlItemsii$i", + "@Listactns@TListControlItems@SetSortType$qqrx28Listactns@TListItemsSortType", + "@Listactns@TListControlItems@Sort$qqrv", + "@Listactns@TStaticListAction@", + "@Listactns@TStaticListAction@$bctr$qqrp18Classes@TComponent", + "@Listactns@TStaticListAction@$bdtr$qqrv", + "@Listactns@TStaticListAction@GetCount$qqrv", + "@Listactns@TStaticListAction@GetItem$qqrxip26Listactns@TListControlItem", + "@Listactns@TStaticListAction@GetItemClass$qqrv", + "@Listactns@TStaticListAction@GetString$qqri", + "@Listactns@TStaticListAction@SetListitems$qqrpx26Listactns@TStaticListItems", + "@Listactns@TStaticListAction@SetString$qqrix17System@AnsiString", + "@Listactns@TStaticListItems@", + "@Listactns@TStaticListItems@Notify$qqrp23Classes@TCollectionItem31Classes@TCollectionNotification", + "@Listactns@TStaticListItems@Update$qqrp23Classes@TCollectionItem", + "@Listactns@TVirtualListAction@", + "@Listactns@TVirtualListAction@GetItem$qqrxir17System@AnsiStringrirpv", + "@Listactns@initialization$qqrv", + "@Mask@EDBEditError@", + "@Mask@Finalization$qqrv", + "@Mask@TCustomMaskEdit@", + "@Mask@TCustomMaskEdit@$bctr$qqrp18Classes@TComponent", + "@Mask@TCustomMaskEdit@AddEditFormat$qqrx17System@AnsiStringo", + "@Mask@TCustomMaskEdit@ArrowKeys$qqrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mask@TCustomMaskEdit@CMEnter$qqrr20Messages@TWMNoParams", + "@Mask@TCustomMaskEdit@CMExit$qqrr20Messages@TWMNoParams", + "@Mask@TCustomMaskEdit@CMTextChanged$qqrr17Messages@TMessage", + "@Mask@TCustomMaskEdit@CMWantSpecialKey$qqrr15Messages@TWMKey", + "@Mask@TCustomMaskEdit@CharKeys$qqrrc", + "@Mask@TCustomMaskEdit@CheckCursor$qqrv", + "@Mask@TCustomMaskEdit@Clear$qqrv", + "@Mask@TCustomMaskEdit@CursorDec$qqri", + "@Mask@TCustomMaskEdit@CursorInc$qqrii", + "@Mask@TCustomMaskEdit@DeleteKeys$qqrus", + "@Mask@TCustomMaskEdit@DeleteSelection$qqrr17System@AnsiStringii", + "@Mask@TCustomMaskEdit@DoInputChar$qqrrci", + "@Mask@TCustomMaskEdit@EditCanModify$qqrv", + "@Mask@TCustomMaskEdit@FindLiteralChar$qqric", + "@Mask@TCustomMaskEdit@GetEditText$qqrv", + "@Mask@TCustomMaskEdit@GetFirstEditChar$qqrv", + "@Mask@TCustomMaskEdit@GetLastEditChar$qqrv", + "@Mask@TCustomMaskEdit@GetMasked$qqrv", + "@Mask@TCustomMaskEdit@GetMaxChars$qqrv", + "@Mask@TCustomMaskEdit@GetMaxLength$qqrv", + "@Mask@TCustomMaskEdit@GetNextEditChar$qqri", + "@Mask@TCustomMaskEdit@GetPriorEditChar$qqri", + "@Mask@TCustomMaskEdit@GetSel$qqrrit1", + "@Mask@TCustomMaskEdit@GetText$qqrv", + "@Mask@TCustomMaskEdit@GetTextLen$qqrv", + "@Mask@TCustomMaskEdit@HomeEndKeys$qqrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mask@TCustomMaskEdit@InputChar$qqrrci", + "@Mask@TCustomMaskEdit@InputString$qqrr17System@AnsiStringx17System@AnsiStringi", + "@Mask@TCustomMaskEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mask@TCustomMaskEdit@KeyPress$qqrrc", + "@Mask@TCustomMaskEdit@KeyUp$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mask@TCustomMaskEdit@ReformatText$qqrx17System@AnsiString", + "@Mask@TCustomMaskEdit@RemoveEditFormat$qqrx17System@AnsiString", + "@Mask@TCustomMaskEdit@Reset$qqrv", + "@Mask@TCustomMaskEdit@SetCursor$qqri", + "@Mask@TCustomMaskEdit@SetEditMask$qqrx17System@AnsiString", + "@Mask@TCustomMaskEdit@SetEditText$qqrx17System@AnsiString", + "@Mask@TCustomMaskEdit@SetMaxLength$qqri", + "@Mask@TCustomMaskEdit@SetSel$qqrii", + "@Mask@TCustomMaskEdit@SetText$qqrx17System@AnsiString", + "@Mask@TCustomMaskEdit@Validate$qqrx17System@AnsiStringri", + "@Mask@TCustomMaskEdit@ValidateEdit$qqrv", + "@Mask@TCustomMaskEdit@ValidateError$qqrv", + "@Mask@TCustomMaskEdit@WMCut$qqrr17Messages@TMessage", + "@Mask@TCustomMaskEdit@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Mask@TCustomMaskEdit@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Mask@TCustomMaskEdit@WMPaste$qqrr17Messages@TMessage", + "@Mask@TCustomMaskEdit@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Mask@TMaskEdit@", + "@Mask@initialization$qqrv", + "@Menus@AnsiSameCaption$qqrx17System@AnsiStringt1", + "@Menus@DrawMenuItem$qqrp15Menus@TMenuItemp16Graphics@TCanvasrx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Menus@EMenuError@", + "@Menus@Finalization$qqrv", + "@Menus@GetHotkey$qqrx17System@AnsiString", + "@Menus@NewItem$qqrx17System@AnsiStringusooynpqqrp14System@TObject$vit1", + "@Menus@NewLine$qqrv", + "@Menus@NewMenu$qqrp18Classes@TComponentx17System@AnsiStringppx15Menus@TMenuItemxi", + "@Menus@NewPopupMenu$qqrp18Classes@TComponentx17System@AnsiString21Menus@TPopupAlignmentoppx15Menus@TMenuItemxi", + "@Menus@NewSubMenu$qqrx17System@AnsiStringit1ppx15Menus@TMenuItemxio", + "@Menus@PopupList", + "@Menus@ShortCut$qqrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Menus@ShortCutItems", + "@Menus@ShortCutToKey$qqrusrusr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Menus@ShortCutToText$qqrus", + "@Menus@StripHotkey$qqrx17System@AnsiString", + "@Menus@TMainMenu@", + "@Menus@TMainMenu@GetHandle$qqrv", + "@Menus@TMainMenu@GetOle2AcceleratorTable$qqrruiripxixi", + "@Menus@TMainMenu@ItemChanged$qqrv", + "@Menus@TMainMenu@MenuChanged$qqrp14System@TObjectp15Menus@TMenuItemo", + "@Menus@TMainMenu@Merge$qqrp15Menus@TMainMenu", + "@Menus@TMainMenu@PopulateOle2Menu$qqruipxixipixi", + "@Menus@TMainMenu@SetAutoMerge$qqro", + "@Menus@TMainMenu@SetOle2MenuHandle$qqrui", + "@Menus@TMainMenu@Unmerge$qqrp15Menus@TMainMenu", + "@Menus@TMenu@", + "@Menus@TMenu@$bctr$qqrp18Classes@TComponent", + "@Menus@TMenu@$bdtr$qqrv", + "@Menus@TMenu@AdjustBiDiBehavior$qqrv", + "@Menus@TMenu@DispatchCommand$qqrus", + "@Menus@TMenu@DispatchPopup$qqrui", + "@Menus@TMenu@DoBiDiModeChanged$qqrv", + "@Menus@TMenu@DoChange$qqrp15Menus@TMenuItemo", + "@Menus@TMenu@DoGetMenuString$qqruiuipciui", + "@Menus@TMenu@FindItem$qqri19Menus@TFindItemKind", + "@Menus@TMenu@GetAutoHotkeys$qqrv", + "@Menus@TMenu@GetAutoLineReduction$qqrv", + "@Menus@TMenu@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Menus@TMenu@GetHandle$qqrv", + "@Menus@TMenu@GetHelpContext$qqrio", + "@Menus@TMenu@ImageListChange$qqrp14System@TObject", + "@Menus@TMenu@IsBiDiModeStored$qqrv", + "@Menus@TMenu@IsOwnerDraw$qqrv", + "@Menus@TMenu@IsRightToLeft$qqrv", + "@Menus@TMenu@IsShortCut$qqrr15Messages@TWMKey", + "@Menus@TMenu@Loaded$qqrv", + "@Menus@TMenu@MenuChanged$qqrp14System@TObjectp15Menus@TMenuItemo", + "@Menus@TMenu@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Menus@TMenu@ParentBiDiModeChanged$qqrp14System@TObject", + "@Menus@TMenu@ParentBiDiModeChanged$qqrv", + "@Menus@TMenu@ProcessMenuChar$qqrr20Messages@TWMMenuChar", + "@Menus@TMenu@SetAutoHotkeys$qqrx23Menus@TMenuItemAutoFlag", + "@Menus@TMenu@SetAutoLineReduction$qqrx23Menus@TMenuItemAutoFlag", + "@Menus@TMenu@SetBiDiMode$qqr17Classes@TBiDiMode", + "@Menus@TMenu@SetChildOrder$qqrp18Classes@TComponenti", + "@Menus@TMenu@SetImages$qqrp24Imglist@TCustomImageList", + "@Menus@TMenu@SetOwnerDraw$qqro", + "@Menus@TMenu@SetParentBiDiMode$qqro", + "@Menus@TMenu@SetWindowHandle$qqrui", + "@Menus@TMenu@UpdateImage$qqrv", + "@Menus@TMenu@UpdateItems$qqrv", + "@Menus@TMenuActionLink@", + "@Menus@TMenuActionLink@AssignClient$qqrp14System@TObject", + "@Menus@TMenuActionLink@IsAutoCheckLinked$qqrv", + "@Menus@TMenuActionLink@IsCaptionLinked$qqrv", + "@Menus@TMenuActionLink@IsCheckedLinked$qqrv", + "@Menus@TMenuActionLink@IsEnabledLinked$qqrv", + "@Menus@TMenuActionLink@IsGroupIndexLinked$qqrv", + "@Menus@TMenuActionLink@IsHelpContextLinked$qqrv", + "@Menus@TMenuActionLink@IsHintLinked$qqrv", + "@Menus@TMenuActionLink@IsImageIndexLinked$qqrv", + "@Menus@TMenuActionLink@IsOnExecuteLinked$qqrv", + "@Menus@TMenuActionLink@IsShortCutLinked$qqrv", + "@Menus@TMenuActionLink@IsVisibleLinked$qqrv", + "@Menus@TMenuActionLink@SetAutoCheck$qqro", + "@Menus@TMenuActionLink@SetCaption$qqrx17System@AnsiString", + "@Menus@TMenuActionLink@SetChecked$qqro", + "@Menus@TMenuActionLink@SetEnabled$qqro", + "@Menus@TMenuActionLink@SetHelpContext$qqri", + "@Menus@TMenuActionLink@SetHint$qqrx17System@AnsiString", + "@Menus@TMenuActionLink@SetImageIndex$qqri", + "@Menus@TMenuActionLink@SetOnExecute$qqrynpqqrp14System@TObject$v", + "@Menus@TMenuActionLink@SetShortCut$qqrus", + "@Menus@TMenuActionLink@SetVisible$qqro", + "@Menus@TMenuItem@", + "@Menus@TMenuItem@$bctr$qqrp18Classes@TComponent", + "@Menus@TMenuItem@$bdtr$qqrv", + "@Menus@TMenuItem@ActionChange$qqrp14System@TObjecto", + "@Menus@TMenuItem@Add$qqrp15Menus@TMenuItem", + "@Menus@TMenuItem@Add$qqrppx15Menus@TMenuItemxi", + "@Menus@TMenuItem@AdvancedDrawItem$qqrp16Graphics@TCanvasrx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%o", + "@Menus@TMenuItem@AppendTo$qqruio", + "@Menus@TMenuItem@AssignTo$qqrp19Classes@TPersistent", + "@Menus@TMenuItem@Clear$qqrv", + "@Menus@TMenuItem@Click$qqrv", + "@Menus@TMenuItem@DefineProperties$qqrp14Classes@TFiler", + "@Menus@TMenuItem@Delete$qqri", + "@Menus@TMenuItem@DoActionChange$qqrp14System@TObject", + "@Menus@TMenuItem@DoDrawText$qqrp16Graphics@TCanvasx17System@AnsiStringr11Types@TRectoi", + "@Menus@TMenuItem@DrawItem$qqrp16Graphics@TCanvasrx11Types@TRecto", + "@Menus@TMenuItem@Find$qqr17System@AnsiString", + "@Menus@TMenuItem@GetAction$qqrv", + "@Menus@TMenuItem@GetActionLinkClass$qqrv", + "@Menus@TMenuItem@GetAutoHotkeys$qqrv", + "@Menus@TMenuItem@GetAutoLineReduction$qqrv", + "@Menus@TMenuItem@GetBitmap$qqrv", + "@Menus@TMenuItem@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Menus@TMenuItem@GetCount$qqrv", + "@Menus@TMenuItem@GetHandle$qqrv", + "@Menus@TMenuItem@GetImageList$qqrv", + "@Menus@TMenuItem@GetItem$qqri", + "@Menus@TMenuItem@GetMenuIndex$qqrv", + "@Menus@TMenuItem@GetParentComponent$qqrv", + "@Menus@TMenuItem@GetParentMenu$qqrv", + "@Menus@TMenuItem@HasParent$qqrv", + "@Menus@TMenuItem@ImageListChange$qqrp14System@TObject", + "@Menus@TMenuItem@IndexOf$qqrp15Menus@TMenuItem", + "@Menus@TMenuItem@InitiateAction$qqrv", + "@Menus@TMenuItem@InitiateActions$qqrv", + "@Menus@TMenuItem@Insert$qqrip15Menus@TMenuItem", + "@Menus@TMenuItem@InsertNewLine$qqrop15Menus@TMenuItem", + "@Menus@TMenuItem@InsertNewLineAfter$qqrp15Menus@TMenuItem", + "@Menus@TMenuItem@InsertNewLineBefore$qqrp15Menus@TMenuItem", + "@Menus@TMenuItem@InternalRethinkHotkeys$qqro", + "@Menus@TMenuItem@InternalRethinkLines$qqro", + "@Menus@TMenuItem@IsCaptionStored$qqrv", + "@Menus@TMenuItem@IsCheckedStored$qqrv", + "@Menus@TMenuItem@IsEnabledStored$qqrv", + "@Menus@TMenuItem@IsHelpContextStored$qqrv", + "@Menus@TMenuItem@IsHintStored$qqrv", + "@Menus@TMenuItem@IsImageIndexStored$qqrv", + "@Menus@TMenuItem@IsLine$qqrv", + "@Menus@TMenuItem@IsOnClickStored$qqrv", + "@Menus@TMenuItem@IsShortCutStored$qqrv", + "@Menus@TMenuItem@IsVisibleStored$qqrv", + "@Menus@TMenuItem@Loaded$qqrv", + "@Menus@TMenuItem@MeasureItem$qqrp16Graphics@TCanvasrit2", + "@Menus@TMenuItem@MenuChanged$qqro", + "@Menus@TMenuItem@MergeWith$qqrp15Menus@TMenuItem", + "@Menus@TMenuItem@NewBottomLine$qqrv", + "@Menus@TMenuItem@NewTopLine$qqrv", + "@Menus@TMenuItem@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Menus@TMenuItem@PopulateMenu$qqrv", + "@Menus@TMenuItem@ReadShortCutText$qqrp15Classes@TReader", + "@Menus@TMenuItem@RebuildHandle$qqrv", + "@Menus@TMenuItem@Remove$qqrp15Menus@TMenuItem", + "@Menus@TMenuItem@RethinkHotkeys$qqrv", + "@Menus@TMenuItem@RethinkLines$qqrv", + "@Menus@TMenuItem@SetAction$qqrp20Classes@TBasicAction", + "@Menus@TMenuItem@SetAutoHotkeys$qqrx23Menus@TMenuItemAutoFlag", + "@Menus@TMenuItem@SetAutoLineReduction$qqrx23Menus@TMenuItemAutoFlag", + "@Menus@TMenuItem@SetBitmap$qqrp16Graphics@TBitmap", + "@Menus@TMenuItem@SetBreak$qqr16Menus@TMenuBreak", + "@Menus@TMenuItem@SetCaption$qqrx17System@AnsiString", + "@Menus@TMenuItem@SetChecked$qqro", + "@Menus@TMenuItem@SetChildOrder$qqrp18Classes@TComponenti", + "@Menus@TMenuItem@SetDefault$qqro", + "@Menus@TMenuItem@SetEnabled$qqro", + "@Menus@TMenuItem@SetGroupIndex$qqruc", + "@Menus@TMenuItem@SetImageIndex$qqri", + "@Menus@TMenuItem@SetMenuIndex$qqri", + "@Menus@TMenuItem@SetParentComponent$qqrp18Classes@TComponent", + "@Menus@TMenuItem@SetRadioItem$qqro", + "@Menus@TMenuItem@SetShortCut$qqrus", + "@Menus@TMenuItem@SetSubMenuImages$qqrp24Imglist@TCustomImageList", + "@Menus@TMenuItem@SetVisible$qqro", + "@Menus@TMenuItem@SubItemChanged$qqrp14System@TObjectp15Menus@TMenuItemo", + "@Menus@TMenuItem@TurnSiblingsOff$qqrv", + "@Menus@TMenuItem@UpdateItems$qqrv", + "@Menus@TMenuItem@VerifyGroupIndex$qqriuc", + "@Menus@TMenuItemStack@", + "@Menus@TMenuItemStack@ClearItem$qqrp15Menus@TMenuItem", + "@Menus@TPopupList@", + "@Menus@TPopupList@Add$qqrp16Menus@TPopupMenu", + "@Menus@TPopupList@MainWndProc$qqrr17Messages@TMessage", + "@Menus@TPopupList@Remove$qqrp16Menus@TPopupMenu", + "@Menus@TPopupList@WndProc$qqrr17Messages@TMessage", + "@Menus@TPopupMenu@", + "@Menus@TPopupMenu@$bctr$qqrp18Classes@TComponent", + "@Menus@TPopupMenu@$bdtr$qqrv", + "@Menus@TPopupMenu@DoPopup$qqrp14System@TObject", + "@Menus@TPopupMenu@GetHelpContext$qqrv", + "@Menus@TPopupMenu@Popup$qqrii", + "@Menus@TPopupMenu@SetBiDiModeFromPopupControl$qqrv", + "@Menus@TPopupMenu@SetHelpContext$qqri", + "@Menus@TPopupMenu@UseRightToLeftAlignment$qqrv", + "@Menus@TextToShortCut$qqr17System@AnsiString", + "@Menus@ValidMenuHotkeys", + "@Menus@initialization$qqrv", + "@Oleconst@Finalization$qqrv", + "@Oleconst@_SBadPropValue", + "@Oleconst@_SCannotActivate", + "@Oleconst@_SCannotBreakLink", + "@Oleconst@_SEmptyContainer", + "@Oleconst@_SInvalidLicense", + "@Oleconst@_SInvalidLinkSource", + "@Oleconst@_SInvalidStreamFormat", + "@Oleconst@_SInvalidVerb", + "@Oleconst@_SLinkProperties", + "@Oleconst@_SLinkedObject", + "@Oleconst@_SNoMethod", + "@Oleconst@_SNoWindowHandle", + "@Oleconst@_SNotLicensed", + "@Oleconst@_SOleError", + "@Oleconst@_SPropDlgCaption", + "@Oleconst@_SVarNotAutoObject", + "@Oleconst@_SVarNotObject", + "@Oleconst@_sNoRunningObject", + "@Oleconst@initialization$qqrv", + "@Olectnrs@DestroyMetaPict$qqrui", + "@Olectnrs@Finalization$qqrv", + "@Olectnrs@TOleContainer@", + "@Olectnrs@TOleContainer@$bctr$qqrp18Classes@TComponent", + "@Olectnrs@TOleContainer@$bdtr$qqrv", + "@Olectnrs@TOleContainer@ActivateMe$qqs44System@%DelphiInterface$t16IOleDocumentView%", + "@Olectnrs@TOleContainer@AdjustBounds$qqrv", + "@Olectnrs@TOleContainer@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Olectnrs@TOleContainer@CMDocWindowActivate$qqrr17Messages@TMessage", + "@Olectnrs@TOleContainer@CMUIDeactivate$qqrr17Messages@TMessage", + "@Olectnrs@TOleContainer@CanInPlaceActivate$qqsv", + "@Olectnrs@TOleContainer@ChangeIconDialog$qqrv", + "@Olectnrs@TOleContainer@Changed$qqrv", + "@Olectnrs@TOleContainer@CheckObject$qqrv", + "@Olectnrs@TOleContainer@Close$qqrv", + "@Olectnrs@TOleContainer@ContextSensitiveHelp$qqsi", + "@Olectnrs@TOleContainer@ConvertObject$qqsirx5_GUID", + "@Olectnrs@TOleContainer@Copy$qqrv", + "@Olectnrs@TOleContainer@CreateAccelTable$qqrv", + "@Olectnrs@TOleContainer@CreateLinkToFile$qqrx17System@AnsiStringo", + "@Olectnrs@TOleContainer@CreateObject$qqrx17System@AnsiStringo", + "@Olectnrs@TOleContainer@CreateObjectFromFile$qqrx17System@AnsiStringo", + "@Olectnrs@TOleContainer@CreateObjectFromInfo$qqrrx20Olectnrs@TCreateInfo", + "@Olectnrs@TOleContainer@CreateParams$qqrr22Controls@TCreateParams", + "@Olectnrs@TOleContainer@CreateStorage$qqrv", + "@Olectnrs@TOleContainer@DblClick$qqrv", + "@Olectnrs@TOleContainer@DeactivateAndUndo$qqsv", + "@Olectnrs@TOleContainer@DefineProperties$qqrp14Classes@TFiler", + "@Olectnrs@TOleContainer@DesignModified$qqrv", + "@Olectnrs@TOleContainer@DestroyAccelTable$qqrv", + "@Olectnrs@TOleContainer@DestroyObject$qqrv", + "@Olectnrs@TOleContainer@DestroyVerbs$qqrv", + "@Olectnrs@TOleContainer@DiscardUndoState$qqsv", + "@Olectnrs@TOleContainer@DoEnter$qqrv", + "@Olectnrs@TOleContainer@DoVerb$qqri", + "@Olectnrs@TOleContainer@GetBorderWidth$qqrv", + "@Olectnrs@TOleContainer@GetCanPaste$qqrv", + "@Olectnrs@TOleContainer@GetContainer$qqsr41System@%DelphiInterface$t13IOleContainer%", + "@Olectnrs@TOleContainer@GetConvertInfo$qqsir5_GUIDrust2rp5_GUIDri", + "@Olectnrs@TOleContainer@GetIconMetaPict$qqrv", + "@Olectnrs@TOleContainer@GetIconic$qqrv", + "@Olectnrs@TOleContainer@GetLinked$qqrv", + "@Olectnrs@TOleContainer@GetMoniker$qqsiir35System@%DelphiInterface$t8IMoniker%", + "@Olectnrs@TOleContainer@GetObjectDataSize$qqrv", + "@Olectnrs@TOleContainer@GetObjectInfo$qqsirirpct3t3t3", + "@Olectnrs@TOleContainer@GetObjectVerbs$qqrv", + "@Olectnrs@TOleContainer@GetOleClassName$qqrv", + "@Olectnrs@TOleContainer@GetOleObject$qqrv", + "@Olectnrs@TOleContainer@GetPopupMenu$qqrv", + "@Olectnrs@TOleContainer@GetPrimaryVerb$qqrv", + "@Olectnrs@TOleContainer@GetSourceDoc$qqrv", + "@Olectnrs@TOleContainer@GetState$qqrv", + "@Olectnrs@TOleContainer@GetViewInfo$qqsiruirit3", + "@Olectnrs@TOleContainer@GetWindow$qqsrui", + "@Olectnrs@TOleContainer@GetWindowContext$qqsr44System@%DelphiInterface$t16IOleInPlaceFrame%r47System@%DelphiInterface$t19IOleInPlaceUIWindow%r11Types@TRectt3r7tagOIFI", + "@Olectnrs@TOleContainer@InitObject$qqrv", + "@Olectnrs@TOleContainer@InsertObjectDialog$qqrv", + "@Olectnrs@TOleContainer@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Olectnrs@TOleContainer@LoadFromFile$qqrx17System@AnsiString", + "@Olectnrs@TOleContainer@LoadFromStream$qqrp15Classes@TStream", + "@Olectnrs@TOleContainer@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Olectnrs@TOleContainer@ObjectMoved$qqrrx11Types@TRect", + "@Olectnrs@TOleContainer@ObjectPropertiesDialog$qqrv", + "@Olectnrs@TOleContainer@OnClose$qqsv", + "@Olectnrs@TOleContainer@OnDataChange$qqsrx12tagFORMATETCrx12tagSTGMEDIUM", + "@Olectnrs@TOleContainer@OnInPlaceActivate$qqsv", + "@Olectnrs@TOleContainer@OnInPlaceDeactivate$qqsv", + "@Olectnrs@TOleContainer@OnPosRectChange$qqsrx11Types@TRect", + "@Olectnrs@TOleContainer@OnRename$qqsx35System@%DelphiInterface$t8IMoniker%", + "@Olectnrs@TOleContainer@OnSave$qqsv", + "@Olectnrs@TOleContainer@OnShowWindow$qqsi", + "@Olectnrs@TOleContainer@OnUIActivate$qqsv", + "@Olectnrs@TOleContainer@OnUIDeactivate$qqsi", + "@Olectnrs@TOleContainer@OnViewChange$qqsii", + "@Olectnrs@TOleContainer@Paint$qqrv", + "@Olectnrs@TOleContainer@Paste$qqrv", + "@Olectnrs@TOleContainer@PasteSpecialDialog$qqrv", + "@Olectnrs@TOleContainer@PopupVerbMenuClick$qqrp14System@TObject", + "@Olectnrs@TOleContainer@QueryInterface$qqsrx5_GUIDpv", + "@Olectnrs@TOleContainer@RequestNewObjectLayout$qqsv", + "@Olectnrs@TOleContainer@Run$qqrv", + "@Olectnrs@TOleContainer@SaveAsDocument$qqrx17System@AnsiString", + "@Olectnrs@TOleContainer@SaveObject$qqsv", + "@Olectnrs@TOleContainer@SaveToFile$qqrx17System@AnsiString", + "@Olectnrs@TOleContainer@SaveToStream$qqrp15Classes@TStream", + "@Olectnrs@TOleContainer@Scroll$qqsx12Types@TPoint", + "@Olectnrs@TOleContainer@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Olectnrs@TOleContainer@SetDrawAspect$qqroui", + "@Olectnrs@TOleContainer@SetFocused$qqro", + "@Olectnrs@TOleContainer@SetIconic$qqro", + "@Olectnrs@TOleContainer@SetSizeMode$qqr18Olectnrs@TSizeMode", + "@Olectnrs@TOleContainer@SetUIActive$qqro", + "@Olectnrs@TOleContainer@SetViewAdviseSink$qqro", + "@Olectnrs@TOleContainer@SetViewInfo$qqsiuiiii", + "@Olectnrs@TOleContainer@ShowObject$qqsv", + "@Olectnrs@TOleContainer@UpdateObject$qqrv", + "@Olectnrs@TOleContainer@UpdateObjectRect$qqrv", + "@Olectnrs@TOleContainer@UpdateVerbs$qqrv", + "@Olectnrs@TOleContainer@UpdateView$qqrv", + "@Olectnrs@TOleContainer@WMKillFocus$qqrr20Messages@TWMSetFocus", + "@Olectnrs@TOleContainer@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Olectnrs@TOleContainer@WMSize$qqrr16Messages@TWMSize", + "@Olectnrs@TOleContainer@WMWindowPosChanged$qqrr24Messages@TWMWindowPosMsg", + "@Olectnrs@TOleContainer@_AddRef$qqsv", + "@Olectnrs@TOleContainer@_Release$qqsv", + "@Olectnrs@TOleForm@", + "@Olectnrs@TOleForm@$bctr$qqrp17Forms@TCustomForm", + "@Olectnrs@TOleForm@$bdtr$qqrv", + "@Olectnrs@TOleForm@AddContainer$qqrp22Olectnrs@TOleContainer", + "@Olectnrs@TOleForm@ClearBorderSpace$qqrv", + "@Olectnrs@TOleForm@ContextSensitiveHelp$qqsi", + "@Olectnrs@TOleForm@EnableModeless$qqsi", + "@Olectnrs@TOleForm@Form$qqrv", + "@Olectnrs@TOleForm@GetBorder$qqsr11Types@TRect", + "@Olectnrs@TOleForm@GetWindow$qqsrui", + "@Olectnrs@TOleForm@InsertMenus$qqsuir21tagOleMenuGroupWidths", + "@Olectnrs@TOleForm@IsSpacer$qqrp17Controls@TControl", + "@Olectnrs@TOleForm@IsToolControl$qqrp17Controls@TControl", + "@Olectnrs@TOleForm@OnDestroy$qqrv", + "@Olectnrs@TOleForm@OnResize$qqrv", + "@Olectnrs@TOleForm@RemoveContainer$qqrp22Olectnrs@TOleContainer", + "@Olectnrs@TOleForm@RemoveMenus$qqsui", + "@Olectnrs@TOleForm@RequestBorderSpace$qqsrx11Types@TRect", + "@Olectnrs@TOleForm@SetActiveObject$qqsx51System@%DelphiInterface$t23IOleInPlaceActiveObject%pb", + "@Olectnrs@TOleForm@SetBorderSpace$qqsp11Types@TRect", + "@Olectnrs@TOleForm@SetMenu$qqsuiuiui", + "@Olectnrs@TOleForm@SetStatusText$qqspb", + "@Olectnrs@TOleForm@TranslateAccelerator$qqsr6tagMSGus", + "@Olectnrs@initialization$qqrv", + "@Olectrls@EOleCtrlError@", + "@Olectrls@EmptyParam", + "@Olectrls@Finalization$qqrv", + "@Olectrls@FontToOleFont$qqrp14Graphics@TFont", + "@Olectrls@OleFontToFont$qqrrx14System@Variantp14Graphics@TFont", + "@Olectrls@TEnumPropDesc@", + "@Olectrls@TEnumPropDesc@$bctr$qqriix36System@%DelphiInterface$t9ITypeInfo%", + "@Olectrls@TEnumPropDesc@$bdtr$qqrv", + "@Olectrls@TEnumPropDesc@GetStrings$qqrynpqqrx17System@AnsiString$v", + "@Olectrls@TEnumPropDesc@StringToValue$qqrx17System@AnsiString", + "@Olectrls@TEnumPropDesc@ValueToString$qqri", + "@Olectrls@TEventDispatch@", + "@Olectrls@TEventDispatch@$bctr$qqrp20Olectrls@TOleControl", + "@Olectrls@TEventDispatch@GetIDsOfNames$qqsrx5_GUIDpviit2", + "@Olectrls@TEventDispatch@GetTypeInfo$qqsiipv", + "@Olectrls@TEventDispatch@GetTypeInfoCount$qqsri", + "@Olectrls@TEventDispatch@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Olectrls@TEventDispatch@QueryInterface$qqsrx5_GUIDpv", + "@Olectrls@TEventDispatch@_AddRef$qqsv", + "@Olectrls@TEventDispatch@_Release$qqsv", + "@Olectrls@TOleControl@", + "@Olectrls@TOleControl@$bctr$qqrp18Classes@TComponent", + "@Olectrls@TOleControl@$bdtr$qqrv", + "@Olectrls@TOleControl@BrowseProperties$qqrv", + "@Olectrls@TOleControl@CMColorChanged$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMDialogKey$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMDocWindowActivate$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMEnabledChanged$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMFontChanged$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMUIActivate$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMUIDeactivate$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CanInPlaceActivate$qqsv", + "@Olectrls@TOleControl@ContextSensitiveHelp$qqsi", + "@Olectrls@TOleControl@CreateControl$qqrv", + "@Olectrls@TOleControl@CreateEnumPropDescs$qqrv", + "@Olectrls@TOleControl@CreateInstance$qqrv", + "@Olectrls@TOleControl@CreateStorage$qqrv", + "@Olectrls@TOleControl@CreateWnd$qqrv", + "@Olectrls@TOleControl@D2InvokeEvent$qqrir13tagDISPPARAMS", + "@Olectrls@TOleControl@DeactivateAndUndo$qqsv", + "@Olectrls@TOleControl@DefaultHandler$qqrpv", + "@Olectrls@TOleControl@DefineProperties$qqrp14Classes@TFiler", + "@Olectrls@TOleControl@DesignModified$qqrv", + "@Olectrls@TOleControl@DestroyControl$qqrv", + "@Olectrls@TOleControl@DestroyEnumPropDescs$qqrv", + "@Olectrls@TOleControl@DestroyStorage$qqrv", + "@Olectrls@TOleControl@DestroyWindowHandle$qqrv", + "@Olectrls@TOleControl@DiscardUndoState$qqsv", + "@Olectrls@TOleControl@DoObjectVerb$qqri", + "@Olectrls@TOleControl@EnableModeless$qqsi", + "@Olectrls@TOleControl@GetBorder$qqsr11Types@TRect", + "@Olectrls@TOleControl@GetByteProp$qqri", + "@Olectrls@TOleControl@GetColorProp$qqri", + "@Olectrls@TOleControl@GetCompProp$qqri", + "@Olectrls@TOleControl@GetContainer$qqsr41System@%DelphiInterface$t13IOleContainer%", + "@Olectrls@TOleControl@GetCurrencyProp$qqri", + "@Olectrls@TOleControl@GetDefaultDispatch$qqrv", + "@Olectrls@TOleControl@GetDoubleProp$qqri", + "@Olectrls@TOleControl@GetEnumPropDesc$qqri", + "@Olectrls@TOleControl@GetEventMethod$qqrir14System@TMethod", + "@Olectrls@TOleControl@GetExtendedControl$qqsr36System@%DelphiInterface$t9IDispatch%", + "@Olectrls@TOleControl@GetHelpContext$qqr17System@AnsiStringrir17System@AnsiString", + "@Olectrls@TOleControl@GetIDispatchProp$qqri", + "@Olectrls@TOleControl@GetIDsOfNames$qqsrx5_GUIDpviit2", + "@Olectrls@TOleControl@GetIUnknownProp$qqri", + "@Olectrls@TOleControl@GetIntegerProp$qqri", + "@Olectrls@TOleControl@GetMainMenu$qqrv", + "@Olectrls@TOleControl@GetMoniker$qqsiir35System@%DelphiInterface$t8IMoniker%", + "@Olectrls@TOleControl@GetObjectVerbs$qqrp16Classes@TStrings", + "@Olectrls@TOleControl@GetOleBoolProp$qqri", + "@Olectrls@TOleControl@GetOleDateProp$qqri", + "@Olectrls@TOleControl@GetOleEnumProp$qqri", + "@Olectrls@TOleControl@GetOleObject$qqrv", + "@Olectrls@TOleControl@GetOleVariantProp$qqri", + "@Olectrls@TOleControl@GetPropDisplayString$qqri", + "@Olectrls@TOleControl@GetPropDisplayStrings$qqrip16Classes@TStrings", + "@Olectrls@TOleControl@GetProperty$qqrir8TVarData", + "@Olectrls@TOleControl@GetShortIntProp$qqri", + "@Olectrls@TOleControl@GetSingleProp$qqri", + "@Olectrls@TOleControl@GetSmallintProp$qqri", + "@Olectrls@TOleControl@GetStringProp$qqri", + "@Olectrls@TOleControl@GetTColorProp$qqri", + "@Olectrls@TOleControl@GetTDateTimeProp$qqri", + "@Olectrls@TOleControl@GetTFontProp$qqri", + "@Olectrls@TOleControl@GetTOleEnumProp$qqri", + "@Olectrls@TOleControl@GetTPictureProp$qqri", + "@Olectrls@TOleControl@GetTypeInfo$qqsiipv", + "@Olectrls@TOleControl@GetTypeInfoCount$qqsri", + "@Olectrls@TOleControl@GetVariantProp$qqri", + "@Olectrls@TOleControl@GetWideStringProp$qqri", + "@Olectrls@TOleControl@GetWindowContext$qqsr44System@%DelphiInterface$t16IOleInPlaceFrame%r47System@%DelphiInterface$t19IOleInPlaceUIWindow%r11Types@TRectt3r7tagOIFI", + "@Olectrls@TOleControl@GetWordBoolProp$qqri", + "@Olectrls@TOleControl@GetWordProp$qqri", + "@Olectrls@TOleControl@HookControlWndProc$qqrv", + "@Olectrls@TOleControl@InitControlInterface$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Olectrls@TOleControl@InsertMenus$qqsuir21tagOleMenuGroupWidths", + "@Olectrls@TOleControl@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Olectrls@TOleControl@InvokeEvent$qqrir13tagDISPPARAMS", + "@Olectrls@TOleControl@InvokeMethod$qqrpxvpv", + "@Olectrls@TOleControl@IsCustomProperty$qqri", + "@Olectrls@TOleControl@IsPropPageProperty$qqri", + "@Olectrls@TOleControl@LockInPlaceActive$qqsi", + "@Olectrls@TOleControl@OleControlSite_TranslateAccelerator$qqsp6tagMSGi", + "@Olectrls@TOleControl@OleInPlaceFrame_GetWindow$qqsrui", + "@Olectrls@TOleControl@OleInPlaceFrame_TranslateAccelerator$qqsr6tagMSGus", + "@Olectrls@TOleControl@OleInPlaceSite_GetWindow$qqsrui", + "@Olectrls@TOleControl@OnChanged$qqsi", + "@Olectrls@TOleControl@OnControlInfoChanged$qqsv", + "@Olectrls@TOleControl@OnFocus$qqsi", + "@Olectrls@TOleControl@OnInPlaceActivate$qqsv", + "@Olectrls@TOleControl@OnInPlaceDeactivate$qqsv", + "@Olectrls@TOleControl@OnPosRectChange$qqsrx11Types@TRect", + "@Olectrls@TOleControl@OnRequestEdit$qqsi", + "@Olectrls@TOleControl@OnShowWindow$qqsi", + "@Olectrls@TOleControl@OnUIActivate$qqsv", + "@Olectrls@TOleControl@OnUIDeactivate$qqsi", + "@Olectrls@TOleControl@PaletteChanged$qqro", + "@Olectrls@TOleControl@PictureChanged$qqrp14System@TObject", + "@Olectrls@TOleControl@PostMessageFilter$qqsuiiiirii", + "@Olectrls@TOleControl@PreMessageFilter$qqsuiiiirit5", + "@Olectrls@TOleControl@QueryInterface$qqsrx5_GUIDpv", + "@Olectrls@TOleControl@ReadData$qqrp15Classes@TStream", + "@Olectrls@TOleControl@RemoveMenus$qqsui", + "@Olectrls@TOleControl@RequestBorderSpace$qqsrx11Types@TRect", + "@Olectrls@TOleControl@RequestNewObjectLayout$qqsv", + "@Olectrls@TOleControl@SaveObject$qqsv", + "@Olectrls@TOleControl@Scroll$qqsx12Types@TPoint", + "@Olectrls@TOleControl@SetActiveObject$qqsx51System@%DelphiInterface$t23IOleInPlaceActiveObject%pb", + "@Olectrls@TOleControl@SetBorderSpace$qqsp11Types@TRect", + "@Olectrls@TOleControl@SetBounds$qqriiii", + "@Olectrls@TOleControl@SetByteProp$qqriuc", + "@Olectrls@TOleControl@SetColorProp$qqri15Graphics@TColor", + "@Olectrls@TOleControl@SetCompProp$qqrix11System@Comp", + "@Olectrls@TOleControl@SetCurrencyProp$qqrix15System@Currency", + "@Olectrls@TOleControl@SetDoubleProp$qqrixd", + "@Olectrls@TOleControl@SetIDispatchProp$qqrix36System@%DelphiInterface$t9IDispatch%", + "@Olectrls@TOleControl@SetIUnknownProp$qqrix45System@%DelphiInterface$t17System@IInterface%", + "@Olectrls@TOleControl@SetIntegerProp$qqrii", + "@Olectrls@TOleControl@SetMenu$qqsuiuiui", + "@Olectrls@TOleControl@SetName$qqrx17System@AnsiString", + "@Olectrls@TOleControl@SetOleBoolProp$qqrius", + "@Olectrls@TOleControl@SetOleDateProp$qqrixd", + "@Olectrls@TOleControl@SetOleEnumProp$qqriui", + "@Olectrls@TOleControl@SetOleVariantProp$qqrirx17System@OleVariant", + "@Olectrls@TOleControl@SetParent$qqrp20Controls@TWinControl", + "@Olectrls@TOleControl@SetPropDisplayString$qqrix17System@AnsiString", + "@Olectrls@TOleControl@SetProperty$qqrirx8TVarData", + "@Olectrls@TOleControl@SetShortIntProp$qqrizc", + "@Olectrls@TOleControl@SetSingleProp$qqrixf", + "@Olectrls@TOleControl@SetSmallintProp$qqris", + "@Olectrls@TOleControl@SetStatusText$qqspb", + "@Olectrls@TOleControl@SetStringProp$qqrix17System@AnsiString", + "@Olectrls@TOleControl@SetTColorProp$qqri15Graphics@TColor", + "@Olectrls@TOleControl@SetTDateTimeProp$qqrix16System@TDateTime", + "@Olectrls@TOleControl@SetTFontProp$qqrip14Graphics@TFont", + "@Olectrls@TOleControl@SetTOleEnumProp$qqriui", + "@Olectrls@TOleControl@SetTPictureProp$qqrip17Graphics@TPicture", + "@Olectrls@TOleControl@SetUIActive$qqro", + "@Olectrls@TOleControl@SetVariantProp$qqrirx14System@Variant", + "@Olectrls@TOleControl@SetWideStringProp$qqrix17System@WideString", + "@Olectrls@TOleControl@SetWordBoolProp$qqrius", + "@Olectrls@TOleControl@SetWordProp$qqrius", + "@Olectrls@TOleControl@ShowAboutBox$qqrv", + "@Olectrls@TOleControl@ShowObject$qqsv", + "@Olectrls@TOleControl@ShowPropertyFrame$qqsv", + "@Olectrls@TOleControl@StandardEvent$qqrir13tagDISPPARAMS", + "@Olectrls@TOleControl@SuppressException$qqrp18Sysutils@Exception", + "@Olectrls@TOleControl@TransformCoords$qqsr12Types@TPointr9tagPOINTFi", + "@Olectrls@TOleControl@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Olectrls@TOleControl@WMPaint$qqrr17Messages@TWMPaint", + "@Olectrls@TOleControl@WndProc$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@WriteData$qqrp15Classes@TStream", + "@Olectrls@TOleControl@_AddRef$qqsv", + "@Olectrls@TOleControl@_Release$qqsv", + "@Olectrls@TOleControl@_SetColorProp$qqri15Graphics@TColor", + "@Olectrls@TOleControl@_SetTColorProp$qqri15Graphics@TColor", + "@Olectrls@TOleControl@_SetTFontProp$qqrip14Graphics@TFont", + "@Olectrls@TOleControl@_SetTOleEnumProp$qqriui", + "@Olectrls@TOleControl@_SetTPictureProp$qqrip17Graphics@TPicture", + "@Olectrls@initialization$qqrv", + "@Oleserver@Finalization$qqrv", + "@Oleserver@TOleServer@", + "@Oleserver@TOleServer@$bctr$qqrp18Classes@TComponent", + "@Oleserver@TOleServer@$bdtr$qqrv", + "@Oleserver@TOleServer@ConnectEvents$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Oleserver@TOleServer@DisconnectEvents$qqrx45System@%DelphiInterface$t17System@IInterface%", + "@Oleserver@TOleServer@GetAutoConnect$qqrv", + "@Oleserver@TOleServer@GetConnectKind$qqrv", + "@Oleserver@TOleServer@GetServer$qqrv", + "@Oleserver@TOleServer@InvokeEvent$qqrir42System@%DynamicArray$t17System@OleVariant%", + "@Oleserver@TOleServer@Loaded$qqrv", + "@Oleserver@TOleServer@QueryInterface$qqsrx5_GUIDpv", + "@Oleserver@TOleServer@SetAutoConnect$qqro", + "@Oleserver@TOleServer@SetConnectKind$qqr22Oleserver@TConnectKind", + "@Oleserver@TOleServer@_AddRef$qqsv", + "@Oleserver@TOleServer@_Release$qqsv", + "@Oleserver@TServerEventDispatch@", + "@Oleserver@TServerEventDispatch@$bctr$qqrp20Oleserver@TOleServer", + "@Oleserver@TServerEventDispatch@GetIDsOfNames$qqsrx5_GUIDpviit2", + "@Oleserver@TServerEventDispatch@GetTypeInfo$qqsiipv", + "@Oleserver@TServerEventDispatch@GetTypeInfoCount$qqsri", + "@Oleserver@TServerEventDispatch@Invoke$qqsirx5_GUIDiuspvt5t5t5", + "@Oleserver@TServerEventDispatch@QueryInterface$qqsrx5_GUIDpv", + "@Oleserver@TServerEventDispatch@ServerDisconnect$qqrv", + "@Oleserver@TServerEventDispatch@_AddRef$qqsv", + "@Oleserver@TServerEventDispatch@_Release$qqsv", + "@Oleserver@initialization$qqrv", + "@Printers@AssignPrn$qqrrpv", + "@Printers@EPrinter@", + "@Printers@Finalization$qqrv", + "@Printers@Printer$qqrv", + "@Printers@SetPrinter$qqrp17Printers@TPrinter", + "@Printers@TPrinter@", + "@Printers@TPrinter@$bctr$qqrv", + "@Printers@TPrinter@$bdtr$qqrv", + "@Printers@TPrinter@Abort$qqrv", + "@Printers@TPrinter@BeginDoc$qqrv", + "@Printers@TPrinter@CheckPrinting$qqro", + "@Printers@TPrinter@EndDoc$qqrv", + "@Printers@TPrinter@FreeFonts$qqrv", + "@Printers@TPrinter@FreePrinters$qqrv", + "@Printers@TPrinter@GetCanvas$qqrv", + "@Printers@TPrinter@GetFonts$qqrv", + "@Printers@TPrinter@GetHandle$qqrv", + "@Printers@TPrinter@GetNumCopies$qqrv", + "@Printers@TPrinter@GetOrientation$qqrv", + "@Printers@TPrinter@GetPageHeight$qqrv", + "@Printers@TPrinter@GetPageWidth$qqrv", + "@Printers@TPrinter@GetPrinter$qqrpct1t1rui", + "@Printers@TPrinter@GetPrinterIndex$qqrv", + "@Printers@TPrinter@GetPrinters$qqrv", + "@Printers@TPrinter@NewPage$qqrv", + "@Printers@TPrinter@Refresh$qqrv", + "@Printers@TPrinter@SetNumCopies$qqri", + "@Printers@TPrinter@SetOrientation$qqr28Printers@TPrinterOrientation", + "@Printers@TPrinter@SetPrinter$qqrpct1t1ui", + "@Printers@TPrinter@SetPrinterCapabilities$qqri", + "@Printers@TPrinter@SetPrinterIndex$qqri", + "@Printers@TPrinter@SetState$qqr22Printers@TPrinterState", + "@Printers@TPrinter@SetToDefaultPrinter$qqrv", + "@Printers@initialization$qqrv", + "@Stdactns@Finalization$qqrv", + "@Stdactns@TColorSelect@", + "@Stdactns@TColorSelect@GetDialog$qqrv", + "@Stdactns@TColorSelect@GetDialogClass$qqrv", + "@Stdactns@TCommonDialogAction@", + "@Stdactns@TCommonDialogAction@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TCommonDialogAction@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TCommonDialogAction@GetDialogClass$qqrv", + "@Stdactns@TCommonDialogAction@Handlestarget$qqrp14System@TObject", + "@Stdactns@TEditAction@", + "@Stdactns@TEditAction@GetControl$qqrp14System@TObject", + "@Stdactns@TEditAction@HandlesTarget$qqrp14System@TObject", + "@Stdactns@TEditAction@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Stdactns@TEditAction@SetControl$qqrp20Stdctrls@TCustomEdit", + "@Stdactns@TEditAction@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TEditCopy@", + "@Stdactns@TEditCopy@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TEditCut@", + "@Stdactns@TEditCut@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TEditDelete@", + "@Stdactns@TEditDelete@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TEditDelete@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TEditPaste@", + "@Stdactns@TEditPaste@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TEditPaste@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TEditSelectAll@", + "@Stdactns@TEditSelectAll@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TEditSelectAll@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TEditUndo@", + "@Stdactns@TEditUndo@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TEditUndo@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TFileAction@", + "@Stdactns@TFileAction@GetDialog$qqrv", + "@Stdactns@TFileAction@GetFileName$qqrv", + "@Stdactns@TFileAction@SetFileName$qqrx17System@AnsiString", + "@Stdactns@TFileExit@", + "@Stdactns@TFileExit@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TFileExit@HandlesTarget$qqrp14System@TObject", + "@Stdactns@TFileOpen@", + "@Stdactns@TFileOpen@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TFileOpen@GetDialogClass$qqrv", + "@Stdactns@TFileOpenWith@", + "@Stdactns@TFileOpenWith@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TFilePrintSetup@", + "@Stdactns@TFilePrintSetup@GetDialog$qqrv", + "@Stdactns@TFilePrintSetup@GetDialogClass$qqrv", + "@Stdactns@TFileSaveAs@", + "@Stdactns@TFileSaveAs@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TFileSaveAs@GetDialogClass$qqrv", + "@Stdactns@TFileSaveAs@GetSaveDialog$qqrv", + "@Stdactns@TFontEdit@", + "@Stdactns@TFontEdit@GetDialog$qqrv", + "@Stdactns@TFontEdit@GetDialogClass$qqrv", + "@Stdactns@THelpAction@", + "@Stdactns@THelpAction@$bctr$qqrp18Classes@TComponent", + "@Stdactns@THelpAction@HandlesTarget$qqrp14System@TObject", + "@Stdactns@THelpAction@UpdateTarget$qqrp14System@TObject", + "@Stdactns@THelpContents@", + "@Stdactns@THelpContents@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@THelpContextAction@", + "@Stdactns@THelpContextAction@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@THelpContextAction@UpdateTarget$qqrp14System@TObject", + "@Stdactns@THelpOnHelp@", + "@Stdactns@THelpOnHelp@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@THelpTopicSearch@", + "@Stdactns@THelpTopicSearch@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@THintAction@", + "@Stdactns@THintAction@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TPrintDlg@", + "@Stdactns@TPrintDlg@GetDialog$qqrv", + "@Stdactns@TPrintDlg@Getdialogclass$qqrv", + "@Stdactns@TSearchAction@", + "@Stdactns@TSearchAction@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TSearchAction@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TSearchAction@HandlesTarget$qqrp14System@TObject", + "@Stdactns@TSearchAction@Search$qqrp14System@TObject", + "@Stdactns@TSearchAction@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TSearchFind@", + "@Stdactns@TSearchFind@GetDialogClass$qqrv", + "@Stdactns@TSearchFind@GetFindDialog$qqrv", + "@Stdactns@TSearchFindFirst@", + "@Stdactns@TSearchFindFirst@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TSearchFindNext@", + "@Stdactns@TSearchFindNext@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TSearchFindNext@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TSearchFindNext@HandlesTarget$qqrp14System@TObject", + "@Stdactns@TSearchFindNext@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TSearchReplace@", + "@Stdactns@TSearchReplace@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TSearchReplace@GetDialogClass$qqrv", + "@Stdactns@TSearchReplace@GetReplaceDialog$qqrv", + "@Stdactns@TSearchReplace@Replace$qqrp14System@TObject", + "@Stdactns@TWindowAction@", + "@Stdactns@TWindowAction@$bctr$qqrp18Classes@TComponent", + "@Stdactns@TWindowAction@GetForm$qqrp14System@TObject", + "@Stdactns@TWindowAction@HandlesTarget$qqrp14System@TObject", + "@Stdactns@TWindowAction@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Stdactns@TWindowAction@SetForm$qqrp11Forms@TForm", + "@Stdactns@TWindowAction@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TWindowArrange@", + "@Stdactns@TWindowArrange@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TWindowCascade@", + "@Stdactns@TWindowCascade@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TWindowClose@", + "@Stdactns@TWindowClose@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TWindowClose@UpdateTarget$qqrp14System@TObject", + "@Stdactns@TWindowMinimizeAll@", + "@Stdactns@TWindowMinimizeAll@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TWindowTileHorizontal@", + "@Stdactns@TWindowTileHorizontal@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@TWindowTileVertical@", + "@Stdactns@TWindowTileVertical@ExecuteTarget$qqrp14System@TObject", + "@Stdactns@initialization$qqrv", + "@Stdctrls@Finalization$qqrv", + "@Stdctrls@TButton@", + "@Stdctrls@TButton@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TButton@CMDialogChar$qqrr15Messages@TWMKey", + "@Stdctrls@TButton@CMDialogKey$qqrr15Messages@TWMKey", + "@Stdctrls@TButton@CMFocusChanged$qqrr24Controls@TCMFocusChanged", + "@Stdctrls@TButton@CNCommand$qqrr19Messages@TWMCommand", + "@Stdctrls@TButton@Click$qqrv", + "@Stdctrls@TButton@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TButton@CreateWnd$qqrv", + "@Stdctrls@TButton@SetButtonStyle$qqro", + "@Stdctrls@TButton@SetDefault$qqro", + "@Stdctrls@TButton@UseRightToLeftAlignment$qqrv", + "@Stdctrls@TButton@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Stdctrls@TButtonActionLink@", + "@Stdctrls@TButtonActionLink@AssignClient$qqrp14System@TObject", + "@Stdctrls@TButtonActionLink@IsCheckedLinked$qqrv", + "@Stdctrls@TButtonActionLink@SetChecked$qqro", + "@Stdctrls@TButtonControl@", + "@Stdctrls@TButtonControl@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TButtonControl@ActionChange$qqrp14System@TObjecto", + "@Stdctrls@TButtonControl@GetActionLinkClass$qqrv", + "@Stdctrls@TButtonControl@GetChecked$qqrv", + "@Stdctrls@TButtonControl@IsCheckedStored$qqrv", + "@Stdctrls@TButtonControl@SetChecked$qqro", + "@Stdctrls@TButtonControl@WndProc$qqrr17Messages@TMessage", + "@Stdctrls@TCheckBox@", + "@Stdctrls@TComboBox@", + "@Stdctrls@TCustomCheckBox@", + "@Stdctrls@TCustomCheckBox@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomCheckBox@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomCheckBox@CMDialogChar$qqrr15Messages@TWMKey", + "@Stdctrls@TCustomCheckBox@CNCommand$qqrr19Messages@TWMCommand", + "@Stdctrls@TCustomCheckBox@Click$qqrv", + "@Stdctrls@TCustomCheckBox@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomCheckBox@CreateWnd$qqrv", + "@Stdctrls@TCustomCheckBox@GetChecked$qqrv", + "@Stdctrls@TCustomCheckBox@GetControlsAlignment$qqrv", + "@Stdctrls@TCustomCheckBox@SetAlignment$qqr18Classes@TAlignment", + "@Stdctrls@TCustomCheckBox@SetChecked$qqro", + "@Stdctrls@TCustomCheckBox@SetState$qqr23Stdctrls@TCheckBoxState", + "@Stdctrls@TCustomCheckBox@Toggle$qqrv", + "@Stdctrls@TCustomCheckBox@WMSize$qqrr17Messages@TMessage", + "@Stdctrls@TCustomCombo@", + "@Stdctrls@TCustomCombo@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomCombo@$bdtr$qqrv", + "@Stdctrls@TCustomCombo@AddItem$qqr17System@AnsiStringp14System@TObject", + "@Stdctrls@TCustomCombo@AdjustDropDown$qqrv", + "@Stdctrls@TCustomCombo@CMCancelMode$qqrr22Controls@TCMCancelMode", + "@Stdctrls@TCustomCombo@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomCombo@CNCommand$qqrr19Messages@TWMCommand", + "@Stdctrls@TCustomCombo@Change$qqrv", + "@Stdctrls@TCustomCombo@Clear$qqrv", + "@Stdctrls@TCustomCombo@ClearSelection$qqrv", + "@Stdctrls@TCustomCombo@CloseUp$qqrv", + "@Stdctrls@TCustomCombo@ComboWndProc$qqrr17Messages@TMessageuipv", + "@Stdctrls@TCustomCombo@CopySelection$qqrp27Controls@TCustomListControl", + "@Stdctrls@TCustomCombo@CreateWnd$qqrv", + "@Stdctrls@TCustomCombo@DeleteSelected$qqrv", + "@Stdctrls@TCustomCombo@DestroyWindowHandle$qqrv", + "@Stdctrls@TCustomCombo@DropDown$qqrv", + "@Stdctrls@TCustomCombo@EditWndProc$qqrr17Messages@TMessage", + "@Stdctrls@TCustomCombo@Focused$qqrv", + "@Stdctrls@TCustomCombo@GetCount$qqrv", + "@Stdctrls@TCustomCombo@GetDroppedDown$qqrv", + "@Stdctrls@TCustomCombo@GetItemIndex$qqrv", + "@Stdctrls@TCustomCombo@GetSelLength$qqrv", + "@Stdctrls@TCustomCombo@GetSelStart$qqrv", + "@Stdctrls@TCustomCombo@ListWndProc$qqrr17Messages@TMessage", + "@Stdctrls@TCustomCombo@Loaded$qqrv", + "@Stdctrls@TCustomCombo@Select$qqrv", + "@Stdctrls@TCustomCombo@SelectAll$qqrv", + "@Stdctrls@TCustomCombo@SetDropDownCount$qqrxi", + "@Stdctrls@TCustomCombo@SetDroppedDown$qqro", + "@Stdctrls@TCustomCombo@SetItemHeight$qqri", + "@Stdctrls@TCustomCombo@SetItemIndex$qqrxi", + "@Stdctrls@TCustomCombo@SetItems$qqrpx16Classes@TStrings", + "@Stdctrls@TCustomCombo@SetMaxLength$qqri", + "@Stdctrls@TCustomCombo@SetSelLength$qqri", + "@Stdctrls@TCustomCombo@SetSelStart$qqri", + "@Stdctrls@TCustomCombo@WMCreate$qqrr18Messages@TWMCreate", + "@Stdctrls@TCustomCombo@WMDeleteItem$qqrr22Messages@TWMDeleteItem", + "@Stdctrls@TCustomCombo@WMDrawItem$qqrr20Messages@TWMDrawItem", + "@Stdctrls@TCustomCombo@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Stdctrls@TCustomCombo@WMMeasureItem$qqrr23Messages@TWMMeasureItem", + "@Stdctrls@TCustomCombo@WndProc$qqrr17Messages@TMessage", + "@Stdctrls@TCustomComboBox@", + "@Stdctrls@TCustomComboBox@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomComboBox@$bdtr$qqrv", + "@Stdctrls@TCustomComboBox@CMParentColorChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomComboBox@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Stdctrls@TCustomComboBox@CNMeasureItem$qqrr23Messages@TWMMeasureItem", + "@Stdctrls@TCustomComboBox@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomComboBox@CreateWnd$qqrv", + "@Stdctrls@TCustomComboBox@DestroyWnd$qqrv", + "@Stdctrls@TCustomComboBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Stdctrls@TCustomComboBox@GetItemCount$qqrv", + "@Stdctrls@TCustomComboBox@GetItemHt$qqrv", + "@Stdctrls@TCustomComboBox@GetItemsClass$qqrv", + "@Stdctrls@TCustomComboBox@GetSelText$qqrv", + "@Stdctrls@TCustomComboBox@KeyPress$qqrrc", + "@Stdctrls@TCustomComboBox@MeasureItem$qqriri", + "@Stdctrls@TCustomComboBox@SelectItem$qqrx17System@AnsiString", + "@Stdctrls@TCustomComboBox@SetCharCase$qqr22Stdctrls@TEditCharCase", + "@Stdctrls@TCustomComboBox@SetSelText$qqrx17System@AnsiString", + "@Stdctrls@TCustomComboBox@SetSorted$qqro", + "@Stdctrls@TCustomComboBox@SetStyle$qqr23Stdctrls@TComboBoxStyle", + "@Stdctrls@TCustomComboBox@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Stdctrls@TCustomComboBox@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Stdctrls@TCustomComboBox@WMNCCalcSize$qqrr22Messages@TWMNCCalcSize", + "@Stdctrls@TCustomComboBox@WMPaint$qqrr17Messages@TWMPaint", + "@Stdctrls@TCustomComboBox@WndProc$qqrr17Messages@TMessage", + "@Stdctrls@TCustomComboBoxStrings@", + "@Stdctrls@TCustomComboBoxStrings@Clear$qqrv", + "@Stdctrls@TCustomComboBoxStrings@Delete$qqri", + "@Stdctrls@TCustomComboBoxStrings@Get$qqri", + "@Stdctrls@TCustomComboBoxStrings@GetCount$qqrv", + "@Stdctrls@TCustomComboBoxStrings@GetObject$qqri", + "@Stdctrls@TCustomComboBoxStrings@IndexOf$qqrx17System@AnsiString", + "@Stdctrls@TCustomComboBoxStrings@PutObject$qqrip14System@TObject", + "@Stdctrls@TCustomComboBoxStrings@SetUpdateState$qqro", + "@Stdctrls@TCustomEdit@", + "@Stdctrls@TCustomEdit@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomEdit@AdjustHeight$qqrv", + "@Stdctrls@TCustomEdit@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomEdit@CMEnter$qqrr20Messages@TWMNoParams", + "@Stdctrls@TCustomEdit@CMFontChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomEdit@CMTextChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomEdit@CNCommand$qqrr19Messages@TWMCommand", + "@Stdctrls@TCustomEdit@Change$qqrv", + "@Stdctrls@TCustomEdit@Clear$qqrv", + "@Stdctrls@TCustomEdit@ClearSelection$qqrv", + "@Stdctrls@TCustomEdit@ClearUndo$qqrv", + "@Stdctrls@TCustomEdit@CopyToClipboard$qqrv", + "@Stdctrls@TCustomEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomEdit@CreateWindowHandle$qqrrx22Controls@TCreateParams", + "@Stdctrls@TCustomEdit@CreateWnd$qqrv", + "@Stdctrls@TCustomEdit@CutToClipboard$qqrv", + "@Stdctrls@TCustomEdit@DefaultHandler$qqrpv", + "@Stdctrls@TCustomEdit@DestroyWnd$qqrv", + "@Stdctrls@TCustomEdit@DoSetMaxLength$qqri", + "@Stdctrls@TCustomEdit@GetCanUndo$qqrv", + "@Stdctrls@TCustomEdit@GetModified$qqrv", + "@Stdctrls@TCustomEdit@GetSelLength$qqrv", + "@Stdctrls@TCustomEdit@GetSelStart$qqrv", + "@Stdctrls@TCustomEdit@GetSelText$qqrv", + "@Stdctrls@TCustomEdit@GetSelTextBuf$qqrpci", + "@Stdctrls@TCustomEdit@PasteFromClipboard$qqrv", + "@Stdctrls@TCustomEdit@SelectAll$qqrv", + "@Stdctrls@TCustomEdit@SetAutoSize$qqro", + "@Stdctrls@TCustomEdit@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Stdctrls@TCustomEdit@SetCharCase$qqr22Stdctrls@TEditCharCase", + "@Stdctrls@TCustomEdit@SetHideSelection$qqro", + "@Stdctrls@TCustomEdit@SetMaxLength$qqri", + "@Stdctrls@TCustomEdit@SetModified$qqro", + "@Stdctrls@TCustomEdit@SetOEMConvert$qqro", + "@Stdctrls@TCustomEdit@SetPasswordChar$qqrc", + "@Stdctrls@TCustomEdit@SetReadOnly$qqro", + "@Stdctrls@TCustomEdit@SetSelLength$qqri", + "@Stdctrls@TCustomEdit@SetSelStart$qqri", + "@Stdctrls@TCustomEdit@SetSelText$qqrx17System@AnsiString", + "@Stdctrls@TCustomEdit@SetSelTextBuf$qqrpc", + "@Stdctrls@TCustomEdit@Undo$qqrv", + "@Stdctrls@TCustomEdit@UpdateHeight$qqrv", + "@Stdctrls@TCustomEdit@WMContextMenu$qqrr23Messages@TWMContextMenu", + "@Stdctrls@TCustomEdit@WMSetFont$qqrr19Messages@TWMSetFont", + "@Stdctrls@TCustomGroupBox@", + "@Stdctrls@TCustomGroupBox@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomGroupBox@AdjustClientRect$qqrr11Types@TRect", + "@Stdctrls@TCustomGroupBox@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomGroupBox@CMDialogChar$qqrr15Messages@TWMKey", + "@Stdctrls@TCustomGroupBox@CMTextChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomGroupBox@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomGroupBox@Paint$qqrv", + "@Stdctrls@TCustomGroupBox@WMSize$qqrr17Messages@TMessage", + "@Stdctrls@TCustomLabel@", + "@Stdctrls@TCustomLabel@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomLabel@AdjustBounds$qqrv", + "@Stdctrls@TCustomLabel@CMDialogChar$qqrr15Messages@TWMKey", + "@Stdctrls@TCustomLabel@CMFontChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomLabel@CMMouseEnter$qqrr17Messages@TMessage", + "@Stdctrls@TCustomLabel@CMMouseLeave$qqrr17Messages@TMessage", + "@Stdctrls@TCustomLabel@CMTextChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomLabel@DoDrawText$qqrr11Types@TRecti", + "@Stdctrls@TCustomLabel@GetLabelText$qqrv", + "@Stdctrls@TCustomLabel@GetTransparent$qqrv", + "@Stdctrls@TCustomLabel@Loaded$qqrv", + "@Stdctrls@TCustomLabel@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Stdctrls@TCustomLabel@Paint$qqrv", + "@Stdctrls@TCustomLabel@SetAlignment$qqr18Classes@TAlignment", + "@Stdctrls@TCustomLabel@SetAutoSize$qqro", + "@Stdctrls@TCustomLabel@SetFocusControl$qqrp20Controls@TWinControl", + "@Stdctrls@TCustomLabel@SetLayout$qqr20Stdctrls@TTextLayout", + "@Stdctrls@TCustomLabel@SetShowAccelChar$qqro", + "@Stdctrls@TCustomLabel@SetTransparent$qqro", + "@Stdctrls@TCustomLabel@SetWordWrap$qqro", + "@Stdctrls@TCustomListBox@", + "@Stdctrls@TCustomListBox@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomListBox@$bdtr$qqrv", + "@Stdctrls@TCustomListBox@AddItem$qqr17System@AnsiStringp14System@TObject", + "@Stdctrls@TCustomListBox@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomListBox@CNCommand$qqrr19Messages@TWMCommand", + "@Stdctrls@TCustomListBox@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Stdctrls@TCustomListBox@CNMeasureItem$qqrr23Messages@TWMMeasureItem", + "@Stdctrls@TCustomListBox@Clear$qqrv", + "@Stdctrls@TCustomListBox@ClearSelection$qqrv", + "@Stdctrls@TCustomListBox@CopySelection$qqrp27Controls@TCustomListControl", + "@Stdctrls@TCustomListBox@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomListBox@CreateWnd$qqrv", + "@Stdctrls@TCustomListBox@DeleteSelected$qqrv", + "@Stdctrls@TCustomListBox@DeleteString$qqri", + "@Stdctrls@TCustomListBox@DestroyWnd$qqrv", + "@Stdctrls@TCustomListBox@DoFindData$qqrx17System@AnsiString", + "@Stdctrls@TCustomListBox@DoGetData$qqrxi", + "@Stdctrls@TCustomListBox@DoGetDataObject$qqrxi", + "@Stdctrls@TCustomListBox@DragCanceled$qqrv", + "@Stdctrls@TCustomListBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Stdctrls@TCustomListBox@GetCount$qqrv", + "@Stdctrls@TCustomListBox@GetItemData$qqri", + "@Stdctrls@TCustomListBox@GetItemHeight$qqrv", + "@Stdctrls@TCustomListBox@GetItemIndex$qqrv", + "@Stdctrls@TCustomListBox@GetScrollWidth$qqrv", + "@Stdctrls@TCustomListBox@GetSelCount$qqrv", + "@Stdctrls@TCustomListBox@GetSelected$qqri", + "@Stdctrls@TCustomListBox@GetTopIndex$qqrv", + "@Stdctrls@TCustomListBox@InternalGetItemData$qqri", + "@Stdctrls@TCustomListBox@InternalSetItemData$qqrii", + "@Stdctrls@TCustomListBox@ItemAtPos$qqrrx12Types@TPointo", + "@Stdctrls@TCustomListBox@ItemRect$qqri", + "@Stdctrls@TCustomListBox@KeyPress$qqrrc", + "@Stdctrls@TCustomListBox@LBGetText$qqrr17Messages@TMessage", + "@Stdctrls@TCustomListBox@LBGetTextLen$qqrr17Messages@TMessage", + "@Stdctrls@TCustomListBox@MeasureItem$qqriri", + "@Stdctrls@TCustomListBox@ResetContent$qqrv", + "@Stdctrls@TCustomListBox@SelectAll$qqrv", + "@Stdctrls@TCustomListBox@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Stdctrls@TCustomListBox@SetColumnWidth$qqrv", + "@Stdctrls@TCustomListBox@SetColumns$qqri", + "@Stdctrls@TCustomListBox@SetCount$qqrxi", + "@Stdctrls@TCustomListBox@SetExtendedSelect$qqro", + "@Stdctrls@TCustomListBox@SetIntegralHeight$qqro", + "@Stdctrls@TCustomListBox@SetItemData$qqrii", + "@Stdctrls@TCustomListBox@SetItemHeight$qqri", + "@Stdctrls@TCustomListBox@SetItemIndex$qqrxi", + "@Stdctrls@TCustomListBox@SetItems$qqrp16Classes@TStrings", + "@Stdctrls@TCustomListBox@SetMultiSelect$qqro", + "@Stdctrls@TCustomListBox@SetScrollWidth$qqrxi", + "@Stdctrls@TCustomListBox@SetSelected$qqrio", + "@Stdctrls@TCustomListBox@SetSorted$qqro", + "@Stdctrls@TCustomListBox@SetStyle$qqr22Stdctrls@TListBoxStyle", + "@Stdctrls@TCustomListBox@SetTabWidth$qqri", + "@Stdctrls@TCustomListBox@SetTopIndex$qqri", + "@Stdctrls@TCustomListBox@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Stdctrls@TCustomListBox@WMPaint$qqrr17Messages@TWMPaint", + "@Stdctrls@TCustomListBox@WMSize$qqrr16Messages@TWMSize", + "@Stdctrls@TCustomListBox@WndProc$qqrr17Messages@TMessage", + "@Stdctrls@TCustomMemo@", + "@Stdctrls@TCustomMemo@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomMemo@$bdtr$qqrv", + "@Stdctrls@TCustomMemo@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomMemo@CreateWindowHandle$qqrrx22Controls@TCreateParams", + "@Stdctrls@TCustomMemo@GetCaretPos$qqrv", + "@Stdctrls@TCustomMemo@GetControlsAlignment$qqrv", + "@Stdctrls@TCustomMemo@KeyPress$qqrrc", + "@Stdctrls@TCustomMemo@Loaded$qqrv", + "@Stdctrls@TCustomMemo@SetAlignment$qqr18Classes@TAlignment", + "@Stdctrls@TCustomMemo@SetCaretPos$qqrrx12Types@TPoint", + "@Stdctrls@TCustomMemo@SetLines$qqrp16Classes@TStrings", + "@Stdctrls@TCustomMemo@SetScrollBars$qqr21Stdctrls@TScrollStyle", + "@Stdctrls@TCustomMemo@SetWordWrap$qqro", + "@Stdctrls@TCustomMemo@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Stdctrls@TCustomMemo@WMNCDestroy$qqrr20Messages@TWMNoParams", + "@Stdctrls@TCustomStaticText@", + "@Stdctrls@TCustomStaticText@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TCustomStaticText@AdjustBounds$qqrv", + "@Stdctrls@TCustomStaticText@CMDialogChar$qqrr15Messages@TWMKey", + "@Stdctrls@TCustomStaticText@CMFontChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomStaticText@CMTextChanged$qqrr17Messages@TMessage", + "@Stdctrls@TCustomStaticText@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TCustomStaticText@Loaded$qqrv", + "@Stdctrls@TCustomStaticText@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Stdctrls@TCustomStaticText@SetAlignment$qqr18Classes@TAlignment", + "@Stdctrls@TCustomStaticText@SetAutoSize$qqro", + "@Stdctrls@TCustomStaticText@SetBorderStyle$qqr27Stdctrls@TStaticBorderStyle", + "@Stdctrls@TCustomStaticText@SetFocusControl$qqrp20Controls@TWinControl", + "@Stdctrls@TCustomStaticText@SetShowAccelChar$qqro", + "@Stdctrls@TEdit@", + "@Stdctrls@TGroupBox@", + "@Stdctrls@TLabel@", + "@Stdctrls@TListBox@", + "@Stdctrls@TMemo@", + "@Stdctrls@TRadioButton@", + "@Stdctrls@TRadioButton@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TRadioButton@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Stdctrls@TRadioButton@CMDialogChar$qqrr15Messages@TWMKey", + "@Stdctrls@TRadioButton@CNCommand$qqrr19Messages@TWMCommand", + "@Stdctrls@TRadioButton@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TRadioButton@CreateWnd$qqrv", + "@Stdctrls@TRadioButton@GetChecked$qqrv", + "@Stdctrls@TRadioButton@GetControlsAlignment$qqrv", + "@Stdctrls@TRadioButton@SetAlignment$qqr18Classes@TAlignment", + "@Stdctrls@TRadioButton@SetChecked$qqro", + "@Stdctrls@TScrollBar@", + "@Stdctrls@TScrollBar@$bctr$qqrp18Classes@TComponent", + "@Stdctrls@TScrollBar@CNCtlColorScrollBar$qqrr17Messages@TMessage", + "@Stdctrls@TScrollBar@CNHScroll$qqrr18Messages@TWMScroll", + "@Stdctrls@TScrollBar@CNVScroll$qqrr18Messages@TWMScroll", + "@Stdctrls@TScrollBar@Change$qqrv", + "@Stdctrls@TScrollBar@CreateParams$qqrr22Controls@TCreateParams", + "@Stdctrls@TScrollBar@CreateWnd$qqrv", + "@Stdctrls@TScrollBar@DoScroll$qqrr18Messages@TWMScroll", + "@Stdctrls@TScrollBar@NotRightToLeft$qqrv", + "@Stdctrls@TScrollBar@Scroll$qqr20Stdctrls@TScrollCoderi", + "@Stdctrls@TScrollBar@SetKind$qqr20Forms@TScrollBarKind", + "@Stdctrls@TScrollBar@SetMax$qqri", + "@Stdctrls@TScrollBar@SetMin$qqri", + "@Stdctrls@TScrollBar@SetPageSize$qqri", + "@Stdctrls@TScrollBar@SetParams$qqriii", + "@Stdctrls@TScrollBar@SetPosition$qqri", + "@Stdctrls@TScrollBar@WMEraseBkgnd$qqrr22Messages@TWMEraseBkgnd", + "@Stdctrls@TStaticText@", + "@Stdctrls@initialization$qqrv", + "@Svcmgr@Application", + "@Svcmgr@Finalization$qqrv", + "@Svcmgr@TDependencies@", + "@Svcmgr@TDependencies@$bctr$qqrp19Classes@TPersistent", + "@Svcmgr@TDependencies@GetItem$qqri", + "@Svcmgr@TDependencies@GetOwner$qqrv", + "@Svcmgr@TDependencies@SetItem$qqrip18Svcmgr@TDependency", + "@Svcmgr@TDependency@", + "@Svcmgr@TDependency@GetDisplayName$qqrv", + "@Svcmgr@TEventLogger@", + "@Svcmgr@TEventLogger@$bctr$qqr17System@AnsiString", + "@Svcmgr@TEventLogger@$bdtr$qqrv", + "@Svcmgr@TEventLogger@LogMessage$qqr17System@AnsiStringuiusui", + "@Svcmgr@TService@", + "@Svcmgr@TService@$bctr$qqrp18Classes@TComponenti", + "@Svcmgr@TService@$bdtr$qqrv", + "@Svcmgr@TService@AreDependenciesStored$qqrv", + "@Svcmgr@TService@Controller$qqrui", + "@Svcmgr@TService@DoContinue$qqrv", + "@Svcmgr@TService@DoCustomControl$qqrui", + "@Svcmgr@TService@DoInterrogate$qqrv", + "@Svcmgr@TService@DoPause$qqrv", + "@Svcmgr@TService@DoShutdown$qqrv", + "@Svcmgr@TService@DoStart$qqrv", + "@Svcmgr@TService@DoStop$qqrv", + "@Svcmgr@TService@GetDisplayName$qqrv", + "@Svcmgr@TService@GetNTControlsAccepted$qqrv", + "@Svcmgr@TService@GetNTDependencies$qqrv", + "@Svcmgr@TService@GetNTErrorSeverity$qqrv", + "@Svcmgr@TService@GetNTServiceType$qqrv", + "@Svcmgr@TService@GetNTStartType$qqrv", + "@Svcmgr@TService@GetParam$qqri", + "@Svcmgr@TService@GetParamCount$qqrv", + "@Svcmgr@TService@GetTerminated$qqrv", + "@Svcmgr@TService@LogMessage$qqr17System@AnsiStringuiii", + "@Svcmgr@TService@Main$qqruippc", + "@Svcmgr@TService@ReportStatus$qqrv", + "@Svcmgr@TService@SetDependencies$qqrp20Svcmgr@TDependencies", + "@Svcmgr@TService@SetInteractive$qqro", + "@Svcmgr@TService@SetOnContinue$qqrynpqqrp15Svcmgr@TServicero$v", + "@Svcmgr@TService@SetOnPause$qqrynpqqrp15Svcmgr@TServicero$v", + "@Svcmgr@TService@SetOnStop$qqrynpqqrp15Svcmgr@TServicero$v", + "@Svcmgr@TService@SetPassword$qqrx17System@AnsiString", + "@Svcmgr@TService@SetServiceStartName$qqrx17System@AnsiString", + "@Svcmgr@TService@SetStatus$qqr21Svcmgr@TCurrentStatus", + "@Svcmgr@TServiceApplication@", + "@Svcmgr@TServiceApplication@$bctr$qqrp18Classes@TComponent", + "@Svcmgr@TServiceApplication@$bdtr$qqrv", + "@Svcmgr@TServiceApplication@CreateForm$qqrp17System@TMetaClasspv", + "@Svcmgr@TServiceApplication@DispatchServiceMain$qqruippc", + "@Svcmgr@TServiceApplication@DoHandleException$qqrp18Sysutils@Exception", + "@Svcmgr@TServiceApplication@GetServiceCount$qqrv", + "@Svcmgr@TServiceApplication@Hook$qqrr17Messages@TMessage", + "@Svcmgr@TServiceApplication@Initialize$qqrv", + "@Svcmgr@TServiceApplication@OnExceptionHandler$qqrp14System@TObjectp18Sysutils@Exception", + "@Svcmgr@TServiceApplication@RegisterServices$qqroo", + "@Svcmgr@TServiceApplication@Run$qqrv", + "@Svcmgr@TServiceThread@", + "@Svcmgr@TServiceThread@$bctr$qqrp15Svcmgr@TService", + "@Svcmgr@TServiceThread@Execute$qqrv", + "@Svcmgr@TServiceThread@ProcessRequests$qqro", + "@Svcmgr@initialization$qqrv", + "@Toolwin@Finalization$qqrv", + "@Toolwin@TToolDockForm@", + "@Toolwin@TToolDockForm@$bctr$qqrp18Classes@TComponent", + "@Toolwin@TToolDockForm@CanResize$qqrrit1", + "@Toolwin@TToolDockForm@CreateParams$qqrr22Controls@TCreateParams", + "@Toolwin@TToolDockForm@DoAddDockClient$qqrp17Controls@TControlrx11Types@TRect", + "@Toolwin@TToolDockForm@WMNCCreate$qqrr20Messages@TWMNCCreate", + "@Toolwin@TToolDockForm@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Toolwin@TToolDockForm@WMNCLButtonDown$qqrr24Messages@TWMNCHitMessage", + "@Toolwin@TToolDockForm@WMSize$qqrr16Messages@TWMSize", + "@Toolwin@TToolDockForm@WMSysCommand$qqrr22Messages@TWMSysCommand", + "@Toolwin@TToolDockObject@", + "@Toolwin@TToolDockObject@$bctr$qqrp17Controls@TControl", + "@Toolwin@TToolDockObject@AdjustDockRect$qqrrx11Types@TRect", + "@Toolwin@TToolDockObject@DrawDragDockImage$qqrv", + "@Toolwin@TToolDockObject@EraseDragDockImage$qqrv", + "@Toolwin@TToolWindow@", + "@Toolwin@TToolWindow@$bctr$qqrp18Classes@TComponent", + "@Toolwin@TToolWindow@CMBorderChanged$qqrr17Messages@TMessage", + "@Toolwin@TToolWindow@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Toolwin@TToolWindow@NCPaint$qqrui", + "@Toolwin@TToolWindow@SetEdgeBorders$qqr47System@%Set$t19Toolwin@TEdgeBorder$iuc$0$iuc$3%", + "@Toolwin@TToolWindow@SetEdgeInner$qqr18Toolwin@TEdgeStyle", + "@Toolwin@TToolWindow@SetEdgeOuter$qqr18Toolwin@TEdgeStyle", + "@Toolwin@TToolWindow@WMNCCalcSize$qqrr22Messages@TWMNCCalcSize", + "@Toolwin@TToolWindow@WMNCPaint$qqrr17Messages@TMessage", + "@Toolwin@initialization$qqrv", + "@Valedit@Finalization$qqrv", + "@Valedit@TItemProp@", + "@Valedit@TItemProp@$bctr$qqrp24Valedit@TValueListEditor", + "@Valedit@TItemProp@$bdtr$qqrv", + "@Valedit@TItemProp@AssignTo$qqrp19Classes@TPersistent", + "@Valedit@TItemProp@GetPickList$qqrv", + "@Valedit@TItemProp@HasPickList$qqrv", + "@Valedit@TItemProp@PickListChange$qqrp14System@TObject", + "@Valedit@TItemProp@SetEditMask$qqrx17System@AnsiString", + "@Valedit@TItemProp@SetEditStyle$qqrx16Grids@TEditStyle", + "@Valedit@TItemProp@SetKeyDesc$qqrx17System@AnsiString", + "@Valedit@TItemProp@SetMaxLength$qqrxi", + "@Valedit@TItemProp@SetPickList$qqrpx16Classes@TStrings", + "@Valedit@TItemProp@SetReadOnly$qqrxo", + "@Valedit@TItemProp@UpdateEdit$qqrv", + "@Valedit@TValueListEditor@", + "@Valedit@TValueListEditor@$bctr$qqrp18Classes@TComponent", + "@Valedit@TValueListEditor@$bdtr$qqrv", + "@Valedit@TValueListEditor@AdjustColWidths$qqrv", + "@Valedit@TValueListEditor@AdjustRowCount$qqrv", + "@Valedit@TValueListEditor@CMShowingChanged$qqrr17Messages@TMessage", + "@Valedit@TValueListEditor@CanEditModify$qqrv", + "@Valedit@TValueListEditor@ColWidthsChanged$qqrv", + "@Valedit@TValueListEditor@CreateEditor$qqrv", + "@Valedit@TValueListEditor@CreateWnd$qqrv", + "@Valedit@TValueListEditor@DeleteRow$qqri", + "@Valedit@TValueListEditor@DisableEditUpdate$qqrv", + "@Valedit@TValueListEditor@DoExit$qqrv", + "@Valedit@TValueListEditor@DoOnValidate$qqrv", + "@Valedit@TValueListEditor@DrawCell$qqriirx11Types@TRect42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Valedit@TValueListEditor@EditListGetItems$qqriip16Classes@TStrings", + "@Valedit@TValueListEditor@EnableEditUpdate$qqrv", + "@Valedit@TValueListEditor@FindRow$qqrx17System@AnsiStringri", + "@Valedit@TValueListEditor@GetCell$qqrii", + "@Valedit@TValueListEditor@GetColCount$qqrv", + "@Valedit@TValueListEditor@GetEditMask$qqrii", + "@Valedit@TValueListEditor@GetEditStyle$qqrii", + "@Valedit@TValueListEditor@GetEditText$qqrii", + "@Valedit@TValueListEditor@GetItemProp$qqrrx14System@Variant", + "@Valedit@TValueListEditor@GetKey$qqri", + "@Valedit@TValueListEditor@GetOnStringsChange$qqrv", + "@Valedit@TValueListEditor@GetOnStringsChanging$qqrv", + "@Valedit@TValueListEditor@GetOptions$qqrv", + "@Valedit@TValueListEditor@GetPickList$qqrp16Classes@TStringso", + "@Valedit@TValueListEditor@GetRowCount$qqrv", + "@Valedit@TValueListEditor@GetStrings$qqrv", + "@Valedit@TValueListEditor@GetValue$qqrx17System@AnsiString", + "@Valedit@TValueListEditor@InsertRow$qqrx17System@AnsiStringt1o", + "@Valedit@TValueListEditor@IsEmptyRow$qqrv", + "@Valedit@TValueListEditor@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Valedit@TValueListEditor@PutItemProp$qqrrx14System@Variantpx17Valedit@TItemProp", + "@Valedit@TValueListEditor@Refresh$qqrv", + "@Valedit@TValueListEditor@Resize$qqrv", + "@Valedit@TValueListEditor@RestoreCurrentRow$qqrv", + "@Valedit@TValueListEditor@RowMoved$qqrii", + "@Valedit@TValueListEditor@SelectCell$qqrii", + "@Valedit@TValueListEditor@SetCell$qqriix17System@AnsiString", + "@Valedit@TValueListEditor@SetDisplayOptions$qqrx50System@%Set$t22Valedit@TDisplayOption$iuc$0$iuc$2%", + "@Valedit@TValueListEditor@SetDropDownRows$qqrxi", + "@Valedit@TValueListEditor@SetEditText$qqriix17System@AnsiString", + "@Valedit@TValueListEditor@SetKey$qqrix17System@AnsiString", + "@Valedit@TValueListEditor@SetKeyOptions$qqr46System@%Set$t18Valedit@TKeyOption$iuc$0$iuc$3%", + "@Valedit@TValueListEditor@SetOnEditButtonClick$qqrxynpqqrp14System@TObject$v", + "@Valedit@TValueListEditor@SetOnStringsChange$qqrxynpqqrp14System@TObject$v", + "@Valedit@TValueListEditor@SetOnStringsChanging$qqrxynpqqrp14System@TObject$v", + "@Valedit@TValueListEditor@SetOptions$qqrx46System@%Set$t17Grids@TGridOption$iuc$0$iuc$14%", + "@Valedit@TValueListEditor@SetStrings$qqrpx16Classes@TStrings", + "@Valedit@TValueListEditor@SetTitleCaptions$qqrpx16Classes@TStrings", + "@Valedit@TValueListEditor@SetValue$qqrx17System@AnsiStringt1", + "@Valedit@TValueListEditor@StringsChanging$qqrv", + "@Valedit@TValueListEditor@TitleCaptionsStored$qqrv", + "@Valedit@TValueListStrings@", + "@Valedit@TValueListStrings@$bctr$qqrp24Valedit@TValueListEditor", + "@Valedit@TValueListStrings@Assign$qqrp19Classes@TPersistent", + "@Valedit@TValueListStrings@Changed$qqrv", + "@Valedit@TValueListStrings@Changing$qqrv", + "@Valedit@TValueListStrings@Clear$qqrv", + "@Valedit@TValueListStrings@CustomSort$qqrpqqrp19Classes@TStringListii$i", + "@Valedit@TValueListStrings@Delete$qqri", + "@Valedit@TValueListStrings@Exchange$qqrii", + "@Valedit@TValueListStrings@FindItemProp$qqrrx14System@Varianto", + "@Valedit@TValueListStrings@GetItemProp$qqrrx14System@Variant", + "@Valedit@TValueListStrings@InsertItem$qqrix17System@AnsiStringp14System@TObject", + "@Valedit@TValueListStrings@KeyIsValid$qqrx17System@AnsiStringo", + "@Valedit@TValueListStrings@Put$qqrix17System@AnsiString", + "@Valedit@TValueListStrings@PutItemProp$qqrrx14System@Variantpx17Valedit@TItemProp", + "@Valedit@initialization$qqrv", + "@Vcl@@GetPackageInfoTable$qqrv", + "@Vcl@@PackageLoad$qqrv", + "@Vcl@@PackageUnload$qqrv", + "@Vcl@initialization$qqrv", + "@Winhelpviewer@Finalization$qqrv", + "@Winhelpviewer@ViewerName", + "@Winhelpviewer@WinHelpTester", + "@Winhelpviewer@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 18575, + "domain_strings": [ + "clBackground", + "stRoundRect", + "stRoundSquare", + "fsMDIForm", + "fsActivated", + "OnActivate<", + "OnDeactivate", + "OnActivate", + "\\MiscStatus", + "\\MiscStatus\\1", + "isActivating", + "FixedBackground", + "scShowNoActivate", + "TAutoActivate", + "AutoActivate", + "@System@@ROUND$qqrv", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "RoundRect", + "CreateHalftonePalette", + "@Sysutils@AdjustLineBreaks$qqrx17System@AnsiString26System@TTextLineBreakStyle", + "@Classes@TBasicAction@Update$qqrv", + "@Classes@TBasicActionLink@Update$qqrv", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TCollection@Delete$qqri", + "@Classes@TCollection@Update$qqrp23Classes@TCollectionItem", + "@Classes@TCollection@Insert$qqri", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Classes@ActivateClassGroup$qqrp17System@TMetaClass", + "@$xp$22Olectnrs@TAutoActivate", + "@Actnlist@TContainedAction@Update$qqrv", + "@Appevnts@TCustomApplicationEvents@Activate$qqrv", + "@Appevnts@TCustomApplicationEvents@DoActivate$qqrp14System@TObject", + "@Appevnts@TCustomApplicationEvents@DoDeactivate$qqrp14System@TObject", + "@Axctrls@TActiveXControl@GetMiscStatus$qqsiri", + "@Axctrls@TActiveXControl@InPlaceActivate$qqro", + "@Axctrls@TActiveXControl@InPlaceDeactivate$qqsv", + "@Axctrls@TActiveXControl@OnDocWindowActivate$qqsi", + "@Axctrls@TActiveXControl@OnFrameWindowActivate$qqsi", + "@Axctrls@TActiveXControl@QuickActivate$qqsr14tagQACONTAINERr12tagQACONTROL", + "@Axctrls@TActiveXControl@ReactivateAndUndo$qqsv", + "@Axctrls@TActiveXControl@UIDeactivate$qqsv", + "@Axctrls@TActiveXControl@Update$qqsv", + "@Axctrls@TFontAdapter@Update$qqrv", + "@Axctrls@TPictureAdapter@Update$qqrv", + "@Axctrls@TPropertyPageImpl@Activate$qqsuirx11Types@TRecti", + "@Axctrls@TPropertyPageImpl@Deactivate$qqsv", + "@Comctrls@TComboBoxExStrings@Delete$qqri", + "@Comctrls@TComboBoxExStrings@Insert$qqrix17System@AnsiString", + "@Comctrls@TComboExItems@Insert$qqri", + "@Comctrls@TCoolBand@SetFixedBackground$qqro", + "@Comctrls@TCoolBands@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TCoolBar@IsBackgroundDirty$qqrv", + "@Comctrls@TCustomHotKey@AdjustHeight$qqrv", + "@Comctrls@TCustomListView@Delete$qqrp18Comctrls@TListItem", + "@Comctrls@TCustomTabControl@AdjustClientRect$qqrr11Types@TRect", + "@Comctrls@TCustomTabControl@TCMAdjustRect$qqrr17Messages@TMessage", + "@Comctrls@TCustomTreeView@Delete$qqrp18Comctrls@TTreeNode", + "@Comctrls@TCustomTreeView@Select$qqrp13Classes@TList", + "@Comctrls@TCustomTreeView@Select$qqrp18Comctrls@TTreeNode46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Comctrls@TCustomTreeView@Select$qqrppx18Comctrls@TTreeNodexi", + "@Comctrls@TDateTimePicker@AdjustHeight$qqrv", + "@Comctrls@THeaderSections@Insert$qqri", + "@Comctrls@THeaderSections@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TListColumns@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TListItem@Delete$qqrv", + "@Comctrls@TListItem@Update$qqrv", + "@Comctrls@TListItems@Delete$qqri", + "@Comctrls@TListItems@Insert$qqri", + "@Comctrls@TStatusPanels@Insert$qqri", + "@Comctrls@TStatusPanels@Update$qqrp23Classes@TCollectionItem", + "@Comctrls@TToolBar@AdjustControl$qqrp17Controls@TControl", + "@Comctrls@TToolBarDockObject@AdjustDockRect$qqrrx11Types@TRect", + "@Comctrls@TTreeNode@Delete$qqrv", + "@Comctrls@TTreeNodes@Delete$qqrp18Comctrls@TTreeNode", + "@Comctrls@TTreeNodes@Insert$qqrp18Comctrls@TTreeNodex17System@AnsiString", + "@Comctrls@TWorkAreas@Delete$qqri", + "@Comctrls@TWorkAreas@Insert$qqri", + "@Comctrls@TWorkAreas@Update$qqrp23Classes@TCollectionItem", + "@Consts@_SNoMDIForm", + "@Consts@_STwoMDIForms", + "@Controls@TControl@AdjustSize$qqrv", + "@Controls@TControl@Update$qqrv", + "@Controls@TDockTree@AdjustDockRect$qqrp17Controls@TControlr11Types@TRect", + "@Controls@TDockZone@Update$qqrv", + "@Controls@TDragDockObject@AdjustDockRect$qqrrx11Types@TRect", + "@Controls@THintWindow@ActivateHint$qqrrx11Types@TRectx17System@AnsiString", + "@Controls@THintWindow@ActivateHintData$qqrrx11Types@TRectx17System@AnsiStringpv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TWinControl@AdjustSize$qqrv", + "@Controls@TWinControl@Insert$qqrp17Controls@TControl", + "@Controls@TWinControl@Update$qqrv", + "@Extctrls@TBoundLabel@AdjustBounds$qqrv", + "@Extctrls@TCustomColorBox@Select$qqrv", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Forms@ForegroundTask$qqrv", + "@Forms@TApplication@ActivateHint$qqrrx12Types@TPoint", + "@Forms@TControlScrollBar@Update$qqroo", + "@Forms@TCustomActiveForm@SetAxBorderStyle$qqr28Forms@TActiveFormBorderStyle", + "@Forms@TCustomForm@Activate$qqrv", + "@Forms@TCustomForm@CMActivate$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@CMDeactivate$qqrr20Messages@TWMNoParams", + "@Forms@TCustomForm@CMUIActivate$qqrpv", + "@Forms@TCustomForm@Deactivate$qqrv", + "@Forms@TCustomForm@WMActivate$qqrr20Messages@TWMActivate", + "@Forms@TCustomForm@WMMDIActivate$qqrr23Messages@TWMMDIActivate", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Graphics@TCanvas@RoundRect$qqriiiiii", + "@Graphutil@ColorAdjustLuma$qqruiii", + "@Grids@TCustomGrid@AdjustSize$qqriio", + "@Grids@TCustomGrid@MoveAdjust$qqrriii", + "@Grids@TStringGrid@Update$qqrii", + "@Grids@TStringGridStrings@Delete$qqri", + "@Grids@TStringGridStrings@Insert$qqrix17System@AnsiString", + "@Imglist@TCustomImageList@Delete$qqri", + "@Imglist@TCustomImageList@Insert$qqrip16Graphics@TBitmapt2", + "@Listactns@TStaticListItems@Update$qqrp23Classes@TCollectionItem", + "@Menus@TMenu@AdjustBiDiBehavior$qqrv", + "@Menus@TMenuItem@Delete$qqri", + "@Menus@TMenuItem@Insert$qqrip15Menus@TMenuItem", + "@Oleconst@_SCannotActivate", + "@Olectnrs@TOleContainer@ActivateMe$qqs44System@%DelphiInterface$t16IOleDocumentView%", + "@Olectnrs@TOleContainer@AdjustBounds$qqrv", + "@Olectnrs@TOleContainer@CMDocWindowActivate$qqrr17Messages@TMessage", + "@Olectnrs@TOleContainer@CMUIDeactivate$qqrr17Messages@TMessage", + "@Olectnrs@TOleContainer@CanInPlaceActivate$qqsv", + "@Olectnrs@TOleContainer@DeactivateAndUndo$qqsv", + "@Olectnrs@TOleContainer@OnInPlaceActivate$qqsv", + "@Olectnrs@TOleContainer@OnInPlaceDeactivate$qqsv", + "@Olectnrs@TOleContainer@OnUIActivate$qqsv", + "@Olectnrs@TOleContainer@OnUIDeactivate$qqsi", + "@Olectrls@TOleControl@CMDocWindowActivate$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMUIActivate$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CMUIDeactivate$qqrr17Messages@TMessage", + "@Olectrls@TOleControl@CanInPlaceActivate$qqsv", + "@Olectrls@TOleControl@DeactivateAndUndo$qqsv", + "@Olectrls@TOleControl@OnInPlaceActivate$qqsv", + "@Olectrls@TOleControl@OnInPlaceDeactivate$qqsv", + "@Olectrls@TOleControl@OnUIActivate$qqsv", + "@Olectrls@TOleControl@OnUIDeactivate$qqsi", + "@Stdctrls@TCustomCombo@AdjustDropDown$qqrv", + "@Stdctrls@TCustomCombo@Select$qqrv", + "@Stdctrls@TCustomComboBoxStrings@Delete$qqri", + "@Stdctrls@TCustomEdit@AdjustHeight$qqrv", + "@Stdctrls@TCustomGroupBox@AdjustClientRect$qqrr11Types@TRect", + "@Stdctrls@TCustomLabel@AdjustBounds$qqrv", + "@Stdctrls@TCustomStaticText@AdjustBounds$qqrv", + "@Toolwin@TToolDockObject@AdjustDockRect$qqrrx11Types@TRect", + "@Valedit@TValueListEditor@AdjustColWidths$qqrv", + "@Valedit@TValueListEditor@AdjustRowCount$qqrv", + "@Valedit@TValueListStrings@Delete$qqri", + "Unable to insert an item", + "Failed to clear tab control Failed to delete tab at index %d\"Failed to retrieve tab at index %d Failed to get object at index %d\"Failed to set tab \"%s\" at index %d", + "OLE control activation failed*Could not obtain OLE control window handle", + "eCannot assign a subitem to an actionbar when one of it's parent's is already assigned to an actionbar$Item %s has subitems, delete anyway?", + "Would you like to delete it?", + "Unable to insert a line2The specified directory does not exist. Create it?", + "Select Directory", + "Grid index out of range1Fixed column count must be less than column count+Fixed row count must be less than row count&Cannot insert or delete rows from grid" + ] + }, + "VCLDB60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 133052, + "raw_off": 1024, + "raw_size": 133120 + }, + { + "name": "DATA", + "va": 139264, + "vsize": 328, + "raw_off": 134144, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 143360, + "vsize": 117, + "raw_off": 134656, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 147456, + "vsize": 51712, + "raw_off": 134656, + "raw_size": 51712 + }, + { + "name": ".edata", + "va": 200704, + "vsize": 52892, + "raw_off": 186368, + "raw_size": 53248 + }, + { + "name": ".rdata", + "va": 253952, + "vsize": 28, + "raw_off": 239616, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 258048, + "vsize": 12624, + "raw_off": 240128, + "raw_size": 12800 + }, + { + "name": ".rsrc", + "va": 274432, + "vsize": 9728, + "raw_off": 252928, + "raw_size": 9728 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "dbrtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl" + ], + "exports": [ + "@$xp$15Dbctrls@TDBEdit", + "@$xp$15Dbctrls@TDBMemo", + "@$xp$15Dbctrls@TDBText", + "@$xp$15Dbgrids@TColumn", + "@$xp$15Dbgrids@TDBGrid", + "@$xp$16Dbctrls@TDBImage", + "@$xp$17Dbctrls@ENavClick", + "@$xp$17Dbctrls@TNavGlyph", + "@$xp$18Dbctrls@TButtonSet", + "@$xp$18Dbctrls@TDBListBox", + "@$xp$18Dbctrls@TNavButton", + "@$xp$18Dbgrids@DBGrids__5", + "@$xp$19Dbctrls@DBCtrls__11", + "@$xp$19Dbctrls@TDBCheckBox", + "@$xp$19Dbctrls@TDBComboBox", + "@$xp$19Dbctrls@TDBRichEdit", + "@$xp$20Dbactns@TDataSetEdit", + "@$xp$20Dbactns@TDataSetLast", + "@$xp$20Dbactns@TDataSetNext", + "@$xp$20Dbactns@TDataSetPost", + "@$xp$20Dbcgrids@TDBCtrlGrid", + "@$xp$20Dbctrls@TDBNavigator", + "@$xp$20Dbctrls@TNavDataLink", + "@$xp$20Dbctrls@TNavigateBtn", + "@$xp$20Dbgrids@TColumnTitle", + "@$xp$20Dbgrids@TColumnValue", + "@$xp$21Dbactns@TDataSetFirst", + "@$xp$21Dbactns@TDataSetPrior", + "@$xp$21Dbcgrids@TDBCtrlPanel", + "@$xp$21Dbctrls@TDBRadioGroup", + "@$xp$21Dbctrls@TPaintControl", + "@$xp$21Dbgrids@TBookmarkList", + "@$xp$21Dbgrids@TColumnValues", + "@$xp$21Dbgrids@TCustomDBGrid", + "@$xp$21Dbgrids@TDBGridOption", + "@$xp$21Dbgrids@TGridDataLink", + "@$xp$21Dblogdlg@TLoginDialog", + "@$xp$22Dbactns@TDataSetAction", + "@$xp$22Dbactns@TDataSetCancel", + "@$xp$22Dbactns@TDataSetDelete", + "@$xp$22Dbactns@TDataSetInsert", + "@$xp$22Dbctrls@TDropDownAlign", + "@$xp$22Dbctrls@TFieldDataLink", + "@$xp$22Dbctrls@TPopupDataList", + "@$xp$22Dbgrids@TDBGridColumns", + "@$xp$22Dbgrids@TDBGridOptions", + "@$xp$22Dbolectl@TDBOleControl", + "@$xp$22Dbolectl@TDataBindItem", + "@$xp$22Dbolectl@TDataBindings", + "@$xp$23Dbactns@TDataSetRefresh", + "@$xp$23Dbcgrids@TDBCtrlGridKey", + "@$xp$23Dbctrls@TDataSourceLink", + "@$xp$23Dbctrls@TListSourceLink", + "@$xp$23Dbctrls@TNavButtonStyle", + "@$xp$23Dbpwdlg@TPasswordDialog", + "@$xp$24Dbcgrids@TDBCtrlGridLink", + "@$xp$24Dbctrls@TDBLookupControl", + "@$xp$24Dbctrls@TDBLookupListBox", + "@$xp$25Dbcgrids@TPaintPanelEvent", + "@$xp$25Dbctrls@TDBLookupComboBox", + "@$xp$25Dbgrids@TDBGridClickEvent", + "@$xp$26Dbcgrids@TDBCtrlGridBorder", + "@$xp$26Dbgrids@TColumnButtonStyle", + "@$xp$26Dbgrids@TDrawDataCellEvent", + "@$xp$27Dbgrids@TDBGridColumnsState", + "@$xp$28Dbgrids@TDrawColumnCellEvent", + "@$xp$31Dbcgrids@TDBCtrlGridOrientation", + "@Dbactns@Finalization$qqrv", + "@Dbactns@TDataSetAction@", + "@Dbactns@TDataSetAction@GetDataSet$qqrp14System@TObject", + "@Dbactns@TDataSetAction@HandlesTarget$qqrp14System@TObject", + "@Dbactns@TDataSetAction@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbactns@TDataSetAction@SetDataSource$qqrp14Db@TDataSource", + "@Dbactns@TDataSetCancel@", + "@Dbactns@TDataSetCancel@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetCancel@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetDelete@", + "@Dbactns@TDataSetDelete@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetDelete@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetEdit@", + "@Dbactns@TDataSetEdit@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetEdit@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetFirst@", + "@Dbactns@TDataSetFirst@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetFirst@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetInsert@", + "@Dbactns@TDataSetInsert@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetInsert@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetLast@", + "@Dbactns@TDataSetLast@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetLast@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetNext@", + "@Dbactns@TDataSetNext@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetNext@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetPost@", + "@Dbactns@TDataSetPost@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetPost@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetPrior@", + "@Dbactns@TDataSetPrior@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetPrior@UpdateTarget$qqrp14System@TObject", + "@Dbactns@TDataSetRefresh@", + "@Dbactns@TDataSetRefresh@ExecuteTarget$qqrp14System@TObject", + "@Dbactns@TDataSetRefresh@UpdateTarget$qqrp14System@TObject", + "@Dbactns@initialization$qqrv", + "@Dbcgrids@Finalization$qqrv", + "@Dbcgrids@TDBCtrlGrid@", + "@Dbcgrids@TDBCtrlGrid@$bctr$qqrp18Classes@TComponent", + "@Dbcgrids@TDBCtrlGrid@$bdtr$qqrv", + "@Dbcgrids@TDBCtrlGrid@AcquireFocus$qqrv", + "@Dbcgrids@TDBCtrlGrid@AdjustSize$qqrv", + "@Dbcgrids@TDBCtrlGrid@CMChildKey$qqrr20Controls@TCMChildKey", + "@Dbcgrids@TDBCtrlGrid@CMColorChanged$qqrr17Messages@TMessage", + "@Dbcgrids@TDBCtrlGrid@CreatePanelBitmap$qqrv", + "@Dbcgrids@TDBCtrlGrid@CreateParams$qqrr22Controls@TCreateParams", + "@Dbcgrids@TDBCtrlGrid@CreateWnd$qqrv", + "@Dbcgrids@TDBCtrlGrid@DataSetChanged$qqro", + "@Dbcgrids@TDBCtrlGrid@DestroyPanelBitmap$qqrv", + "@Dbcgrids@TDBCtrlGrid@DoKey$qqr23Dbcgrids@TDBCtrlGridKey", + "@Dbcgrids@TDBCtrlGrid@DrawPanel$qqruii", + "@Dbcgrids@TDBCtrlGrid@DrawPanelBackground$qqruirx11Types@TRectoo", + "@Dbcgrids@TDBCtrlGrid@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbcgrids@TDBCtrlGrid@FindNext$qqrp20Controls@TWinControlori", + "@Dbcgrids@TDBCtrlGrid@GetChildParent$qqrv", + "@Dbcgrids@TDBCtrlGrid@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Dbcgrids@TDBCtrlGrid@GetDataSource$qqrv", + "@Dbcgrids@TDBCtrlGrid@GetEditMode$qqrv", + "@Dbcgrids@TDBCtrlGrid@GetPanelBounds$qqri", + "@Dbcgrids@TDBCtrlGrid@GetTabOrderList$qqrp13Classes@TList", + "@Dbcgrids@TDBCtrlGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbcgrids@TDBCtrlGrid@PaintPanel$qqri", + "@Dbcgrids@TDBCtrlGrid@PaintWindow$qqrui", + "@Dbcgrids@TDBCtrlGrid@PointInPanel$qqrx17Types@TSmallPoint", + "@Dbcgrids@TDBCtrlGrid@ReadState$qqrp15Classes@TReader", + "@Dbcgrids@TDBCtrlGrid@Reset$qqrv", + "@Dbcgrids@TDBCtrlGrid@Scroll$qqrio", + "@Dbcgrids@TDBCtrlGrid@ScrollMessage$qqrr18Messages@TWMScroll", + "@Dbcgrids@TDBCtrlGrid@SelectNext$qqro", + "@Dbcgrids@TDBCtrlGrid@SetBounds$qqriiii", + "@Dbcgrids@TDBCtrlGrid@SetColCount$qqri", + "@Dbcgrids@TDBCtrlGrid@SetDataSource$qqrp14Db@TDataSource", + "@Dbcgrids@TDBCtrlGrid@SetEditMode$qqro", + "@Dbcgrids@TDBCtrlGrid@SetOrientation$qqr31Dbcgrids@TDBCtrlGridOrientation", + "@Dbcgrids@TDBCtrlGrid@SetPanelBorder$qqr26Dbcgrids@TDBCtrlGridBorder", + "@Dbcgrids@TDBCtrlGrid@SetPanelHeight$qqri", + "@Dbcgrids@TDBCtrlGrid@SetPanelIndex$qqri", + "@Dbcgrids@TDBCtrlGrid@SetPanelWidth$qqri", + "@Dbcgrids@TDBCtrlGrid@SetRowCount$qqri", + "@Dbcgrids@TDBCtrlGrid@SetSelectedColor$qqr15Graphics@TColor", + "@Dbcgrids@TDBCtrlGrid@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbcgrids@TDBCtrlGrid@UpdateDataLinks$qqrp17Controls@TControlo", + "@Dbcgrids@TDBCtrlGrid@UpdateScrollBar$qqrv", + "@Dbcgrids@TDBCtrlGrid@WMEraseBkgnd$qqrr17Messages@TMessage", + "@Dbcgrids@TDBCtrlGrid@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Dbcgrids@TDBCtrlGrid@WMHScroll$qqrr18Messages@TWMScroll", + "@Dbcgrids@TDBCtrlGrid@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Dbcgrids@TDBCtrlGrid@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Dbcgrids@TDBCtrlGrid@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Dbcgrids@TDBCtrlGrid@WMPaint$qqrr17Messages@TWMPaint", + "@Dbcgrids@TDBCtrlGrid@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Dbcgrids@TDBCtrlGrid@WMSize$qqrr17Messages@TMessage", + "@Dbcgrids@TDBCtrlGrid@WMVScroll$qqrr18Messages@TWMScroll", + "@Dbcgrids@TDBCtrlGridLink@", + "@Dbcgrids@TDBCtrlGridLink@$bctr$qqrp20Dbcgrids@TDBCtrlGrid", + "@Dbcgrids@TDBCtrlGridLink@ActiveChanged$qqrv", + "@Dbcgrids@TDBCtrlGridLink@DataSetChanged$qqrv", + "@Dbcgrids@TDBCtrlPanel@", + "@Dbcgrids@TDBCtrlPanel@$bctr$qqrp20Dbcgrids@TDBCtrlGrid", + "@Dbcgrids@TDBCtrlPanel@CMControlListChange$qqrr29Controls@TCMControlListChange", + "@Dbcgrids@TDBCtrlPanel@CreateParams$qqrr22Controls@TCreateParams", + "@Dbcgrids@TDBCtrlPanel@PaintWindow$qqrui", + "@Dbcgrids@TDBCtrlPanel@WMEraseBkgnd$qqrr17Messages@TMessage", + "@Dbcgrids@TDBCtrlPanel@WMNCHitTest$qqrr21Messages@TWMNCHitTest", + "@Dbcgrids@TDBCtrlPanel@WMPaint$qqrr17Messages@TWMPaint", + "@Dbcgrids@initialization$qqrv", + "@Dbctrls@DBUseRightToLeftAlignment$qqrp17Controls@TControlp9Db@TField", + "@Dbctrls@Finalization$qqrv", + "@Dbctrls@OkToChangeFieldAlignment$qqrp9Db@TField18Classes@TAlignment", + "@Dbctrls@TDBCheckBox@", + "@Dbctrls@TDBCheckBox@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBCheckBox@$bdtr$qqrv", + "@Dbctrls@TDBCheckBox@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBCheckBox@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBCheckBox@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBCheckBox@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBCheckBox@GetDataField$qqrv", + "@Dbctrls@TDBCheckBox@GetDataSource$qqrv", + "@Dbctrls@TDBCheckBox@GetField$qqrv", + "@Dbctrls@TDBCheckBox@GetFieldState$qqrv", + "@Dbctrls@TDBCheckBox@GetReadOnly$qqrv", + "@Dbctrls@TDBCheckBox@KeyPress$qqrrc", + "@Dbctrls@TDBCheckBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBCheckBox@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBCheckBox@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBCheckBox@SetReadOnly$qqro", + "@Dbctrls@TDBCheckBox@SetValueCheck$qqrx17System@AnsiString", + "@Dbctrls@TDBCheckBox@SetValueUncheck$qqrx17System@AnsiString", + "@Dbctrls@TDBCheckBox@Toggle$qqrv", + "@Dbctrls@TDBCheckBox@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBCheckBox@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBCheckBox@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBCheckBox@ValueMatch$qqrx17System@AnsiStringt1", + "@Dbctrls@TDBCheckBox@WMPaint$qqrr17Messages@TWMPaint", + "@Dbctrls@TDBCheckBox@WndProc$qqrr17Messages@TMessage", + "@Dbctrls@TDBComboBox@", + "@Dbctrls@TDBComboBox@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBComboBox@$bdtr$qqrv", + "@Dbctrls@TDBComboBox@CMEnter$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBComboBox@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBComboBox@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBComboBox@Change$qqrv", + "@Dbctrls@TDBComboBox@Click$qqrv", + "@Dbctrls@TDBComboBox@ComboWndProc$qqrr17Messages@TMessageuipv", + "@Dbctrls@TDBComboBox@CreateWnd$qqrv", + "@Dbctrls@TDBComboBox@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBComboBox@DropDown$qqrv", + "@Dbctrls@TDBComboBox@EditingChange$qqrp14System@TObject", + "@Dbctrls@TDBComboBox@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBComboBox@GetComboText$qqrv", + "@Dbctrls@TDBComboBox@GetDataField$qqrv", + "@Dbctrls@TDBComboBox@GetDataSource$qqrv", + "@Dbctrls@TDBComboBox@GetField$qqrv", + "@Dbctrls@TDBComboBox@GetReadOnly$qqrv", + "@Dbctrls@TDBComboBox@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBComboBox@KeyPress$qqrrc", + "@Dbctrls@TDBComboBox@Loaded$qqrv", + "@Dbctrls@TDBComboBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBComboBox@SetComboText$qqrx17System@AnsiString", + "@Dbctrls@TDBComboBox@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBComboBox@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBComboBox@SetEditReadOnly$qqrv", + "@Dbctrls@TDBComboBox@SetItems$qqrpx16Classes@TStrings", + "@Dbctrls@TDBComboBox@SetReadOnly$qqro", + "@Dbctrls@TDBComboBox@SetStyle$qqr23Stdctrls@TComboBoxStyle", + "@Dbctrls@TDBComboBox@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBComboBox@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBComboBox@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBComboBox@WMPaint$qqrr17Messages@TWMPaint", + "@Dbctrls@TDBComboBox@WndProc$qqrr17Messages@TMessage", + "@Dbctrls@TDBEdit@", + "@Dbctrls@TDBEdit@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBEdit@$bdtr$qqrv", + "@Dbctrls@TDBEdit@ActiveChange$qqrp14System@TObject", + "@Dbctrls@TDBEdit@CMEnter$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBEdit@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBEdit@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBEdit@Change$qqrv", + "@Dbctrls@TDBEdit@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBEdit@EditCanModify$qqrv", + "@Dbctrls@TDBEdit@EditingChange$qqrp14System@TObject", + "@Dbctrls@TDBEdit@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBEdit@GetDataField$qqrv", + "@Dbctrls@TDBEdit@GetDataSource$qqrv", + "@Dbctrls@TDBEdit@GetField$qqrv", + "@Dbctrls@TDBEdit@GetReadOnly$qqrv", + "@Dbctrls@TDBEdit@GetTextMargins$qqrv", + "@Dbctrls@TDBEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBEdit@KeyPress$qqrrc", + "@Dbctrls@TDBEdit@Loaded$qqrv", + "@Dbctrls@TDBEdit@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBEdit@Reset$qqrv", + "@Dbctrls@TDBEdit@ResetMaxLength$qqrv", + "@Dbctrls@TDBEdit@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBEdit@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBEdit@SetFocused$qqro", + "@Dbctrls@TDBEdit@SetReadOnly$qqro", + "@Dbctrls@TDBEdit@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBEdit@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBEdit@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBEdit@WMCut$qqrr17Messages@TMessage", + "@Dbctrls@TDBEdit@WMPaint$qqrr17Messages@TWMPaint", + "@Dbctrls@TDBEdit@WMPaste$qqrr17Messages@TMessage", + "@Dbctrls@TDBEdit@WMUndo$qqrr17Messages@TMessage", + "@Dbctrls@TDBImage@", + "@Dbctrls@TDBImage@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBImage@$bdtr$qqrv", + "@Dbctrls@TDBImage@CMEnter$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBImage@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBImage@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBImage@CMTextChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBImage@CopyToClipboard$qqrv", + "@Dbctrls@TDBImage@CreateParams$qqrr22Controls@TCreateParams", + "@Dbctrls@TDBImage@CutToClipboard$qqrv", + "@Dbctrls@TDBImage@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBImage@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBImage@GetDataField$qqrv", + "@Dbctrls@TDBImage@GetDataSource$qqrv", + "@Dbctrls@TDBImage@GetField$qqrv", + "@Dbctrls@TDBImage@GetPalette$qqrv", + "@Dbctrls@TDBImage@GetReadOnly$qqrv", + "@Dbctrls@TDBImage@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBImage@KeyPress$qqrrc", + "@Dbctrls@TDBImage@LoadPicture$qqrv", + "@Dbctrls@TDBImage@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBImage@Paint$qqrv", + "@Dbctrls@TDBImage@PasteFromClipboard$qqrv", + "@Dbctrls@TDBImage@PictureChanged$qqrp14System@TObject", + "@Dbctrls@TDBImage@SetAutoDisplay$qqro", + "@Dbctrls@TDBImage@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Dbctrls@TDBImage@SetCenter$qqro", + "@Dbctrls@TDBImage@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBImage@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBImage@SetPicture$qqrp17Graphics@TPicture", + "@Dbctrls@TDBImage@SetReadOnly$qqro", + "@Dbctrls@TDBImage@SetStretch$qqro", + "@Dbctrls@TDBImage@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBImage@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBImage@WMCopy$qqrr17Messages@TMessage", + "@Dbctrls@TDBImage@WMCut$qqrr17Messages@TMessage", + "@Dbctrls@TDBImage@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Dbctrls@TDBImage@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Dbctrls@TDBImage@WMPaste$qqrr17Messages@TMessage", + "@Dbctrls@TDBImage@WMSize$qqrr17Messages@TMessage", + "@Dbctrls@TDBListBox@", + "@Dbctrls@TDBListBox@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBListBox@$bdtr$qqrv", + "@Dbctrls@TDBListBox@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBListBox@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBListBox@Click$qqrv", + "@Dbctrls@TDBListBox@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBListBox@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBListBox@GetDataField$qqrv", + "@Dbctrls@TDBListBox@GetDataSource$qqrv", + "@Dbctrls@TDBListBox@GetField$qqrv", + "@Dbctrls@TDBListBox@GetReadOnly$qqrv", + "@Dbctrls@TDBListBox@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBListBox@KeyPress$qqrrc", + "@Dbctrls@TDBListBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBListBox@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBListBox@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBListBox@SetItems$qqrp16Classes@TStrings", + "@Dbctrls@TDBListBox@SetReadOnly$qqro", + "@Dbctrls@TDBListBox@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBListBox@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBListBox@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBListBox@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Dbctrls@TDBLookupComboBox@", + "@Dbctrls@TDBLookupComboBox@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBLookupComboBox@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupComboBox@CMCancelMode$qqrr22Controls@TCMCancelMode", + "@Dbctrls@TDBLookupComboBox@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupComboBox@CMDialogKey$qqrr15Messages@TWMKey", + "@Dbctrls@TDBLookupComboBox@CMFontChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupComboBox@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupComboBox@CloseUp$qqro", + "@Dbctrls@TDBLookupComboBox@CreateParams$qqrr22Controls@TCreateParams", + "@Dbctrls@TDBLookupComboBox@DropDown$qqrv", + "@Dbctrls@TDBLookupComboBox@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBLookupComboBox@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBLookupComboBox@KeyPress$qqrrc", + "@Dbctrls@TDBLookupComboBox@KeyValueChanged$qqrv", + "@Dbctrls@TDBLookupComboBox@ListMouseUp$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupComboBox@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupComboBox@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupComboBox@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupComboBox@Paint$qqrv", + "@Dbctrls@TDBLookupComboBox@SetBounds$qqriiii", + "@Dbctrls@TDBLookupComboBox@StopTracking$qqrv", + "@Dbctrls@TDBLookupComboBox@TrackButton$qqrii", + "@Dbctrls@TDBLookupComboBox@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBLookupComboBox@UpdateListFields$qqrv", + "@Dbctrls@TDBLookupComboBox@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBLookupComboBox@WMCancelMode$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupComboBox@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Dbctrls@TDBLookupControl@", + "@Dbctrls@TDBLookupControl@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBLookupControl@$bdtr$qqrv", + "@Dbctrls@TDBLookupControl@CMEnabledChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupControl@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupControl@CanModify$qqrv", + "@Dbctrls@TDBLookupControl@CheckNotCircular$qqrv", + "@Dbctrls@TDBLookupControl@CheckNotLookup$qqrv", + "@Dbctrls@TDBLookupControl@DataLinkRecordChanged$qqrp9Db@TField", + "@Dbctrls@TDBLookupControl@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBLookupControl@GetBorderSize$qqrv", + "@Dbctrls@TDBLookupControl@GetDataSource$qqrv", + "@Dbctrls@TDBLookupControl@GetKeyFieldName$qqrv", + "@Dbctrls@TDBLookupControl@GetListSource$qqrv", + "@Dbctrls@TDBLookupControl@GetReadOnly$qqrv", + "@Dbctrls@TDBLookupControl@GetTextHeight$qqrv", + "@Dbctrls@TDBLookupControl@KeyValueChanged$qqrv", + "@Dbctrls@TDBLookupControl@ListLinkDataChanged$qqrv", + "@Dbctrls@TDBLookupControl@LocateKey$qqrv", + "@Dbctrls@TDBLookupControl@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBLookupControl@ProcessSearchKey$qqrc", + "@Dbctrls@TDBLookupControl@SelectKeyValue$qqrrx14System@Variant", + "@Dbctrls@TDBLookupControl@SetDataFieldName$qqrx17System@AnsiString", + "@Dbctrls@TDBLookupControl@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBLookupControl@SetKeyFieldName$qqrx17System@AnsiString", + "@Dbctrls@TDBLookupControl@SetKeyValue$qqrrx14System@Variant", + "@Dbctrls@TDBLookupControl@SetListFieldName$qqrx17System@AnsiString", + "@Dbctrls@TDBLookupControl@SetListSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBLookupControl@SetLookupMode$qqro", + "@Dbctrls@TDBLookupControl@SetReadOnly$qqro", + "@Dbctrls@TDBLookupControl@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBLookupControl@UpdateDataFields$qqrv", + "@Dbctrls@TDBLookupControl@UpdateListFields$qqrv", + "@Dbctrls@TDBLookupControl@WMGetDlgCode$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupControl@WMKeyDown$qqrr15Messages@TWMKey", + "@Dbctrls@TDBLookupControl@WMKillFocus$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupControl@WMSetFocus$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupListBox@", + "@Dbctrls@TDBLookupListBox@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBLookupListBox@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupListBox@CMFontChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupListBox@CreateParams$qqrr22Controls@TCreateParams", + "@Dbctrls@TDBLookupListBox@CreateWnd$qqrv", + "@Dbctrls@TDBLookupListBox@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBLookupListBox@GetKeyIndex$qqrv", + "@Dbctrls@TDBLookupListBox@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBLookupListBox@KeyPress$qqrrc", + "@Dbctrls@TDBLookupListBox@KeyValueChanged$qqrv", + "@Dbctrls@TDBLookupListBox@ListLinkDataChanged$qqrv", + "@Dbctrls@TDBLookupListBox@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupListBox@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupListBox@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBLookupListBox@Paint$qqrv", + "@Dbctrls@TDBLookupListBox@SelectCurrent$qqrv", + "@Dbctrls@TDBLookupListBox@SelectItemAt$qqrii", + "@Dbctrls@TDBLookupListBox@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Dbctrls@TDBLookupListBox@SetBounds$qqriiii", + "@Dbctrls@TDBLookupListBox@SetRowCount$qqri", + "@Dbctrls@TDBLookupListBox@StopTimer$qqrv", + "@Dbctrls@TDBLookupListBox@StopTracking$qqrv", + "@Dbctrls@TDBLookupListBox@TimerScroll$qqrv", + "@Dbctrls@TDBLookupListBox@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBLookupListBox@UpdateListFields$qqrv", + "@Dbctrls@TDBLookupListBox@UpdateScrollBar$qqrv", + "@Dbctrls@TDBLookupListBox@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBLookupListBox@WMCancelMode$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupListBox@WMTimer$qqrr17Messages@TMessage", + "@Dbctrls@TDBLookupListBox@WMVScroll$qqrr18Messages@TWMScroll", + "@Dbctrls@TDBMemo@", + "@Dbctrls@TDBMemo@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBMemo@$bdtr$qqrv", + "@Dbctrls@TDBMemo@CMEnter$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBMemo@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBMemo@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBMemo@Change$qqrv", + "@Dbctrls@TDBMemo@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBMemo@EditingChange$qqrp14System@TObject", + "@Dbctrls@TDBMemo@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBMemo@GetDataField$qqrv", + "@Dbctrls@TDBMemo@GetDataSource$qqrv", + "@Dbctrls@TDBMemo@GetField$qqrv", + "@Dbctrls@TDBMemo@GetReadOnly$qqrv", + "@Dbctrls@TDBMemo@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBMemo@KeyPress$qqrrc", + "@Dbctrls@TDBMemo@LoadMemo$qqrv", + "@Dbctrls@TDBMemo@Loaded$qqrv", + "@Dbctrls@TDBMemo@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBMemo@SetAutoDisplay$qqro", + "@Dbctrls@TDBMemo@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBMemo@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBMemo@SetFocused$qqro", + "@Dbctrls@TDBMemo@SetReadOnly$qqro", + "@Dbctrls@TDBMemo@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBMemo@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBMemo@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBMemo@WMCut$qqrr17Messages@TMessage", + "@Dbctrls@TDBMemo@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Dbctrls@TDBMemo@WMPaint$qqrr17Messages@TWMPaint", + "@Dbctrls@TDBMemo@WMPaste$qqrr17Messages@TMessage", + "@Dbctrls@TDBMemo@WMUndo$qqrr17Messages@TMessage", + "@Dbctrls@TDBMemo@WndProc$qqrr17Messages@TMessage", + "@Dbctrls@TDBNavigator@", + "@Dbctrls@TDBNavigator@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBNavigator@$bdtr$qqrv", + "@Dbctrls@TDBNavigator@ActiveChanged$qqrv", + "@Dbctrls@TDBNavigator@BtnClick$qqr20Dbctrls@TNavigateBtn", + "@Dbctrls@TDBNavigator@BtnMouseDown$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TDBNavigator@CMEnabledChanged$qqrr17Messages@TMessage", + "@Dbctrls@TDBNavigator@CalcMinSize$qqrrit1", + "@Dbctrls@TDBNavigator@ClickHandler$qqrp14System@TObject", + "@Dbctrls@TDBNavigator@DataChanged$qqrv", + "@Dbctrls@TDBNavigator@EditingChanged$qqrv", + "@Dbctrls@TDBNavigator@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Dbctrls@TDBNavigator@GetDataSource$qqrv", + "@Dbctrls@TDBNavigator@GetHints$qqrv", + "@Dbctrls@TDBNavigator@HintsChanged$qqrp14System@TObject", + "@Dbctrls@TDBNavigator@InitButtons$qqrv", + "@Dbctrls@TDBNavigator@InitHints$qqrv", + "@Dbctrls@TDBNavigator@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBNavigator@Loaded$qqrv", + "@Dbctrls@TDBNavigator@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBNavigator@SetBounds$qqriiii", + "@Dbctrls@TDBNavigator@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBNavigator@SetFlat$qqro", + "@Dbctrls@TDBNavigator@SetHints$qqrp16Classes@TStrings", + "@Dbctrls@TDBNavigator@SetSize$qqrrit1", + "@Dbctrls@TDBNavigator@SetVisible$qqr48System@%Set$t20Dbctrls@TNavigateBtn$iuc$0$iuc$9%", + "@Dbctrls@TDBNavigator@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBNavigator@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Dbctrls@TDBNavigator@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Dbctrls@TDBNavigator@WMSize$qqrr16Messages@TWMSize", + "@Dbctrls@TDBNavigator@WMWindowPosChanging$qqrr24Messages@TWMWindowPosMsg", + "@Dbctrls@TDBRadioGroup@", + "@Dbctrls@TDBRadioGroup@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBRadioGroup@$bdtr$qqrv", + "@Dbctrls@TDBRadioGroup@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBRadioGroup@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBRadioGroup@CanModify$qqrv", + "@Dbctrls@TDBRadioGroup@Change$qqrv", + "@Dbctrls@TDBRadioGroup@Click$qqrv", + "@Dbctrls@TDBRadioGroup@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBRadioGroup@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBRadioGroup@GetButtonValue$qqri", + "@Dbctrls@TDBRadioGroup@GetDataField$qqrv", + "@Dbctrls@TDBRadioGroup@GetDataSource$qqrv", + "@Dbctrls@TDBRadioGroup@GetField$qqrv", + "@Dbctrls@TDBRadioGroup@GetReadOnly$qqrv", + "@Dbctrls@TDBRadioGroup@KeyPress$qqrrc", + "@Dbctrls@TDBRadioGroup@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBRadioGroup@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBRadioGroup@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBRadioGroup@SetItems$qqrp16Classes@TStrings", + "@Dbctrls@TDBRadioGroup@SetReadOnly$qqro", + "@Dbctrls@TDBRadioGroup@SetValue$qqrx17System@AnsiString", + "@Dbctrls@TDBRadioGroup@SetValues$qqrp16Classes@TStrings", + "@Dbctrls@TDBRadioGroup@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBRadioGroup@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBRadioGroup@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBRichEdit@", + "@Dbctrls@TDBRichEdit@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBRichEdit@$bdtr$qqrv", + "@Dbctrls@TDBRichEdit@BeginEditing$qqrv", + "@Dbctrls@TDBRichEdit@CMEnter$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBRichEdit@CMExit$qqrr20Messages@TWMNoParams", + "@Dbctrls@TDBRichEdit@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBRichEdit@Change$qqrv", + "@Dbctrls@TDBRichEdit@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBRichEdit@EditingChange$qqrp14System@TObject", + "@Dbctrls@TDBRichEdit@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBRichEdit@GetDataField$qqrv", + "@Dbctrls@TDBRichEdit@GetDataSource$qqrv", + "@Dbctrls@TDBRichEdit@GetField$qqrv", + "@Dbctrls@TDBRichEdit@GetReadOnly$qqrv", + "@Dbctrls@TDBRichEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbctrls@TDBRichEdit@KeyPress$qqrrc", + "@Dbctrls@TDBRichEdit@LoadMemo$qqrv", + "@Dbctrls@TDBRichEdit@Loaded$qqrv", + "@Dbctrls@TDBRichEdit@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBRichEdit@SetAutoDisplay$qqro", + "@Dbctrls@TDBRichEdit@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBRichEdit@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBRichEdit@SetFocused$qqro", + "@Dbctrls@TDBRichEdit@SetReadOnly$qqro", + "@Dbctrls@TDBRichEdit@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBRichEdit@UpdateData$qqrp14System@TObject", + "@Dbctrls@TDBRichEdit@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDBRichEdit@WMCut$qqrr17Messages@TMessage", + "@Dbctrls@TDBRichEdit@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Dbctrls@TDBRichEdit@WMPaste$qqrr17Messages@TMessage", + "@Dbctrls@TDBText@", + "@Dbctrls@TDBText@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TDBText@$bdtr$qqrv", + "@Dbctrls@TDBText@CMGetDataLink$qqrr17Messages@TMessage", + "@Dbctrls@TDBText@DataChange$qqrp14System@TObject", + "@Dbctrls@TDBText@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBText@GetDataField$qqrv", + "@Dbctrls@TDBText@GetDataSource$qqrv", + "@Dbctrls@TDBText@GetField$qqrv", + "@Dbctrls@TDBText@GetFieldText$qqrv", + "@Dbctrls@TDBText@GetLabelText$qqrv", + "@Dbctrls@TDBText@Loaded$qqrv", + "@Dbctrls@TDBText@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbctrls@TDBText@SetAutoSize$qqro", + "@Dbctrls@TDBText@SetDataField$qqrx17System@AnsiString", + "@Dbctrls@TDBText@SetDataSource$qqrp14Db@TDataSource", + "@Dbctrls@TDBText@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbctrls@TDBText@UseRightToLeftAlignment$qqrv", + "@Dbctrls@TDataSourceLink@", + "@Dbctrls@TDataSourceLink@$bctr$qqrv", + "@Dbctrls@TDataSourceLink@ActiveChanged$qqrv", + "@Dbctrls@TDataSourceLink@FocusControl$qqrpp9Db@TField", + "@Dbctrls@TDataSourceLink@LayoutChanged$qqrv", + "@Dbctrls@TDataSourceLink@RecordChanged$qqrp9Db@TField", + "@Dbctrls@TFieldDataLink@", + "@Dbctrls@TFieldDataLink@$bctr$qqrv", + "@Dbctrls@TFieldDataLink@ActiveChanged$qqrv", + "@Dbctrls@TFieldDataLink@Edit$qqrv", + "@Dbctrls@TFieldDataLink@EditingChanged$qqrv", + "@Dbctrls@TFieldDataLink@FocusControl$qqrpp9Db@TField", + "@Dbctrls@TFieldDataLink@GetCanModify$qqrv", + "@Dbctrls@TFieldDataLink@LayoutChanged$qqrv", + "@Dbctrls@TFieldDataLink@Modified$qqrv", + "@Dbctrls@TFieldDataLink@RecordChanged$qqrp9Db@TField", + "@Dbctrls@TFieldDataLink@Reset$qqrv", + "@Dbctrls@TFieldDataLink@SetEditing$qqro", + "@Dbctrls@TFieldDataLink@SetField$qqrp9Db@TField", + "@Dbctrls@TFieldDataLink@SetFieldName$qqrx17System@AnsiString", + "@Dbctrls@TFieldDataLink@UpdateData$qqrv", + "@Dbctrls@TFieldDataLink@UpdateField$qqrv", + "@Dbctrls@TFieldDataLink@UpdateRightToLeft$qqrv", + "@Dbctrls@TListSourceLink@", + "@Dbctrls@TListSourceLink@$bctr$qqrv", + "@Dbctrls@TListSourceLink@ActiveChanged$qqrv", + "@Dbctrls@TListSourceLink@DataSetChanged$qqrv", + "@Dbctrls@TListSourceLink@LayoutChanged$qqrv", + "@Dbctrls@TNavButton@", + "@Dbctrls@TNavButton@$bdtr$qqrv", + "@Dbctrls@TNavButton@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TNavButton@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbctrls@TNavButton@Paint$qqrv", + "@Dbctrls@TNavButton@TimerExpired$qqrp14System@TObject", + "@Dbctrls@TNavDataLink@", + "@Dbctrls@TNavDataLink@$bctr$qqrp20Dbctrls@TDBNavigator", + "@Dbctrls@TNavDataLink@$bdtr$qqrv", + "@Dbctrls@TNavDataLink@ActiveChanged$qqrv", + "@Dbctrls@TNavDataLink@DataSetChanged$qqrv", + "@Dbctrls@TNavDataLink@EditingChanged$qqrv", + "@Dbctrls@TPaintControl@", + "@Dbctrls@TPaintControl@$bctr$qqrp20Controls@TWinControlx17System@AnsiString", + "@Dbctrls@TPaintControl@$bdtr$qqrv", + "@Dbctrls@TPaintControl@DestroyHandle$qqrv", + "@Dbctrls@TPaintControl@GetHandle$qqrv", + "@Dbctrls@TPaintControl@SetCtl3DButton$qqro", + "@Dbctrls@TPaintControl@WndProc$qqrr17Messages@TMessage", + "@Dbctrls@TPopupDataList@", + "@Dbctrls@TPopupDataList@$bctr$qqrp18Classes@TComponent", + "@Dbctrls@TPopupDataList@CreateParams$qqrr22Controls@TCreateParams", + "@Dbctrls@TPopupDataList@WMMouseActivate$qqrr17Messages@TMessage", + "@Dbctrls@initialization$qqrv", + "@Dbgrids@Finalization$qqrv", + "@Dbgrids@TBookmarkList@", + "@Dbgrids@TBookmarkList@$bctr$qqrp21Dbgrids@TCustomDBGrid", + "@Dbgrids@TBookmarkList@$bdtr$qqrv", + "@Dbgrids@TBookmarkList@Clear$qqrv", + "@Dbgrids@TBookmarkList@Compare$qqrx17System@AnsiStringt1", + "@Dbgrids@TBookmarkList@CurrentRow$qqrv", + "@Dbgrids@TBookmarkList@Delete$qqrv", + "@Dbgrids@TBookmarkList@Find$qqrx17System@AnsiStringri", + "@Dbgrids@TBookmarkList@GetCount$qqrv", + "@Dbgrids@TBookmarkList@GetCurrentRowSelected$qqrv", + "@Dbgrids@TBookmarkList@GetItem$qqri", + "@Dbgrids@TBookmarkList@IndexOf$qqrx17System@AnsiString", + "@Dbgrids@TBookmarkList@LinkActive$qqro", + "@Dbgrids@TBookmarkList@Refresh$qqrv", + "@Dbgrids@TBookmarkList@SetCurrentRowSelected$qqro", + "@Dbgrids@TBookmarkList@StringsChanged$qqrp14System@TObject", + "@Dbgrids@TColumn@", + "@Dbgrids@TColumn@$bctr$qqrp19Classes@TCollection", + "@Dbgrids@TColumn@$bdtr$qqrv", + "@Dbgrids@TColumn@Assign$qqrp19Classes@TPersistent", + "@Dbgrids@TColumn@CreateTitle$qqrv", + "@Dbgrids@TColumn@DefaultAlignment$qqrv", + "@Dbgrids@TColumn@DefaultColor$qqrv", + "@Dbgrids@TColumn@DefaultFont$qqrv", + "@Dbgrids@TColumn@DefaultImeMode$qqrv", + "@Dbgrids@TColumn@DefaultImeName$qqrv", + "@Dbgrids@TColumn@DefaultReadOnly$qqrv", + "@Dbgrids@TColumn@DefaultWidth$qqrv", + "@Dbgrids@TColumn@Depth$qqrv", + "@Dbgrids@TColumn@FontChanged$qqrp14System@TObject", + "@Dbgrids@TColumn@GetAlignment$qqrv", + "@Dbgrids@TColumn@GetColor$qqrv", + "@Dbgrids@TColumn@GetDisplayName$qqrv", + "@Dbgrids@TColumn@GetExpandable$qqrv", + "@Dbgrids@TColumn@GetExpanded$qqrv", + "@Dbgrids@TColumn@GetField$qqrv", + "@Dbgrids@TColumn@GetFont$qqrv", + "@Dbgrids@TColumn@GetGrid$qqrv", + "@Dbgrids@TColumn@GetImeMode$qqrv", + "@Dbgrids@TColumn@GetImeName$qqrv", + "@Dbgrids@TColumn@GetParentColumn$qqrv", + "@Dbgrids@TColumn@GetPickList$qqrv", + "@Dbgrids@TColumn@GetReadOnly$qqrv", + "@Dbgrids@TColumn@GetShowing$qqrv", + "@Dbgrids@TColumn@GetVisible$qqrv", + "@Dbgrids@TColumn@GetWidth$qqrv", + "@Dbgrids@TColumn@IsAlignmentStored$qqrv", + "@Dbgrids@TColumn@IsColorStored$qqrv", + "@Dbgrids@TColumn@IsFontStored$qqrv", + "@Dbgrids@TColumn@IsImeModeStored$qqrv", + "@Dbgrids@TColumn@IsImeNameStored$qqrv", + "@Dbgrids@TColumn@IsReadOnlyStored$qqrv", + "@Dbgrids@TColumn@IsWidthStored$qqrv", + "@Dbgrids@TColumn@RefreshDefaultFont$qqrv", + "@Dbgrids@TColumn@RestoreDefaults$qqrv", + "@Dbgrids@TColumn@SetAlignment$qqr18Classes@TAlignment", + "@Dbgrids@TColumn@SetButtonStyle$qqr26Dbgrids@TColumnButtonStyle", + "@Dbgrids@TColumn@SetColor$qqr15Graphics@TColor", + "@Dbgrids@TColumn@SetExpanded$qqro", + "@Dbgrids@TColumn@SetField$qqrp9Db@TField", + "@Dbgrids@TColumn@SetFieldName$qqrx17System@AnsiString", + "@Dbgrids@TColumn@SetFont$qqrp14Graphics@TFont", + "@Dbgrids@TColumn@SetImeMode$qqr17Controls@TImeMode", + "@Dbgrids@TColumn@SetImeName$qqr17System@AnsiString", + "@Dbgrids@TColumn@SetIndex$qqri", + "@Dbgrids@TColumn@SetPickList$qqrp16Classes@TStrings", + "@Dbgrids@TColumn@SetPopupMenu$qqrp16Menus@TPopupMenu", + "@Dbgrids@TColumn@SetReadOnly$qqro", + "@Dbgrids@TColumn@SetTitle$qqrp20Dbgrids@TColumnTitle", + "@Dbgrids@TColumn@SetVisible$qqro", + "@Dbgrids@TColumn@SetWidth$qqri", + "@Dbgrids@TColumnTitle@", + "@Dbgrids@TColumnTitle@$bctr$qqrp15Dbgrids@TColumn", + "@Dbgrids@TColumnTitle@$bdtr$qqrv", + "@Dbgrids@TColumnTitle@Assign$qqrp19Classes@TPersistent", + "@Dbgrids@TColumnTitle@DefaultAlignment$qqrv", + "@Dbgrids@TColumnTitle@DefaultCaption$qqrv", + "@Dbgrids@TColumnTitle@DefaultColor$qqrv", + "@Dbgrids@TColumnTitle@DefaultFont$qqrv", + "@Dbgrids@TColumnTitle@FontChanged$qqrp14System@TObject", + "@Dbgrids@TColumnTitle@GetAlignment$qqrv", + "@Dbgrids@TColumnTitle@GetCaption$qqrv", + "@Dbgrids@TColumnTitle@GetColor$qqrv", + "@Dbgrids@TColumnTitle@GetFont$qqrv", + "@Dbgrids@TColumnTitle@IsAlignmentStored$qqrv", + "@Dbgrids@TColumnTitle@IsCaptionStored$qqrv", + "@Dbgrids@TColumnTitle@IsColorStored$qqrv", + "@Dbgrids@TColumnTitle@IsFontStored$qqrv", + "@Dbgrids@TColumnTitle@RefreshDefaultFont$qqrv", + "@Dbgrids@TColumnTitle@RestoreDefaults$qqrv", + "@Dbgrids@TColumnTitle@SetAlignment$qqr18Classes@TAlignment", + "@Dbgrids@TColumnTitle@SetCaption$qqrx17System@AnsiString", + "@Dbgrids@TColumnTitle@SetColor$qqr15Graphics@TColor", + "@Dbgrids@TColumnTitle@SetFont$qqrp14Graphics@TFont", + "@Dbgrids@TCustomDBGrid@", + "@Dbgrids@TCustomDBGrid@$bctr$qqrp18Classes@TComponent", + "@Dbgrids@TCustomDBGrid@$bdtr$qqrv", + "@Dbgrids@TCustomDBGrid@AcquireFocus$qqrv", + "@Dbgrids@TCustomDBGrid@AcquireLayoutLock$qqrv", + "@Dbgrids@TCustomDBGrid@BeginColumnDrag$qqrrit1rx12Types@TPoint", + "@Dbgrids@TCustomDBGrid@BeginLayout$qqrv", + "@Dbgrids@TCustomDBGrid@BeginUpdate$qqrv", + "@Dbgrids@TCustomDBGrid@CMBiDiModeChanged$qqrr17Messages@TMessage", + "@Dbgrids@TCustomDBGrid@CMDeferLayout$qqrpv", + "@Dbgrids@TCustomDBGrid@CMDesignHitTest$qqrr17Messages@TWMMouse", + "@Dbgrids@TCustomDBGrid@CMExit$qqrr17Messages@TMessage", + "@Dbgrids@TCustomDBGrid@CMFontChanged$qqrr17Messages@TMessage", + "@Dbgrids@TCustomDBGrid@CMParentFontChanged$qqrr17Messages@TMessage", + "@Dbgrids@TCustomDBGrid@CalcSizingState$qqriir16Grids@TGridStaterit4t4r19Grids@TGridDrawInfo", + "@Dbgrids@TCustomDBGrid@CalcTitleRect$qqrp15Dbgrids@TColumnirp15Dbgrids@TColumn", + "@Dbgrids@TCustomDBGrid@CanEditAcceptKey$qqrc", + "@Dbgrids@TCustomDBGrid@CanEditModify$qqrv", + "@Dbgrids@TCustomDBGrid@CanEditShow$qqrv", + "@Dbgrids@TCustomDBGrid@CancelLayout$qqrv", + "@Dbgrids@TCustomDBGrid@CellClick$qqrp15Dbgrids@TColumn", + "@Dbgrids@TCustomDBGrid@CheckColumnDrag$qqrrit1rx12Types@TPoint", + "@Dbgrids@TCustomDBGrid@ColEnter$qqrv", + "@Dbgrids@TCustomDBGrid@ColExit$qqrv", + "@Dbgrids@TCustomDBGrid@ColWidthsChanged$qqrv", + "@Dbgrids@TCustomDBGrid@ColumnAtDepth$qqrp15Dbgrids@TColumni", + "@Dbgrids@TCustomDBGrid@ColumnMoved$qqrii", + "@Dbgrids@TCustomDBGrid@CreateColumns$qqrv", + "@Dbgrids@TCustomDBGrid@CreateDataLink$qqrv", + "@Dbgrids@TCustomDBGrid@CreateEditor$qqrv", + "@Dbgrids@TCustomDBGrid@CreateWnd$qqrv", + "@Dbgrids@TCustomDBGrid@DataChanged$qqrv", + "@Dbgrids@TCustomDBGrid@DataToRawColumn$qqri", + "@Dbgrids@TCustomDBGrid@DefaultDrawColumnCell$qqrrx11Types@TRectip15Dbgrids@TColumn42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Dbgrids@TCustomDBGrid@DefaultDrawDataCell$qqrrx11Types@TRectp9Db@TField42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Dbgrids@TCustomDBGrid@DefaultHandler$qqrpv", + "@Dbgrids@TCustomDBGrid@DeferLayout$qqrv", + "@Dbgrids@TCustomDBGrid@DefineFieldMap$qqrv", + "@Dbgrids@TCustomDBGrid@DefineProperties$qqrp14Classes@TFiler", + "@Dbgrids@TCustomDBGrid@DrawCell$qqriirx11Types@TRect42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Dbgrids@TCustomDBGrid@DrawColumnCell$qqrrx11Types@TRectip15Dbgrids@TColumn42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Dbgrids@TCustomDBGrid@DrawDataCell$qqrrx11Types@TRectp9Db@TField42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Dbgrids@TCustomDBGrid@EditButtonClick$qqrv", + "@Dbgrids@TCustomDBGrid@EditingChanged$qqrv", + "@Dbgrids@TCustomDBGrid@EndColumnDrag$qqrrit1rx12Types@TPoint", + "@Dbgrids@TCustomDBGrid@EndLayout$qqrv", + "@Dbgrids@TCustomDBGrid@EndUpdate$qqrv", + "@Dbgrids@TCustomDBGrid@ExecuteAction$qqrp20Classes@TBasicAction", + "@Dbgrids@TCustomDBGrid@GetColField$qqri", + "@Dbgrids@TCustomDBGrid@GetDataSource$qqrv", + "@Dbgrids@TCustomDBGrid@GetEditLimit$qqrv", + "@Dbgrids@TCustomDBGrid@GetEditMask$qqrii", + "@Dbgrids@TCustomDBGrid@GetEditStyle$qqrii", + "@Dbgrids@TCustomDBGrid@GetEditText$qqrii", + "@Dbgrids@TCustomDBGrid@GetFieldCount$qqrv", + "@Dbgrids@TCustomDBGrid@GetFieldValue$qqri", + "@Dbgrids@TCustomDBGrid@GetFields$qqri", + "@Dbgrids@TCustomDBGrid@GetSelectedField$qqrv", + "@Dbgrids@TCustomDBGrid@GetSelectedIndex$qqrv", + "@Dbgrids@TCustomDBGrid@HighlightCell$qqriix17System@AnsiString42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Dbgrids@TCustomDBGrid@InternalLayout$qqrv", + "@Dbgrids@TCustomDBGrid@InvalidateTitles$qqrv", + "@Dbgrids@TCustomDBGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Dbgrids@TCustomDBGrid@KeyPress$qqrrc", + "@Dbgrids@TCustomDBGrid@LayoutChanged$qqrv", + "@Dbgrids@TCustomDBGrid@LinkActive$qqro", + "@Dbgrids@TCustomDBGrid@Loaded$qqrv", + "@Dbgrids@TCustomDBGrid@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbgrids@TCustomDBGrid@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Dbgrids@TCustomDBGrid@MoveCol$qqrii", + "@Dbgrids@TCustomDBGrid@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbgrids@TCustomDBGrid@PtInExpandButton$qqriirp15Dbgrids@TColumn", + "@Dbgrids@TCustomDBGrid@RawToDataColumn$qqri", + "@Dbgrids@TCustomDBGrid@ReadColumns$qqrp15Classes@TReader", + "@Dbgrids@TCustomDBGrid@RecordChanged$qqrp9Db@TField", + "@Dbgrids@TCustomDBGrid@Scroll$qqri", + "@Dbgrids@TCustomDBGrid@SetColumnAttributes$qqrv", + "@Dbgrids@TCustomDBGrid@SetColumns$qqrp22Dbgrids@TDBGridColumns", + "@Dbgrids@TCustomDBGrid@SetDataSource$qqrp14Db@TDataSource", + "@Dbgrids@TCustomDBGrid@SetEditText$qqriix17System@AnsiString", + "@Dbgrids@TCustomDBGrid@SetIme$qqrv", + "@Dbgrids@TCustomDBGrid@SetOptions$qqr50System@%Set$t21Dbgrids@TDBGridOption$iuc$0$iuc$12%", + "@Dbgrids@TCustomDBGrid@SetSelectedField$qqrp9Db@TField", + "@Dbgrids@TCustomDBGrid@SetSelectedIndex$qqri", + "@Dbgrids@TCustomDBGrid@SetTitleFont$qqrp14Graphics@TFont", + "@Dbgrids@TCustomDBGrid@ShowPopupEditor$qqrp15Dbgrids@TColumnii", + "@Dbgrids@TCustomDBGrid@StoreColumns$qqrv", + "@Dbgrids@TCustomDBGrid@TimedScroll$qqr42System@%Set$t14Grids@Grids__4$iuc$0$iuc$3%", + "@Dbgrids@TCustomDBGrid@TitleClick$qqrp15Dbgrids@TColumn", + "@Dbgrids@TCustomDBGrid@TitleFontChanged$qqrp14System@TObject", + "@Dbgrids@TCustomDBGrid@TopLeftChanged$qqrv", + "@Dbgrids@TCustomDBGrid@UpdateAction$qqrp20Classes@TBasicAction", + "@Dbgrids@TCustomDBGrid@UpdateActive$qqrv", + "@Dbgrids@TCustomDBGrid@UpdateData$qqrv", + "@Dbgrids@TCustomDBGrid@UpdateIme$qqrv", + "@Dbgrids@TCustomDBGrid@UpdateRowCount$qqrv", + "@Dbgrids@TCustomDBGrid@UpdateScrollBar$qqrv", + "@Dbgrids@TCustomDBGrid@UseRightToLeftAlignmentForField$qqrpx9Db@TField18Classes@TAlignment", + "@Dbgrids@TCustomDBGrid@ValidFieldIndex$qqri", + "@Dbgrids@TCustomDBGrid@WMIMEStartComp$qqrr17Messages@TMessage", + "@Dbgrids@TCustomDBGrid@WMKillFocus$qqrr17Messages@TMessage", + "@Dbgrids@TCustomDBGrid@WMSetCursor$qqrr21Messages@TWMSetCursor", + "@Dbgrids@TCustomDBGrid@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Dbgrids@TCustomDBGrid@WMSize$qqrr16Messages@TWMSize", + "@Dbgrids@TCustomDBGrid@WMVScroll$qqrr18Messages@TWMScroll", + "@Dbgrids@TCustomDBGrid@WriteColumns$qqrp15Classes@TWriter", + "@Dbgrids@TDBGrid@", + "@Dbgrids@TDBGridColumns@", + "@Dbgrids@TDBGridColumns@$bctr$qqrp21Dbgrids@TCustomDBGridp17System@TMetaClass", + "@Dbgrids@TDBGridColumns@Add$qqrv", + "@Dbgrids@TDBGridColumns@GetColumn$qqri", + "@Dbgrids@TDBGridColumns@GetOwner$qqrv", + "@Dbgrids@TDBGridColumns@GetState$qqrv", + "@Dbgrids@TDBGridColumns@InternalAdd$qqrv", + "@Dbgrids@TDBGridColumns@LoadFromFile$qqrx17System@AnsiString", + "@Dbgrids@TDBGridColumns@LoadFromStream$qqrp15Classes@TStream", + "@Dbgrids@TDBGridColumns@RebuildColumns$qqrv", + "@Dbgrids@TDBGridColumns@RestoreDefaults$qqrv", + "@Dbgrids@TDBGridColumns@SaveToFile$qqrx17System@AnsiString", + "@Dbgrids@TDBGridColumns@SaveToStream$qqrp15Classes@TStream", + "@Dbgrids@TDBGridColumns@SetColumn$qqrip15Dbgrids@TColumn", + "@Dbgrids@TDBGridColumns@SetState$qqr27Dbgrids@TDBGridColumnsState", + "@Dbgrids@TDBGridColumns@Update$qqrp23Classes@TCollectionItem", + "@Dbgrids@TGridDataLink@", + "@Dbgrids@TGridDataLink@$bctr$qqrp21Dbgrids@TCustomDBGrid", + "@Dbgrids@TGridDataLink@$bdtr$qqrv", + "@Dbgrids@TGridDataLink@ActiveChanged$qqrv", + "@Dbgrids@TGridDataLink@AddMapping$qqrx17System@AnsiString", + "@Dbgrids@TGridDataLink@BuildAggMap$qqrv", + "@Dbgrids@TGridDataLink@ClearMapping$qqrv", + "@Dbgrids@TGridDataLink@DataSetChanged$qqrv", + "@Dbgrids@TGridDataLink@DataSetScrolled$qqri", + "@Dbgrids@TGridDataLink@EditingChanged$qqrv", + "@Dbgrids@TGridDataLink@FocusControl$qqrpp9Db@TField", + "@Dbgrids@TGridDataLink@GetDefaultFields$qqrv", + "@Dbgrids@TGridDataLink@GetFields$qqri", + "@Dbgrids@TGridDataLink@GetMappedIndex$qqri", + "@Dbgrids@TGridDataLink@IsAggRow$qqri", + "@Dbgrids@TGridDataLink@LayoutChanged$qqrv", + "@Dbgrids@TGridDataLink@Modified$qqrv", + "@Dbgrids@TGridDataLink@RecordChanged$qqrp9Db@TField", + "@Dbgrids@TGridDataLink@Reset$qqrv", + "@Dbgrids@TGridDataLink@UpdateData$qqrv", + "@Dbgrids@initialization$qqrv", + "@Dblogdlg@Finalization$qqrv", + "@Dblogdlg@LoginDialog$qqrx17System@AnsiStringr17System@AnsiStringt2", + "@Dblogdlg@LoginDialogEx$qqrx17System@AnsiStringr17System@AnsiStringt2o", + "@Dblogdlg@RemoteLoginDialog$qqrr17System@AnsiStringt1", + "@Dblogdlg@SetCursorType$qqrxi", + "@Dblogdlg@TLoginDialog@", + "@Dblogdlg@TLoginDialog@FormShow$qqrp14System@TObject", + "@Dblogdlg@initialization$qqrv", + "@Dbolectl@Finalization$qqrv", + "@Dbolectl@TDBOleControl@", + "@Dbolectl@TDBOleControl@$bctr$qqrp18Classes@TComponent", + "@Dbolectl@TDBOleControl@$bdtr$qqrv", + "@Dbolectl@TDBOleControl@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Dbolectl@TDBOleControl@OnChanged$qqsi", + "@Dbolectl@TDBOleControl@OnRequestEdit$qqsi", + "@Dbolectl@TDBOleControl@SetDataSource$qqrp14Db@TDataSource", + "@Dbolectl@TDataBindItem@", + "@Dbolectl@TDataBindItem@$bctr$qqrp19Classes@TCollection", + "@Dbolectl@TDataBindItem@$bdtr$qqrv", + "@Dbolectl@TDataBindItem@DataChange$qqrp14System@TObject", + "@Dbolectl@TDataBindItem@GetDataField$qqrv", + "@Dbolectl@TDataBindItem@SetDataField$qqrx17System@AnsiString", + "@Dbolectl@TDataBindItem@SetDispID$qqri", + "@Dbolectl@TDataBindItem@UpdateData$qqrp14System@TObject", + "@Dbolectl@TDataBindings@", + "@Dbolectl@TDataBindings@$bctr$qqrp22Dbolectl@TDBOleControl", + "@Dbolectl@TDataBindings@Add$qqrv", + "@Dbolectl@TDataBindings@GetItem$qqri", + "@Dbolectl@TDataBindings@GetItemByDispID$qqri", + "@Dbolectl@TDataBindings@GetOwner$qqrv", + "@Dbolectl@TDataBindings@SetItem$qqrip22Dbolectl@TDataBindItem", + "@Dbolectl@TDataBindings@Update$qqrp23Classes@TCollectionItem", + "@Dbolectl@initialization$qqrv", + "@Dbpwdlg@Finalization$qqrv", + "@Dbpwdlg@PasswordDialog$qqrx41System@%DelphiInterface$t13Db@IDBSession%", + "@Dbpwdlg@TPasswordDialog@", + "@Dbpwdlg@TPasswordDialog@AddButtonClick$qqrp14System@TObject", + "@Dbpwdlg@TPasswordDialog@EditChange$qqrp14System@TObject", + "@Dbpwdlg@TPasswordDialog@OKButtonClick$qqrp14System@TObject", + "@Dbpwdlg@TPasswordDialog@RemoveAllButtonClick$qqrp14System@TObject", + "@Dbpwdlg@TPasswordDialog@RemoveButtonClick$qqrp14System@TObject", + "@Dbpwdlg@initialization$qqrv", + "@GetPackageInfoTable", + "@Vcldb@@GetPackageInfoTable$qqrv", + "@Vcldb@@PackageLoad$qqrv", + "@Vcldb@@PackageUnload$qqrv", + "@Vcldb@initialization$qqrv", + "@Vdbconsts@Finalization$qqrv", + "@Vdbconsts@_SCancelEdit", + "@Vdbconsts@_SConfirmCaption", + "@Vdbconsts@_SDataBindings", + "@Vdbconsts@_SDataSourceFixed", + "@Vdbconsts@_SDeleteMultipleRecordsQuestion", + "@Vdbconsts@_SDeleteRecord", + "@Vdbconsts@_SDeleteRecordQuestion", + "@Vdbconsts@_SEditRecord", + "@Vdbconsts@_SFirstRecord", + "@Vdbconsts@_SInsertRecord", + "@Vdbconsts@_SLastRecord", + "@Vdbconsts@_SNextRecord", + "@Vdbconsts@_SNotReplicatable", + "@Vdbconsts@_SPostEdit", + "@Vdbconsts@_SPriorRecord", + "@Vdbconsts@_SPropDefByLookup", + "@Vdbconsts@_SRefreshRecord", + "@Vdbconsts@_SRemoteLogin", + "@Vdbconsts@_STooManyColumns", + "@Vdbconsts@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 1012595197, + "characteristics": "0xA18E" + }, + "strings_total": 5230, + "domain_strings": [ + "INSERT", + "DELETE", + "@Sysutils@AdjustLineBreaks$qqrx17System@AnsiString26System@TTextLineBreakStyle", + "AdjustWindowRectEx", + "ActivateKeyboardLayout", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Actnlist@TContainedAction@Update$qqrv", + "@Classes@TList@Insert$qqripv", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Stdctrls@TCustomCombo@AdjustDropDown$qqrv", + "@Stdctrls@TCustomGroupBox@AdjustClientRect$qqrr11Types@TRect", + "@Extctrls@TCustomPanel@AdjustClientRect$qqrr11Types@TRect", + "@Db@TDataSet@Delete$qqrv", + "@Db@TDataSet@Insert$qqrv", + "@Dbcgrids@TDBCtrlGrid@AdjustSize$qqrv", + "@Dbcgrids@TDBCtrlGrid@DrawPanelBackground$qqruirx11Types@TRectoo", + "@Dbctrls@TPopupDataList@WMMouseActivate$qqrr17Messages@TMessage", + "@Dbgrids@TBookmarkList@Delete$qqrv", + "@Dbgrids@TDBGridColumns@Update$qqrp23Classes@TCollectionItem", + "@Dbolectl@TDataBindings@Update$qqrp23Classes@TCollectionItem", + "Insert record", + "Delete record", + "Delete record?", + "Delete all selected records?%Operation not allowed in a DBCtrlGrid&Control cannot be used in a DBCtrlGrid(Property already defined by lookup field" + ] + }, + "VCLJPG60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 79600, + "raw_off": 1024, + "raw_size": 79872 + }, + { + "name": "DATA", + "va": 86016, + "vsize": 2348, + "raw_off": 80896, + "raw_size": 2560 + }, + { + "name": "BSS", + "va": 90112, + "vsize": 41, + "raw_off": 83456, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 94208, + "vsize": 5238, + "raw_off": 83456, + "raw_size": 5632 + }, + { + "name": ".edata", + "va": 102400, + "vsize": 2685, + "raw_off": 89088, + "raw_size": 3072 + }, + { + "name": ".rdata", + "va": 106496, + "vsize": 42, + "raw_off": 92160, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 110592, + "vsize": 1400, + "raw_off": 92672, + "raw_size": 1536 + }, + { + "name": ".rsrc", + "va": 114688, + "vsize": 2048, + "raw_off": 94208, + "raw_size": 2048 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl" + ], + "exports": [ + "@$xp$14Jpeg@TJPEGData", + "@$xp$15Jpeg@TJPEGImage", + "@$xp$15Jpeg@TJPEGScale", + "@$xp$21Jpeg@TJPEGPerformance", + "@$xp$21Jpeg@TJPEGPixelFormat", + "@$xp$22Jpeg@TJPEGQualityRange", + "@GetPackageInfoTable", + "@Jconsts@Finalization$qqrv", + "@Jconsts@_sChangeJPGSize", + "@Jconsts@_sJPEGError", + "@Jconsts@_sJPEGImageFile", + "@Jconsts@initialization$qqrv", + "@Jpeg@Finalization$qqrv", + "@Jpeg@JPEGDefaults", + "@Jpeg@TJPEGData@", + "@Jpeg@TJPEGData@$bdtr$qqrv", + "@Jpeg@TJPEGData@FreeHandle$qqrv", + "@Jpeg@TJPEGImage@", + "@Jpeg@TJPEGImage@$bctr$qqrv", + "@Jpeg@TJPEGImage@$bdtr$qqrv", + "@Jpeg@TJPEGImage@Assign$qqrp19Classes@TPersistent", + "@Jpeg@TJPEGImage@AssignTo$qqrp19Classes@TPersistent", + "@Jpeg@TJPEGImage@CalcOutputDimensions$qqrv", + "@Jpeg@TJPEGImage@Changed$qqrp14System@TObject", + "@Jpeg@TJPEGImage@Compress$qqrv", + "@Jpeg@TJPEGImage@DIBNeeded$qqrv", + "@Jpeg@TJPEGImage@Draw$qqrp16Graphics@TCanvasrx11Types@TRect", + "@Jpeg@TJPEGImage@Equals$qqrp17Graphics@TGraphic", + "@Jpeg@TJPEGImage@FreeBitmap$qqrv", + "@Jpeg@TJPEGImage@GetBitmap$qqrv", + "@Jpeg@TJPEGImage@GetEmpty$qqrv", + "@Jpeg@TJPEGImage@GetGrayscale$qqrv", + "@Jpeg@TJPEGImage@GetHeight$qqrv", + "@Jpeg@TJPEGImage@GetPalette$qqrv", + "@Jpeg@TJPEGImage@GetWidth$qqrv", + "@Jpeg@TJPEGImage@JPEGNeeded$qqrv", + "@Jpeg@TJPEGImage@LoadFromClipboardFormat$qqrusuiui", + "@Jpeg@TJPEGImage@LoadFromStream$qqrp15Classes@TStream", + "@Jpeg@TJPEGImage@NewBitmap$qqrv", + "@Jpeg@TJPEGImage@NewImage$qqrv", + "@Jpeg@TJPEGImage@ReadData$qqrp15Classes@TStream", + "@Jpeg@TJPEGImage@ReadStream$qqrip15Classes@TStream", + "@Jpeg@TJPEGImage@SaveToClipboardFormat$qqrrusruit2", + "@Jpeg@TJPEGImage@SaveToStream$qqrp15Classes@TStream", + "@Jpeg@TJPEGImage@SetGrayscale$qqro", + "@Jpeg@TJPEGImage@SetHeight$qqri", + "@Jpeg@TJPEGImage@SetPalette$qqrui", + "@Jpeg@TJPEGImage@SetPerformance$qqr21Jpeg@TJPEGPerformance", + "@Jpeg@TJPEGImage@SetPixelFormat$qqr21Jpeg@TJPEGPixelFormat", + "@Jpeg@TJPEGImage@SetScale$qqr15Jpeg@TJPEGScale", + "@Jpeg@TJPEGImage@SetSmoothing$qqro", + "@Jpeg@TJPEGImage@SetWidth$qqri", + "@Jpeg@TJPEGImage@WriteData$qqrp15Classes@TStream", + "@Jpeg@initialization$qqrv", + "@Vcljpg@@GetPackageInfoTable$qqrv", + "@Vcljpg@@PackageLoad$qqrv", + "@Vcljpg@@PackageUnload$qqrv", + "@Vcljpg@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 990562288, + "characteristics": "0xA18E" + }, + "strings_total": 1194, + "domain_strings": [ + "jsHalf", + "sAmTb", + "CreateHalftonePalette" + ] + }, + "VCLSMP60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 25560, + "raw_off": 1024, + "raw_size": 25600 + }, + { + "name": "DATA", + "va": 32768, + "vsize": 104, + "raw_off": 26624, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 36864, + "vsize": 89, + "raw_off": 27136, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 40960, + "vsize": 21378, + "raw_off": 27136, + "raw_size": 21504 + }, + { + "name": ".edata", + "va": 65536, + "vsize": 7197, + "raw_off": 48640, + "raw_size": 7680 + }, + { + "name": ".rdata", + "va": 73728, + "vsize": 26, + "raw_off": 56320, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 77824, + "vsize": 3108, + "raw_off": 56832, + "raw_size": 3584 + }, + { + "name": ".rsrc", + "va": 81920, + "vsize": 2048, + "raw_off": 60416, + "raw_size": 2048 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "user32.dll", + "gdi32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vclx60.bpl", + "vcl60.bpl" + ], + "exports": [ + "@$xp$12Spin@Spin__3", + "@$xp$13Gauges@TGauge", + "@$xp$14Spin@TSpinEdit", + "@$xp$16Spin@TSpinButton", + "@$xp$17Gauges@TGaugeKind", + "@$xp$18Calendar@TCalendar", + "@$xp$18Diroutln@TTextCase", + "@$xp$18Spin@TTimeBtnState", + "@$xp$19Calendar@TDayOfWeek", + "@$xp$22Spin@TTimerSpeedButton", + "@$xp$26Diroutln@TDirectoryOutline", + "@Calendar@Finalization$qqrv", + "@Calendar@TCalendar@", + "@Calendar@TCalendar@$bctr$qqrp18Classes@TComponent", + "@Calendar@TCalendar@Change$qqrv", + "@Calendar@TCalendar@ChangeMonth$qqri", + "@Calendar@TCalendar@Click$qqrv", + "@Calendar@TCalendar@DaysPerMonth$qqrii", + "@Calendar@TCalendar@DaysThisMonth$qqrv", + "@Calendar@TCalendar@DrawCell$qqriirx11Types@TRect42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Calendar@TCalendar@GetCellText$qqrii", + "@Calendar@TCalendar@GetDateElement$qqri", + "@Calendar@TCalendar@IsLeapYear$qqri", + "@Calendar@TCalendar@NextMonth$qqrv", + "@Calendar@TCalendar@NextYear$qqrv", + "@Calendar@TCalendar@PrevMonth$qqrv", + "@Calendar@TCalendar@PrevYear$qqrv", + "@Calendar@TCalendar@SelectCell$qqrii", + "@Calendar@TCalendar@SetCalendarDate$qqr16System@TDateTime", + "@Calendar@TCalendar@SetDateElement$qqrii", + "@Calendar@TCalendar@SetStartOfWeek$qqrzc", + "@Calendar@TCalendar@SetUseCurrentDate$qqro", + "@Calendar@TCalendar@StoreCalendarDate$qqrv", + "@Calendar@TCalendar@UpdateCalendar$qqrv", + "@Calendar@TCalendar@WMSize$qqrr16Messages@TWMSize", + "@Calendar@initialization$qqrv", + "@Diroutln@Finalization$qqrv", + "@Diroutln@SameLetter$qqrcc", + "@Diroutln@TDirectoryOutline@", + "@Diroutln@TDirectoryOutline@$bctr$qqrp18Classes@TComponent", + "@Diroutln@TDirectoryOutline@AssignCaseProc$qqrv", + "@Diroutln@TDirectoryOutline@BuildOneLevel$qqri", + "@Diroutln@TDirectoryOutline@BuildSubTree$qqri", + "@Diroutln@TDirectoryOutline@BuildTree$qqrv", + "@Diroutln@TDirectoryOutline@Change$qqrv", + "@Diroutln@TDirectoryOutline@Click$qqrv", + "@Diroutln@TDirectoryOutline@CreateWnd$qqrv", + "@Diroutln@TDirectoryOutline@Expand$qqri", + "@Diroutln@TDirectoryOutline@FindIndex$qqrp20Outline@TOutlineNode17System@AnsiString", + "@Diroutln@TDirectoryOutline@ForceCase$qqrx17System@AnsiString", + "@Diroutln@TDirectoryOutline@Loaded$qqrv", + "@Diroutln@TDirectoryOutline@SetDirectory$qqrx17System@AnsiString", + "@Diroutln@TDirectoryOutline@SetDrive$qqrc", + "@Diroutln@TDirectoryOutline@SetTextCase$qqr18Diroutln@TTextCase", + "@Diroutln@TDirectoryOutline@WalkTree$qqrx17System@AnsiString", + "@Diroutln@initialization$qqrv", + "@Gauges@Finalization$qqrv", + "@Gauges@TGauge@", + "@Gauges@TGauge@$bctr$qqrp18Classes@TComponent", + "@Gauges@TGauge@AddProgress$qqri", + "@Gauges@TGauge@GetPercentDone$qqrv", + "@Gauges@TGauge@Paint$qqrv", + "@Gauges@TGauge@PaintAsBar$qqrp16Graphics@TBitmaprx11Types@TRect", + "@Gauges@TGauge@PaintAsNeedle$qqrp16Graphics@TBitmaprx11Types@TRect", + "@Gauges@TGauge@PaintAsNothing$qqrp16Graphics@TBitmaprx11Types@TRect", + "@Gauges@TGauge@PaintAsPie$qqrp16Graphics@TBitmaprx11Types@TRect", + "@Gauges@TGauge@PaintAsText$qqrp16Graphics@TBitmaprx11Types@TRect", + "@Gauges@TGauge@PaintBackground$qqrp16Graphics@TBitmap", + "@Gauges@TGauge@SetBackColor$qqr15Graphics@TColor", + "@Gauges@TGauge@SetBorderStyle$qqr22Forms@TFormBorderStyle", + "@Gauges@TGauge@SetForeColor$qqr15Graphics@TColor", + "@Gauges@TGauge@SetGaugeKind$qqr17Gauges@TGaugeKind", + "@Gauges@TGauge@SetMaxValue$qqri", + "@Gauges@TGauge@SetMinValue$qqri", + "@Gauges@TGauge@SetProgress$qqri", + "@Gauges@TGauge@SetShowText$qqro", + "@Gauges@initialization$qqrv", + "@GetPackageInfoTable", + "@Spin@Finalization$qqrv", + "@Spin@TSpinButton@", + "@Spin@TSpinButton@$bctr$qqrp18Classes@TComponent", + "@Spin@TSpinButton@AdjustSize$qqrrit1", + "@Spin@TSpinButton@BtnClick$qqrp14System@TObject", + "@Spin@TSpinButton@BtnMouseDown$qqrp14System@TObject21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Spin@TSpinButton@CreateButton$qqrv", + "@Spin@TSpinButton@GetDownGlyph$qqrv", + "@Spin@TSpinButton@GetDownNumGlyphs$qqrv", + "@Spin@TSpinButton@GetUpGlyph$qqrv", + "@Spin@TSpinButton@GetUpNumGlyphs$qqrv", + "@Spin@TSpinButton@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Spin@TSpinButton@Loaded$qqrv", + "@Spin@TSpinButton@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Spin@TSpinButton@SetBounds$qqriiii", + "@Spin@TSpinButton@SetDownGlyph$qqrp16Graphics@TBitmap", + "@Spin@TSpinButton@SetDownNumGlyphs$qqrzc", + "@Spin@TSpinButton@SetFocusBtn$qqrp22Spin@TTimerSpeedButton", + "@Spin@TSpinButton@SetUpGlyph$qqrp16Graphics@TBitmap", + "@Spin@TSpinButton@SetUpNumGlyphs$qqrzc", + "@Spin@TSpinButton@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Spin@TSpinButton@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Spin@TSpinButton@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Spin@TSpinButton@WMSize$qqrr16Messages@TWMSize", + "@Spin@TSpinEdit@", + "@Spin@TSpinEdit@$bctr$qqrp18Classes@TComponent", + "@Spin@TSpinEdit@$bdtr$qqrv", + "@Spin@TSpinEdit@CMEnter$qqrr20Messages@TWMNoParams", + "@Spin@TSpinEdit@CMExit$qqrr20Messages@TWMNoParams", + "@Spin@TSpinEdit@CheckValue$qqri", + "@Spin@TSpinEdit@CreateParams$qqrr22Controls@TCreateParams", + "@Spin@TSpinEdit@CreateWnd$qqrv", + "@Spin@TSpinEdit@DownClick$qqrp14System@TObject", + "@Spin@TSpinEdit@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Spin@TSpinEdit@GetMinHeight$qqrv", + "@Spin@TSpinEdit@GetValue$qqrv", + "@Spin@TSpinEdit@IsValidChar$qqrc", + "@Spin@TSpinEdit@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Spin@TSpinEdit@KeyPress$qqrrc", + "@Spin@TSpinEdit@SetEditRect$qqrv", + "@Spin@TSpinEdit@SetValue$qqri", + "@Spin@TSpinEdit@UpClick$qqrp14System@TObject", + "@Spin@TSpinEdit@WMCut$qqrr20Messages@TWMNoParams", + "@Spin@TSpinEdit@WMPaste$qqrr20Messages@TWMNoParams", + "@Spin@TSpinEdit@WMSize$qqrr16Messages@TWMSize", + "@Spin@TTimerSpeedButton@", + "@Spin@TTimerSpeedButton@$bdtr$qqrv", + "@Spin@TTimerSpeedButton@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Spin@TTimerSpeedButton@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Spin@TTimerSpeedButton@Paint$qqrv", + "@Spin@TTimerSpeedButton@TimerExpired$qqrp14System@TObject", + "@Spin@initialization$qqrv", + "@Vclsmp@@GetPackageInfoTable$qqrv", + "@Vclsmp@@PackageLoad$qqrv", + "@Vclsmp@@PackageUnload$qqrv", + "@Vclsmp@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 1168, + "domain_strings": [ + "@System@@ROUND$qqrv", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Outline@TCustomOutline@Insert$qqrix17System@AnsiString", + "@Gauges@TGauge@PaintBackground$qqrp16Graphics@TBitmap", + "@Spin@TSpinButton@AdjustSize$qqrrit1" + ] + }, + "VCLX60.BPL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 110400, + "raw_off": 1024, + "raw_size": 110592 + }, + { + "name": "DATA", + "va": 114688, + "vsize": 340, + "raw_off": 111616, + "raw_size": 512 + }, + { + "name": "BSS", + "va": 118784, + "vsize": 129, + "raw_off": 112128, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 122880, + "vsize": 39264, + "raw_off": 112128, + "raw_size": 39424 + }, + { + "name": ".edata", + "va": 163840, + "vsize": 34556, + "raw_off": 151552, + "raw_size": 34816 + }, + { + "name": ".rdata", + "va": 200704, + "vsize": 32, + "raw_off": 186368, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 204800, + "vsize": 8840, + "raw_off": 186880, + "raw_size": 9216 + }, + { + "name": ".rsrc", + "va": 217088, + "vsize": 17408, + "raw_off": 196096, + "raw_size": 17408 + } + ], + "imports": [ + "rtl60.bpl", + "kernel32.dll", + "user32.dll", + "gdi32.dll", + "mpr.dll", + "kernel32.dll", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "shell32.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "user32.dll", + "winmm.dll", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "rtl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "vcl60.bpl", + "rtl60.bpl" + ], + "exports": [ + "@$xp$12Tabs@TTabSet", + "@$xp$13Tabs@TTabList", + "@$xp$14Ddeman@TDdeMgr", + "@$xp$14Tabs@TEdgePart", + "@$xp$14Tabs@TEdgeType", + "@$xp$14Tabs@TScroller", + "@$xp$14Tabs@TTabStyle", + "@$xp$15Tabs@TScrollBtn", + "@$xp$16Ddeman@TDataMode", + "@$xp$16Mplayer@TMPGlyph", + "@$xp$16Mplayer@TMPModes", + "@$xp$16Outline@TOutline", + "@$xp$17Mplayer@EMPNotify", + "@$xp$17Tabnotbk@TTabPage", + "@$xp$18Ddeman@TMacroEvent", + "@$xp$18Filectrl@TFileAttr", + "@$xp$18Filectrl@TFileType", + "@$xp$18Filectrl@TTextCase", + "@$xp$18Mplayer@TButtonSet", + "@$xp$18Mplayer@TMPBtnType", + "@$xp$18Mplayer@TMPDevCaps", + "@$xp$18Tabs@TDrawTabEvent", + "@$xp$19Colorgrd@TColorGrid", + "@$xp$19Filectrl@TDriveType", + "@$xp$19Outline@TAttachMode", + "@$xp$20Mplayer@TMediaPlayer", + "@$xp$20Outline@OutlineError", + "@$xp$20Outline@TChangeRange", + "@$xp$20Outline@TOutlineNode", + "@$xp$20Outline@TOutlineType", + "@$xp$20Tabs@TTabChangeEvent", + "@$xp$21Ddeman@TDdeClientConv", + "@$xp$21Ddeman@TDdeClientItem", + "@$xp$21Ddeman@TDdeServerConv", + "@$xp$21Ddeman@TDdeServerItem", + "@$xp$21Filectrl@TFileListBox", + "@$xp$21Mplayer@EMPPostNotify", + "@$xp$21Mplayer@TMPDevCapsSet", + "@$xp$21Outline@EOutlineError", + "@$xp$21Outline@TOutlineStyle", + "@$xp$21Tabs@TMeasureTabEvent", + "@$xp$22Checklst@TCheckListBox", + "@$xp$22Colorgrd@TGridOrdering", + "@$xp$22Filectrl@TSelectDirOpt", + "@$xp$22Mplayer@TMPDeviceTypes", + "@$xp$22Mplayer@TMPTimeFormats", + "@$xp$22Outline@EOutlineChange", + "@$xp$22Outline@TCustomOutline", + "@$xp$22Outline@TOutlineBitmap", + "@$xp$22Outline@TOutlineOption", + "@$xp$23Filectrl@TDriveComboBox", + "@$xp$23Filectrl@TSelectDirOpts", + "@$xp$23Mplayer@EMCIDeviceError", + "@$xp$23Mplayer@TMPNotifyValues", + "@$xp$23Outline@TOutlineBitmaps", + "@$xp$23Outline@TOutlineOptions", + "@$xp$24Filectrl@TFilterComboBox", + "@$xp$24Tabnotbk@TTabbedNotebook", + "@$xp$25Outline@TBitmapArrayRange", + "@$xp$25Tabnotbk@TPageChangeEvent", + "@$xp$26Filectrl@TDirectoryListBox", + "@$xp$27Outline@TOutlineNodeCompare", + "@Checklst@Finalization$qqrv", + "@Checklst@TCheckListBox@", + "@Checklst@TCheckListBox@$bctr$qqrp18Classes@TComponent", + "@Checklst@TCheckListBox@$bdtr$qqrv", + "@Checklst@TCheckListBox@CMFontChanged$qqrr17Messages@TMessage", + "@Checklst@TCheckListBox@CNDrawItem$qqrr20Messages@TWMDrawItem", + "@Checklst@TCheckListBox@ClickCheck$qqrv", + "@Checklst@TCheckListBox@CreateParams$qqrr22Controls@TCreateParams", + "@Checklst@TCheckListBox@CreateWnd$qqrv", + "@Checklst@TCheckListBox@CreateWrapper$qqri", + "@Checklst@TCheckListBox@DeleteString$qqri", + "@Checklst@TCheckListBox@DestroyWnd$qqrv", + "@Checklst@TCheckListBox@DrawCheck$qqrrx11Types@TRect23Stdctrls@TCheckBoxStateo", + "@Checklst@TCheckListBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Checklst@TCheckListBox@ExtractWrapper$qqri", + "@Checklst@TCheckListBox@GetCheckWidth$qqrv", + "@Checklst@TCheckListBox@GetChecked$qqri", + "@Checklst@TCheckListBox@GetHeader$qqri", + "@Checklst@TCheckListBox@GetItemData$qqri", + "@Checklst@TCheckListBox@GetItemEnabled$qqri", + "@Checklst@TCheckListBox@GetState$qqri", + "@Checklst@TCheckListBox@GetWrapper$qqri", + "@Checklst@TCheckListBox@HaveWrapper$qqri", + "@Checklst@TCheckListBox@InternalGetItemData$qqri", + "@Checklst@TCheckListBox@InternalSetItemData$qqrii", + "@Checklst@TCheckListBox@InvalidateCheck$qqri", + "@Checklst@TCheckListBox@KeyPress$qqrrc", + "@Checklst@TCheckListBox@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Checklst@TCheckListBox@ResetContent$qqrv", + "@Checklst@TCheckListBox@ResetItemHeight$qqrv", + "@Checklst@TCheckListBox@SetChecked$qqrio", + "@Checklst@TCheckListBox@SetFlat$qqro", + "@Checklst@TCheckListBox@SetHeader$qqrixo", + "@Checklst@TCheckListBox@SetHeaderBackgroundColor$qqrx15Graphics@TColor", + "@Checklst@TCheckListBox@SetHeaderColor$qqrx15Graphics@TColor", + "@Checklst@TCheckListBox@SetItemData$qqrii", + "@Checklst@TCheckListBox@SetItemEnabled$qqrixo", + "@Checklst@TCheckListBox@SetState$qqri23Stdctrls@TCheckBoxState", + "@Checklst@TCheckListBox@ToggleClickCheck$qqri", + "@Checklst@TCheckListBox@WMDestroy$qqrr20Messages@TWMNoParams", + "@Checklst@initialization$qqrv", + "@Colorgrd@Finalization$qqrv", + "@Colorgrd@TColorGrid@", + "@Colorgrd@TColorGrid@$bctr$qqrp18Classes@TComponent", + "@Colorgrd@TColorGrid@CMCtl3DChanged$qqrr17Messages@TMessage", + "@Colorgrd@TColorGrid@Change$qqrv", + "@Colorgrd@TColorGrid@ColorToIndex$qqr15Graphics@TColor", + "@Colorgrd@TColorGrid@CreateWnd$qqrv", + "@Colorgrd@TColorGrid@DrawFgBg$qqrv", + "@Colorgrd@TColorGrid@DrawSquare$qqrio", + "@Colorgrd@TColorGrid@EnableBackground$qqro", + "@Colorgrd@TColorGrid@EnableForeground$qqro", + "@Colorgrd@TColorGrid@GetBackgroundColor$qqrv", + "@Colorgrd@TColorGrid@GetForegroundColor$qqrv", + "@Colorgrd@TColorGrid@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Colorgrd@TColorGrid@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Colorgrd@TColorGrid@MouseMove$qqr46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Colorgrd@TColorGrid@MouseUp$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Colorgrd@TColorGrid@Paint$qqrv", + "@Colorgrd@TColorGrid@SetBackgroundIndex$qqri", + "@Colorgrd@TColorGrid@SetForegroundIndex$qqri", + "@Colorgrd@TColorGrid@SetGridOrdering$qqr22Colorgrd@TGridOrdering", + "@Colorgrd@TColorGrid@SetSelection$qqri", + "@Colorgrd@TColorGrid@SquareFromPos$qqrii", + "@Colorgrd@TColorGrid@UpdateCellSizes$qqro", + "@Colorgrd@TColorGrid@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Colorgrd@TColorGrid@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Colorgrd@TColorGrid@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Colorgrd@TColorGrid@WMSize$qqrr16Messages@TWMSize", + "@Colorgrd@initialization$qqrv", + "@Ddeman@Finalization$qqrv", + "@Ddeman@GetPasteLinkInfo$qqrr17System@AnsiStringt1t1", + "@Ddeman@TDdeClientConv@", + "@Ddeman@TDdeClientConv@$bctr$qqrp18Classes@TComponent", + "@Ddeman@TDdeClientConv@$bdtr$qqrv", + "@Ddeman@TDdeClientConv@ChangeLink$qqrx17System@AnsiStringt1t1", + "@Ddeman@TDdeClientConv@ClearItems$qqrv", + "@Ddeman@TDdeClientConv@Close$qqrv", + "@Ddeman@TDdeClientConv@CloseLink$qqrv", + "@Ddeman@TDdeClientConv@CreateDdeConv$qqrii", + "@Ddeman@TDdeClientConv@DataChange$qqrii", + "@Ddeman@TDdeClientConv@DefineProperties$qqrp14Classes@TFiler", + "@Ddeman@TDdeClientConv@ExecuteMacro$qqrpco", + "@Ddeman@TDdeClientConv@ExecuteMacroLines$qqrp16Classes@TStringso", + "@Ddeman@TDdeClientConv@GetCliItemByCtrl$qqrp21Ddeman@TDdeClientItem", + "@Ddeman@TDdeClientConv@GetCliItemByName$qqrx17System@AnsiString", + "@Ddeman@TDdeClientConv@Loaded$qqrv", + "@Ddeman@TDdeClientConv@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Ddeman@TDdeClientConv@OnAttach$qqrp21Ddeman@TDdeClientItem", + "@Ddeman@TDdeClientConv@OnDetach$qqrp21Ddeman@TDdeClientItem", + "@Ddeman@TDdeClientConv@OnSetItem$qqrp21Ddeman@TDdeClientItemx17System@AnsiString", + "@Ddeman@TDdeClientConv@Open$qqrv", + "@Ddeman@TDdeClientConv@OpenLink$qqrv", + "@Ddeman@TDdeClientConv@PasteLink$qqrv", + "@Ddeman@TDdeClientConv@PokeData$qqrx17System@AnsiStringpc", + "@Ddeman@TDdeClientConv@PokeDataLines$qqrx17System@AnsiStringp16Classes@TStrings", + "@Ddeman@TDdeClientConv@ReadLinkInfo$qqrp15Classes@TReader", + "@Ddeman@TDdeClientConv@RequestData$qqrx17System@AnsiString", + "@Ddeman@TDdeClientConv@SetConnectMode$qqr16Ddeman@TDataMode", + "@Ddeman@TDdeClientConv@SetDdeService$qqrx17System@AnsiString", + "@Ddeman@TDdeClientConv@SetDdeTopic$qqrx17System@AnsiString", + "@Ddeman@TDdeClientConv@SetFormatChars$qqro", + "@Ddeman@TDdeClientConv@SetLink$qqrx17System@AnsiStringt1", + "@Ddeman@TDdeClientConv@SetService$qqrx17System@AnsiString", + "@Ddeman@TDdeClientConv@SetTopic$qqrx17System@AnsiString", + "@Ddeman@TDdeClientConv@SrvrDisconnect$qqrv", + "@Ddeman@TDdeClientConv@StartAdvise$qqrv", + "@Ddeman@TDdeClientConv@WriteLinkInfo$qqrp15Classes@TWriter", + "@Ddeman@TDdeClientConv@XactComplete$qqrv", + "@Ddeman@TDdeClientItem@", + "@Ddeman@TDdeClientItem@$bctr$qqrp18Classes@TComponent", + "@Ddeman@TDdeClientItem@$bdtr$qqrv", + "@Ddeman@TDdeClientItem@GetText$qqrv", + "@Ddeman@TDdeClientItem@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Ddeman@TDdeClientItem@OnAdvise$qqrv", + "@Ddeman@TDdeClientItem@SetDdeClientConv$qqrp21Ddeman@TDdeClientConv", + "@Ddeman@TDdeClientItem@SetDdeClientItem$qqrx17System@AnsiString", + "@Ddeman@TDdeClientItem@SetLines$qqrp16Classes@TStrings", + "@Ddeman@TDdeClientItem@SetText$qqrx17System@AnsiString", + "@Ddeman@TDdeMgr@", + "@Ddeman@TDdeMgr@$bctr$qqrp18Classes@TComponent", + "@Ddeman@TDdeMgr@$bdtr$qqrv", + "@Ddeman@TDdeMgr@AllowConnect$qqrii", + "@Ddeman@TDdeMgr@AllowWildConnect$qqrii", + "@Ddeman@TDdeMgr@Connect$qqriio", + "@Ddeman@TDdeMgr@Disconnect$qqrp18Classes@TComponent", + "@Ddeman@TDdeMgr@GetExeName$qqrv", + "@Ddeman@TDdeMgr@GetForm$qqrx17System@AnsiString", + "@Ddeman@TDdeMgr@GetServerConv$qqrx17System@AnsiString", + "@Ddeman@TDdeMgr@GetSrvrConv$qqrx17System@AnsiString", + "@Ddeman@TDdeMgr@InsertServerConv$qqrp21Ddeman@TDdeServerConv", + "@Ddeman@TDdeMgr@PostDataChange$qqrx17System@AnsiStringt1", + "@Ddeman@TDdeMgr@RemoveServerConv$qqrp21Ddeman@TDdeServerConv", + "@Ddeman@TDdeMgr@ResetAppName$qqrv", + "@Ddeman@TDdeMgr@SetAppName$qqrx17System@AnsiString", + "@Ddeman@TDdeServerConv@", + "@Ddeman@TDdeServerConv@$bctr$qqrp18Classes@TComponent", + "@Ddeman@TDdeServerConv@$bdtr$qqrv", + "@Ddeman@TDdeServerConv@Connect$qqrv", + "@Ddeman@TDdeServerConv@Disconnect$qqrv", + "@Ddeman@TDdeServerConv@ExecuteMacro$qqri", + "@Ddeman@TDdeServerItem@", + "@Ddeman@TDdeServerItem@$bctr$qqrp18Classes@TComponent", + "@Ddeman@TDdeServerItem@$bdtr$qqrv", + "@Ddeman@TDdeServerItem@Change$qqrv", + "@Ddeman@TDdeServerItem@CopyToClipboard$qqrv", + "@Ddeman@TDdeServerItem@GetText$qqrv", + "@Ddeman@TDdeServerItem@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Ddeman@TDdeServerItem@PokeData$qqri", + "@Ddeman@TDdeServerItem@SetLines$qqrp16Classes@TStrings", + "@Ddeman@TDdeServerItem@SetServerConv$qqrp21Ddeman@TDdeServerConv", + "@Ddeman@TDdeServerItem@SetText$qqrx17System@AnsiString", + "@Ddeman@TDdeServerItem@ValueChanged$qqrv", + "@Ddeman@ddeMgr", + "@Ddeman@initialization$qqrv", + "@Filectrl@DirectoryExists$qqrx17System@AnsiString", + "@Filectrl@Finalization$qqrv", + "@Filectrl@ForceDirectories$qqrx17System@AnsiString", + "@Filectrl@MinimizeName$qqrx17System@AnsiStringp16Graphics@TCanvasi", + "@Filectrl@ProcessPath$qqrx17System@AnsiStringrcr17System@AnsiStringt3", + "@Filectrl@SelectDirectory$qqrr17System@AnsiString50System@%Set$t22Filectrl@TSelectDirOpt$iuc$0$iuc$2%i", + "@Filectrl@SelectDirectory$qqrx17System@AnsiStringx17System@WideStringr17System@AnsiString", + "@Filectrl@TDirectoryListBox@", + "@Filectrl@TDirectoryListBox@$bctr$qqrp18Classes@TComponent", + "@Filectrl@TDirectoryListBox@$bdtr$qqrv", + "@Filectrl@TDirectoryListBox@BuildList$qqrv", + "@Filectrl@TDirectoryListBox@CMFontChanged$qqrr17Messages@TMessage", + "@Filectrl@TDirectoryListBox@Change$qqrv", + "@Filectrl@TDirectoryListBox@CreateWnd$qqrv", + "@Filectrl@TDirectoryListBox@DblClick$qqrv", + "@Filectrl@TDirectoryListBox@DisplayCase$qqrx17System@AnsiString", + "@Filectrl@TDirectoryListBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Filectrl@TDirectoryListBox@DriveChange$qqrc", + "@Filectrl@TDirectoryListBox@FileCompareText$qqrx17System@AnsiStringt1", + "@Filectrl@TDirectoryListBox@GetDrive$qqrv", + "@Filectrl@TDirectoryListBox@GetItemPath$qqri", + "@Filectrl@TDirectoryListBox@KeyPress$qqrrc", + "@Filectrl@TDirectoryListBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Filectrl@TDirectoryListBox@OpenCurrent$qqrv", + "@Filectrl@TDirectoryListBox@ReadBitmaps$qqrv", + "@Filectrl@TDirectoryListBox@ReadDirectoryNames$qqrx17System@AnsiStringp19Classes@TStringList", + "@Filectrl@TDirectoryListBox@ResetItemHeight$qqrv", + "@Filectrl@TDirectoryListBox@SetDir$qqrx17System@AnsiString", + "@Filectrl@TDirectoryListBox@SetDirLabel$qqrp15Stdctrls@TLabel", + "@Filectrl@TDirectoryListBox@SetDirLabelCaption$qqrv", + "@Filectrl@TDirectoryListBox@SetDirectory$qqrx17System@AnsiString", + "@Filectrl@TDirectoryListBox@SetDrive$qqrc", + "@Filectrl@TDirectoryListBox@SetFileListBox$qqrp21Filectrl@TFileListBox", + "@Filectrl@TDirectoryListBox@Update$qqrv", + "@Filectrl@TDriveComboBox@", + "@Filectrl@TDriveComboBox@$bctr$qqrp18Classes@TComponent", + "@Filectrl@TDriveComboBox@$bdtr$qqrv", + "@Filectrl@TDriveComboBox@BuildList$qqrv", + "@Filectrl@TDriveComboBox@CMFontChanged$qqrr17Messages@TMessage", + "@Filectrl@TDriveComboBox@Click$qqrv", + "@Filectrl@TDriveComboBox@CreateWnd$qqrv", + "@Filectrl@TDriveComboBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Filectrl@TDriveComboBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Filectrl@TDriveComboBox@ReadBitmaps$qqrv", + "@Filectrl@TDriveComboBox@ResetItemHeight$qqrv", + "@Filectrl@TDriveComboBox@SetDirListBox$qqrp26Filectrl@TDirectoryListBox", + "@Filectrl@TDriveComboBox@SetDrive$qqrc", + "@Filectrl@TDriveComboBox@SetTextCase$qqr18Filectrl@TTextCase", + "@Filectrl@TFileListBox@", + "@Filectrl@TFileListBox@$bctr$qqrp18Classes@TComponent", + "@Filectrl@TFileListBox@$bdtr$qqrv", + "@Filectrl@TFileListBox@ApplyFilePath$qqrx17System@AnsiString", + "@Filectrl@TFileListBox@CMFontChanged$qqrr17Messages@TMessage", + "@Filectrl@TFileListBox@Change$qqrv", + "@Filectrl@TFileListBox@Click$qqrv", + "@Filectrl@TFileListBox@CreateWnd$qqrv", + "@Filectrl@TFileListBox@DrawItem$qqrirx11Types@TRect47System@%Set$t18Windows@Windows__1$iuc$0$iuc$12%", + "@Filectrl@TFileListBox@GetDrive$qqrv", + "@Filectrl@TFileListBox@GetFileName$qqrv", + "@Filectrl@TFileListBox@GetFilePath$qqrv", + "@Filectrl@TFileListBox@IsMaskStored$qqrv", + "@Filectrl@TFileListBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Filectrl@TFileListBox@ReadBitmaps$qqrv", + "@Filectrl@TFileListBox@ReadFileNames$qqrv", + "@Filectrl@TFileListBox@ResetItemHeight$qqrv", + "@Filectrl@TFileListBox@SetDirectory$qqrx17System@AnsiString", + "@Filectrl@TFileListBox@SetDrive$qqrc", + "@Filectrl@TFileListBox@SetFileEdit$qqrp14Stdctrls@TEdit", + "@Filectrl@TFileListBox@SetFileName$qqrx17System@AnsiString", + "@Filectrl@TFileListBox@SetFileType$qqr46System@%Set$t18Filectrl@TFileAttr$iuc$0$iuc$6%", + "@Filectrl@TFileListBox@SetMask$qqrx17System@AnsiString", + "@Filectrl@TFileListBox@SetShowGlyphs$qqro", + "@Filectrl@TFileListBox@Update$qqrv", + "@Filectrl@TFilterComboBox@", + "@Filectrl@TFilterComboBox@$bctr$qqrp18Classes@TComponent", + "@Filectrl@TFilterComboBox@$bdtr$qqrv", + "@Filectrl@TFilterComboBox@BuildList$qqrv", + "@Filectrl@TFilterComboBox@Change$qqrv", + "@Filectrl@TFilterComboBox@Click$qqrv", + "@Filectrl@TFilterComboBox@CreateWnd$qqrv", + "@Filectrl@TFilterComboBox@GetMask$qqrv", + "@Filectrl@TFilterComboBox@IsFilterStored$qqrv", + "@Filectrl@TFilterComboBox@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Filectrl@TFilterComboBox@SetFileListBox$qqrp21Filectrl@TFileListBox", + "@Filectrl@TFilterComboBox@SetFilter$qqrx17System@AnsiString", + "@Filectrl@initialization$qqrv", + "@GetPackageInfoTable", + "@Mplayer@EMCIDeviceError@", + "@Mplayer@Finalization$qqrv", + "@Mplayer@TMediaPlayer@", + "@Mplayer@TMediaPlayer@$bctr$qqrp18Classes@TComponent", + "@Mplayer@TMediaPlayer@$bdtr$qqrv", + "@Mplayer@TMediaPlayer@Adjust$qqrv", + "@Mplayer@TMediaPlayer@AutoButtonSet$qqr18Mplayer@TMPBtnType", + "@Mplayer@TMediaPlayer@Back$qqrv", + "@Mplayer@TMediaPlayer@CheckIfOpen$qqrv", + "@Mplayer@TMediaPlayer@Click$qqr18Mplayer@TMPBtnTypero", + "@Mplayer@TMediaPlayer@Close$qqrv", + "@Mplayer@TMediaPlayer@DestroyBitmaps$qqrv", + "@Mplayer@TMediaPlayer@DoClick$qqr18Mplayer@TMPBtnType", + "@Mplayer@TMediaPlayer@DoMouseDown$qqrii", + "@Mplayer@TMediaPlayer@DoNotify$qqrv", + "@Mplayer@TMediaPlayer@DoPostClick$qqr18Mplayer@TMPBtnType", + "@Mplayer@TMediaPlayer@DrawAutoButtons$qqrv", + "@Mplayer@TMediaPlayer@DrawButton$qqr18Mplayer@TMPBtnTypei", + "@Mplayer@TMediaPlayer@Eject$qqrv", + "@Mplayer@TMediaPlayer@GetDeviceCaps$qqrv", + "@Mplayer@TMediaPlayer@GetDisplayRect$qqrv", + "@Mplayer@TMediaPlayer@GetErrorMessage$qqrv", + "@Mplayer@TMediaPlayer@GetLength$qqrv", + "@Mplayer@TMediaPlayer@GetMode$qqrv", + "@Mplayer@TMediaPlayer@GetPosition$qqrv", + "@Mplayer@TMediaPlayer@GetStart$qqrv", + "@Mplayer@TMediaPlayer@GetTimeFormat$qqrv", + "@Mplayer@TMediaPlayer@GetTrackLength$qqri", + "@Mplayer@TMediaPlayer@GetTrackPosition$qqri", + "@Mplayer@TMediaPlayer@GetTracks$qqrv", + "@Mplayer@TMediaPlayer@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Mplayer@TMediaPlayer@LoadBitmaps$qqrv", + "@Mplayer@TMediaPlayer@Loaded$qqrv", + "@Mplayer@TMediaPlayer@MMNotify$qqrr17Messages@TMessage", + "@Mplayer@TMediaPlayer@Next$qqrv", + "@Mplayer@TMediaPlayer@Notification$qqrp18Classes@TComponent18Classes@TOperation", + "@Mplayer@TMediaPlayer@Open$qqrv", + "@Mplayer@TMediaPlayer@Paint$qqrv", + "@Mplayer@TMediaPlayer@Pause$qqrv", + "@Mplayer@TMediaPlayer@PauseOnly$qqrv", + "@Mplayer@TMediaPlayer@Play$qqrv", + "@Mplayer@TMediaPlayer@PostClick$qqr18Mplayer@TMPBtnType", + "@Mplayer@TMediaPlayer@Previous$qqrv", + "@Mplayer@TMediaPlayer@Resume$qqrv", + "@Mplayer@TMediaPlayer@Rewind$qqrv", + "@Mplayer@TMediaPlayer@Save$qqrv", + "@Mplayer@TMediaPlayer@SetAutoEnable$qqro", + "@Mplayer@TMediaPlayer@SetColored$qqr46System@%Set$t18Mplayer@TMPBtnType$iuc$0$iuc$8%", + "@Mplayer@TMediaPlayer@SetDeviceType$qqr22Mplayer@TMPDeviceTypes", + "@Mplayer@TMediaPlayer@SetDisplay$qqrp20Controls@TWinControl", + "@Mplayer@TMediaPlayer@SetDisplayRect$qqrrx11Types@TRect", + "@Mplayer@TMediaPlayer@SetEnabledButtons$qqr46System@%Set$t18Mplayer@TMPBtnType$iuc$0$iuc$8%", + "@Mplayer@TMediaPlayer@SetFrom$qqri", + "@Mplayer@TMediaPlayer@SetNotify$qqro", + "@Mplayer@TMediaPlayer@SetOrigDisplay$qqrv", + "@Mplayer@TMediaPlayer@SetPosition$qqri", + "@Mplayer@TMediaPlayer@SetTimeFormat$qqr22Mplayer@TMPTimeFormats", + "@Mplayer@TMediaPlayer@SetTo$qqri", + "@Mplayer@TMediaPlayer@SetVisible$qqr46System@%Set$t18Mplayer@TMPBtnType$iuc$0$iuc$8%", + "@Mplayer@TMediaPlayer@SetWait$qqro", + "@Mplayer@TMediaPlayer@StartRecording$qqrv", + "@Mplayer@TMediaPlayer@Step$qqrv", + "@Mplayer@TMediaPlayer@Stop$qqrv", + "@Mplayer@TMediaPlayer@Updated$qqrv", + "@Mplayer@TMediaPlayer@VisibleButtonCount$qqrv", + "@Mplayer@TMediaPlayer@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Mplayer@TMediaPlayer@WMKillFocus$qqrr21Messages@TWMKillFocus", + "@Mplayer@TMediaPlayer@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Mplayer@TMediaPlayer@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Mplayer@TMediaPlayer@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Mplayer@TMediaPlayer@WMMouseMove$qqrr17Messages@TWMMouse", + "@Mplayer@TMediaPlayer@WMSetFocus$qqrr20Messages@TWMSetFocus", + "@Mplayer@TMediaPlayer@WMSize$qqrr16Messages@TWMSize", + "@Mplayer@initialization$qqrv", + "@Outline@EOutlineError@", + "@Outline@Finalization$qqrv", + "@Outline@OutlineError@", + "@Outline@TCustomOutline@", + "@Outline@TCustomOutline@$bctr$qqrp18Classes@TComponent", + "@Outline@TCustomOutline@$bdtr$qqrv", + "@Outline@TCustomOutline@Add$qqrix17System@AnsiString", + "@Outline@TCustomOutline@AddChild$qqrix17System@AnsiString", + "@Outline@TCustomOutline@AddChildObject$qqrix17System@AnsiStringpxv", + "@Outline@TCustomOutline@AddObject$qqrix17System@AnsiStringpxv", + "@Outline@TCustomOutline@AttachNode$qqri17System@AnsiStringpv19Outline@TAttachMode", + "@Outline@TCustomOutline@BadIndex$qqrp20Outline@TOutlineNode", + "@Outline@TCustomOutline@BeginUpdate$qqrv", + "@Outline@TCustomOutline@CMFontChanged$qqrr17Messages@TMessage", + "@Outline@TCustomOutline@ChangeBitmap$qqrp16Graphics@TBitmap22Outline@TOutlineBitmap", + "@Outline@TCustomOutline@Clear$qqrv", + "@Outline@TCustomOutline@ClearBitmap$qqrrp16Graphics@TBitmap22Outline@TOutlineBitmap", + "@Outline@TCustomOutline@Click$qqrv", + "@Outline@TCustomOutline@Collapse$qqri", + "@Outline@TCustomOutline@CompareNodes$qqrp20Outline@TOutlineNodet1", + "@Outline@TCustomOutline@CreateGlyph$qqrv", + "@Outline@TCustomOutline@DblClick$qqrv", + "@Outline@TCustomOutline@DefineProperties$qqrp14Classes@TFiler", + "@Outline@TCustomOutline@Delete$qqri", + "@Outline@TCustomOutline@DeleteNode$qqrp20Outline@TOutlineNodei", + "@Outline@TCustomOutline@DoExpand$qqrp20Outline@TOutlineNode", + "@Outline@TCustomOutline@DrawCell$qqriirx11Types@TRect42System@%Set$t14Grids@Grids__3$iuc$0$iuc$2%", + "@Outline@TCustomOutline@DrawPictures$qqrpxpx16Graphics@TBitmapxirx11Types@TRect", + "@Outline@TCustomOutline@DrawText$qqrp20Outline@TOutlineNoderx11Types@TRect", + "@Outline@TCustomOutline@DrawTree$qqrrx11Types@TRectp20Outline@TOutlineNode", + "@Outline@TCustomOutline@EndUpdate$qqrv", + "@Outline@TCustomOutline@Error$qqrx17System@AnsiString", + "@Outline@TCustomOutline@Expand$qqri", + "@Outline@TCustomOutline@FullCollapse$qqrv", + "@Outline@TCustomOutline@FullExpand$qqrv", + "@Outline@TCustomOutline@Get$qqri", + "@Outline@TCustomOutline@GetDataItem$qqrpv", + "@Outline@TCustomOutline@GetItem$qqrii", + "@Outline@TCustomOutline@GetItemCount$qqrv", + "@Outline@TCustomOutline@GetNodeDisplayWidth$qqrp20Outline@TOutlineNode", + "@Outline@TCustomOutline@GetPicture$qqri", + "@Outline@TCustomOutline@GetSelectedItem$qqrv", + "@Outline@TCustomOutline@GetStrings$qqrv", + "@Outline@TCustomOutline@GetTextItem$qqrx17System@AnsiString", + "@Outline@TCustomOutline@GetVisibleNode$qqri", + "@Outline@TCustomOutline@Init$qqrv", + "@Outline@TCustomOutline@Insert$qqrix17System@AnsiString", + "@Outline@TCustomOutline@InsertObject$qqrix17System@AnsiStringpxv", + "@Outline@TCustomOutline@IsCurItem$qqri", + "@Outline@TCustomOutline@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Outline@TCustomOutline@KeyPress$qqrrc", + "@Outline@TCustomOutline@LoadFromFile$qqrx17System@AnsiString", + "@Outline@TCustomOutline@LoadFromStream$qqrp15Classes@TStream", + "@Outline@TCustomOutline@Loaded$qqrv", + "@Outline@TCustomOutline@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Outline@TCustomOutline@Move$qqrii19Outline@TAttachMode", + "@Outline@TCustomOutline@MoveNode$qqrii19Outline@TAttachMode", + "@Outline@TCustomOutline@ReadBinaryData$qqrp15Classes@TStream", + "@Outline@TCustomOutline@ResetSelectedItem$qqrv", + "@Outline@TCustomOutline@ResizeGrid$qqrv", + "@Outline@TCustomOutline@SaveToFile$qqrx17System@AnsiString", + "@Outline@TCustomOutline@SaveToStream$qqrp15Classes@TStream", + "@Outline@TCustomOutline@SetCurItem$qqri", + "@Outline@TCustomOutline@SetDisplayWidth$qqri", + "@Outline@TCustomOutline@SetGoodIndex$qqrp20Outline@TOutlineNode", + "@Outline@TCustomOutline@SetHorzScrollBar$qqrv", + "@Outline@TCustomOutline@SetItemHeight$qqri", + "@Outline@TCustomOutline@SetLevel$qqrp20Outline@TOutlineNodeuiui", + "@Outline@TCustomOutline@SetOutlineOptions$qqr50System@%Set$t22Outline@TOutlineOption$iuc$0$iuc$2%", + "@Outline@TCustomOutline@SetOutlineStyle$qqr21Outline@TOutlineStyle", + "@Outline@TCustomOutline@SetPicture$qqrip16Graphics@TBitmap", + "@Outline@TCustomOutline@SetRowFromNode$qqrp20Outline@TOutlineNode", + "@Outline@TCustomOutline@SetRowHeight$qqrv", + "@Outline@TCustomOutline@SetSelectedItem$qqri", + "@Outline@TCustomOutline@SetStrings$qqrp16Classes@TStrings", + "@Outline@TCustomOutline@SetStyle$qqr20Outline@TOutlineType", + "@Outline@TCustomOutline@SetUpdateState$qqro", + "@Outline@TCustomOutline@StoreBitmap$qqri", + "@Outline@TCustomOutline@WMSize$qqrr16Messages@TWMSize", + "@Outline@TCustomOutline@WriteBinaryData$qqrp15Classes@TStream", + "@Outline@TOutline@", + "@Outline@TOutlineNode@", + "@Outline@TOutlineNode@$bctr$qqrp22Outline@TCustomOutline", + "@Outline@TOutlineNode@$bdtr$qqrv", + "@Outline@TOutlineNode@AddNode$qqrp20Outline@TOutlineNode", + "@Outline@TOutlineNode@ChangeExpandedCount$qqri", + "@Outline@TOutlineNode@ChangeLevelBy$qqrzc", + "@Outline@TOutlineNode@Clear$qqrv", + "@Outline@TOutlineNode@CloseNode$qqrv", + "@Outline@TOutlineNode@Collapse$qqrv", + "@Outline@TOutlineNode@Error$qqrx17System@AnsiString", + "@Outline@TOutlineNode@Expand$qqrv", + "@Outline@TOutlineNode@FullExpand$qqrv", + "@Outline@TOutlineNode@GetDataItem$qqrpv", + "@Outline@TOutlineNode@GetDisplayWidth$qqrv", + "@Outline@TOutlineNode@GetExpandedNodeCount$qqrv", + "@Outline@TOutlineNode@GetFullPath$qqrv", + "@Outline@TOutlineNode@GetIndex$qqrv", + "@Outline@TOutlineNode@GetLastChild$qqrv", + "@Outline@TOutlineNode@GetLastIndex$qqrv", + "@Outline@TOutlineNode@GetLevel$qqrv", + "@Outline@TOutlineNode@GetList$qqrv", + "@Outline@TOutlineNode@GetMaxDisplayWidth$qqrui", + "@Outline@TOutlineNode@GetNextChild$qqri", + "@Outline@TOutlineNode@GetNode$qqri", + "@Outline@TOutlineNode@GetNodeAtIndex$qqri", + "@Outline@TOutlineNode@GetPrevChild$qqri", + "@Outline@TOutlineNode@GetRowOfNode$qqrp20Outline@TOutlineNoderi", + "@Outline@TOutlineNode@GetTextItem$qqrx17System@AnsiString", + "@Outline@TOutlineNode@GetTopItem$qqrv", + "@Outline@TOutlineNode@GetVisibleNode$qqri", + "@Outline@TOutlineNode@GetVisibleParent$qqrv", + "@Outline@TOutlineNode@HasAsParent$qqrp20Outline@TOutlineNode", + "@Outline@TOutlineNode@HasChildren$qqrv", + "@Outline@TOutlineNode@HasVisibleParent$qqrv", + "@Outline@TOutlineNode@InsertNode$qqrip20Outline@TOutlineNode", + "@Outline@TOutlineNode@InternalRemove$qqrp20Outline@TOutlineNodei", + "@Outline@TOutlineNode@IsEqual$qqrp20Outline@TOutlineNode", + "@Outline@TOutlineNode@MoveTo$qqri19Outline@TAttachMode", + "@Outline@TOutlineNode@ReIndex$qqrp20Outline@TOutlineNodet1io", + "@Outline@TOutlineNode@Remove$qqrp20Outline@TOutlineNode", + "@Outline@TOutlineNode@Repaint$qqrv", + "@Outline@TOutlineNode@Resync$qqrrip20Outline@TOutlineNode", + "@Outline@TOutlineNode@SetExpandedState$qqro", + "@Outline@TOutlineNode@SetGoodIndex$qqrv", + "@Outline@TOutlineNode@SetHorzScrollBar$qqrv", + "@Outline@TOutlineNode@SetLevel$qqrui", + "@Outline@TOutlineNode@SetText$qqrx17System@AnsiString", + "@Outline@TOutlineNode@WriteNode$qqrpcp15Classes@TStream", + "@Outline@TOutlineNode@getFirstChild$qqrv", + "@Outline@initialization$qqrv", + "@Tabnotbk@Finalization$qqrv", + "@Tabnotbk@TTabPage@", + "@Tabnotbk@TTabPage@$bctr$qqrp18Classes@TComponent", + "@Tabnotbk@TTabPage@ReadState$qqrp15Classes@TReader", + "@Tabnotbk@TTabbedNotebook@", + "@Tabnotbk@TTabbedNotebook@$bctr$qqrp18Classes@TComponent", + "@Tabnotbk@TTabbedNotebook@$bdtr$qqrv", + "@Tabnotbk@TTabbedNotebook@AlignControls$qqrp17Controls@TControlr11Types@TRect", + "@Tabnotbk@TTabbedNotebook@CMDialogChar$qqrr15Messages@TWMKey", + "@Tabnotbk@TTabbedNotebook@CMTabFontChanged$qqrr17Messages@TMessage", + "@Tabnotbk@TTabbedNotebook@Change$qqrv", + "@Tabnotbk@TTabbedNotebook@Click$qqrv", + "@Tabnotbk@TTabbedNotebook@CreateHandle$qqrv", + "@Tabnotbk@TTabbedNotebook@CreateParams$qqrr22Controls@TCreateParams", + "@Tabnotbk@TTabbedNotebook@GetActivePage$qqrv", + "@Tabnotbk@TTabbedNotebook@GetChildOwner$qqrv", + "@Tabnotbk@TTabbedNotebook@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Tabnotbk@TTabbedNotebook@GetIndexForPage$qqrx17System@AnsiString", + "@Tabnotbk@TTabbedNotebook@KeyDown$qqrrus46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%", + "@Tabnotbk@TTabbedNotebook@Loaded$qqrv", + "@Tabnotbk@TTabbedNotebook@ReadState$qqrp15Classes@TReader", + "@Tabnotbk@TTabbedNotebook@SetActivePage$qqrx17System@AnsiString", + "@Tabnotbk@TTabbedNotebook@SetPageIndex$qqri", + "@Tabnotbk@TTabbedNotebook@SetPages$qqrp16Classes@TStrings", + "@Tabnotbk@TTabbedNotebook@SetTabFont$qqrp14Graphics@TFont", + "@Tabnotbk@TTabbedNotebook@SetTabsPerRow$qqri", + "@Tabnotbk@TTabbedNotebook@ShowControl$qqrp17Controls@TControl", + "@Tabnotbk@TTabbedNotebook@TabFontChanged$qqrp14System@TObject", + "@Tabnotbk@TTabbedNotebook@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Tabnotbk@TTabbedNotebook@WMPaint$qqrr17Messages@TWMPaint", + "@Tabnotbk@initialization$qqrv", + "@Tabs@Finalization$qqrv", + "@Tabs@TScroller@", + "@Tabs@TScroller@$bctr$qqrp18Classes@TComponent", + "@Tabs@TScroller@$bdtr$qqrv", + "@Tabs@TScroller@CanScrollLeft$qqrv", + "@Tabs@TScroller@CanScrollRight$qqrv", + "@Tabs@TScroller@DoMouseDown$qqri", + "@Tabs@TScroller@Paint$qqrv", + "@Tabs@TScroller@SetMax$qqri", + "@Tabs@TScroller@SetMin$qqri", + "@Tabs@TScroller@SetPosition$qqri", + "@Tabs@TScroller@WMLButtonDblClk$qqrr17Messages@TWMMouse", + "@Tabs@TScroller@WMLButtonDown$qqrr17Messages@TWMMouse", + "@Tabs@TScroller@WMLButtonUp$qqrr17Messages@TWMMouse", + "@Tabs@TScroller@WMMouseMove$qqrr17Messages@TWMMouse", + "@Tabs@TScroller@WMSize$qqrr16Messages@TWMSize", + "@Tabs@TTabList@", + "@Tabs@TTabList@Add$qqrx17System@AnsiString", + "@Tabs@TTabList@AddStrings$qqrp16Classes@TStrings", + "@Tabs@TTabList@Clear$qqrv", + "@Tabs@TTabList@Delete$qqri", + "@Tabs@TTabList@Insert$qqrix17System@AnsiString", + "@Tabs@TTabList@Put$qqrix17System@AnsiString", + "@Tabs@TTabSet@", + "@Tabs@TTabSet@$bctr$qqrp18Classes@TComponent", + "@Tabs@TTabSet@$bdtr$qqrv", + "@Tabs@TTabSet@CMDialogChar$qqrr15Messages@TWMKey", + "@Tabs@TTabSet@CMFontChanged$qqrr17Messages@TMessage", + "@Tabs@TTabSet@CMSysColorChange$qqrr17Messages@TMessage", + "@Tabs@TTabSet@CalcTabPositions$qqriip16Graphics@TCanvasi", + "@Tabs@TTabSet@CanChange$qqri", + "@Tabs@TTabSet@CreateBrushPattern$qqrp16Graphics@TBitmap", + "@Tabs@TTabSet@CreateEdgeParts$qqrv", + "@Tabs@TTabSet@CreateParams$qqrr22Controls@TCreateParams", + "@Tabs@TTabSet@CreateScroller$qqrv", + "@Tabs@TTabSet@DefineProperties$qqrp14Classes@TFiler", + "@Tabs@TTabSet@DoneBitmaps$qqrv", + "@Tabs@TTabSet@DrawTab$qqrp16Graphics@TCanvasrx11Types@TRectio", + "@Tabs@TTabSet@FixTabPos$qqrv", + "@Tabs@TTabSet@GetChildren$qqrynpqqrp18Classes@TComponent$vp18Classes@TComponent", + "@Tabs@TTabSet@InitBitmaps$qqrv", + "@Tabs@TTabSet@ItemAtPos$qqrrx12Types@TPoint", + "@Tabs@TTabSet@ItemRect$qqri", + "@Tabs@TTabSet@ItemWidth$qqri", + "@Tabs@TTabSet@MeasureTab$qqriri", + "@Tabs@TTabSet@MinClientRect$qqrio", + "@Tabs@TTabSet@MinClientRect$qqro", + "@Tabs@TTabSet@MinClientRect$qqrv", + "@Tabs@TTabSet@MouseDown$qqr21Controls@TMouseButton46System@%Set$t18Classes@Classes__1$iuc$0$iuc$6%ii", + "@Tabs@TTabSet@Paint$qqrv", + "@Tabs@TTabSet@PaintEdge$qqriii14Tabs@TEdgeType", + "@Tabs@TTabSet@ReadBoolData$qqrp15Classes@TReader", + "@Tabs@TTabSet@ReadIntData$qqrp15Classes@TReader", + "@Tabs@TTabSet@ScrollClick$qqrp14System@TObject", + "@Tabs@TTabSet@SelectNext$qqro", + "@Tabs@TTabSet@SetAutoScroll$qqro", + "@Tabs@TTabSet@SetBackgroundColor$qqr15Graphics@TColor", + "@Tabs@TTabSet@SetDitherBackground$qqro", + "@Tabs@TTabSet@SetEndMargin$qqri", + "@Tabs@TTabSet@SetFirstIndex$qqri", + "@Tabs@TTabSet@SetSelectedColor$qqr15Graphics@TColor", + "@Tabs@TTabSet@SetSoftTop$qqrxo", + "@Tabs@TTabSet@SetStartMargin$qqri", + "@Tabs@TTabSet@SetTabHeight$qqri", + "@Tabs@TTabSet@SetTabIndex$qqri", + "@Tabs@TTabSet@SetTabList$qqrp16Classes@TStrings", + "@Tabs@TTabSet@SetTabStyle$qqr14Tabs@TTabStyle", + "@Tabs@TTabSet@SetUnselectedColor$qqr15Graphics@TColor", + "@Tabs@TTabSet@WMGetDlgCode$qqrr20Messages@TWMNoParams", + "@Tabs@TTabSet@WMSize$qqrr16Messages@TWMSize", + "@Tabs@initialization$qqrv", + "@Vclx@@GetPackageInfoTable$qqrv", + "@Vclx@@PackageLoad$qqrv", + "@Vclx@@PackageUnload$qqrv", + "@Vclx@initialization$qqrv", + "Finalize", + "Initialize" + ], + "timestamp": 990562288, + "characteristics": "0xA18E" + }, + "strings_total": 3584, + "domain_strings": [ + "ForegroundIndex0", + "BackgroundIndex4", + "ForegroundEnabled4", + "BackgroundEnabled", + "BackgroundColor", + "DitherBackground", + "HeaderBackgroundColor", + "@Classes@TStringList@Insert$qqrix17System@AnsiString", + "@Classes@TStringList@Delete$qqri", + "@Classes@TList@Insert$qqripv", + "@Classes@TList@Delete$qqri", + "@Forms@TScrollingWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TWinControl@Update$qqrv", + "@Controls@TWinControl@AdjustClientRect$qqrr11Types@TRect", + "@Controls@TControl@Update$qqrv", + "@Stdctrls@TCustomCombo@AdjustDropDown$qqrv", + "@Comctrls@TCustomTabControl@AdjustClientRect$qqrr11Types@TRect", + "@Checklst@TCheckListBox@SetHeaderBackgroundColor$qqrx15Graphics@TColor", + "@Colorgrd@TColorGrid@EnableBackground$qqro", + "@Colorgrd@TColorGrid@EnableForeground$qqro", + "@Colorgrd@TColorGrid@GetBackgroundColor$qqrv", + "@Colorgrd@TColorGrid@GetForegroundColor$qqrv", + "@Colorgrd@TColorGrid@SetBackgroundIndex$qqri", + "@Colorgrd@TColorGrid@SetForegroundIndex$qqri", + "@Filectrl@TDirectoryListBox@Update$qqrv", + "@Filectrl@TFileListBox@Update$qqrv", + "@Mplayer@TMediaPlayer@Adjust$qqrv", + "@Outline@TCustomOutline@Delete$qqri", + "@Outline@TCustomOutline@Insert$qqrix17System@AnsiString", + "@Tabs@TTabList@Delete$qqri", + "@Tabs@TTabList@Insert$qqrix17System@AnsiString", + "@Tabs@TTabSet@SetBackgroundColor$qqr15Graphics@TColor", + "@Tabs@TTabSet@SetDitherBackground$qqro" + ] + }, + "View_Old_San.CPM": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": "CODE", + "va": 4096, + "vsize": 543808, + "raw_off": 1024, + "raw_size": 544256 + }, + { + "name": "DATA", + "va": 548864, + "vsize": 5680, + "raw_off": 545280, + "raw_size": 6144 + }, + { + "name": "BSS", + "va": 557056, + "vsize": 3492, + "raw_off": 551424, + "raw_size": 0 + }, + { + "name": ".idata", + "va": 561152, + "vsize": 10168, + "raw_off": 551424, + "raw_size": 10240 + }, + { + "name": ".edata", + "va": 573440, + "vsize": 80, + "raw_off": 561664, + "raw_size": 512 + }, + { + "name": ".reloc", + "va": 577536, + "vsize": 30604, + "raw_off": 562176, + "raw_size": 30720 + }, + { + "name": ".rsrc", + "va": 610304, + "vsize": 74240, + "raw_off": 592896, + "raw_size": 74240 + } + ], + "imports": [ + "kernel32.dll", + "user32.dll", + "oleaut32.dll", + "advapi32.dll", + "kernel32.dll", + "gdi32.dll", + "user32.dll", + "comctl32.dll", + "winspool.drv", + "comdlg32.dll", + "SDE32.DLL", + "HRRES32.DLL", + "kernel32.dll", + "ole32.dll", + "oleaut32.dll" + ], + "exports": [ + "Show_Old_San" + ], + "timestamp": 708992537, + "characteristics": "0xA18E" + }, + "strings_total": 8862, + "domain_strings": [ + "fsMDIForm", + "OnActivate", + "OnDeactivate,", + "clBackground", + "*.DBF", + "DbiActivateFilter", + "DbiDeactivateFilter", + "DbiSetPrivateDir", + "Transliterate", + "PrivateDir", + "Background", + "RoundRect4", + "RoundCurve *B", + "TAutoActivate", + "AutoActivate", + "Excel.Sheet.5", + "FooterAtEOP", + "BackgroundStart", + "lbBackGroundMsg", + "StopBackground", + "StartBackground", + "RoundRect", + "SetForegroundWindow", + "GetForegroundWindow", + "AdjustWindowRectEx", + "sx_DBFilter", + "Background Processing", + "Stop Background", + "Start Background", + "Unable to insert a line2The specified directory does not exist. Create it?", + "Select Directory", + "Unable to insert an item", + "OLE control activation failed*Could not obtain OLE control window handle", + "&Field '%s' is not of the expected type3Cannot convert field '%s' to a floating point value-Cannot convert field '%s' to an integer valueE%g is not a valid value for field '%s'. The allowed range is %g to %g0'%s' is not a valid integer value for field '%s'7'%s' is not a valid floating point value for field '%s'0'%s' is not a valid boolean value for field '%s'\"Dataset not in edit or insert mode.Source and destination tables are incompatible!Cannot modify a read-only dataset", + "Insert record", + "Delete record", + "Delete record?", + "Delete all selected records?", + "Not in cached update mode", + "Cannot update old values/Lookup information for field '%s' is incomplete", + "Untitled Application$Cannot update, %s is not owned by %s", + "Update failed", + "Invalid variant type or size7Must select at least one key field and one update field1Update SQL statements not generated, exit anyway?&Unable to determine field names for %s", + "OnActivate쵟@", + "OnDeactivate,콭" + ] + }, + "WLHA32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 65546, + "raw_off": 1536, + "raw_size": 66048 + }, + { + "name": ".rdata", + "va": 73728, + "vsize": 3160, + "raw_off": 67584, + "raw_size": 3584 + }, + { + "name": ".data", + "va": 77824, + "vsize": 52184, + "raw_off": 71168, + "raw_size": 12800 + }, + { + "name": ".rsrc", + "va": 131072, + "vsize": 1016, + "raw_off": 83968, + "raw_size": 1024 + }, + { + "name": ".reloc", + "va": 135168, + "vsize": 5622, + "raw_off": 84992, + "raw_size": 5632 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "LZHAppend", + "LZHDelete", + "LZHExtract", + "LZHList", + "LZHRegister" + ], + "timestamp": 947580440, + "characteristics": "0x210E" + }, + "strings_total": 1252, + "domain_strings": [ + "DELETE %s", + "Delete %s" + ] + }, + "WUNARJ32.DLL": { + "format": "PE", + "pe": { + "machine": "0x014C", + "sections": [ + { + "name": ".text", + "va": 4096, + "vsize": 26096, + "raw_off": 1536, + "raw_size": 26112 + }, + { + "name": ".rdata", + "va": 32768, + "vsize": 2188, + "raw_off": 27648, + "raw_size": 2560 + }, + { + "name": ".data", + "va": 36864, + "vsize": 36536, + "raw_off": 30208, + "raw_size": 10240 + }, + { + "name": ".rsrc", + "va": 73728, + "vsize": 976, + "raw_off": 40448, + "raw_size": 1024 + }, + { + "name": ".reloc", + "va": 77824, + "vsize": 2164, + "raw_off": 41472, + "raw_size": 2560 + } + ], + "imports": [ + "KERNEL32.dll", + "USER32.dll" + ], + "exports": [ + "ARJExtract", + "ARJList" + ], + "timestamp": 947580438, + "characteristics": "0x210E" + }, + "strings_total": 511, + "domain_strings": [] + } +} \ No newline at end of file