Add files using upload-large-folder tool
Browse files- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/_tabdiff_gen.py +36 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/_tabdiff_train.py +21 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/gen_20260501_202647.log +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/input_snapshot.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/runtime_result.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/staged_features.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/test.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/train.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/val.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabdiff-n18-60800-20260501_202647.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_cat_test.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_cat_train.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_cat_val.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_num_test.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_num_train.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_num_val.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/info.json +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/real.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/test.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/val.csv +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/y_test.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/y_train.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/y_val.npy +3 -0
- syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/train_20260501_195157.log +3 -0
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n18"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18"
|
| 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_n18/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(60800)),
|
| 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/n18/tabdiff/tabdiff-n18-20260501_195136/tabdiff-n18-60800-20260501_202647.csv")
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n18"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18"
|
| 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/n18/tabdiff/tabdiff-n18-20260501_195136/gen_20260501_202647.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:718841cdd0f95de965d27665e39aa212ef301ecfa3f4f928643d48dd72e1d0a5
|
| 3 |
+
size 32897
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9166e06c34664cd19b7d6c674d9c7cd9de707f0cbfd21b5dd741d18dc53c3b1e
|
| 3 |
+
size 1365
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/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/n18/tabdiff/tabdiff-n18-20260501_195136/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3724e0a85c0eb4c7fa53549f04213ff4a81ff001c20c899b25018c54d7f45b0d
|
| 3 |
+
size 83479
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f18843c7d624d4de9d63cd4b11b0c400c33727ad59a065f1a3ff177d5c08c80f
|
| 3 |
+
size 919
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89c53301bddfe30d6905f625b0ffb14370401105ce7ba18215daa09c443fcd0f
|
| 3 |
+
size 84295
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0056293150dae50dc9d7e84049d6ef00da8497dd72cd2d2cb7425d44ea250de
|
| 3 |
+
size 918
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40b500cad8b6291c2dd897cd44f3305672e2caff01544bb597abb3ed059b1ca5
|
| 3 |
+
size 15817
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3ab5b0f41b5a22ace2c4304bf3b9c8cb3f0ab8d352bdc33f8ff631429bc9c85
|
| 3 |
+
size 7731470
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4f62d3011246e39610effe2bc2bf195b676554e12e24ba0fb27a112349c1ba6
|
| 3 |
+
size 61780661
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:596e7f65c18adcf2980f5fd952efc2bb45f10d968c1dbb1348839699a52adcf5
|
| 3 |
+
size 7731240
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c8b6090834dc0361b9be9e209ecd77bb255dd30a3639a16c8f590c238a49529
|
| 3 |
+
size 323
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/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/n18/tabdiff/tabdiff-n18-20260501_195136/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b440a484554880aadcb78f885bfe984485db84f06febf469abde73eeefc4422e
|
| 3 |
+
size 84494
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabdiff-n18-60800-20260501_202647.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fad82b3a34e1b5700962b6d12cca86e7999450fe851ca62bb4196cbf6b7b8a1
|
| 3 |
+
size 70356855
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95e28e45e07c6aa540f05cbc3012087f4e3c3cb8677cd6dbab1cdc181d44b82e
|
| 3 |
+
size 83
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00ba868e1e41e794cc84714cdf3b5ee364761178ceedfcaaa541b829be733119
|
| 3 |
+
size 10214528
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00ba868e1e41e794cc84714cdf3b5ee364761178ceedfcaaa541b829be733119
|
| 3 |
+
size 10214528
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00ba868e1e41e794cc84714cdf3b5ee364761178ceedfcaaa541b829be733119
|
| 3 |
+
size 10214528
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d32634747463d42035d32e25b4c3f15e826f06a24e5b325b1f7c25a73e0facc
|
| 3 |
+
size 36236928
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d32634747463d42035d32e25b4c3f15e826f06a24e5b325b1f7c25a73e0facc
|
| 3 |
+
size 36236928
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d32634747463d42035d32e25b4c3f15e826f06a24e5b325b1f7c25a73e0facc
|
| 3 |
+
size 36236928
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37bc1ca72eecb8a470a604f4068db3e8554f924f297a73f4b872d4b0034754bb
|
| 3 |
+
size 28651
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fe1955fcf943a19515c509145e70823291e570948a17a97970e1f3ad7d8cdcd
|
| 3 |
+
size 59710235
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fe1955fcf943a19515c509145e70823291e570948a17a97970e1f3ad7d8cdcd
|
| 3 |
+
size 59710235
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fe1955fcf943a19515c509145e70823291e570948a17a97970e1f3ad7d8cdcd
|
| 3 |
+
size 59710235
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b9c91d04d23109885310c16bb8d0319932adf22f5bf372f9a5c08448834d702
|
| 3 |
+
size 486528
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b9c91d04d23109885310c16bb8d0319932adf22f5bf372f9a5c08448834d702
|
| 3 |
+
size 486528
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/tabular_bundle/pipeline_n18/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b9c91d04d23109885310c16bb8d0319932adf22f5bf372f9a5c08448834d702
|
| 3 |
+
size 486528
|
syntheticSuccess/n18/tabdiff/tabdiff-n18-20260501_195136/train_20260501_195157.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:322b78698ba4d2100dc5f03953b9124b60a9d9ad2474f124944869299d407cde
|
| 3 |
+
size 2776761
|