Add files using upload-large-folder tool
Browse files- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_gen.py +36 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_train.py +21 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/gen_20260501_011423.log +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/input_snapshot.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/runtime_result.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff_train_meta.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_test.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_train.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_val.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_test.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_train.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_val.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/info.json +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/real.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/test.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/val.csv +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_test.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_train.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_val.npy +3 -0
- syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/train_20260501_010037.log +3 -0
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m8"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8"
|
| 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_m8/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(36168)),
|
| 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/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv")
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m8"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8"
|
| 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/m8/tabdiff/tabdiff-m8-20260501_010036/gen_20260501_011423.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c750198858df23f4b23371a37ee3bb1eab3e59c7f7db237a06f85f863e736e53
|
| 3 |
+
size 9620
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92763339f93f66427c48a91258f6ddc503e16688a6c251713f0422c621162aaf
|
| 3 |
+
size 1349
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/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/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d733310afeedb79582ccecc72b050f6a9a712817177584d3824924c50e502e38
|
| 3 |
+
size 7627
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d069ba59e0bad764d31cf1059ffe64fcc37d324eba6441fdff3756c384a2efd7
|
| 3 |
+
size 908
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc56a29d4fecf31c2d0c77e7f189b095e3917bc80659924022abeadbf9934c43
|
| 3 |
+
size 8433
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f5cdb6aeaf0ac7049dbcbd39162e224fcf55098fbcbe8f628891e0bc4942f83
|
| 3 |
+
size 909
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0cf7f5cbab67fd23b227d3d6dd45fee61797fb10d962495c5e6e65ae5dbcb5f0
|
| 3 |
+
size 1570
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310
|
| 3 |
+
size 370991
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833
|
| 3 |
+
size 2964802
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525
|
| 3 |
+
size 370535
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45a8a4f98b69a145650a858def179fb1d6b564d09ee741c2f5f04cd1a23c8b69
|
| 3 |
+
size 321
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/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/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ba03f434a5637b8e0046d92bb491fcb0841f32df72ec931ee67d3706393e2b3
|
| 3 |
+
size 8630
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d841bd0719e620e32d1dfd6742c298a12394f3a1ea4451dc8ab7c9c2f4ef6e3
|
| 3 |
+
size 2215693
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc46c471faf3b7a31b812c84ea0c715f0ec90d5486934fd4dd1494cca894a338
|
| 3 |
+
size 82
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3
|
| 3 |
+
size 2604224
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3
|
| 3 |
+
size 2604224
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3
|
| 3 |
+
size 2604224
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec
|
| 3 |
+
size 1012832
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec
|
| 3 |
+
size 1012832
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec
|
| 3 |
+
size 1012832
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73dc21c6ec0d6a0cd315d622514ce96af7754f816e20b37794ad7e679e48343e
|
| 3 |
+
size 2940
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60
|
| 3 |
+
size 1517968
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60
|
| 3 |
+
size 1517968
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60
|
| 3 |
+
size 1517968
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6
|
| 3 |
+
size 289472
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6
|
| 3 |
+
size 289472
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6
|
| 3 |
+
size 289472
|
syntheticSuccess/m8/tabdiff/tabdiff-m8-20260501_010036/train_20260501_010037.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6725e0d8a189e38fcae9a0944c90d93381668aac8a507352115ce526fff6a314
|
| 3 |
+
size 1094773
|