Compare commits

..

12 Commits

16 changed files with 1787 additions and 501 deletions

9
.gitignore vendored
View File

@@ -7,3 +7,12 @@ __pycache__/
.DS_Store
.vault_pass.txt
secrets/plaintext/
# Local plaintext vault password must never be committed
vault-pass.txt
secrets/vault-pass.txt
# Placeholder marker generated when password archive is absent
secrets/vault-pass.txt.zip.PLACEHOLDER
# Local installer env overrides with real secrets
install.local.env
*.secret.env

108
README.md
View File

@@ -1,19 +1,99 @@
# Agent Secret Vault
這個 repo 專門存放本地 AI agent 開發會用到的機密管理機制
repo 專門管理本地 AI agent / worker 需要的機密資料
核心設計
- 使用 `ansible-vault` 作為加密格式
- 加密檔可進 git
- vault password file 只放在本機
- 多個 agent 透過統一腳本存取 secrets
## 核心設計
## 內容
- `scripts/vault.sh`初始化、檢視、編輯、加密、解密、rekey
- `docs/secret-vault.md`:使用說明與設計原則
- `secrets/vault.yml`:加密後 secrets 檔
- 使用 `ansible-vault` 加密 `secrets/vault.yml`
- 加密後的 `secrets/vault.yml` 可以進 git
- vault password file 放在本機:`~/.config/vault-pass.txt`
- 新機器可透過 repo 內的密碼保護壓縮檔 `secrets/vault-pass.txt.zip` 安裝 password file
- 多個 agent 透過統一腳本讀取 secrets不各自發明 credential 管理方式
## 目標
- 讓 Hermes / OpenClaw / cron worker / 其他本地 agent 共用同一套 secret storage contract
- 不把明文 secret 留在 repo
- 不讓每個 agent 各自發明一套 credential 管理方式
## 主要文件
- 人類使用指南:[`docs/human-guide.md`](docs/human-guide.md)
- Agent 安裝 Runbook[`docs/agent-install-runbook.md`](docs/agent-install-runbook.md)
- Agent 整合補充:[`docs/agent-integration.md`](docs/agent-integration.md)
- Vault 基礎說明:[`docs/secret-vault.md`](docs/secret-vault.md)
## 安裝設定檔
Repo 內提供:
- `install.env.example`:給人類/agent 複製參考
- `install.env`:空值 placeholder安裝前先填入 vault-pass 來源設定
常用變數說明:
| 變數 | 用途 | 範例 |
|---|---|---|
| `VAULT_PASS_FILE` | 最後要產生/使用的 vault password file 路徑 | `$HOME/.config/vault-pass.txt` |
| `INSTALL_VAULT_PASS_METHOD` | 指定安裝方式;可填 `create``manual``url``archive` | `url` |
| `VAULT_PASS_URL` | 當 method=`url` 時,從這個 URL 下載 `vault-pass.txt` | `https://example.com/one-time/vault-pass.txt` |
| `VAULT_PASS_ZIP_PASSWORD_FILE` | 當 method=`archive` 時,讀取 zip 密碼的本機檔案路徑;比直接寫密碼安全 | `/secure/path/zip-password.txt` |
| `VAULT_PASS_ZIP_PASSWORD` | 當 method=`archive` 時,直接提供 zip 密碼;只適合安全 shell不建議寫進可提交檔案 | `...` |
| `VAULT_PASS_CONTENT` | 當 method=`manual` 時,直接提供 `vault-pass.txt` 內容;高風險,只適合受控環境 | `...` |
| `VAULT_PASS_ARCHIVE` | 覆寫密碼保護 zip 的路徑;預設是 `secrets/vault-pass.txt.zip` | `/path/to/vault-pass.txt.zip` |
安裝方式含義:
- `create`:產生新的 vault password只適合全新 vault既有 vault 無法解密時不會自動覆蓋。
- `manual`:由人類輸入或用 `VAULT_PASS_CONTENT` 提供 vault password 內容。
- `url`:從 `VAULT_PASS_URL` 下載 `vault-pass.txt`;適合一次性 URL / 內網安全下載。
- `archive`:從密碼保護 zip 解出 `vault-pass.txt`;密碼可放在 `VAULT_PASS_ZIP_PASSWORD_FILE``VAULT_PASS_ZIP_PASSWORD`
`install.env` 不應填入真實 secrets 後再 commit若要保存本機私密設定使用 `install.local.env` 並透過 `INSTALL_ENV_FILE=install.local.env` 指定。
## 安裝流程(先設定 env
安裝前請先設定 `install.env`,再檢查 env 是否足夠,最後才正式安裝:
```bash
cp -n install.env.example install.env
editor install.env
./scripts/install-vault-pass.sh --check-env
./scripts/install-vault-pass.sh
```
`install.env` 範例:
```bash
# 例:用一次性 URL 安裝 vault-pass.txt
INSTALL_VAULT_PASS_METHOD="url"
VAULT_PASS_URL="https://example.com/one-time/vault-pass.txt"
```
## 全自動 agent 安裝
Agent / CI 也應優先設定 `install.env``INSTALL_ENV_FILE`,不要直接進互動選單:
```bash
INSTALL_ENV_FILE=install.local.env ./scripts/install-vault-pass.sh --check-env
INSTALL_ENV_FILE=install.local.env ./scripts/install-vault-pass.sh
```
## 常用指令
```bash
# 安裝 vault password file會要求輸入壓縮檔密碼
./scripts/install-vault-pass.sh
# 維護者建立密碼保護壓縮檔
./scripts/create-vault-pass-archive.sh
# 檢視 vault
./scripts/vault.sh view
# 編輯 vault
./scripts/vault.sh edit
# 讀單一 secret
./scripts/get-secret.sh openclaw_alice.http_nodes.gitea.password
```
## 安全原則
- 不要把 `~/.config/vault-pass.txt` commit 到 git
- 不要把解密後完整 YAML 貼到 chat/log
- Agent 回報時只回報 key path、commit hash、驗證方式不回報 secret value

View File

@@ -0,0 +1,255 @@
# Agent 安裝 Runbookagent-secret-vault
這份文件給 AI agent / cron worker / automation 使用。目標:把 `agent-secret-vault` 安裝好、缺檔時建立 placeholder、並能安全讀取 secrets。
## 安全規則
- 不要把 secret value、vault password、token、private key 印到 chat / log / 工單 comment。
- 不要 dump 整份解密後的 `secrets/vault.yml`
- 只讀取任務所需的單一欄位。
- 所有暫存解密檔用完立即刪除。
## 目標路徑
- Repo`~/projects/agent-secret-vault`
- Vault 檔:`~/projects/agent-secret-vault/secrets/vault.yml`
- Vault password file`~/.config/vault-pass.txt`
- 可覆寫環境變數:`VAULT_PASS_FILE=/custom/path`
## 1. 安裝系統依賴
```bash
sudo apt update
sudo apt install -y git ansible unzip
```
驗證:
```bash
command -v git
command -v ansible-vault
command -v unzip
```
## 2. Clone repo
```bash
mkdir -p ~/projects
cd ~/projects
if [ ! -d agent-secret-vault/.git ]; then
git clone ssh://git@gitea.cowbay.org:2203/hermes/agent-secret-vault.git
fi
cd agent-secret-vault
```
若 clone 失敗,建立 placeholder 讓後續步驟可明確回報缺什麼:
```bash
mkdir -p ~/projects/agent-secret-vault/{scripts,secrets,docs}
cat > ~/projects/agent-secret-vault/README.PLACEHOLDER.md <<'PLACEHOLDER'
# Placeholder
agent-secret-vault repo 尚未成功 clone。
需要 Gitea SSH 權限ssh://git@gitea.cowbay.org:2203/hermes/agent-secret-vault.git
PLACEHOLDER
```
然後回報人類:需要把此 agent / 機器的 SSH public key 加到 Gitea 或 deploy key。
## 2.5 設定 installer env
Repo 內提供兩個 env 檔:
```text
install.env.example # 範本
install.env # 安裝用 placeholder
```
安裝前必須先設定 `install.env`(或指定 `INSTALL_ENV_FILE`),不要跳過這一步:
```bash
cd ~/projects/agent-secret-vault
cp -n install.env.example install.env
editor install.env
```
常用設定:
```bash
# 一次性 URL 下載 vault-pass.txt
INSTALL_VAULT_PASS_METHOD="url"
VAULT_PASS_URL="https://example.com/one-time/vault-pass.txt"
# 或zip 密碼放在本機安全檔案
INSTALL_VAULT_PASS_METHOD="archive"
VAULT_PASS_ZIP_PASSWORD_FILE="/secure/path/zip-password.txt"
```
注意:`VAULT_PASS_ZIP_PASSWORD_FILE` 必須指向「只包含 zip 密碼的一行純文字檔」。不要把它指到 `secrets/vault-pass.txt.zip`zip 壓縮檔本身)、`~/.config/vault-pass.txt`Ansible Vault password file、私鑰、或任何二進位檔。若 installer 報告檔案含 NUL bytes通常就是路徑指錯了請改成正確的 zip 密碼文字檔,或改用 `VAULT_PASS_ZIP_PASSWORD` / `url` / `manual` 方法。
若需要使用另一個 env 檔:
```bash
INSTALL_ENV_FILE=install.local.env ./scripts/install-vault-pass.sh
```
不要把含真實密碼/token 的 env 檔 commit。
執行安裝前可先檢查 env 是否足夠非互動安裝:
```bash
./scripts/install-vault-pass.sh --check-env
```
若輸出顯示 env 不足,先補齊 env只有人類在本機 terminal 操作時才允許進入互動提示。AI agent / CI 不應直接進互動流程。
## 3. 安裝 vault password file
標準位置:
```text
~/.config/vault-pass.txt
```
執行 installer 前再次確認 env然後安裝
```bash
cd ~/projects/agent-secret-vault
./scripts/install-vault-pass.sh --check-env
./scripts/install-vault-pass.sh
```
installer 會先判斷 `~/.config/vault-pass.txt` 是否已存在:
- 若已存在:保留現有檔案、修正權限為 `600`,並嘗試驗證能否解開 `secrets/vault.yml`
- 若不存在:提示使用者選擇 4 種建立方式。
### 缺檔時的 4 種方式
1. **建立新密碼並初始化 placeholder vault**
- 適合全新 repo / 全新環境。
- installer 會產生新的 `~/.config/vault-pass.txt`
-`secrets/vault.yml` 不存在,會建立加密 placeholder。
- 若既有 `secrets/vault.yml` 無法用新密碼解開installer 不會覆蓋它,避免破壞既有 secrets。
2. **使用者自行輸入 vault-pass.txt 內容**
- installer 會用 hidden input 讀取一行密碼內容。
- 寫入 `~/.config/vault-pass.txt`,權限設為 `600`
3. **使用者輸入 vault-pass.txt URL自動下載**
- installer 會提示輸入 `http://``https://` URL。
-`curl``wget` 下載到 `~/.config/vault-pass.txt`
- 只適合可信的一次性下載 URL。
4. **解壓 repo 內既有密碼保護 zip**
- 預設讀取:`secrets/vault-pass.txt.zip`
- zip 內必須包含檔名:`vault-pass.txt`
- installer 會要求使用者在自己的 terminal 手動輸入 zip 密碼。
### 若壓縮檔不存在
建立 placeholder不要自行編造密碼
```bash
mkdir -p ~/projects/agent-secret-vault/secrets
cat > ~/projects/agent-secret-vault/secrets/vault-pass.txt.zip.PLACEHOLDER <<'PLACEHOLDER'
Missing file: secrets/vault-pass.txt.zip
Purpose: password-protected archive containing vault-pass.txt
Action: ask human maintainer to provide this archive or use installer method 1/2/3.
PLACEHOLDER
```
然後回報人類:缺 `secrets/vault-pass.txt.zip`,或請人類選擇 installer 方法 1/2/3。
### 若要用非預設路徑
```bash
export VAULT_PASS_FILE=/path/to/vault-pass.txt
./scripts/install-vault-pass.sh
```
### Agent 全自動安裝(避免卡在互動密碼)
若安裝由 AI agent / CI 執行,不要走互動 prompt。優先把設定寫進 `install.env``install.local.env`,也可用以下任一非互動方式:
```bash
# 方式 A從安全 URL 下載 vault-pass.txt
INSTALL_VAULT_PASS_METHOD=url \
VAULT_PASS_URL="https://example.com/one-time/vault-pass.txt" \
./scripts/install-vault-pass.sh
# 方式 B從密碼保護 zip 解壓zip 密碼放在本機安全檔案
# /secure/path/zip-password.txt 必須是純文字,內容只有 zip 密碼本身;
# 不可指到 secrets/vault-pass.txt.zip 或 ~/.config/vault-pass.txt。
INSTALL_VAULT_PASS_METHOD=archive \
VAULT_PASS_ZIP_PASSWORD_FILE=/secure/path/zip-password.txt \
./scripts/install-vault-pass.sh
# 方式 C從密碼保護 zip 解壓zip 密碼用環境變數帶入(避免寫入 chat/log
INSTALL_VAULT_PASS_METHOD=archive \
VAULT_PASS_ZIP_PASSWORD="..." \
./scripts/install-vault-pass.sh
# 方式 D直接提供 vault-pass.txt 內容(只適合安全 runtime不可印 log
INSTALL_VAULT_PASS_METHOD=manual \
VAULT_PASS_CONTENT="..." \
./scripts/install-vault-pass.sh
```
推薦順序URL 一次性下載 > `VAULT_PASS_ZIP_PASSWORD_FILE` > `VAULT_PASS_ZIP_PASSWORD` > `VAULT_PASS_CONTENT`
## 4. 驗證安裝
```bash
cd ~/projects/agent-secret-vault
ansible-vault view secrets/vault.yml --vault-password-file ~/.config/vault-pass.txt >/dev/null
```
成功exit code 0。失敗時只回報錯誤摘要不要輸出密碼或 vault 內容。
## 5. 讀取單一 secret
```bash
cd ~/projects/agent-secret-vault
./scripts/get-secret.sh <dot.path>
```
範例:
```bash
./scripts/get-secret.sh gitea.api_token
./scripts/get-secret.sh openclaw_alice.http_nodes.gitea.password
```
把輸出直接交給需要 secret 的動作使用;不要貼到 chat / log。
## 6. Worker 需要 env 時
```bash
cd ~/projects/agent-secret-vault
umask 077
./scripts/render-env.sh gitea > /tmp/gitea.env
set -a
. /tmp/gitea.env
set +a
rm -f /tmp/gitea.env
```
使用完如果擔心環境被 dump執行 `unset` 清掉相關變數。
## 7. 更新 secret 的 agent 流程
只有在人類明確要求更新 secrets 時才做:
```bash
cd ~/projects/agent-secret-vault
git pull --ff-only
./scripts/vault.sh edit
ansible-vault view secrets/vault.yml --vault-password-file ~/.config/vault-pass.txt >/dev/null
git add secrets/vault.yml
git commit -m "Update secret <key-name>"
git push
```
回報只包含 key 名稱、commit hash、驗證方式不要包含 secret value。

