Add files using upload-large-folder tool
Browse files- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/_tabdiff_gen.py +36 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/_tabdiff_train.py +21 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/gen_20260501_183713.log +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/input_snapshot.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/runtime_result.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/staged_features.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/test.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/train.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/val.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabdiff-n9-8794-20260501_183713.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_cat_test.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_cat_train.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_cat_val.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_num_test.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_num_train.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_num_val.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/info.json +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/real.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/test.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/val.csv +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/y_test.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/y_train.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/y_val.npy +3 -0
- syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/train_20260501_183247.log +3 -0
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n9"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 10 |
+
os.makedirs(dst_syn, exist_ok=True)
|
| 11 |
+
for fn in ("real.csv", "test.csv", "val.csv"):
|
| 12 |
+
shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
|
| 13 |
+
os.chdir(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
subprocess.check_call([
|
| 16 |
+
sys.executable, "-m", "tabdiff.main",
|
| 17 |
+
"--dataname", name, "--mode", "test", "--gpu", "0",
|
| 18 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 19 |
+
"--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n9/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(8794)),
|
| 21 |
+
])
|
| 22 |
+
# test() 写入 tabdiff/result/<dataname>/<exp>/<epoch>/samples.csv
|
| 23 |
+
import glob as g
|
| 24 |
+
base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable")
|
| 25 |
+
best = None
|
| 26 |
+
best_t = -1.0
|
| 27 |
+
for root, _, files in os.walk(base):
|
| 28 |
+
if "samples.csv" in files:
|
| 29 |
+
p = os.path.join(root, "samples.csv")
|
| 30 |
+
t = os.path.getmtime(p)
|
| 31 |
+
if t > best_t:
|
| 32 |
+
best_t = t
|
| 33 |
+
best = p
|
| 34 |
+
if not best:
|
| 35 |
+
raise SystemExit("tabdiff: no samples.csv under " + base)
|
| 36 |
+
shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n9/tabdiff/tabdiff-n9-20260501_183247/tabdiff-n9-8794-20260501_183713.csv")
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n9"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 10 |
+
os.makedirs(dst_syn, exist_ok=True)
|
| 11 |
+
for fn in ("real.csv", "test.csv", "val.csv"):
|
| 12 |
+
shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
|
| 13 |
+
os.chdir(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
os.environ["TABDIFF_SMOKE_STEPS"] = "500"
|
| 16 |
+
os.environ["TABDIFF_ADAPTER_TRAIN"] = "1"
|
| 17 |
+
subprocess.check_call([
|
| 18 |
+
sys.executable, "-m", "tabdiff.main",
|
| 19 |
+
"--dataname", name, "--mode", "train", "--gpu", "0",
|
| 20 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 21 |
+
])
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/gen_20260501_183713.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a86f16875623076cc0b477c615f931dd5e4e6d30dc508b30c7630d2456c0ed32
|
| 3 |
+
size 4621
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60fa6df314c05ce241ff5ba550f6099396f0ec5c24c0223f7eae48d93c894a98
|
| 3 |
+
size 1346
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/models_tabdiff/trained.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb
|
| 3 |
+
size 74
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:653eac75afead5f53a09d01b5319fa3ecb7e7618590c4578c04e260759b78ed9
|
| 3 |
+
size 7864
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99039f9a931bf27f4d5c0fe73398ba9af43d0926abee6d7b572f3c9c9327f7d0
|
| 3 |
+
size 912
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a36161b66bfe4257cc123581f152fb8f1b8e12d07cecf5bf538ed52c0a61bd19
|
| 3 |
+
size 8670
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8fb2beda7aad7c297b7a92adf69d83155c9a1a3670e1c00cc6bdafd665d17ba
|
| 3 |
+
size 907
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d885776c1caf3bc43a474d54dddcd3c92230d85db294c1655e00797e0665f08
|
| 3 |
+
size 1636
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8d13f8e2b38a047750a3197b6a95249a935bb4f3bbe57803a1ff585719dd32c
|
| 3 |
+
size 54106
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fe9e94a37bc9d9ce8e3e5aa24d99fd2c51e68f9fb34b56f0cd9b89a92502d07
|
| 3 |
+
size 431866
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762c2acfb195c4245b988607fee3af7064ee8a00fa18714cb3e7a7becb54ff55
|
| 3 |
+
size 54170
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3ffe4c2b64f1fb314c66aa8adebde77a2ed05c874d83940805b505a294b6a59
|
| 3 |
+
size 321
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/tabdiff/adapter_transforms_applied.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945
|
| 3 |
+
size 2
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6c119359a80db842605173a3f81c6dbfc8a8989f1f14192f06af356b30e6da4
|
| 3 |
+
size 8867
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabdiff-n9-8794-20260501_183713.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b132c283ca796bc986b002ca41d87819138467ba0da407c3e8e3c3b004dc582
|
| 3 |
+
size 891981
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9221ea30bdfa8f08b9dee4e645f88a45f5873f048eca3630391407e5702028f3
|
| 3 |
+
size 82
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ead8d3fac4c75439ddfe48e7715746832c4bcdd93f94830f2cfe08669b95fb5e
|
| 3 |
+
size 128
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ead8d3fac4c75439ddfe48e7715746832c4bcdd93f94830f2cfe08669b95fb5e
|
| 3 |
+
size 128
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ead8d3fac4c75439ddfe48e7715746832c4bcdd93f94830f2cfe08669b95fb5e
|
| 3 |
+
size 128
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c1d44c64882653114c790dc5f3ebf710f9435469b196fc0408488f33f15fef8
|
| 3 |
+
size 562944
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c1d44c64882653114c790dc5f3ebf710f9435469b196fc0408488f33f15fef8
|
| 3 |
+
size 562944
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c1d44c64882653114c790dc5f3ebf710f9435469b196fc0408488f33f15fef8
|
| 3 |
+
size 562944
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a6fb9b190623d38ca15eec726ff8926fd497977817e6a65ac59d9d826bc66c9
|
| 3 |
+
size 3428
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cf0820bfc3e95a1d8125d3e1fb349344fa94822ec8dc6159b15f09527dc1a99
|
| 3 |
+
size 431734
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cf0820bfc3e95a1d8125d3e1fb349344fa94822ec8dc6159b15f09527dc1a99
|
| 3 |
+
size 431734
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cf0820bfc3e95a1d8125d3e1fb349344fa94822ec8dc6159b15f09527dc1a99
|
| 3 |
+
size 431734
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ddb5636e9c4047ca663895882c87b086bc376eeb1d968c33ed9d34802be0657
|
| 3 |
+
size 70480
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ddb5636e9c4047ca663895882c87b086bc376eeb1d968c33ed9d34802be0657
|
| 3 |
+
size 70480
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/tabular_bundle/pipeline_n9/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ddb5636e9c4047ca663895882c87b086bc376eeb1d968c33ed9d34802be0657
|
| 3 |
+
size 70480
|
syntheticSuccess/n9/tabdiff/tabdiff-n9-20260501_183247/train_20260501_183247.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0119c37d78a85d23916696f1644ac0a0f83ae1237d1a62ab552d13dfe7d91db
|
| 3 |
+
size 440190
|