Add files using upload-large-folder tool
Browse files- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/_tabdiff_gen.py +36 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/_tabdiff_train.py +21 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/gen_20260501_081237.log +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/input_snapshot.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/runtime_result.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/staged_features.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/test.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/train.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/val.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabdiff-c10-820008-20260501_081237.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabdiff_train_meta.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_cat_test.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_cat_train.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_cat_val.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_num_test.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_num_train.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_num_val.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/info.json +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/real.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/test.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/val.csv +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/y_test.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/y_train.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/y_val.npy +3 -0
- syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/train_20260501_070951.log +3 -0
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_c10"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10"
|
| 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_c10/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(820008)),
|
| 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/c10/tabdiff/tabdiff-c10-20260501_070941/tabdiff-c10-820008-20260501_081237.csv")
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_c10"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10"
|
| 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/c10/tabdiff/tabdiff-c10-20260501_070941/gen_20260501_081237.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c380e415ddf8c3232ec5c2b5b475b0aa8d668c7bc7c79a391475f0e282b09db
|
| 3 |
+
size 61191
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fdda4489ce2bcde28ac0133d9e02e0c72c9562d46caa667113203952e746b0e5
|
| 3 |
+
size 1363
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/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/c10/tabdiff/tabdiff-c10-20260501_070941/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7148c9ceb476ede5c254d7a50d92c8aba6ff2fae55ac0910a9658442e6280700
|
| 3 |
+
size 4900
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60bd528e37176a3620521f975593931d2c58c19f31aba2bdd606108558beff84
|
| 3 |
+
size 919
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd60db7f19708373aee7d24f70ba33a01e0f500b56fb910aaf90b8778a3a7e18
|
| 3 |
+
size 5716
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:953263b2070ca092acf3ff2b1128c802fcaffdab1210252dc0d835f4f14f04a0
|
| 3 |
+
size 918
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6731a6de684726aac71a09ef332a76bfba59cb80562f5df3cacd198efdbbf608
|
| 3 |
+
size 983
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e7ce2790bd0b291bf9cf968a4ff9b74964a9caf1d0c613d0897843583e3118f
|
| 3 |
+
size 2412815
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8161358f4f74365c2c6f8c61a115d1f3f6598de4c923179d6c7a9a38b7912bd
|
| 3 |
+
size 19300938
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c46e64f7ec21c60fd61ce6ee8e060ceb4f2f7f831a1cac5368efe861d0dfc3b
|
| 3 |
+
size 2413372
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c55ab1d2879916eb4492e7bf17943256bb56f964cf46ab33c57b4015429decaf
|
| 3 |
+
size 323
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/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/c10/tabdiff/tabdiff-c10-20260501_070941/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b1867983cc917a33980145c9d85f7ae07c66a464d1f1d9eccc3cc130cc5c7b0
|
| 3 |
+
size 5915
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabdiff-c10-820008-20260501_081237.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36d65ac0c463603a2886e2b79249c67081528dd1292577e97fbc1fe20dbfaa08
|
| 3 |
+
size 35634984
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a02fb807e2317d21ad22f672f09135b846fc9f26fe1270d5e9dd8eed3c37eb2f
|
| 3 |
+
size 83
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:672fa375f687cc899f9d90cfe5b554144f93755351ce2b4cefa6a3dc26c39052
|
| 3 |
+
size 128
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:672fa375f687cc899f9d90cfe5b554144f93755351ce2b4cefa6a3dc26c39052
|
| 3 |
+
size 128
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:672fa375f687cc899f9d90cfe5b554144f93755351ce2b4cefa6a3dc26c39052
|
| 3 |
+
size 128
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78fd7e530c517507e311c5b5864d040dbd89bca793fa22140242b2fc2eb3f4a0
|
| 3 |
+
size 32800448
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78fd7e530c517507e311c5b5864d040dbd89bca793fa22140242b2fc2eb3f4a0
|
| 3 |
+
size 32800448
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78fd7e530c517507e311c5b5864d040dbd89bca793fa22140242b2fc2eb3f4a0
|
| 3 |
+
size 32800448
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75d898c73b2d08a85f1b8d366d3747e2932a9609bc2a50a6dbd14f4741ffb406
|
| 3 |
+
size 2245
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b491bb8d55f011882ecdbc00f7731f9c24da126c97a63a0b3def56b3178bc0e
|
| 3 |
+
size 19300925
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b491bb8d55f011882ecdbc00f7731f9c24da126c97a63a0b3def56b3178bc0e
|
| 3 |
+
size 19300925
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b491bb8d55f011882ecdbc00f7731f9c24da126c97a63a0b3def56b3178bc0e
|
| 3 |
+
size 19300925
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6baccf6c96a9eb9bbcde5188ab911e53c0ea3da3e713c3ffe0c8607efec260c2
|
| 3 |
+
size 6560192
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6baccf6c96a9eb9bbcde5188ab911e53c0ea3da3e713c3ffe0c8607efec260c2
|
| 3 |
+
size 6560192
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/tabular_bundle/pipeline_c10/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6baccf6c96a9eb9bbcde5188ab911e53c0ea3da3e713c3ffe0c8607efec260c2
|
| 3 |
+
size 6560192
|
syntheticSuccess/c10/tabdiff/tabdiff-c10-20260501_070941/train_20260501_070951.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc58e610b8c9a73fcfbbc3d5b6b146e28d0aba1bd0ead19d521c13ba20982270
|
| 3 |
+
size 19953945
|