View File

@@ -5,7 +5,7 @@
## 基本資訊
- vault 位置:`~/projects/agent-secret-vault/secrets/vault.yml`
- vault password 位置:`~/.config/continuous-ai-workflow-spec/vault-pass.txt`
- vault password 位置:`~/.config/vault-pass.txt`
- 加密格式ansible-vaultAES256
## Agent 讀取 secrets 的方法
@@ -64,7 +64,7 @@ cd ~/projects/agent-secret-vault
確認:
```bash
chmod 600 ~/.config/continuous-ai-workflow-spec/vault-pass.txt
chmod 600 ~/.config/vault-pass.txt
```
### 3. ansible-vault not found

227
docs/human-guide.md Normal file
View File

@@ -0,0 +1,227 @@
# 人類使用指南agent-secret-vault
這份文件給人類維護者看:如何安裝、操作,以及如何用自然語言指示 agent 管理 secrets。
## 這是什麼
`agent-secret-vault` 是本地 AI agent 共用的機密資料 repo。
- 加密資料:`secrets/vault.yml`
- 加密格式Ansible Vault
- 解密鑰匙:`~/.config/vault-pass.txt`
- Repo`ssh://git@gitea.cowbay.org:2203/hermes/agent-secret-vault.git`
`secrets/vault.yml` 可以進 git`~/.config/vault-pass.txt` 不可以進 git。
## 安裝
```bash
sudo apt update
sudo apt install -y git ansible unzip
mkdir -p ~/projects
cd ~/projects
git clone ssh://git@gitea.cowbay.org:2203/hermes/agent-secret-vault.git
cd agent-secret-vault
```
接著先設定 installer env再安裝 vault password file
```bash
cp -n install.env.example install.env
editor install.env
./scripts/install-vault-pass.sh --check-env
./scripts/install-vault-pass.sh
```
重點:先填 `install.env`。若 `--check-env` 顯示資訊不足,先補齊 `INSTALL_VAULT_PASS_METHOD` 與對應欄位,不要直接進互動流程。
installer 會先檢查:
```text
~/.config/vault-pass.txt
```
如果已存在,會保留並驗證。若不存在,會讓你選 4 種方式:
1. 建立新 vault password並在需要時建立加密 placeholder vault。
2. 手動輸入 vault-pass.txt 的內容。
3. 輸入 vault-pass.txt 的 URL讓 installer 自動下載。
4. 解壓 repo 內既有的密碼保護檔 `secrets/vault-pass.txt.zip`
若選第 4 種,請在你自己的 terminal 輸入 zip 密碼Telegram / chat 不能輸入到 agent 的工具互動提示。
驗證:
```bash
./scripts/vault.sh view
```
## 建立安裝用密碼保護壓縮檔
維護者若要讓其他 agent / 機器安裝,先在已可解密的機器上執行:
```bash
cd ~/projects/agent-secret-vault
./scripts/create-vault-pass-archive.sh
git add secrets/vault-pass.txt.zip
git commit -m "Add vault password archive"
git push
```
腳本會要求互動輸入 zip 密碼。這個 zip 密碼不要寫進 repo、chat 或 log交給安裝者時用另外的安全渠道。
## 安裝時設定 vault-pass
安裝流程要求先填 repo 內的 env 檔:
```bash
cd ~/projects/agent-secret-vault
cp -n install.env.example install.env
editor install.env
./scripts/install-vault-pass.sh --check-env
./scripts/install-vault-pass.sh
```
`install.env` 可設定:
- `INSTALL_VAULT_PASS_METHOD=url` + `VAULT_PASS_URL=...`
- `INSTALL_VAULT_PASS_METHOD=archive` + `VAULT_PASS_ZIP_PASSWORD_FILE=...`
- `INSTALL_VAULT_PASS_METHOD=manual` + `VAULT_PASS_CONTENT=...`
- `INSTALL_VAULT_PASS_METHOD=create`
若 env 內含真實 secrets不要 commit。可改用 `install.local.env`,再執行:
```bash
INSTALL_ENV_FILE=install.local.env ./scripts/install-vault-pass.sh --check-env
./scripts/install-vault-pass.sh
```
## 給 agent 的全自動安裝方式
如果目標是「AI agent 直接安裝,不要卡在互動輸入密碼」,請不要讓 agent 選互動 zip 解壓。改用環境變數指定方法:
```bash
# 一次性 URL 下載
INSTALL_VAULT_PASS_METHOD=url \
VAULT_PASS_URL="https://example.com/one-time/vault-pass.txt" \
./scripts/install-vault-pass.sh
# 或zip 密碼放在本機安全檔案
INSTALL_VAULT_PASS_METHOD=archive \
VAULT_PASS_ZIP_PASSWORD_FILE=/secure/path/zip-password.txt \
./scripts/install-vault-pass.sh --check-env
./scripts/install-vault-pass.sh
```
不要把 zip 密碼或 vault-pass 內容貼在聊天裡;應由目標機器的 secret manager、一次性 URL 或本機安全檔提供。
## 常用人工操作
### 查看 vault
```bash
cd ~/projects/agent-secret-vault
./scripts/vault.sh view
```
### 編輯 vault
```bash
cd ~/projects/agent-secret-vault
git pull --ff-only
./scripts/vault.sh edit
git add secrets/vault.yml
git commit -m "Update secrets"
git push
```
### 讀單一 secret
```bash
./scripts/get-secret.sh gitea.api_token
./scripts/get-secret.sh openclaw_alice.http_nodes.gitea.password
```
## 用自然語言請 agent 操作 secrets
你可以直接對 agent 下這類命令:
### 查詢但不要顯示 secret
```text
幫我確認 agent-secret-vault 裡有沒有 gitea.api_token不要把 token 印出來。
```
Agent 應該只回報「有 / 沒有」與使用的 key path不應顯示 token。
### 使用 secret 去登入或呼叫 API
```text
用 agent-secret-vault 裡的 openclaw_alice.http_nodes.gitea 帳密登入 Gitea登入成功後回報狀態不要把帳密貼出來。
```
Agent 可以讀取 secret 並用於 browser/API但不能把 secret value 回傳聊天。
### 新增 secret
```text
幫我把新的 API token 加到 agent-secret-vaultkey 放在 openclaw_alice.http_nodes.example_service.api_token先 git pull更新後驗證可讀再 commit/push。不要在回報中顯示 token。
```
如果 token 需要由你提供,請用安全渠道或互動輸入;不要把高敏感 token 直接貼到公開群組。
### 修改 secret
```text
把 agent-secret-vault 裡 openclaw_alice.http_nodes.gitea.password 更新成我等一下提供的新密碼;完成後只回報 commit hash 和驗證方式。
```
### 列出 key 結構
```text
列出 agent-secret-vault 目前有哪些 top-level sections 和 key 名稱,不要顯示任何 password/token/secret/private_key 的值。
```
## Agent 應遵守的回報格式
完成更新後agent 回報應包含:
- 更新的 key path
- repo path
- commit hash
- 驗證方式,例如 `./scripts/get-secret.sh <key>` 成功
不應包含:
- secret value
- vault password
- 解密後完整 YAML
## 故障排除
### `Decryption failed`
通常是 `~/.config/vault-pass.txt` 不存在、權限不對、或內容不是正確密碼。
檢查:
```bash
ls -l ~/.config/vault-pass.txt
```
權限應為 `600`
### `secrets/vault-pass.txt.zip` 不存在
代表 repo 裡沒有安裝用的密碼保護壓縮檔。請由維護者建立並提交到私有 repo或用其他安全方式提供 vault password file。
### Gitea clone/push 失敗
檢查:
```bash
ssh -T -p 2203 git@gitea.cowbay.org
```
通常需要把該機器的 SSH public key 加到 Gitea。

View File

@@ -4,7 +4,7 @@
## 設計
- 加密檔:`secrets/vault.yml`
- 本機 vault password file`~/.config/continuous-ai-workflow-spec/vault-pass.txt`
- 本機 vault password file`~/.config/vault-pass.txt`
- 管理腳本:`scripts/vault.sh`
## 原則

10
install.env Normal file
View File

@@ -0,0 +1,10 @@
# Local installer config for agent-secret-vault.
# Fill this file before running ./scripts/install-vault-pass.sh.
# WARNING: this file may contain secrets. Do not commit real values.
VAULT_PASS_FILE="$HOME/.config/vault-pass.txt"
INSTALL_VAULT_PASS_METHOD=""
VAULT_PASS_CONTENT=""
VAULT_PASS_URL=""
VAULT_PASS_ZIP_PASSWORD_FILE=""
VAULT_PASS_ZIP_PASSWORD=""

35
install.env.example Normal file
View File

@@ -0,0 +1,35 @@
# agent-secret-vault installer env template
#
# Usage:
# cp install.env.example install.env
# editor install.env
# ./scripts/install-vault-pass.sh
#
# Keep real install.env private. It may contain secrets.
# Where to install/read the Ansible Vault password file.
VAULT_PASS_FILE="$HOME/.config/vault-pass.txt"
# Choose one method: create | manual | url | archive
# Leave empty for interactive menu.
INSTALL_VAULT_PASS_METHOD=""
# Method: manual
# Direct vault-pass.txt content. Avoid this unless running in a secure local shell.
VAULT_PASS_CONTENT=""
# Method: url
# One-time HTTPS URL containing vault-pass.txt.
VAULT_PASS_URL=""
# Method: archive
# Password-protected zip path defaults to secrets/vault-pass.txt.zip.
# Put the ZIP ARCHIVE PASSWORD in a local plaintext file when possible.
# This must be a small text file containing only the zip password.
# Do NOT point this to secrets/vault-pass.txt.zip, ~/.config/vault-pass.txt,
# a private key, or any binary/archive file.
VAULT_PASS_ZIP_PASSWORD_FILE=""
# Method: archive fallback
# Inline zip password. Avoid in shared shells/logging environments.
VAULT_PASS_ZIP_PASSWORD=""

View File

@@ -0,0 +1,50 @@
#!/usr/bin/env bash
set -euo pipefail
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
SRC="${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}"
OUT="${1:-$REPO_DIR/secrets/vault-pass.txt.zip}"
usage() {
cat <<USAGE
Usage: scripts/create-vault-pass-archive.sh [output.zip]
Creates a password-protected archive containing vault-pass.txt.
Default source:
${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}
Default output:
$REPO_DIR/secrets/vault-pass.txt.zip
The zip password is entered interactively. Do not print it in logs/chat.
USAGE
}
if [ "${1:-}" = "-h" ] || [ "${1:-}" = "--help" ]; then
usage
exit 0
fi
if [ ! -f "$SRC" ]; then
echo "Missing source vault password file: $SRC" >&2
exit 2
fi
if ! command -v zip >/dev/null 2>&1; then
echo "Missing dependency: zip" >&2
echo "Install it with: sudo apt install -y zip" >&2
exit 3
fi
mkdir -p "$(dirname "$OUT")"
tmpdir="$(mktemp -d)"
cleanup() { rm -rf "$tmpdir"; }
trap cleanup EXIT
install -m 600 "$SRC" "$tmpdir/vault-pass.txt"
(
cd "$tmpdir"
# zip prompts for archive password interactively.
zip -e -q "$OUT" vault-pass.txt
)
chmod 600 "$OUT"
echo "Created password-protected archive: $OUT"

View File

