Add files using upload-large-folder tool
Browse files- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/_tabdiff_gen.py +36 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/_tabdiff_train.py +21 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/gen_20260501_164320.log +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/input_snapshot.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/runtime_result.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/staged_features.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/test.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/train.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/val.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabdiff-m10-1600-20260501_164320.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabdiff_train_meta.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_cat_test.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_cat_train.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_cat_val.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_num_test.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_num_train.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_num_val.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/info.json +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/real.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/test.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/val.csv +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/y_test.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/y_train.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/y_val.npy +3 -0
- syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/train_20260501_163554.log +3 -0
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m10"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10"
|
| 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_m10/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(1600)),
|
| 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/m10/tabdiff/tabdiff-m10-20260501_163554/tabdiff-m10-1600-20260501_164320.csv")
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m10"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10"
|
| 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/m10/tabdiff/tabdiff-m10-20260501_163554/gen_20260501_164320.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a657ca36aeb91d5b92daed0de06d41a66f27aba85537b364ffbf34136cc2142
|
| 3 |
+
size 4759
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c59a493af7744fda17a68ad90a2235a3fe52dd79f53ef71ed992c738a62843c2
|
| 3 |
+
size 1356
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/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/m10/tabdiff/tabdiff-m10-20260501_163554/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e0b4b32dc3273f99328e72f7b5a830444b967386c77d3eacbfe2f367235d172
|
| 3 |
+
size 9315
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46778a56499fdad893bba96be1c1bf1b31e730f657c7643444d4e2ed7ae19cf0
|
| 3 |
+
size 920
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99488bce3b0669f9e46013f1295ad27c619e9d06528a702df9f28b2159bfa910
|
| 3 |
+
size 10131
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49e9b980deb2807da54de579c4bfbf2f40678f2490fa4f16f3659f9563249613
|
| 3 |
+
size 915
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f9fd27ea602ac44946f02fbad5e711356035d61a0885cf84425dc44c75ff9f1
|
| 3 |
+
size 1952
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d112b674dd456a5bdc2c17ad698087f2df416abb02166d3a29a5873900ca5c0
|
| 3 |
+
size 12392
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de150b4643e0b79637165cc914e9fcfb6de70087020ecc8330be516c425aa579
|
| 3 |
+
size 97926
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cc0732d8711d262fd1bc7e0157e67872bcc08b0ac05ae2c75bd2773560e29fd
|
| 3 |
+
size 12423
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43fccc3ba902ee24a355534c858fe825cc557fbd26853ebb48aba8ecae9f6bcd
|
| 3 |
+
size 323
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/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/m10/tabdiff/tabdiff-m10-20260501_163554/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bb5c41da843e6f39aff5bf14ba8d2c13db4d2239763a2f76d89f53b51df6099
|
| 3 |
+
size 10330
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabdiff-m10-1600-20260501_164320.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6749715ce1789f582a732c5a48ba0279fddaaecd5ae0203ca50f2c049e4312d5
|
| 3 |
+
size 193267
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a5682b27d9e6e958ed9113888b6fc2f11a528d5894b659fbceacf084198a75d
|
| 3 |
+
size 83
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:255aa1664e1ca43dc97e8f0c35078c241a07403b16a120f28b09e057cb7b0fa7
|
| 3 |
+
size 76928
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:255aa1664e1ca43dc97e8f0c35078c241a07403b16a120f28b09e057cb7b0fa7
|
| 3 |
+
size 76928
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:255aa1664e1ca43dc97e8f0c35078c241a07403b16a120f28b09e057cb7b0fa7
|
| 3 |
+
size 76928
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b56d40cd4b61a0256457bd350e08cbe081449c6674d88986211ad4ea5e93ff8
|
| 3 |
+
size 89728
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b56d40cd4b61a0256457bd350e08cbe081449c6674d88986211ad4ea5e93ff8
|
| 3 |
+
size 89728
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b56d40cd4b61a0256457bd350e08cbe081449c6674d88986211ad4ea5e93ff8
|
| 3 |
+
size 89728
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31d372a980c3fdf7f150f9f81560281fc0ac7fdc9f8b88501d30f3dca3bddf1d
|
| 3 |
+
size 3806
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a86950c179e25517a9eaa66b3932f7e9fc161ad4e55672f0d5e3ea58ee831ac
|
| 3 |
+
size 97810
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a86950c179e25517a9eaa66b3932f7e9fc161ad4e55672f0d5e3ea58ee831ac
|
| 3 |
+
size 97810
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a86950c179e25517a9eaa66b3932f7e9fc161ad4e55672f0d5e3ea58ee831ac
|
| 3 |
+
size 97810
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b3ca2e334584ea0647a17ec5c6806e25bb9c622531ada7f22323efe7e3d12bd
|
| 3 |
+
size 6528
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b3ca2e334584ea0647a17ec5c6806e25bb9c622531ada7f22323efe7e3d12bd
|
| 3 |
+
size 6528
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/tabular_bundle/pipeline_m10/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b3ca2e334584ea0647a17ec5c6806e25bb9c622531ada7f22323efe7e3d12bd
|
| 3 |
+
size 6528
|
syntheticSuccess/m10/tabdiff/tabdiff-m10-20260501_163554/train_20260501_163554.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:549d873725e93124a58bc6759dc2c6414be8de9b72df65f9e76eb28d5ad235d8
|
| 3 |
+
size 294224
|