@@ -3,7 +3,7 @@ set -euo pipefail
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
VAULT_FILE="${VAULT_FILE:-$REPO_DIR/secrets/vault.yml}"
VAULT_PASS_FILE="${VAULT_PASS_FILE:-$HOME/.config/continuous-ai-workflow-spec/vault-pass.txt}"
VAULT_PASS_FILE="${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}"
usage() {
cat <<EOF

406
scripts/install-vault-pass.sh Executable file
View File

@@ -0,0 +1,406 @@
#!/usr/bin/env bash
set -euo pipefail
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
DEST="${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}"
ARCHIVE="${1:-$REPO_DIR/secrets/vault-pass.txt.zip}"
VAULT_FILE="${VAULT_FILE:-$REPO_DIR/secrets/vault.yml}"
ENV_FILE="${INSTALL_ENV_FILE:-$REPO_DIR/install.env}"
load_env_file() {
if [ -f "$ENV_FILE" ]; then
set -a
# shellcheck disable=SC1090
. "$ENV_FILE"
set +a
fi
}
load_env_file
# Re-apply env-configurable paths after loading install.env.
DEST="${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}"
ARCHIVE="${VAULT_PASS_ARCHIVE:-${1:-$REPO_DIR/secrets/vault-pass.txt.zip}}"
VAULT_FILE="${VAULT_FILE:-$REPO_DIR/secrets/vault.yml}"
# Optional non-interactive controls:
# INSTALL_VAULT_PASS_METHOD=create|manual|url|archive
# VAULT_PASS_CONTENT=<content> (for method=manual)
# VAULT_PASS_URL=<https-url> (for method=url)
# VAULT_PASS_ZIP_PASSWORD=<password> (for method=archive; avoid chat/log)
# VAULT_PASS_ZIP_PASSWORD_FILE=<path> (for method=archive; safer than env)
usage() {
cat <<USAGE
Usage: scripts/install-vault-pass.sh [archive.zip]
Loads installer env from:
${INSTALL_ENV_FILE:-$REPO_DIR/install.env}
Override with:
INSTALL_ENV_FILE=/path/to/install.env ./scripts/install-vault-pass.sh
Installs the Ansible Vault password file to:
${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}
Interactive behavior:
1. If the password file already exists, keep it and verify permissions.
2. If missing, prompt the user to choose one of four setup methods:
[1] Create a new vault password and initialize/re-encrypt vault.yml
[2] Paste/type vault-pass.txt content manually
[3] Download vault-pass.txt from a user-provided URL
[4] Extract vault-pass.txt from a password-protected zip archive
Non-interactive agent mode (via install.env or environment variables):
INSTALL_VAULT_PASS_METHOD=create ./scripts/install-vault-pass.sh
VAULT_PASS_CONTENT='...' INSTALL_VAULT_PASS_METHOD=manual ./scripts/install-vault-pass.sh
VAULT_PASS_URL='https://...' INSTALL_VAULT_PASS_METHOD=url ./scripts/install-vault-pass.sh
VAULT_PASS_ZIP_PASSWORD_FILE=/secure/pass INSTALL_VAULT_PASS_METHOD=archive ./scripts/install-vault-pass.sh
VAULT_PASS_ZIP_PASSWORD='...' INSTALL_VAULT_PASS_METHOD=archive ./scripts/install-vault-pass.sh
Check env sufficiency without installing:
./scripts/install-vault-pass.sh --check-env
Default archive path for method [4]:
$REPO_DIR/secrets/vault-pass.txt.zip
USAGE
}
ensure_dest_dir() {
umask 077
mkdir -p "$(dirname "$DEST")"
chmod 700 "$(dirname "$DEST")" || true
}
secure_dest() { chmod 600 "$DEST"; }
verify_existing() {
if [ -f "$DEST" ]; then
secure_dest
echo "Vault password file already exists: $DEST"
return 0
fi
return 1
}
require_cmd() {
if ! command -v "$1" >/dev/null 2>&1; then
echo "Missing dependency: $1" >&2
echo "Please install it first." >&2
exit 3
fi
}
create_new_password() {
require_cmd ansible-vault
require_cmd python3
ensure_dest_dir
umask 077
python3 - <<'PY' > "$DEST"
import secrets
print(secrets.token_urlsafe(48))
PY
secure_dest
echo "Created new vault password file: $DEST"
if [ -f "$VAULT_FILE" ]; then
if ansible-vault view "$VAULT_FILE" --vault-password-file "$DEST" >/dev/null 2>&1; then
echo "Existing vault is already readable with the new password. No re-encryption needed."
else
cat <<WARN
WARNING: $VAULT_FILE exists but is not readable with the new password.
To avoid destroying existing encrypted secrets, this script will NOT overwrite it automatically.
If this is a brand-new install, create a plaintext YAML file and run:
./scripts/vault.sh encrypt /path/to/plaintext.yml
If this is an existing vault, choose method [2], [3], or [4] with the correct password instead.
WARN
fi
else
mkdir -p "$(dirname "$VAULT_FILE")"
tmp="$(mktemp)"
chmod 600 "$tmp"
cat > "$tmp" <<'YAML'
# Initial placeholder vault. Replace with real secrets using ./scripts/vault.sh edit.
gitea: {}
openclaw_alice:
http_nodes: {}
ssh_nodes: {}
YAML
cp "$tmp" "$VAULT_FILE"
ansible-vault encrypt "$VAULT_FILE" --vault-password-file "$DEST"
rm -f "$tmp"
echo "Created encrypted placeholder vault: $VAULT_FILE"
fi
}
manual_create() {
ensure_dest_dir
if [ -n "${VAULT_PASS_CONTENT:-}" ]; then
umask 077
printf '%s\n' "$VAULT_PASS_CONTENT" > "$DEST"
else
cat <<MSG
Paste/type the vault password content now, then press Enter.
Input is hidden. The content will be written to:
$DEST
MSG
read -r -s pass
printf '\n'
if [ -z "$pass" ]; then
echo "Empty password is not allowed." >&2
exit 4
fi
umask 077
printf '%s\n' "$pass" > "$DEST"
fi
secure_dest
echo "Installed manually provided vault password file: $DEST"
}
download_from_url() {
ensure_dest_dir
url="${VAULT_PASS_URL:-}"
if [ -z "$url" ]; then
printf 'Enter vault-pass.txt URL: '
read -r url
fi
if [ -z "$url" ]; then
echo "URL is required." >&2
exit 4
fi
case "$url" in
http://*|https://*) ;;
*) echo "Only http:// or https:// URLs are supported." >&2; exit 4 ;;
esac
if command -v curl >/dev/null 2>&1; then
umask 077
curl -fsSL "$url" -o "$DEST"
elif command -v wget >/dev/null 2>&1; then
umask 077
wget -qO "$DEST" "$url"
else
echo "Missing dependency: curl or wget" >&2
exit 3
fi
if [ ! -s "$DEST" ]; then
echo "Downloaded file is empty or missing." >&2
exit 4
fi
secure_dest
echo "Downloaded vault password file to: $DEST"
}
read_zip_password_file() {
# Bash strings cannot contain NUL bytes. Detect likely binary/invalid password
# files before command substitution so agents do not hit:
# warning: command substitution: ignored null byte in input
original_size="$(wc -c < "$VAULT_PASS_ZIP_PASSWORD_FILE" | tr -d '[:space:]')"
without_nul_size="$(LC_ALL=C tr -d '\000' < "$VAULT_PASS_ZIP_PASSWORD_FILE" | wc -c | tr -d '[:space:]')"
if [ "$original_size" != "$without_nul_size" ]; then
file_desc="$(file -b "$VAULT_PASS_ZIP_PASSWORD_FILE" 2>/dev/null || echo "unknown file type")"
cat >&2 <<ERR
VAULT_PASS_ZIP_PASSWORD_FILE appears to contain NUL bytes; provide a text password file instead.
Configured password-file path:
$VAULT_PASS_ZIP_PASSWORD_FILE
Detected file type:
$file_desc
This variable must point to a small plaintext file containing ONLY the zip archive password.
It must NOT point to:
- secrets/vault-pass.txt.zip (the archive itself)
- ~/.config/vault-pass.txt (the Ansible Vault password file)
- any binary/key/archive file
Fix one of these ways:
1. Create a plaintext zip-password file and set VAULT_PASS_ZIP_PASSWORD_FILE to that path.
2. Or set VAULT_PASS_ZIP_PASSWORD directly in a private local shell/env.
3. Or use INSTALL_VAULT_PASS_METHOD=url/manual/create instead of archive.
ERR
exit 4
fi
# Accept the first line and strip a trailing CR for files copied from Windows.
IFS= read -r zip_pass < "$VAULT_PASS_ZIP_PASSWORD_FILE" || true
zip_pass="${zip_pass%$'\r'}"
if [ -z "$zip_pass" ]; then
echo "VAULT_PASS_ZIP_PASSWORD_FILE is empty: $VAULT_PASS_ZIP_PASSWORD_FILE" >&2
exit 4
fi
}
extract_from_archive() {
require_cmd unzip
ensure_dest_dir
if [ ! -f "$ARCHIVE" ]; then
cat >&2 <<ERR
Missing archive: $ARCHIVE
Create/provide a password-protected archive that contains one file named:
vault-pass.txt
ERR
exit 2
fi
tmpdir="$(mktemp -d)"
cleanup() { rm -rf "$tmpdir"; }
trap cleanup EXIT
if [ -n "${VAULT_PASS_ZIP_PASSWORD_FILE:-}" ]; then
if [ ! -f "$VAULT_PASS_ZIP_PASSWORD_FILE" ]; then
echo "Missing VAULT_PASS_ZIP_PASSWORD_FILE: $VAULT_PASS_ZIP_PASSWORD_FILE" >&2
exit 4
fi
read_zip_password_file
unzip -P "$zip_pass" -q "$ARCHIVE" -d "$tmpdir"
elif [ -n "${VAULT_PASS_ZIP_PASSWORD:-}" ]; then
unzip -P "$VAULT_PASS_ZIP_PASSWORD" -q "$ARCHIVE" -d "$tmpdir"
else
# unzip will prompt for the archive password interactively.
unzip -q "$ARCHIVE" -d "$tmpdir"
fi
src="$tmpdir/vault-pass.txt"
if [ ! -f "$src" ]; then
echo "Archive extracted, but vault-pass.txt was not found inside." >&2
exit 4
fi
install -m 600 "$src" "$DEST"
echo "Installed vault password file from archive: $DEST"
}
verify_vault_readable_if_possible() {
if [ -f "$VAULT_FILE" ] && command -v ansible-vault >/dev/null 2>&1; then
if ansible-vault view "$VAULT_FILE" --vault-password-file "$DEST" >/dev/null 2>&1; then
echo "Verified: vault.yml is readable with $DEST"
else
echo "Warning: vault.yml is not readable with $DEST" >&2
return 5
fi
fi
}
preflight_env_config() {
if [ ! -f "$ENV_FILE" ]; then
echo "Installer env file not found: $ENV_FILE"
echo "Copy template first: cp install.env.example install.env"
return 0
fi
echo "Loaded installer env: $ENV_FILE"
if [ -f "$DEST" ]; then
echo "Preflight: vault password file already exists: $DEST"
return 0
fi
method="${INSTALL_VAULT_PASS_METHOD:-}"
if [ -z "$method" ]; then
echo "Preflight: install.env does not set INSTALL_VAULT_PASS_METHOD; interactive menu will be used."
return 0
fi
case "$method" in
create|1)
echo "Preflight: install.env is sufficient for method=create."
;;
manual|2)
if [ -n "${VAULT_PASS_CONTENT:-}" ]; then
echo "Preflight: install.env is sufficient for method=manual (VAULT_PASS_CONTENT set)."
else
echo "Preflight: method=manual but VAULT_PASS_CONTENT is empty; hidden input will be required."
fi
;;
url|3)
if [ -n "${VAULT_PASS_URL:-}" ]; then
echo "Preflight: install.env is sufficient for method=url."
else
echo "Preflight: method=url but VAULT_PASS_URL is empty; URL input will be required."
fi
;;
archive|4)
if [ -n "${VAULT_PASS_ZIP_PASSWORD_FILE:-}" ] && [ -f "$VAULT_PASS_ZIP_PASSWORD_FILE" ]; then
echo "Preflight: install.env is sufficient for method=archive (password file exists)."
elif [ -n "${VAULT_PASS_ZIP_PASSWORD_FILE:-}" ]; then
echo "Preflight: method=archive but VAULT_PASS_ZIP_PASSWORD_FILE does not exist: $VAULT_PASS_ZIP_PASSWORD_FILE"
elif [ -n "${VAULT_PASS_ZIP_PASSWORD:-}" ]; then
echo "Preflight: install.env is sufficient for method=archive (inline zip password set)."
else
echo "Preflight: method=archive but no zip password is configured; unzip will prompt interactively."
fi
if [ ! -f "$ARCHIVE" ]; then
echo "Preflight: archive file is missing: $ARCHIVE"
fi
;;
*)
echo "Preflight: invalid INSTALL_VAULT_PASS_METHOD: $method"
;;
esac
}
env_has_noninteractive_config() {
method="${INSTALL_VAULT_PASS_METHOD:-}"
case "$method" in
create|1) return 0 ;;
manual|2) [ -n "${VAULT_PASS_CONTENT:-}" ] ;;
url|3) [ -n "${VAULT_PASS_URL:-}" ] ;;
archive|4)
{ [ -n "${VAULT_PASS_ZIP_PASSWORD:-}" ] || { [ -n "${VAULT_PASS_ZIP_PASSWORD_FILE:-}" ] && [ -f "$VAULT_PASS_ZIP_PASSWORD_FILE" ]; }; } && [ -f "$ARCHIVE" ]
;;
*) return 1 ;;
esac
}
run_method() {
case "$1" in
create|1) create_new_password ;;
manual|2) manual_create ;;
url|3) download_from_url ;;
archive|4) extract_from_archive ;;
*) echo "Invalid setup method: $1" >&2; exit 4 ;;
esac
}
if [ "${1:-}" = "-h" ] || [ "${1:-}" = "--help" ]; then
usage
exit 0
fi
if [ "${1:-}" = "--check-env" ]; then
preflight_env_config
exit 0
fi
if verify_existing; then
verify_vault_readable_if_possible || true
exit 0
fi
preflight_env_config
if [ -n "${INSTALL_VAULT_PASS_METHOD:-}" ]; then
if env_has_noninteractive_config; then
echo "Using non-interactive configuration from env."
else
echo "Env is not sufficient for a fully non-interactive install; installer may prompt."
fi
run_method "$INSTALL_VAULT_PASS_METHOD"
verify_vault_readable_if_possible || true
exit 0
fi
cat <<MENU
Vault password file does not exist:
$DEST
Choose setup method:
1) Create a new vault password and initialize/re-encrypt vault.yml if needed
2) Paste/type vault-pass.txt content manually
3) Download vault-pass.txt from a URL
4) Extract vault-pass.txt from password-protected zip archive
MENU
printf 'Enter choice [1-4]: '
read -r choice
run_method "$choice"
verify_vault_readable_if_possible || true

View File

@@ -3,7 +3,7 @@ set -euo pipefail
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
VAULT_FILE="${VAULT_FILE:-$REPO_DIR/secrets/vault.yml}"
VAULT_PASS_FILE="${VAULT_PASS_FILE:-$HOME/.config/continuous-ai-workflow-spec/vault-pass.txt}"
VAULT_PASS_FILE="${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}"
SECTION="${1:-}"
[ -n "$SECTION" ] || { echo "用法: $0 <section>"; exit 1; }

View File

@@ -3,7 +3,7 @@ set -euo pipefail
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
VAULT_FILE="${VAULT_FILE:-$REPO_DIR/secrets/vault.yml}"
VAULT_PASS_FILE="${VAULT_PASS_FILE:-$HOME/.config/continuous-ai-workflow-spec/vault-pass.txt}"
VAULT_PASS_FILE="${VAULT_PASS_FILE:-$HOME/.config/vault-pass.txt}"
usage() {
cat <<EOF

BIN
secrets/vault-pass.txt.zip Normal file

Binary file not shown.

View File

@@ -1,482 +1,443 @@
$ANSIBLE_VAULT;1.1;AES256
31366236643936303931383737336136393131613164623737383065323861316137353364373939
3563653832326338353630386566643062343466303164650a383931626237393034363436393739
30373766383136623539643232393437613230373062306432306335383937653965626430316336
3437376366386266350a313131666131343966333666393535343432653131623632663231643934
30343063333432353336633962666361336364383538336139396431316463613330303264303934
63343366626336623733333865663138643333356231366162363530393566386533333862353065
37636666633631656166326461616465326639616130306331643730643631323932613663643762
66353130323935643432323335656633326435633739323565316163333166616130616432383031
32363734626566643533326565313063363733346530393237623738306366343038646134626337
36643434633063623539613664623730376564303265323039373531356461376165316232323861
36636132353366316666663266323131316439626664353431306130613436643666396130356636
61343239636665373630306235333938393435616132323963326637666163623532306661336464
35333432386330313733656532396534633966376336323130343666373065386363623066626231
61373336353934656638326164363835613037383735366363633838336439653533653035353432
62626539323634666262373933313163666531386635633939623333666638306134393063656565
63363364376165663433333630353937343665353262643030663766386434316463653830323233
35343566626231336433643966656464316331666531383165653936333830363263633034613365
32616361626661376539353165646432323733613830386666643864613764366264303562386565
32303733393133636264373038366336636666343837323462313565353334663038656661666563
62363834303863346338393335666663656235336262343264383133353963656237653664643437
66313137313639353462323932366536393163366466653565616137626330633964396238323366
38346263346664313664383862373733643161393338626530396666396434333437616561346235
65363361303036663261326563646163326166663836343265373235623265396538653365643866
62376133333635373465303639366164366666356361653339336234653330623239343839363636
30363661396233363661663335326364613638313465366432363636633432356331383735393963
32623463393266356532643030373632663466313531623565323930343565623261386561646636
37666461616461643366346263376130356439326165353833386664303932393738393230356264
35616139666661313133653133633833323437663361353235393436393465666634366538613164
31306539643232626363303938666630623336653338643265333935396332626235383566353463
61333634636437616535333034323537323066613539666130353437353532333331663530336536
38643937353732316536646333313431323038303566383031386437636333333266616335643465
32343936356361373661646631633636326439666661316632613764393162623639356332343861
30633162613961313036303166623531623661356563643033653032613765326136323764316364
38383337616639656563323632303761373966363564353338353165623035396537356633653562
61313839633366306239613137363637333635363531653330623533656265613062383961616662
61376536353965303663666538326562623136393066636464333636393165323834346336396263
62636366363837373166613164303864623530353266303237356230333563323435336530373265
63383165663632623638343461333965626635333939306661363033336337333130323462383662
30323762616136643261303635363436643234323466343133613232626437386132343865386564
37386637633730663863356232313133666135386366653238353336653566656335663038666537
39313233393632636637656538383835366361356435653333373335636637636331353534333334
62306337336330303039316266616139333437656161353566356232373736616335643432373761
66626531666432306164366536396238356537616136386466666133663130303264616437346366
64353531373761313937386435623436633035666161386238343338396462636362623133356433
31356536656461343961383061316133616232303765346134383838613539346134316366386261
30383561343039336535346563343833393834633039373137303163356562633463646130373330
30306664616639633835333561643064383763616531626335663530396262623937663666666436
35313731633539396366333161336637343566653766623064386661323439633638366366306666
64393063333061616433306135323933313965356336363266336461393837633364393834306437
38646231316236333838303139613563653661346637316463306630393665383135323461343034
33646232353930643535613135643232613665356137636130313663636563366466326461303533
36333831313832636664373730663965346634646537383335346463666666663532353439666664
65366336616138643063656664653331363365653530623239393262663731643335653132313437
37376639326338613438333830613662656165623839643832303930363535303139653031663133
37613265386164636361366662353432633032616263653864356539366133613739303936626332
61626333346639396362313239363066386364323531383765316130383535393436373461613935
36613834636663626563363236356539393864353066313464303532666532356530346632396130
33613266326237613730633933613866326335353437386131383431356332653630356537626264
38626663353961626465353765306661636664646232613438396262333766383131383065643030
61356337373132633331373834613865306462616636313037326562343565353265366330393563
64666332386436633133623262373962646365333633373564363238623335313363616338306432
35653434363932333234313564316434646236663363636438353962373961396563666165353434
62386665326136393966633333373235646530633830643238633433616635636634303335356137
39353064643762623331313839393139303762623466373164333232353538383735656131316637
31383932316130316639363231333032656432303037373938656531663862386133326336666330
66656265613537643766353665663934373338333962363830373738376331303830653632316331
61393037383566363030383364643863623766366639393639303365666431646437363131353535
34616232396233323037376430663439393335326430373038356465313439636265343332333137
30383932353164656462333433653331653963336530623164653834363637336263383534366530
36346634343765326334663962653930663638653333326435393034663330323733643933633035
36336331643266336266393264393735393332316334326634313935363866383566633865393733
34333933326232643932393234333030303762393236373838333233306536626639333664623331
36633165393836633362623037636339363836653435393162356561623539356435643437666530
36383461306432643861646535363932383565343631376263303063383264313430316363613465
34626638623334633666363161626461356230383839366264383839346239386162623463363634
33336534323536663065386133323361613166616636386534393831363834323763356166613763
62666363613933353930383064636433316534613238323137393530326437363139396165376639
38373262663135386331383839333236326465613838323231663738393536643962303136366236
66323532643366646638323466363263643734646132386261373338633763623362396664633137
36343965333237366462626665366132346666326162366330363039363937663535303566313961
31646137623832333166386438326565323235363738613161666532383039326464346535383063
62366339653630346331383330313966313233633162306535393338353738316638613062393233
34356464643236353939643030656366363438633066336566383134616338666536396132323764
31303563396665316235356330393863333333636365616430653835636566363536633632616335
31353732663735343333366331353061613965646461326234663231653832306435313163383630
38656430633861376232663461376138643633666666373865623431346234313630376236666331
65663735653538613934633232336534343233653963646635383732633039623635646364643333
32336432393438626162356662363330396236633831393536663561376532643735616661326230
35383235623731633165303262356561643133613739343239353239306162396665636662383839
35623532396238623763356533363730613839623134623937643065343638613039393637663232
38373964383861393865613137633734636466353030386630353066323531333931343665643666
62303839663039333237336664383833333535303063346536393766396238633934306264316334
39313934356232646631643562333365343165323337363666343636316232346134323162373339
36333637303366636537396237366132353130346631653965663331353232383164633566366164
63393164633833356239343261353663383539363330653039643631643063363330363431346235
31653431393065376366613239323238373062653736303930326336353734386434313730623766
66666161306534386230333938623131626633363438336634656363636665333566626637383666
66613938613638643761666432363133326533643663643337313039643162386438383432643166
65346266366439396432616235653462613631303932326634333935333431646665346437383562
63343665326434623431343739323737306563366131383038633939336264303765613531376363
30396530373562666335666538313365326532666335346663393666636365613265366430386135
64336235363166306130373130336539333363323161653738373739643561613162366366393937
37626133643733633938326432353766656461636265323933636531343630393231366231323434
62663337373433653435663030633236373462303132303130653230313530306236333766326338
39363766613437313165653561323638323361346265336437393935396262626335376333346339
35666635386266353034313865663033383762366132616135653839373037316631636133383466
32666434303363343866313461646663353265666230393530396531393437626636323537623062
33353139613035666138313837626363663465666563303739366132333763363132626466306336
37663730393932313962363031636139643735653830616337333766363939343165646266613663
33633563316562396166316138383133343936633764666236333330653337623861626235623766
63313734393234323238343335636564616133343664323334336464376161346561326461326662
37313061363731393666376238666661386666373432323830336139316133616362663733316237
33353332343033323332613061353163393032653437323332306434653866326531373630343266
37346232363863636537643330313664333338393132396631613133386562373562356539393735
37313034313962313431396333616639653536383335363663613262303334343761363363303664
61366664303136373566373761326239633530666430373865363961616336326339643333393134
39653462316165303436323562633339626432623937303539396538373466383063303663333362
34633735366138396265326333356162636337313666303562653335396532643366326430343964
34303839653433353866316235356266633863343737313936356165663638343836303263306639
39353936646538323933393234383932316362353733303361653064393832356131376461653132
38623733313066613638636364633361326339616331373036666162633262656139623632616162
35303761363230363130663235613065303039653138623438343438383737613431336637333461
63393836393535646237323664633336613233663430653262343137666636663034613035623661
33336633393761613662333765646633386261626530363931613664623134326661653332633232
39656137393266623761623364383933643466323362393332346130343564633964643836663330
62336666396466343035373663353964646331613939336139613530363864663333376163626365
63326634333739616132383462363339616336643261343638616432353237346462656239666337
36386535333164633237303430643266386537613536363432363031303539316333373931666439
64393137616633656537363264636663313134653237366434386134643939376434656436323437
63303266386666363266333836376665613432666535613737363930306635323934373131376235
64303564663666336638346638633731353034613236633465616139653561396264356238373235
35373231393337366663396264376266346134363766323637373130333464336362623566353231
32636263353436626562626633366266303161656464333030616663363566326265636633616238
38666337386265393162663236613433336130323630323836376135643530393438633861656532
61373037343433383635386366333166313563613631353466623837316634366665633161666361
37363532313861626435633165346165323861653563616531303061346332653834386637663030
38316539623162323862373232653339306537306563366231373163666637326637333237376564
33323165383430643164316330653436303566393566653134626638643161386363313263306331
62363061343130383830346234623432646637653334313862373363653966613532303433363735
63373662326464333961386565343363663938363361336133633030316438343266643162333236
32646335613933323839376266663137383234396332636131323736366332616636643830353165
65653939336564373537383733383931353362366537356266623964376333343135356162613636
66363430666166336563373364636636306439633039643066376561653461663936363461663737
33393866616335383930383438303731396430376231363833623564613139626462636233373662
38666363383632333266343636613063313234663131613936313262313662616430333633343261
37353634316530613934363566643666366337323932346632323063306133633739343934303964
30353430383763363863336538623665626139316238393662633030363934313366376639626633
63386335323933663166646535306665643334653765376133353938613336373362633961633138
61316236623564356130663062663166623937653464643230666236343265646237326564303339
32623134353665353764323939643165386363396537393937663231616164643365303062393935
39396562333333663933613439306664643834326531326334663463616436616363636264666534
62346236336465303032396133643461643834353966343766363662643930626433353366343862
61363039653865313036313964383863333035663835356365333261303039653734306236346238
39633231353565623134633031663363343861326164616230306463323430643131333461316230
32316536623130636436653730303436363861303033666634316463616239636634373361316236
31306634346361333765313133333337366134313831333961343764343330633932346130636436
34663635333764303833383234363939363438396230643633663934353933633135666238626236
64633132646234646534623362633235353130343264393962326131626337386362636564393835
66333032653564336534386362353562326337623533323534316361373730373865343662333764
32306662306439623363303564356232343862633731376266326134323561663864353236373738
33383437396639306339313338636639386162313966326534343563663937343265643031383235
62343861393531376363363337356563656538616333306465316133323364636231613962626262
66626538613461623262616638643934643436323163623932373333613136306339663631363966
61383032623537353561383638336364623936656166666339393366393938666563643161623634
63316565353063303435633536393030313561363237656135636334343839396630616534613834
62326264386263306130336636323162353834313438613035663431303764636561633961333338
62303138373533396538663031366134336362663239663430616666383734626433343430306232
34613062393532663636303833346231633438333665653536373362343161666237373235633563
38613939646437653465616538333735666463333135623066386435363366376164623338303566
65306338636363306566363736303038313634613463313562376233303438386631353965396466
33396131643566323162666339316238356534353034333035366334643934383333643233333338
31626230303966343461616530646531646166373332303438326165633231646463636639613835
36363436363232336134663330333263353036306161393238633264363438626661333738316639
61353434633237633964646132643265323531393362373638366133616237663662376462393433
30613939643366666334643266343131333930626533656365383132393931643338333638626336
31313235373836383861646436356164643034643531636637636537663262653563333465323161
36353064303566326164643761383339666634383761633230646130326537393939633038646430
37333863383637633264343366323561303461306532636665303733346362656465393739626265
32343735626631633464643566613931353133343664323138383563646633326133326164666234
32626261613932373036376535353636636132366464316631646161656635393161343162333234
65323532303134643837323837643865306666393062626330313139363835303965613962393361
30613034656433376533386635666436373231373539306634326538653731643437373334666639
35366566303964643536613332393331656338313166643565343335323366336639386337323765
61633463373764373833373865386634336261653939333939396630326335613566313439373334
61316263383333656639383735386462333031316430383331366331336365633435633730666636
37626363626166653638383933633832323937346234643665636531663339323036633431376437
63326330386661303539313830313862366663336164663136373763363330646234386265383138
65353936306139393532353963633033343761303462386464326162336435346637333462633639
38323432656561383838356530636639376334366331626431613533366331346261363038336430
61336635666632633138393536646466633234366334333935363364333065323164303232356136
64313939613165373337623830646237313239306438663232613166393262386661376539363262
39656664623431633639363538323765616363623533383664373936303435356237393164316137
63646236303534643064326366313731643530636164356431343738653332326437643331323634
33663837613139323935653332643438333965346539316630356132653162373538646137363632
30613138366231313836643464646566363939613930333237613264656265336131343462353362
30616233376464303634376237323364376239626533633963343934313864616364353037636138
61306564626331373765623465663762653066303734636235616532663236396662373039353865
31303261323537333133353239343065633661313035653139636334666362356662633966346430
30323235383339646138623639353261663738643633323531313638616336366362373165623765
65326437323666343833343339356564636135383936323131396238303761326130653064313762
66353435663663656438386263633632383031663337303237303465323530333432366636376337
30643661636137386464393164386262643133303662393863643232363265373365353735656338
32376361626230376262336536646235376439643133343430633135643831656164333431366534
32313466323065373363353239393639333539613130643361366639373962383561656263626436
35363934386662376164393034386233633931666161323161373636393136646265323231626666
64656165643838366236376265373535653837633538333865393663633630306364336562666233
39613736313762316130643531656464343339633038393831313964376637356638346331333863
31376665653239313238666134333830303538636666343861316439363965666662313461656530
62353762366264363365313330393961386663356136616232623137326561373265396265363530
31353766366661303435626162653063646632336337323431656239333864326139383165383132
33393865316437333463323463616463663935383933626239333836646234383961393039623561
63366434613336366463346661366235663038393062623535613837613466313664326464323031
64323266633331326366366562323634373030326466343538323935663230663064633562343462
34623635666463323638623966623737306433613030353830303966326333333330343234316535
31643532613936356465666536613536373562343634653134393561663832643736376461346133
38383462373165356663666332643263343232623139613537616232616363326262646363343739
62326566326138363131393063623931323561356236613464383836656338656137616335613262
36616639643839396331666131306563613937623133373339643361376163613861363633643538
34343532303239323434376135313063313563613762356666363230626537656564663836343666
36343630326665303334656235666162386233333966663139633334613134356562626232316434
65623065326131383866393139326130636365623264613763373962306361393462643839363337
39323039356530373762363761643739373632366165333237323136343964353165386133656333
64636461396530396237336232346536663837393665346231336431633866343032303130393435
39656437633131613538376138636461356139336637353864663035643530396338373266613139
34393534646364666461663737326664373438613862376266366334613664333365313737653034
63383665363665303436653765633061386261393963663431336132366166363535323939656237
34656237636164323439616639653066323636663638386637363136323335653437313637386434
38363963313033633439366263333337396132623962663764393562366638633239633035343061
34623662376166376539636630383931343962373236376535373562383633333263316437373065
35383534393731666431666133653331373733336634346238396161623234333130633432643764
63373430366666323035663731616166353762376130623564303136393732346633373230353861
63303933623262313234643339376537646531336232363637353236373565646236363931303430
62343632386232336364643961386461613935333033646635376130626635336131653637396632
36333230326433623938383662326661356464333235633161613331333130323433616439353132
66346661366630626632636462356435363430323861353131326561666562336562353965353936
36383139643566323661623761333966623964613838343264643065626632613530353636366536
65323838316164373936633663323161613033646139623631303464323563633766383661616331
39333563343031313231393030643964303863666162393438663534346631666361396466376164
31623835616638643664613661656438663635303063626230626662306563393336656538393338
31333138323332313430363235663139613139656639313437373263316133386334616135646239
39386535613365323535373362356361356666326335373137363761626334343266346564666462
61633061323235346263663935633835393866393135616265336338383162633761376134316366
34613433396430313365323033343839393139623363313230663035313437363066326338646432
65353438663866313436623837343466323163663138616436326135356337386138613565323466
39383032383463643736333335653234326331633835386338353662656230313530653965646236
66316238643435343735616435393733663635373638623135313831663431353537333137633038
35636464646661343465626265616530613835333062623866333235396661326437643065626239
65376636633765396365313664643934623232346136376462623563356161656464656432336264
39323039663332303564623465643737373763366663363238303830636435626436623938633665
64666565653965666366366434373163333661386237333139313333343539616335373630343832
38643638623339623237393438373737333133653661323630643635386131303133656434626464
61346265653564313330333939353034663934393033383266643261356364316365333533386135
38333266613864626335613066636130373437666337623936343838666266663766643035346330
35363337323333316439623761393835373564356137343630333665383631626335663362653439
65653133353862326632633436363061386433306561323431373834393161343761373065383732
36666439663632396365633065333864383662616137373162393132666434396234346162613639
32663862646662623637323638626661376261373330393132643132363237656164303165653864
30373864326230376430663038326433663532323435616534323936633764333934623065303463
63653832616562326165626639623831656130613965653530353762393832333431646163356366
66333666383833363566393063303338346165383034396363353164613765323765333632623937
63356237623432313564386136323133313161646436383832346338323564643865306432336331
38313635373936376466623939333032623363633035303163396262666230616339333761333464
62373332333563373066636366646136363937303530366234393863613733353063356531613138
35633135336539313761663631643034393136656331313639633561336665396636316335353863
31376533663235316332353433656237373638613935376639383639666130623862386463666532
66333366306461636634326461363738333838386336316239643736636635613439666664643431
61326237616132343931383864313434646230373966633437316264386330386161356434323166
36633939643862386633623132373838613437313332396436626330656335636263623463346264
32633730356432353734353765653564306563313266653633306439383861346337373763626163
38366635663234343536613239643464323336656333333566396361343966396632633037343637
61323833616437346531366534313161376663396634656433386635376436643633383165636463
65616564326537653861393137373932303664303833326361316437643535313235333138346639
37396535643636646365313038643964663465383062313735623763383037613530393039663563
32623533386235613338336638663362383230656436623431383833386234613139383831376662
38626364343966616562643064626330643866356362316239656339653465323666666464313766
31366364393331363638653034643636343066613537333335346566383938323664643065383231
62306532646639323830326261303662333562353731316231623535313137653761643936326339
38323635653164326637633965313033313638613135353464363764633131303563373236376237
33303934623464653030343735643165336134616438386133363065636264653934653333396638
39396364636134333036316463343532633532326432313166653536646433356536653232363731
62323536363665643933623936316233613339633132633064396438343530366130316261663835
38663364653264626630326532623134646237396666373865633536376238383866316265373765
35366438653364343634346136393931316565336130636165666136356431363834633437613164
39633137623536626534386332626266303563393261343731343065366533393664626636646263
39356131333462613931636363336164346130373137363935633236343730373132316466373663
30656435323134616632663334633736633661313166323263613863373430663738356635313332
62396233336230343336326363663239636139303437323836636263356166616537316235346133
62613437316430646333626338353430383162363030306630616363623131666630623336333939
39336263373961666663383331306463323136323663323230616263633933386536353737626438
32306239333663653034643639653233303763363738326430623462616336663366316330613937
30333665353463363830663835633865323836613237313739336331316136303534653861306330
61343064333138373265616463386435653932646261663833376436643730376632623037333031
33613032326234373038663535306330306630656263336561613936323931623834333561633235
63366234666563626364376336326633353138663661323433343235643035633538326436343361
35633966646130376339343036393765323930346233383862653939616365343539323561623038
35396464326563613938336565313639616266313164386665633836653635323339343733326531
30353235626635623130666635626265346432386561386164333330303833646263323861633835
36633262633137363762643639373637633963626131386364326238633738313338343432636532
35636134346666323364323537613336643033346438366232613063316365666561346562396633
62353166666562393034613134393539643233633362373762396433363137373464353634313462
65666433626166313730303962613535356237613135653732356533633664663661343765333632
33666632663636386564376432633363313737643265656266393337643462663932633534636561
36656163366336313632313730643237373031663536386332366435363963616139376362323965
36663636356562326566303761333933316238376331326233376163633762383437393839363165
63653163373236353931386665303133316634656266616133663763343238383762373134326464
39323039383936633361393266353235356335653037386536313661306236333331653233366562
31313166323665626530356534356634323939663830396265333064356135616537666136396432
66366236363833323864636339346632646263313630313732383533373238356331636662643164
64623931393539376161613533346131656266336134366330613530383631376435623231386432
63366566646238363864356338366331616235316436623134333065636636613365316563323734
31363361323730363163343835343138333030373363386637643162303864386237386164336436
39653061643136396162396233666431386638643739616537396438616261303364393266616230
39613361646366333130386333303031646165306265633834666537393263383466643236656265
38383165643239393361303237396439393365303738633038373134376334303662653432666330
65363534323965313837653166653065336362613334636638363065326461636364336233633764
33343965383933643830336662336333613132343565636563663230393964333837633236313862
35386438333931623039353263386532376233656538626661653836316233393932336362323636
36366330363265626630623236356162336463373765336438366562643763333461636561323566
63313336333435346261636332376339336533383435623438326634373561393566666336396437
65363963613965303936363466363565636136393233623263333237343039663934383932636639
37323631633835313635306361303266373066623562653739363665633435333835626261396364
39373765633739613865373836646264633433303630373539313836313361356231623634316138
65393038663832343761343064363766626266373934663461663630346363613631316431346263
30653039323466636237376366626431353032373633333632366632373635613261396233626434
31373038613766643734376164303430353536383866356231326461313563373038306531383163
34356235653134613264383631646365373165653162643763633463393436393437396432313133
35386537396336643432663966653565383062306263303562613664333332383164346531306631
39613038656331643138396130353236646132623034343835323336623336336233366637613531
36646161383962323865623332653961663865303432666465306132363630313833313364613536
65626430303030666635346534653666313862666438653662636564626437313439333432656239
35316336353664326562326536336462663432323034656265393134633763306464346261346531
34306463653163353739623964613662336638616463653165383830303732323037323565363631
66616361646231393063393761366134383639323864333565383939643561343630616535343235
36623362323533393437313361643533616134373765393762343966646338313061623262646636
30646639666636663833636135633431336336303434383361393333643463393531343837613438
66313534336637663637633737306363626335366662343463363936343734363639323265353938
65393964656562353130373735393061353932396631646530303437653333393833306562333137
35316330313433383439653638396535613764393264643738636538626630656266393233313633
35663636383338336264656139663331636537336631363339616663346232326562656531346130
65383732306537343837636431373361343063653933633764613839333034653662366536636338
63653366363562303363396231366231326230653730626261366230653265613263303163323061
33653063653834333061663361343230346465333463333165333431383538666432656337343362
39353732353938313462613937636633386138383661306237356232353161323165346139633366
33343137623236653764323234323537663233313937623136336663663632626364383332663232
66386261623661376139386263353134643965306530643537353235336237343131356235356332
39336464333261386438333665323037643061666138353266633431336537323362393763393431
32396230643339353539613165623563383732393562633463376532356630393238353732336661
34393739633731643833623830346261633931386239323361343464303334613839306330373264
62366565363031343462373730656438616530366363333766343563333066623533623437623761
61306566316433636233623236343335363432663234363363336239616231646536303936623634
64306132383332396262326432613137353265373765373038653832383264626261316434353136
34383763616439323237646665353637353266326262636565396165383765623066326634333865
39373835653962383065666133613366396137373865616437303965636236643939346439656166
32623837393833333932366431323637333532663134613539376332653961356265633433306164
65386531393430626532373834393135343863393261343162623132323938633766336633353837
61623365353838316235646236613434313833353533643566653565333036346235326232353335
36363538643865663636666637303737633338666136396162623436616636356561306337623366
32626261303338373730626461643431323565653332323032363664646563633430636662666665
61616465346532333239643161313739303636613030663534386162333734373633383234636663
32623739663166633931663461323464326161333461376265393730633231613330333936306437
66383661343435343431616137316231386366356235303434666234323231616236326239383266
38306137333138336666323564663038653063313665373035383235666538333530383134613430
65663038663238653664376365666462303261353263373964653538613263303537643061316261
61353834363262613934633831356436623636393762633439666330396265306638653664633065
34626565636266323466336536623761333563363764346638636233633066623530353530376537
34656538383666616231393366646362353634633835316338336339343634383438343830643235
39363966323861326638616136353039376338353362613166363031626133336535353165313634
39373332303531383531346464656530373936316161633966386237343337653832623964613264
38636136393561663334396263313365623964313962666137396465383839366337313938363133
61343338643035323530343835613237383035343534333439633832303939616538643663373365
63333565656439323838393038366166383231373866303561626433346238306237353334633738
64306232643433653633636361306663663462326431363336306663323035363931643663306539
32346365346333346632643039653138373938343661386462636361633065303763393131656131
38656166633234393431313536383031336431393434663366366262316461373237633636303139
33316262393030666166363864313164353435343332643532643663633463306633316330326430
30346161663932666134653761303962396161343435303130353435333664313135643731626431
36613333666130666435326161613834336535346438646262653063316535356162663538666662
31656636313864333061663638656433333030346436633866646534313436333530616463316338
34643933613430633762633962333264393065343832663136303537316665643062356636303631
30316166626134373465343363653361316239383335343864636434313434623337666663316432
61663833333930323664633131656637313562383039643830326666636231323236393833386134
31393639396530396437356532343033343364396333653636373731623261373361383330366430
38313038393064346366346133336431643364393061333631303137636566333539383839373766
30343261636566386432656638636563386434666361303239316232663235656565623538306164
32346435343334396662653837633732353735653364353462306236353662313832356631643930
64333564643963623764643031616431656261626633633966376337306364333566373765633434
63643736373138613732643432303661306433616435313430393231333939333631626338303366
62363432326338633632363433383566326365373962393136323266326539393935616461356461
37316435366236663431613039653432656633303861303863303362373835353931663633363638
62303466623762333035356139666136306539656235353636373265326662343766613338306462
32353861633162363231333433663236616136346162323662366335323063333638356137323863
31323061303730303063626437346362363832316561363937326539396539393038326534323337
39643261653936313338353933356637333931373430663139323663383533343733323231323266
64313461663461666663336365656561383666656266316530653830316631383439373939613463
30343034326261326531303433633432623762303930643935396465353563616461386566353739
31376463656634613030646564373537643166363739373833303862366133336261393934646662
31616363373865656163333538343239343834313264333336376638343965393737383436646531
66643664326536313136663733356339363065356662656530303133393261393864383238656630
62376163636431363464633963336639313434306239353833303036333335313466393231396633
33326464383537383236303531316431623730313861383031343237386631313939643039636364
64623463613330303737306432363364303831306265656134313232666638666366383732653665
39386337373431323830666462313832343836343939373966656361643138336635633465373664
33346365623632303436343130333761656634333930656364333734336231323132306135303633
36356162633265626632383961623235356532636135653837383330626138323064613039343962
36333330306137643861643631653061366132393966306265373833613638643035663963336137
61333965336331613535373131373933353764643563306237333961363138363562666434616530
66393031386536616139386432316466363335323664393462353437656131356138656366373131
61643765383239326132376266663565346331613136373139666365303533626463666431326231
31326430353131306135366634386231333963303030343761326433363961393166303131653430
31353163323961653631306462393535623335316661646166396635623064393033313332333837
38663234386463303234663632383936623733336338346561643563613262326166313631323339
38393239656166626233306536326535363166643734333331623739653236643139326530656166
34633333383862343336633234613963336562353337323566386265356536643931346564383737
65616161623361323361353865643965366464363331653866386637366631333963663762363463
30333531326164383564616639343333663537656438303639616532326662336465666639343132
64643936376261303738616131353765663733623730306463393031643535616366333139383062
63636239663464386139343039333434396436346164643531373531353035396637316331656238
39663334383262316131363637376634336138373964643532343166626465636461356330633331
38666437663464363764623831366531393332376538653335393730623935666466346666386665
62383833313165336434333262316163323337653733623237326263386364616332346330646135
35643263356633643364346564383566626239346561303763316662376166316439656130326462
64646137636530303764323736323332623934636166366336656433383961316532306161396138
34373066663563353533343033613061313763333930666433316333346138396161646236353037
32633663376638663036306230623435366165666533636137373331616363393034633639366564
62633466306263356331623332343635313730366539643665323866303738643834653561393339
63306261643930613866326435346232353335376362316231343836623637343961626666656237
65653236393262626137346262396636356663356234613432346430643736343030373138656166
35353137373830316666396266333566303063663730616136393837616435623433336332363039
34386231633666613232646130653963323835383837366263393039343361663262356637643364
66326633653965663738666562636530633562393536613565653962383832616164636635643437
63653137313265653332396131643537343632306665353631653031346162356431656465663536
66663531633633336562666130366631393831633332313131666134653738316562393536303061
65613638336461343963353138643837306339313363613966613238666334373933663561653434
36666363366266356637363565666236396630373335376130633139383435356435653339383230
31373466373063396433646439396130633330313838363737663339376635303939346533333135
65373034343762626162303665666163626336656139653732653461353034656635623632636264
34363363353564393136666632363338636239393037666534636662623831343461316139393335
63616366653664333037646161613430623538306666656439326462643830626666336630343730
30363933616332306165666338383834386163343238303265393131393437376235666662333336
64333831396132303337643537323531353163626266316330313865386435323937393265643233
30373936356636646231313666346534303738663162626230623835663634383666363666373230
33313931333230343966636631363561633231333966653535663338383832326562326234633636
61613462616336643966313834633830396561386361653535656161633265376236383539333361
61396361313137646561333032373766616438326464353737373134633037346630633232396135
37316538303932363561393363343763333938363333616566306137333666333634303133383338
61363962306439343163653036386536353765643861623431643732303534643532613930353932
38616566636363343761383730383236626262613963643564373164323434636562306433643133
64646464336539623336616436396234643238663339643365623430366231333637633332643536
36353861326331646332613961633634326565346664356634636134623434393835653965373531
31346238363238613039306534333063373439636435393061313565623034313065663163626638
66313630366261373261373339633963363530396538343431373363366437626539393339656534
62616131643130393839633935373965373239366535363731363436326339626364613539326235
35363066626139376465386530383662396663326364356339366435363164346163356662396163
62636661613933303531353134303333613030663231613338623865366339313330666437633764
33363533323830653733666338656531393533646630643162303837656661313065373963623761
61616132383034396235386231646630343531306434616534323963623765333963343036626436
33616337313533663763326234383361333665343163363233343933306664666462343038376630
63633461633439303366376330313236613338313664326234323961353030343634326262636366
62663934306535396433363038346134643662616665373063393739353932393732613865353765
30653235623931623531383537636638366434336237343939373231323165613235623039353130
63346635303762303761643239313465613636383138313630356261393163313330346665626532
35633932323831626235623362616638616436343938623533356565386237373238616432663837
31363164653761313763303263383466323066323236343066323138333337643834393866653538
63346337303735613036633234633035333165353564376364393039303765336265666537343630
38323136303761393331386537666164663337643839383563613835333738306661656561643961
33333135393432303934353564313966393265636565643039613532623037666266623736623639
32343363316533376264353036353439386361666531666433666237623938383262316530396233
30626536643732656665376338663463303430373866303234316533626436303063303539633931
64653538386631663366333035313730663732646637646339386637363438386533363439393562
33633837613362623237623934633333343465643964643163346464353139616233633739363336
64386331633739386361363764376635626130363232396132356537393462633665303833636330
63343132336338323636333632666230653066353035366632653730353730336565313935643739
66393937653066306664393735383366646436346536653831326466336631323435313537353766
38383138316636393939316237633437353532363739306263616464666564346663613938396533
34633139656463386638363931383438613661656238356265353666356135656632656437363236
39363162653332623435663463626466333664353731313936653263646231663134336430656330
37626639313635653235663837393034636164616531613335613434386534343534633134666361
33666435333665343063386635646330366134383663626335613335353738396135306261376466
30626535336131613735313733373965376234643139353736336563653930616161353565376138
30313532653835646661373362376137393934383337376262633063363830303363656432383537
30366335316265666637323364353537653238373239383530663133303530303838
31393435313735653561343266623635633433616336346539333863633234633865353965656635
6332626161336531376533363963663762393363613939630a336563343436323632656337616330
64316537383036363131306331333830643836666362636535313665616362633136383734333536
6633313233343331640a633162663430383762653530383962323432663765383666336563656364
32393730643434303936383466343232646164663561636366616133613733633233336130623861
35633361326638383066346235393161343766306262383634346239393635333462313337623662
38653466613239623866653363313133663462343733626231353631626264363236623035303834
61313762326232346265636564633864306162396665646664356130373461373561313439626533
36633265616565626536613030393637356533656665666636653764376530653135373662323761
36643662626231373963373636646632656434316537366164653163303036366330353933343533
30633263626437396632326237376231343661666161373933393738656366313731323136393564
31613837646237356231623765643737396231643933646133356430623132666235323135653135
31383161333965363162313832323239613933666130666562313064383836393464333336336231
36366266366137613361323863306365623030316530316132353139353732613462393161636632
63653065333066363766613031396534303836313563303362303563356666306638303966386162
62653362326437623439356565626164323662303865376263633564396136313637343164333135
64303266356562303734343033373739313933376637316133623734363034333961353136363761
32316131333233316230633865373733616536366231353534613961653730333162366464633961
66383635303761656362633136393930626439396434313334353762396238646439333666663138
31336362306232633736303061636437633137343462323462393766643538356661646563303735
35623630323166333530346631643561346661376236363933643531653063373263653037323938
38643530323331383136353430613261653566313830616163353466313439333962336134613436
38306262346238663138353861316338626464393238303335363161383333616430623564356563
32396466326363623936323333643462643964363965633161346135643730396136333535626337
36376130316338323732373232313861303831343433646134666337383363353437313536323939
32366131383464623565396631313331636533383935373161336266376337623533346237366533
33326664333332386466633530323765636232313635306466353261663965653239306430366137
64646436376163333032626134623132616630613832393465373933313238326539633361323432
37666436303933356565323134616463383166623766653761353138386638386335383264373334
37663262623564643865623630313665616561306138343163323032623138656166373462656462
62356563633135356465333038333165306564656334316662663239303232653438393361396631
32326361663630623737366230353232626338366137356163663938643266333838376462316335
61306633653034343061376538666635386435643134663262633130306435643931336562386161
31323231643432326164373539333365313535343164666431663239356637383766363963646430
35333765396333306131393731613864616237663132373833613835663537353765383337643166
35393961336464646231663532323432373264313533326563303531313037333861323634353638
65356363326138346233353334613736373635386266653035626137356134396638656638326437
36396430643065376634623562663066353564616336386136623739356635393061323433636137
38663763666434646635333232376633326165653232373761323934393737373466666665363632
30346232373035653535633061613133643934343933356531393739633034363364663738656234
62303639333035396336393734386130373937333734663262393761643162373630346137626136
65666234636263663632376536373662313465393836353339396539636531326136616361346262
35306162343831663962333534623266383234623539376534303337383331623630303830643932
34383736643432363932643762616665376436333930616564383731653565383365366134333131
63663238303539336365633632633337353739333631616239326237663738623934373132366563
36666566633061356335633539333163326164323436633539623331343036346364393737326565
39353333326337306433663163643530643831313065626465363566396537363239313932353365
37396561346138643339663231643464323136653162643233373031383062626364396238303234
35326534376463666237313331663366313535303565323237633066333762343261663166663534
36346464386433343566633737373530326436363632316461636131346431373538343637346236
38383837376137393139373765386235626262663966643931353262316330396138396434363764
32303138393435303665316230396636303136323136373737393239363539643763363638383935
65333037393662313533316338386135656264373663383734643861323531653965343032633030
37306532623332373530653063346165346439643534383735333839633439303439373862346563
31376534653134636530313661626162316531633164656137373366646437306264343661393339
64363039666565373361656235616166653864303933663733356433653565393736356137313935
66376133336539626337656131653931333534646439373065636338626235306363376266336633
31316639663038343864636333303739316532636531346330353936303133333434613962636262
63366436343835333439376162333462663765363463356665363938353165383263656466353061
64373736373538313735333332616135336438663930313339303538306639626662396432366433
64623633626531333332623363323163633962313434626337623565303266663533363663623266
62326232376433316532343065393035356539613665643436343735313761383266363332666236
63303538346261663039393263343535336638613436366265643538363736623463626632326536
30333861666565626532633339363762643461326362663035313565333866346631346433333063
39356631393430653933343365323766333039656135376266303439346334653930323230323461
36653965346533366361613636346332366139613635326564346263393636613239643230656465
37393636616434356665376638356231383334303861356535323338653834656264363466306138
35663139643135363333623231646236633461663135343465393433663664663666393662663633
61613665623164326332363938613261323134306533376539613336386265626537656432616634
65653836653636393134303165306238643738643634386430303537393861663734396162393562
39356334366461393462633063623633656135363736633730373939623763643133316466376266
65663961633063373033353136333832626235663236313236343865646161313337636438633034
64303431663664313934303465333939303432323462383465653366653061306637653566343137
66623935663966663066643738633565313363323961646163383265396461623039323561343430
62396538353631623838396164323530333263636365636538346462646238633861323766373166
62663035346535643331646239396662363633393036396631393335323436333136623731356138
33386365386562383333663837643839656231326362663730613663303437663139303161303837
66623166643561333431376631643764613231643664393561666531613465613266366464313564
61383661363266386535663365343661313534623231333964323536366666626335376665626530
65393837666134316537313036316630313066613563306231643735383233313264643564313231
31386132613663323033656666643739363831343931633636653963363330376464616232326334
64383334353734326536633466656237623964373132333730653561346462643730333431323266
66383530626466663932343135313938326434396332356336386334366665393861633966383236
64363561393363333538323765396365313135633132363433343361306334353135626161383330
32303866643135666664386264653239383932353436326436353766353831306666643539376265
35623663336164383836666531353235653562326431303238643465396666353233333162383263
32643962623535333636386362623965386535666661626434303338393163323936396462333634
61656138356539373464613063396664633761346133313139343437373137333333633263366335
36386562373366623865633534623365653538633731383462613964313861356638643635623032
61313861363437376563636636633366333861343239336263653863623363666137373337303665
65383961643533633261383038623766303331363137636233326230663861663564376133316133
34623730333834313030613166343632333463303636633663346236383032346464633931346338
64396237633933313164303535333535666137613831386637313732653734393165323030356638
65663533616563376436356264376530343065623466343433626265303737346531363736663665
66303039373464363035383633646437313135333531366439653839636464316433313838633332
33363964373237396164666538363536306165386538613732383338613435633662336335326532
63393136646638396133363766623936633661336338303263643264303735393563363362386532
36323266393537663261353931333235323263643736343337336137326530373430656435663734
38636163313231373764383866303531646130666363386334636533653332663134323436613835
36653836613866663937373966383138306636383261396265653132343934376235373966666466
37383162333233643530363233356337616164333833656333666534306434613233396237303637
66376465373663663035353433643461373533323939663633363132663632613362616432616266
61393238363238616261636132376434616266623335633865643136613861363831323761316337
62376238393236313365663263663465386665343063316333643239613335633861376362396632
39313137323339333839613330333931653837333933346163646637373164383033353735396138
66356134363630633738353830343964376665313865343636663232626565643739653336636164
61646464363237663862363234313931653763326663353134643561323562353231626530363663
38643363333764623866653664306661323635303238383765373633633065383039666165343630
30343932303433303963643639616366306138316638653065326563643864313934653063613635
63363464356134383836656662326639376261316435326536373935613530373932616530336231
64333763326366646533666133363264343036656139643238643333636563623635303262313337
37343437363364646663373539303163353438616637356232633333656561373761316535333630
63646432306564313837366334313865343963316638373531376661373631633432613563313134
36323130383334643166313866346436646439396230383538316131633135366630313539653333
35386266613039343665623734363934646638396631323062346331383461363765636336396361
30396166376566333065623737626331346133303233373433346165383537636663363263356163
34626538366133633831316538363335646433313038653239303766313334616634383636643463
35613966613562383237656432336433343766653866626363613661386238613331356466623734
30376436653666386566666636663732633332376363633431386161656337363463643161336264
33643164303830333233373035653837323733336530663263613561653534353865643134646537
33306262323433323362643039323133316165326663616334643433656636306161663362643762
64626361643638393063353138636630656436663663306165656439333734393266656266366161
30356531623865396563653532613932653132353865393932373864303533653233373535326338
65636237303261393336333839613734626330643138643362326338656664333163343731393664
34343532363163336337313131343830626338343461636336396261313731356532383861613938
39623930386164653832313331633238633862653533663037303739633734643438613662616134
37326566396562366266313737393865313133613934303330353764643037393536636535653938
39383065356434646638376266356434386534336637623332323861386362353264333565666632
34653038643631373437306566386130343966633439373566316463393165303064303532363836
63333030653164383863613164323764653638303961383533306235343366383363376438393833
38613530646331383131393235393136633062653431653831613961353131643437663763613631
65306335326162653638343664313238383164373638623139633032656165353632653365386665
35386338616137656532383065366136623066383638376536653661623034313030663961666237
39613733333934396561323639663531663936623362663138303835373635336434313966386333
63626234613861363564623365663430666238386362393330633964383136613537636534336339
35333430393336313930316262346161393066633335653664613436613237633134373562333564
38633736373966656161613037303365343030396566326561376432633637653935653039663832
38623333653761633532633334636636333733656634363361356433613834356665616261363739
62373563383366316633633261366339346430326362333535393066663964656465643235303333
31623864323933393332353062653063313930386363373230323266646533383436623939316432
63626261336561393838376138623934333065363335313831666430616266396530336463613864
33653262623537303863653231343332303539353030333034356134623836396338363335376466
63323939316463383130653034353761313533623436666165383961313339356633666137346264
61373635646231613430386661376230333263633061396231336233306439623137626661356136
64646664333939333461393638356638613835316364343337316361323739306630366637643965
36633333353836306232396334363263303432336463346232306533323263326366653437623530
34636539333538306539656561623666343931313065636162653165643538353565633632303666
37623939643030326364373062646139633438616535643632646332393037356533393365346364
38393633623266623136626264386636643261643664396431353931333731323537643332613831
36386334623431613839666461393866626162666439393932316663623435363030386564656538
64313337656232313239393530386331353733643237343531326535623466343565663134653637
36356263353838326463303764383961623364383632663732613830336165306165383762626635
30346464666534336139313031333436366436623966333465366231306561616131393530363137
32613863383364323532366663316535343963353934666166376165386438386464646232303862
31393563316133663733626665666635383436356362383565386564623330616636393962376562
66363031343537313339626561303630653433663036633161316165346161343665373564663333
31373739656430313238373636383262653332333531353331616264316135333534663930636334
66316538303231636533313536376334613838333062363038303834326662666138643831316438
65653731366665363138333638303436326466666563336631343565336462373737346364353638
65656261396236646265346136616133353861356437316230316364373732623164666330376533
30303431383666396362666534653166313438616265393664303033616265353732623735626533
37336135313836666433333131366135613835623138663234326536373732623532656466386333
30613461633835643033336431363235373636346434306632343365646631343939626364363666
32323530326166353239366433306431306639326231396534313866303264373261643065613861
38666561336461316138653166303361626565323639313663376565616433343862646164646132
39303862333735626665623833656136646638363561346239633331616530356362633335616139
32393138313931666232363561663039353738366635656133633134303963623331363864323235
35316435666634663463633365316262653138656461373431353365363030613533643563643439
64333234343066666138393436643534653235656163343434333738656561653132633631323432
63326434663364393033323263353336303166343664353537376164376666366531643436656630
61386330383364643238386166383665393830343937396161343732313831333138653765323530
32626166346335643638323736353839636534373234333333393533316165666632373237303637
66333539623735373831396566366162636236613031363735396234633437333433613664623834
63656433373531663061383665333233646664363039303631313735306336343238376136663863
61303837623032633661633138303662306466316330366463306265383736636264613633303063
63306436663930393534316364323265646432363130336133366164653862396166623332373166
62633334646133663661613430303735396531623766663132653662393139363436303463303731
36316163393738373362383962643435313365396561636231653566656239346331623861333536
63313764333161343366666331326634383037316561326433353366666332396338303234393161
63656632396535386339353734303939636634376666623730636238356436363737326434316133
34353631613935363666616334623535346663653039383235396162316563303239303565313430
64386432343930633961383862333463306131313063643938666332383865636661323638346265
33343339343434393534613739303763386466663233343163663734326131613930653734626366
35653862323965306630363733363036646139626130613438663939353235613836363433303966
31373835623265653863656465636135366236356636613864313864303539323761633236336533
38393166623066373330626533636538313561386666653637396662333234666263373338613235
38346161313163323263653132306531333235653138626434363637663661623432313634656232
32643730333837396665623830643266373861393137633533643161346262383365633466306163
36323238363230346436666333383833386564636431353039656131316666316631643739646131
63313132366166633565366164353133613033636162346363613333623436666662313332366664
33666635643039326337626361383933326633323931313836386233333632393833643761343662
36616365316236663234346535366135356664303432633531643334663630343534363366373665
38626331346235363937313235323039376465333433653564333131326236646330396364346336
61393763346332326439636533653534303564306564643034343161646230303863663635376264
39666134366439313665303662393736393531326237343536646533653364393731613161346434
63313630653761626665313639663932643139316138666337346566336366396531393539333166
38646335646635366366626335633435316163613439316337363231346433366265346664333630
65366236336336343031346138646639623834393666376335666561363862323737363831653863
65616364323136666662313237643930623230333566336638663138396232353230366262653433
36343933333930336639333730653435336538353430383561623661666430656666313431656238
30363537343561336139646231393666303832393366323562386133643632373633666137623638
64383430666361323764393638386337613835666263336537616132393361346364303065393739
63613338623237623761373033653861383830356365643466356164356236323365363936393531
37326563623231386264303031346262393763343262666136323566323930643963653831353331
31653134323730346261326132313132633731636238643536346266393432626234306635666233
65306438663234343739633837663562656666326335343934396235356233336537353466363234
64396263326562353539643032613635613863646638613531323630373966333331333038306536
64333566613362323136626432333039363266356331306262373361363738353461336334646662
64363363626432323838353737366161353462626536373931623834343763306635613731326164
33333639353762383138346632313863613162333464663230616361343436393139386264353733
62633364646662323832343764613762623634633639653236623866383435343730336239353264
38613039376337386531316666643562333534373664386466376333353031643931356337363462
30306535306264366565393064393034636664313936663330363932333863323766383134623239
63613531363533373637343563633533313866363664633339323631656431636662643534326563
32336662313965343461366635373865643738646634353433626666326366333738663134326263
33303238353531373463343835616635376330376138363662643835313462393866353230303338
39393562396463613564643236656235653036633338373137333335343332323435373739646363
62393435653837373265646137313135636333663561303938646565373333353638313132666238
33653530663663663264326537373536666662363235343337393666303963313435356566653065
32333633633130386539636638333766623964383165663866373331303166353335653965313165
30326534636235646131393565666664636630666139663836653361326463396139616435363034
35386637366630346235336231333937336134353630336437663361306437323532646639353361
35383238336462666165646235363532316431613837343230316638376239336433303564303830
66643262623861613361376264333662376335636433363734343833643464636530316632333166
64323030373266333562303638636665353130363532623033393065333530663933363238346336
65663966333938373861353963643936363739313263656432353161623037313339333136313832
34656334353036356538303062333765636466626164366435333530663835376665653662343037
33363663626236313432643037393166363031346534396162396137303065643335636563393037
35656238303438666563373638373237626362306530613535303865363937346266613631343737
30363234613739383637646132356332373762363862353865663365343636383232653131383637
65333631383663343162623931633133306538393836313961633731363630366266663833616332
61616131323031356538613735623663643138366664383566636165656631383866363663396238
37633833623065313035313565373434633262646237396339373731313365336438656438363466
62343231346664653135336430326538363932353938333662613862636265373836613236666366
61636337343231363162656239306361313864636638343139656438353934356131373564663166
31343861303238333935313761383766613531663131386639316532663364643962353230366264
33313463306434306565626135316535326237656333363631356661363832633930313130313764
37333330633339643531373532363166333063623836646661326265616664323666333734656239
63313966363031363165383231333765343439306438323531336537323865656333313934323036
32326665333636623565353639393861393530663466303335333565663362386563643465643365
66346437393362333863646364633835353639383964303635366633366635333535343038373836
62373039323534613634626633666561393963336336396534616462643033666635373133353033
61343838616163313531333438386636353936366462643238393539623539383034653064356338
35363930613464356238666630306639363233663361323531336332356464383230646564663936
31373530653064356263396230633865346132333730636539323737353333393363303434666137
32326161333737653662663638613166363966396566623437306133373864363739343336306230
34333263313839656538643634353735356530306235356134656330653064336634616663646334
39303538376238343833613230326265656662346639366632363031333036383865393633373934
34626230623065626637383066373361623536663635373863316338343831333235323934353030
38346633376331353964646164323566393664643161393962376265643563356434643066363261
34616634633835383261303833666331323630366537373832326333363632333661373637626130
36323038366137363761346137313663343334333236666539323034626563353966623165383630
62633337636238373238356464386361333434396233623133653062313161353138653865316261
34373562623561383066313931616565653362346434353732326237303562323332396161333565
36383663383234373462663565316338333035326362616231346430653965336530366664616636
64323532623335346236373862343539303663323435623438663931626432316565366463346161
37623361366161393664373561313532613039636138626330333064643366303063663631306362
38386637353336653063346264653962623965623330333239653634396466303564613738333336
30663066333862623865663539333039656634663232623765323234633130666564363430653138
34623661633162343564383761383038383834376132303663323537383661613032636536323038
33616135636166316232313963393663383361633232316231666231396265363536316361343462
33623463313538393334336563613339643137613430373732303136393731663964316639356534
64303034333933316530306236386662656234396639313164333734303065333536313564643133
32346634316633376432646331353764373037383333636336646630646133313665663564616337
32616661666265313838313735393663626530633138333732356431623965323936363466353461
30663835313839613465333464616332636466636237336231346465373263363362356439326438
66633037373537383063356230373235663561623631386431393864626666376631393230626433
39353766356164653832356132346537626639363933653833346463663930643364613362353736
31376665383938383963383031653463383061623363636430316265623362326532633061356531
32363366316633333135333032366135626166333135643130636434346265663361333763636562
36663334323962646330353639333265366666316232303636386662326134653532363563376235
34353130616666633666313833373037636362333231643030666465623433613032376435366436
39393665643734393163646366356565316432396431366436383631303261336534333966663461
39626235333564363337656262313239633431356331326664356464323734316564373238643538
38353039616237333532306133313032353664336463383363333030656135633035333237616139
30376337663134653837336231383365363732663230326661393430383365313637363666323735
61663461613039623230656636643462333334323334363630393434663133373038633337303866
65376364663034326462363939343763636561376461313134336537633763313431663537363734
31366361666264383232393730323530333531356331323030313231666430653765316166303031
64626162303465343662653263386432646562323261643163653337666265303262633131363534
33663639613437613432363761323063623136626366633037383435363832353761373963396361
65666439383137313331316637343534636534376135373066363737316262303064656363353633
65626464366130663839376435363562623636366333643137356361376331336464643330383164
30663137653863363137323834323631333932383632623333643139626539666636306262633531
66323066643465373334316136666464613034376434363264313536333538356332336566616235
35346432626264333162356633363438393339303365653162363136653464656434643939613766
31633063643037666265346363376333636330643464663433666663643435353437316634303835
37353131313537383466653439623861343762333137366464386133643232386365313630613932
64353366666531653238366232666631303161386265373564343832363637393338323165393330
64386262313231656566396539633861666666383165376264636361366139613332373438373833
65663464643165323238383464656436333738626266376466303739353464616133383339613464
36616663653331623035303136616535633237343936326238326337643135663230376232303639
61346566343335303339613333643234383937323335306531636362393236353262396334303430
31666264396363616430653735333963313638636135363538633136383036636464633366323831
30373865353336343762653764396365326462613935663332323233353637666661333038663962
31613036393632356436343536393033353166326535366334333938646165653466353961366638
32373638366435346530653632623139343062623364666533323932303337663739666539666630
64376166336463616132353331323733383365303835313561363130613231616362313963633433
32633564303835623434356432393566373338373039633965643731373334643965326237303936
33623364636338313164623763376331376431316637653330633534353463373762613539663031
33633839363566343336393632356236376336396633386337666136653461313439616663613763
35373263363463616136633762326663626166336565363661396263643236333961343237383863
64313262396533313966393232623439316463663137316634393163653762356362323330613564
32376539363137393462323732316437353036646336363437656135666632316333303635383632
65613162363566643036333539666362316530396134656361616537346638333833353262663238
63333663393839386434623934613264366533323265333165393533343834613561323265653137
33386566613837363461313130666232333766393764326533326530356163613663386462376338
66626465636133343239623666623238346530373464313164616230653135393339303339633132
31373134666664643932373266313534323039653966356432343564623364653132393864636465
65363461656165393330613136323434333561386462656139636338383738333361396434313436
34343536303664666637326165303230323163306136323066346335366563393364366265323337
32353165666565393238313236376333373733643931643163613563303933376239343133623434
61383937623637383665363330633038393131373933356235353065303762316665376266353332
37323431373462663536663263373138363737303464303532666333656439316634636262366364
34366266613465613439613762396661663463656437623562656238336562376539323662346339
61633734373535333964363139333363393765313333326563643239333238306231363565613736
64333330633639643734323131346538623965396437376531356237643331316534306237613861
36616534376566656532366365333738656264666630613066316538333830396335303731303661
38313938323435336239636634313735313363353035623535626531643732626437363730653566
33393833383836376666323637363263383037333730613039353264663236303461356632623532
64373432323033373739316135323064633739376330613731393831383761363262316466313666
36333939396231613939393962633537336430613437306335393563366233613036396634333934
30363235303566303830303132383261373463316437623431663965376331636161386433616332
63393836326430303864626366656166646166653234653065613739623662386236393938313537
65646266353138363634616632366163353239336361366162323132646261646335383830366164
36353832393538666137666330313733383137663631663034613863373463643461633139616130
63303761396530373264373136366362643166313137616265306165313163363864653035393862
63363731643132663166643432383933373861313364656665336538343264323761613865383636
30333339613133663234646330393438353130633033363661663131353132663936626636333138
35643063303837326233323632323966613832346564333361306130646562326534653766663662
38306566613662393432636166653361313761663766616563393036393135633366323865373637
62633633393233613833323563363165656236653034353162376661306137613830306163656431
62363738646236343465616139613238326235666139366337636663353063346533613437633762
65343532386235323333363364346466666161356366363037643866633962656432373461393730
63633934623632393838646139373165616165663538636131373963393364633962336430366635
61663134336639333165323765373131623537656531656239363461643066303734346334356433
30663762623263623864333862396366363531633661373933343533616133346338656138646233
31666633353038373035353066396563626534306134666430336365336666623162343166333132
32363639353166363861393336316539316663306462383966303135313165666539316662356632
39613439653933316466656638656264633830646232333839646465396465353436653934616535
63353933626438643465303839653662353835613662623337613436653533613339336631306239
32383835306134386266323037333066653833616363353139616565393031373162663839373766
35323935303762643836386532646564643063663834613064353634316130333063376636316531
39646261623936313535323437333861623161346633316533636234336264653532396663663931
33626438646136333062343462616436343964343462623236613737623837643233346632316564
38633634646635353030313263363765386638623037306230333038313031353161306666306137
39616262616239396163356262323038616230383262616462313936643530626132353337663231
65336563396565323435386561383434626234613030643831333630346136396631636361323833
61353034663766386566313432386234323536326236376436353963343062303961623962393165
30323762393064326566643936613064396536636336656565373630356334613939396431613636
62383338373865313730656533656331396266393130616164356638336661346231383536663232
33623833323965643139626239396530323735643732613761386262383738616463373665363138
31656631663463626233366537353061663832626335393038656131383137323130343337346638
39643332306463613236333564613234333438393033623135363764623130656239383235316539
31643863623664613864373363356138323662363064393962333838613335623831343134653438
65633361613439376131636535363961653831376563313838626131393464353465643934326563
61616262373230356462326434323631393837336231316262366235323538343338306239656633
39373864646132643132363733643364353734633565623733353438356632653665313932653735
61616139636631306634636430613933393961336235393130376263366233386239306332356163
65633865396236633362393037313637396134383637303034393663623862656139616634366430
64613863376266663665663638353130396431333136393930653530623432636434376462616236
64646539643135363337656235643463383834383433666162653830613936663036313832643765
30646239636332613036333330326462313533633737346261393162616336653064636437313964
39656139643865393863303337373430636461373139303839353737613633343635383538643238
31313432626632666361386137353765373837656239383565636562643131343634393162373665
38396232363662356561313436303337323437316137323233306638396137623831396561353230
36363636383462373330613264326339643638366331633864333537333636323264303630646431
37343030323165306163666138633830656131323234316265656266326564333262653664393139
33386561653231373336653339656662336466363366376366316263366466316562363633326530
38333065656431393534363531613966333234363135366465626330353234313536353637616461
34386336303362626162653836643334306430633836336335326461303538646664383334643731
36613831643530346137303530313363316634623466383563303964633633376466356664626538
63613336343831643465623432306463326430373530353963663662363136613762666334373239
36656465346464666533613131616237323732393966343563353166343262633962383439623763
33356633363831636163313035646461336137633431373766646334623134356332313937353537
33313233363436393939613032303032393961613533356536663064623265333832336130616664
32353766313437356238333737353037366161393734306434393966373536626536636531616665
65393461313135653031353830386138393930366463316665393030326463663763396161666538
65663465633864323763303239626135393534396561636336316262383962306135306135363938
63363935663465316132373932303961643730306535393232356239353539373864343064653165
63303138646235323232363137313062636231386636396332393139643833393435366462653436
33363465663065633464613639383766376334623765646230306635616235313339353736393739
30323764386130303162326133613138366437333632363238653663643937623839636266393135
62313139393034376233653232623861333663316663396239333163633336393732663831623566
65653031363563626231303037363437343164333336623838666639623431303465346534653331
62313533333130333466643837643763613130626234626134323065323165303334626539306366
35636631373763396235303031346339383134666564363632316533323430393463313438306234
63356566323362363163333633646661656233636335653563373865303864393737623065336234
65366565636166656366333264353637653136313739653630316130633037303536313663613034
61303539653831353038326339653535656539336566656531613730303135613863616561353638
30303134663035393765346338373339646465666561303966323631313832643736343638616533
63343331396336323233653333353531666134633636373164353432306166373735666335626461
66326535653137613037616335356137623261313733636637393464386539303365646464343062
39313965393465376164353963613664613666336633323534333165306165626632366431633133
31393736343532313961313336653562363739353831333166663934613062393439333762393936
66306565393963363238353266613166383333313530313762643536363032316163343733323431
38666235356639666236363966383531643731623161333462313961353238653836643066303365
65653433343364316431343266346561386237303234303333326530323934373936333463333035
66663935633935633631396538316564313331623336353831336537393066613966613363353635
30306638643335323362666230353330643832393631633637643730623138633533653232643266
34616238316237663863613737396131616539663137353331616666613532623139643136303430
34306231386161316531313137343735393363303635366265613132366466643230376565313264
32333530336638323436383938353537643731376438353365306265656130396334383038356361
35316462393666396237323461303266666665346131303866333136663565646636653963666230
62313539303062666630353162616361613036396362333366613634626666613236396464646263
66373736393364376430363536363434316164663463356365623731633838663535666437623732
31663831303762303162663435623463613139636538643537643538303033616537333034343539
39386333616135306664613066653438343666626535313432356233663435356464303162623663
32326665653662346237346139386331356466386637376136396634363631613866616161356538
36386530393436373737333330383234376162626437393061303238326439646264356361323037
36383438383533366232613236623333333062333836373730663736653665623231616234353863
32333365666563613630653163373430653934656130663962353234616665366134663334343538
37633833333732616232386630626332306535633562653961346637303665356539346662386433
35643531383937393639643439623934353066313536636630653564643664316265306564663633
32333537653566373739366634373032636563323132306239643631356666666533633066633434
36373463363639613139666430613063666235666166633163633361353735633763363636383537
66363736336133633232383135306637343930633431306162613136353263643230323836616136
62323230333663643963373432396439313663656439633766333065363432396235323335376332
31633738383037393564303433613363373861313133383232333336666665663533333563316461
39333035383539613666313361326539383435303264643033363533366464303636633938383538
61646564386630306564633861643035396631373061303139643234393363303637376565653661
35623261346536623766323230373435653531643432363034633134356433646535663366326634
66663837306165316665626133343836383639623431393634323363633839373435356634663132
38653465303032356233643766336330383536363164616565366665373538616462313633336431
30613663643639333766613365396264616136633036633366336437613737663335633837663538
33366266336433643764373238643231386536613633663830663261313663366639653830393864
37633534383635336633623762336665323962653233396365313335346636656361386337366430
30313533363831663738383661643633613730343030656230393066303438313162633234663261
31656231353235623363376330666330653963323537323636316231323138656563383334646433
38653339666565366562326137343964346462323830356633643032316339313465633335306331
35343138303765326361346232303933393730646330373131333831336331656335303736343762
34623433346561343137643739633438386134623038633331396663343636346231343632306230
37363338373166663262386331363763623535633930303039373934633338336562303930356562
35616332333631643962623936393463636630643536343331633563383930666364343030623635
62373531663036323364376131653633323637643736356130623032313936386135393165613932
65373430373135353264306136363130393261636664636261656364663439663738616436343935
38613332303265623132313539626635393034666239393764373937626162643232646433643937
33373938646564306265396161613136653634666636663964666434363061373166633730656132
64393932356438336563366632346334313239653532623861636466633933333538373630303632
30323763643663363038366533356336306238653666303531373165646565666332613465376661
31363436393732616135633235653465343338336633633631353862363634626538646337633763
6538363236353664376631336136663963333832343064613738

253
secrets/vault.yml.text Normal file
View File

@@ -0,0 +1,253 @@
openclaw_alice:
http_nodes:
NPM:
account: openclaw
password: wnHgM62DeWCz
url: http://ai.cowbay.org:8181
ftp_excenone:
host: 66.45.244.235
note: FTP (SSL/TLS available) account provided by Eric
password: B3FWN8td
service: ftp
username: excenone
gitea:
url: https://gitea.cowbay.org
account: openclaw@cowbay.org
password: openclawOPENCLAW1!
token: 6175f48f82a2708f2882b8b170f08294ae8afab5
gmail_mc_ai_claw_agents:
account: mc.ai.claw.agents@gmail.com
password: qekyha5360QEKYHA5360
provider: gmail
google_ai_studio:
api_key: AIzaSyCfr19UPwFlEJ1hSnV1uOYDsAgBDgqY6bM
note: for Gemini / Google AI Studio testing
platform: google-ai-studio
librenms:
account: alice
api_key: aeb09cd2e66c385013be8b470fe4acd4
auth: mysql
email: alice@ntu.edu.rs
note: LibreNMS API + UI account provided by Eric for ERP-DB disk usage check
password: phow1aeV4ad)au6k
url: http://192.168.100.2:8000
linear:
account: alice@ntu.edu.rs
api_token: lin_api_m061e2U96xrd0rYLHsJDwKmIRQVyKKFEJ3vVZQYy
url: https://linear.app
maton:
api_key: 3gJcxhUWqpmDd94QEi8SIjQw_j6DQTTpi8nLSbylpTou_wm_ZFfAfWC_KUAlvEMMFCea82548A8v_VAklhVwl3xvP4bp7YnO3xo
service: maton-outlook-gateway
ntu_webmail:
url: http://mx.ntu.edu.rs:8025/webmail
account:
- name: hermes@ntu.edu.rs
password: uNi0lo7Vohz_aigh
- name: alice@ntu.edu.rs
password: qekyha5360QEKYHA%#^)
outlook_alice:
account: alice_mc_claw@outlook.com
password: phow1aeV4ad)au6k
url: https://outlook.live.com
tavily:
api_key: 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
service: Tavily
vertex_ai:
platform: google-vertex-ai
token: AQ.Ab8RN6L8qyV-5udTlUeLu-iMjGTmxUOscKwGWMWyUlKS7W_O_w
multica:
url: http://192.168.17.123:3004
workspace_id: c0b7cb73-8f49-4ae6-904a-44d462213cde
pat: mul_01d7722234218c999e2b573f11ffd4cf1016a930
note: Multica self-host; PAT for API/CLI (revoke+rotate if exposed)
image_host_excen_one:
url: https://i.excen.one
account: alice
password: Atie=W2Uovahngae
purpose: public image hosting for WordPress-visible assets
api_token: MTc3NzI1MTI2MzYxNw==.Y2YzYWY0Mzc1Y2M3ZDIyMmQ0YTJmZjI0Ljg0M2FmNGE5Njk5YWU4YWY1OGIzNzQwNTBlMDI5NDI0YTRiZTJlNWUxMDEzZTQ0NWNkMzk5NTQ1NTRhNDhhY2NjODA3MDg2NTFmNThhOTE4MGU1ZGU3M2VmNzk0ZDM1Y2M5NmQ0MjEwM2VhMmU2ZGUyMjdlOGFmNzEwMzI4NDU4M2QuNGI5YThhNjlmYzhmMDFiOGRlNzNhNDg4NjMzNTQyZWQ=
wordpress_cowbay:
url: https://wp.cowbay.org
account: alice
password: dfDhT3EPiE4Nik*W0j3q7hIU
purpose: WordPress site login / publishing target
application_password: zyml YP9N goCe fqvb lYjp boPW
HQS016_MSSQL_SERVER:
type: mssql
host: 192.168.100.16
port: 1433
database: application
account: observer
password: uy7pee5Thi)soo6e
connection_string: Server=192.168.100.16,1433;Database=application;User Id=observer;Password=uy7pee5Thi)soo6e;Encrypt=False;TrustServerCertificate=True;
readonly: true
note: Read-only MSSQL observer account for application DB; key renamed from
HQS014_MSSQL_SERVER to HQS016_MSSQL_SERVER after host was corrected to 192.168.100.16
per Eric on 2026-04-27.
ssh_nodes:
ai:
account: alice
hostname: ai.cowbay.org
public_key: /home/chchang/.ssh/openclaw_alice_ed25519.pub
gitea:
hostname: gitea.cowbay.org
account: git
public_key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPHGz8BuT9vfZ2Z+fvuxfxHKoQdLlTdpZSYn3zFvuIj2
openclaw-alice@A0411117
private_key_path: /home/chchang/.ssh/openclaw_alice_ed25519
public_key_path: /home/chchang/.ssh/openclaw_alice_ed25519.pub.pub
gitea_for_alice:
hostname: gitea.cowbay.org
account: git
public_key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPHGz8BuT9vfZ2Z+fvuxfxHKoQdLlTdpZSYn3zFvuIj2
openclaw-alice@A0411117
cowbay_provider:
base_url: http://ai.cowbay.org:8317/v1
models:
- gpt-5.4
- gpt-5.3-codex
api_keys:
- sk-MFvBcto52ZiUxlz1V
- sk-HPIwhEI0dXkc0y1oM
- sk-mWOVHJhS0da5gxXbx
infra:
hqs_virtualization:
summary: HQs virtualization/storage/backup environment provided by Eric on 2026-04-27.
Contains ESXi01/02, guest OS inventory, vCenter, IBM FlashSystem 5045, Synology
RS822+, and HP ProDesk auth host.
esxi_hosts:
esxi01:
sn: J900PBC5
ip: 192.168.100.41
account: root
password: root#DSC
xcc:
ip: 192.168.100.43
account: USERID
password: Dsc@52404664
guest_os:
hqs35:
purpose:
- ERPDB
- EFDB
os: Windows Server 2022
windows:
account: administrator
password: dsc@52404664
sql:
version: SQL Server 2022
account: sa
password: dsc@52404664
backup:
sql_schedule: daily 00:00 backup all DBs to D:\SQLBACKUP
sql_retention_days: 28
synology_drive_client: installed
nas_backup_schedule: daily 01:00 backup D:\SQLBACKUP and Conductor
directory to NAS ERPBACKUP folder
nas_retention_days: 30
resident_programs:
- socket system controller
- dispatch center
hqs36:
purpose:
- ERPAP
os: Windows Server 2022
windows:
account: administrator
password: dsc@52404664
resident_programs:
- socket
hqs37:
purpose:
- EFAP
os: Windows Server 2022
windows:
account: administrator
password: dsc@52404664
resident_programs:
- socket
- electronic dispatch center
esxi02:
sn: J9014TRN
ip: 192.168.100.42
account: root
password: root#DSC
xcc:
ip: 192.168.100.44
account: USERID
password: Dsc@52404664
guest_os:
hqs38:
purpose:
- B2B AP
os: Windows Server 2022
windows:
account: administrator
password: dsc@52404664
hqs39:
purpose:
- B2B DB
os: Windows Server 2022
windows:
account: administrator
password: dsc@52404664
hqs40:
purpose:
- Veeam virtual machine backup
os: Windows Server 2022
windows:
account: administrator
password: dsc@52404664
vcenter:
ip: 192.168.100.49
account: administrator@vsphere.local
password: Dsc@52404664
notes:
- vCenter created
- cluster created
storage:
ibm_flashsystem_5045:
sn: 7811DY9
left_controller_ip: 192.168.100.45
right_controller_ip: 192.168.100.46
account: superuser
password: Digiwin@123
hardware: 1.92TB PCS SSD x2 RAID1 cache; 2.4TB x8 RAID6 main storage
volumes:
- 12TB
- 500GB
nas:
synology_rs822_plus:
ip: 192.168.100.47
hardware: Synology 4TB x4
management_account:
account: nasadmin
password: Dsc@52404664
backup_account:
account: bakaccount
password: Dsc@52404664
folders:
- ERPBACKUP
auth_host:
hp_prodesk_400_g6_desktop_mini:
ip: 192.168.100.48
purpose: authentication host
os: Windows 11 Pro built-in
account: dsc
password: dsc@52404664
installed:
- Guard Manager
ports:
- external-to-internal 6666
- external-to-internal 6667
licensing:
csp: assigned to customer original account
gitea:
base_url: https://gitea.cowbay.org
ssh_url_template: ssh://git@gitea.cowbay.org:2203/{owner}/{repo}.git
account: openclaw
email: openclaw@cowbay.org
password: openclawOPENCLAW1!
api_token: 6175f48f82a2708f2882b8b170f08294ae8afab5
private_key_path: /home/chchang/.ssh/openclaw_alice_ed25519
public_key_path: /home/chchang/.ssh/openclaw_alice_ed25519.pub.pub