BenXu123456 commited on
Commit
f208137
·
verified ·
1 Parent(s): 578433c

Mark A6000 sim-collection guide as ARCHIVED (glibc 2.31 vs 2.35 incompat); point readers to current data + training plan

Browse files
Files changed (1) hide show
  1. README.md +86 -187
README.md CHANGED
@@ -2,7 +2,7 @@
2
  license: cc-by-4.0
3
  language:
4
  - en
5
- pretty_name: baseline_3 v4 Sim Collection Assets (RESUME on A6000)
6
  tags:
7
  - robotics
8
  - manipulation
@@ -11,133 +11,123 @@ tags:
11
  - franka
12
  - dexycb
13
  - collection-assets
 
14
  size_categories:
15
  - 1B<n<10B
16
  ---
17
 
18
- # baseline_3 v4 — sim collection RESUME package
19
-
20
- Everything needed for a partner machine to **resume** the baseline_3 v4 sim
21
- collection that ran on a dev box (RTX 5090) until the orchestrator was killed
22
- to free GPU. Resume-aware orchestrator detects what's already done and only
23
- collects the remaining objects.
24
-
25
- > **Intended target: a fresh A6000 dedicated to sim collection** separate from
26
- > the A6000 currently training DP3 on `UCBProject/DP3_DexYCB_training_data`.
27
- > Install env_isaaclab from scratch on the collection machine; do NOT try to
28
- > share a conda env with the training side.
29
-
30
- **Source repo (code lives here, NOT in this dataset)**:
31
- [`stzabl-png/UCB_Project @ gate3-curobo-ik`](https://github.com/stzabl-png/UCB_Project/tree/gate3-curobo-ik)
32
- specifically `sim/run_grasp_sim_baseline3_v4.py` and
33
- `scripts/baseline_3_v4/*.sh`. Both shell scripts in this dataset are convenience
34
- copies of the repo versions — the canonical ones live in the repo.
 
 
 
 
 
35
 
36
  ---
37
 
38
- ## What's in this package
39
 
40
  | file | size | purpose |
41
  |------|------|---------|
42
- | `episodes_g.tar.gz` | 1.2 GB | 900 retargeted DexYCB hdf5 (collector INPUT). Includes ycb_dex_01–20 minus the no-data ones; specifically the **newly retargeted dex_11 (pitcher) + dex_14 (mug)** missing from previous runs. |
43
  | `obj_usd_cad_ycb.tar.gz` | 489 MB | YCB CAD USDs (17 files, Z-up tagged) + textures. Includes the **new dex_11/14/19 USDs** generated this round. |
44
- | `episodes_b3_v4_15obj_3yaw_2026-05-25.tar.gz` | 266 MB | Already-collected sim hdf5 for 6 objects (tuna 06, tomato 04, pudding 07, gelatin 08, marker 18, potted_meat 09). |
45
- | `v4_full15_results_2026-05-25.txt` | 1.5 KB | Results log with 6 DONE_RETRY entries orchestrator uses this to skip done objects. |
46
- | `v4_full15_queue_resume.sh` | 4.6 KB | RESUME-aware orchestrator (2-parallel). Copy of repo `scripts/baseline_3_v4/`. |
47
- | `v4_chunked_with_retry.sh` | 4.6 KB | Per-object chunk-5+retry wrapper. Copy of repo `scripts/baseline_3_v4/`. |
48
 
49
- ---
 
 
50
 
51
- ## Before you start what to install
 
52
 
53
- ### 1. Conda env: `env_isaaclab` (heavy)
54
 
55
- ```bash
56
- conda create -n env_isaaclab python=3.11 -y
57
- conda activate env_isaaclab
58
 
59
- # 1.1 IsaacSim 5.1 — install the PIP package (NOT the Omniverse Launcher version
60
- # under /home/<user>/isaacsim/). The pip package is what `from isaacsim import
61
- # SimulationApp` resolves to. Dev box ref: isaacsim==5.1.0.0.
62
- # If a 5.0.0-rc version is already installed, force-upgrade:
63
- pip install --upgrade --extra-index-url=https://pypi.nvidia.com isaacsim==5.1.0
64
- # Also accept the EULA when prompted on first run.
65
 
66
- # 1.2 cuRobo 0.8 (pip package is `nvidia-curobo`, NOT `curobo`. NOT 0.7 — the
67
- # planner uses MotionPlanner / SceneCfg.create API which 0.7 lacks.)
68
- # Dev box ref: nvidia-curobo==0.8.0.post1.dev26
69
- pip install --extra-index-url=https://pypi.nvidia.com nvidia-curobo
70
 
71
- # 1.3 Other deps used by the collector + retry wrapper
72
- pip install h5py scipy 'numpy<2' termcolor pyyaml requests usd-core
73
- ```
74
 
75
- Verify the install (both must print without error):
76
- ```bash
77
- python -c "import isaacsim; from isaacsim import SimulationApp; print('IsaacSim 5.1 OK')"
78
- python -c "from curobo.motion_planner import MotionPlanner; print('cuRobo 0.8 OK')"
79
- ```
80
- Note: pip package name is `nvidia-curobo` but the Python import name is
81
- `curobo` — this is the standard NVIDIA naming pattern.
82
 
83
- ### 2. Repo (gate3-curobo-ik branch)
84
 
85
- ```bash
86
- git clone -b gate3-curobo-ik git@github.com:stzabl-png/UCB_Project.git
87
- cd UCB_Project
88
- # DP3 is already vendored under third_party/3D-Diffusion-Policy/3D-Diffusion-Policy
89
- # but you do NOT need to install it for sim collection (only for training).
90
  ```
91
 
92
- ### 3. GPU
93
-
94
- - Tested on A6000 48 GB and RTX 5090 32 GB.
95
- - 2-parallel collection uses ~10 GB sustained, ~18 GB peak (cuRobo subprocess spikes).
96
- - Single-parallel (`OBJS` loop run sequentially) if VRAM is tight.
97
 
98
  ---
99
 
100
- ## Download + extract (run from `UCB_Project/`)
101
 
102
- ```bash
103
- pip install huggingface_hub
104
- mkdir -p Baseline1/data output
 
105
 
106
- # Pull tarballs
107
- huggingface-cli download UCBProject/baseline_3_v4_collection_assets \
108
- --repo-type dataset \
109
- --local-dir /tmp/v4_pkg
110
 
111
- # Extract into matching layout (uses --strip-components=0 so paths preserved as-is)
112
- tar xzf /tmp/v4_pkg/episodes_g.tar.gz # → Baseline1/data/episodes_g/
113
- tar xzf /tmp/v4_pkg/obj_usd_cad_ycb.tar.gz # → output/obj_usd_cad/ycb/
114
- tar xzf /tmp/v4_pkg/episodes_b3_v4_15obj_3yaw_2026-05-25.tar.gz # → Baseline1/data/episodes_b3_v4_15obj_3yaw_2026-05-25/
115
 
116
- # Place the results log + scripts where orchestrator expects
117
- cp /tmp/v4_pkg/v4_full15_results_2026-05-25.txt /tmp/
118
- # Optional — only if your repo doesn't already have these
119
- # (gate3-curobo-ik DOES have them under scripts/baseline_3_v4/, prefer those):
120
- # cp /tmp/v4_pkg/v4_*.sh /tmp/
121
- ```
122
-
123
- Verify layout:
124
  ```bash
125
- ls Baseline1/data/episodes_g/*.hdf5 | wc -l # expect 900
126
- ls output/obj_usd_cad/ycb/*.usd | wc -l # expect ~17
127
- ls Baseline1/data/episodes_b3_v4_15obj_3yaw_2026-05-25/*.hdf5 | wc -l # expect ~153
128
- grep DONE_RETRY /tmp/v4_full15_results_2026-05-25.txt | wc -l # expect 6
 
129
  ```
130
 
131
- ---
132
 
133
- ## Run the resume
 
 
 
 
 
 
 
 
 
 
134
 
135
- **This is the only command you need:**
136
 
137
  ```bash
138
- cd UCB_Project # repo root
139
-
140
- # Override the env vars to match YOUR layout (replace paths with yours)
141
  PROJ=$HOME/UCB_Project \
142
  PY=$HOME/miniconda3/envs/env_isaaclab/bin/python \
143
  OUT=Baseline1/data/episodes_b3_v4_15obj_3yaw_2026-05-25 \
@@ -146,103 +136,12 @@ PAR=2 \
146
  bash scripts/baseline_3_v4/v4_full15_queue_resume.sh
147
  ```
148
 
149
- The orchestrator will:
150
- 1. Read `RESULTS` and find 6 `DONE_RETRY` entries (06, 04, 07, 08, 18, 09) → skip them
151
- 2. Launch the remaining 9 objects (12, 05, 03, 15, 02, 11, 14, 20, *and 19 which has 0 src ep and will silently emit nothing*) at PAR parallel
152
- 3. Each object: chunk-5 + auto-retry on PhysX-pollution sanity fail
153
- 4. New `DONE_RETRY` lines append to `RESULTS` as objects finish
154
- 5. Final per-object summary appended at the end
155
-
156
- ### Choosing `PAR` on A6000
157
-
158
- A6000 has 48 GB VRAM but **half** the CUDA cores of RTX 5090 (where this run
159
- was validated at PAR=2). cuRobo subprocesses (called per chunk by the
160
- collector) are compute-bound, not memory-bound; historically PAR=4 caused
161
- 65 % `plan_fail` on RTX 5090 from cuRobo GPU contention. The A6000's fewer
162
- cores likely makes contention **worse**, not better, even with more VRAM.
163
-
164
- Recommendation:
165
-
166
- | `PAR` | Sustained VRAM | Peak VRAM | Wall time (9 obj) | Risk |
167
- |-------|----------------|-----------|-------------------|------|
168
- | 1 | ~4 GB | ~7 GB | ~9-12 h | None |
169
- | **2** | ~8 GB | ~14-18 GB | **~5-7 h** | **Validated, default** |
170
- | 3 | ~12 GB | ~21-27 GB | ~4-5 h (if no contention drop) | Unknown — VRAM fine, cuRobo contention untested on A6000 |
171
- | 4 | ~16 GB | ~28-36 GB | ~3-4 h (theoretical) | High — 65 % plan_fail on 5090; expect same or worse |
172
-
173
- **Start with PAR=2.** After object #1 finishes, look at its `DONE_RETRY` line
174
- in `RESULTS` and compare `plan_fail` ratio to dev-box reference (35-40 % is
175
- normal). If plan_fail is comparable, you can bump `PAR=3` for the rest (the
176
- orchestrator re-reads PAR on each loop iteration, but bumping mid-run requires
177
- killing + restarting the orchestrator — it'll resume from where it stopped).
178
-
179
- ---
180
-
181
- ## What to watch for — *specific* gotchas verified for this setup
182
-
183
- These are not theoretical — every one was either a confirmed bug we fixed or an
184
- explicit non-default the partner needs to know about. Cross-checked against the
185
- actual code, not just docs.
186
-
187
- | # | Gotcha | Status / Action |
188
- |---|--------|-----------------|
189
- | 1 | **Object mass = 0.05 kg** is hardcoded in `sim/run_grasp_sim_baseline3_v4.py` L962. Real per-class mass (0.3–0.6 kg) caused PhysX corruption + DP3 eval SR = 0 % when we tried it earlier. **Do not override.** | ✅ Already baked in, no action |
190
- | 2 | **`--yaw-aug` is True by default**. Producing orig + yaw90 + yaw180 + yaw270 = 4 attempts per source ep. The retry wrapper assumes this (`ATTEMPTS_PER_EP=4`). If you change one without the other, the case-C retry math (`MARKERS / ATTEMPTS_PER_EP`) breaks. | ✅ Defaults aligned, no action |
191
- | 3 | **`OUT` env var must match the existing collected dir** (`episodes_b3_v4_15obj_3yaw_2026-05-25`), NOT a fresh date — otherwise resume can't see the 6 done objects' hdf5 and the safety check refuses. | ⚠️ Use the env var shown above |
192
- | 4 | **`RESULTS` env var must point to the shipped log**. If you let it default to `/tmp/v4_full15_results_<TODAY>.txt`, that file won't exist → orchestrator will treat all 15 objects as "not done" and re-collect the 6. | ⚠️ Use the env var shown above |
193
- | 5 | **`PROJ` and `PY` env vars** override the hardcoded `/home/accelerator/...` defaults baked into the scripts for the dev box. **Always set these on partner machine.** | ⚠️ Use the env vars shown above |
194
- | 6 | **`scripts/baseline_3_v4/` lives in repo** (gate3-curobo-ik). The orchestrator launches `bash scripts/baseline_3_v4/v4_chunked_with_retry.sh ...` with a relative path — so it must be run from repo root. `cd UCB_Project` before launching. | ⚠️ Run from repo root |
195
- | 7 | **PAR=2 default** (overridable via env var). 4-par historically broke on RTX 5090 (65 % plan_fail). On A6000, 3-par is plausibly OK due to extra VRAM, but cuRobo compute contention is the binding constraint and A6000 has 50 % fewer CUDA cores — so 3-par is **untested**, may degrade. See "Choosing PAR on A6000" above. | ⚠️ Default 2; bump to 3 only after watching first object's plan_fail rate |
196
- | 8 | **dex_19 (large_clamp) has 0 source ep**. DexYCB raw simply doesn't contain large_clamp grasp sessions. The orchestrator will launch ycb_dex_19, find 0 hdf5 in `episodes_g/`, and the collector will silently emit nothing. Not a bug. | ✅ Already documented in script |
197
- | 9 | **Logs from prior runs in `/tmp/v4_obj_NN_*.out`** would contaminate stats. The orchestrator deletes per-object logs only for objects it's about to (re)launch — so done objects keep their original logs. | ✅ Handled |
198
- | 10 | **First boot is slow**: each new IsaacSim process takes ~30 sec to load all extensions; you'll see thousands of `Failed to create change watch ... errno=28/No space left on device` errors that are **non-fatal** (inotify watch limit; ignore). | ⚠️ Don't panic |
199
-
200
- ---
201
-
202
- ## Object-by-object expectation (based on dev-box run)
203
-
204
- The first 6 (already done, will be skipped):
205
-
206
- | obj | yield (saved) | notes |
207
- |---|---|---|
208
- | 06 tuna | 25 ep | clean (0 PhysX warn) |
209
- | 04 tomato | 29 | normal |
210
- | 07 pudding | 31 | normal |
211
- | 08 gelatin | 22 | normal |
212
- | 09 potted_meat | 36 | normal |
213
- | 18 marker | 10 | low yield (thin object) |
214
-
215
- Expect the remaining 9 to behave similarly: ~20-35 ep per object, ~50-60 min each at 2-parallel. Total ~5-7 h for the batch.
216
-
217
- dex_19 will produce 0 ep (no source data). Don't be alarmed by `0 saved` for it.
218
-
219
- ---
220
-
221
- ## After the run
222
-
223
- A final summary block appears at the tail of `RESULTS`:
224
-
225
- ```
226
- === FINAL PER-OBJ SUMMARY (after resume) ===
227
- ycb_dex_06: orig=10 yaw=15 total=25
228
- ycb_dex_04: orig=12 yaw=17 total=29
229
- ...
230
- TOTAL: NNN trajectories
231
- ```
232
-
233
- Send that summary back to the dev box, and we'll handle zarr build + DP3
234
- training. Do **NOT** delete the collected hdf5 dir until then — it's the
235
- training input.
236
-
237
- ---
238
-
239
- ## Troubleshooting
240
 
241
- - **`ImportError: ...isaacsim`** → wrong conda env activated. Confirm with `which python` then `python -c "from isaacsim import SimulationApp"`.
242
- - **GPU OOM during 2-parallel** → drop one object out of `OBJS` list temporarily; or run sequentially by editing the orchestrator's `while [[ $(jobs -rp | wc -l) -ge 2 ]]` line → `-ge 1`.
243
- - **Every object's `plan_fail` count is huge (>80 %)** → likely cuRobo install issue. Run a single object first and grep its log for cuRobo errors. The collector falls back to legacy synthesize+IK if cuRobo plan fails, but ideally cuRobo should work.
244
- - **Orchestrator launches all 15 objects (didn't skip)** → `RESULTS` env var didn't get exported properly. Confirm `echo "$RESULTS"` inside the same shell where you launch.
245
- - **Resume hdf5 saved=0 for everything** → `OUT` env var wrong or directory empty; safety check should have caught this but if you see this pattern, abort and verify paths.
246
 
247
  ---
248
 
 
2
  license: cc-by-4.0
3
  language:
4
  - en
5
+ pretty_name: baseline_3 v4 - Sim Collection Assets (ARCHIVED)
6
  tags:
7
  - robotics
8
  - manipulation
 
11
  - franka
12
  - dexycb
13
  - collection-assets
14
+ - archived
15
  size_categories:
16
  - 1B<n<10B
17
  ---
18
 
19
+ # baseline_3 v4 — sim collection assets
20
+
21
+ > **2026-05-26 STATUS: ARCHIVED / REFERENCE-ONLY.**
22
+ >
23
+ > The plan to run sim collection on the A6000 was **abandoned** this round
24
+ > due to a glibc incompatibility: the A6000 system glibc is 2.31 (Ubuntu
25
+ > 20.04) but IsaacSim 5.1.0 requires glibc 2.35 (Ubuntu 24.04). All sim
26
+ > collection (DexYCB + OakInk) was completed on the dev box (RTX 5090).
27
+ >
28
+ > The contents of this dataset (tarballs of source episodes, USDs, scripts,
29
+ > partial results log) are kept for reference and reproducibility — the
30
+ > code links remain accurate — but the "run the resume on A6000"
31
+ > instructions below are **no longer the current plan**.
32
+ >
33
+ > **For the current state of the data and training pipeline, see:**
34
+ > - DexYCB-sourced training trajectories (162 ep)
35
+ > [`UCBProject/DP3_DexYCB_training_data`](https://huggingface.co/datasets/UCBProject/DP3_DexYCB_training_data)
36
+ > - OakInk-sourced training trajectories (207 ep) →
37
+ > [`UCBProject/DP3_OakInk_training_data`](https://huggingface.co/datasets/UCBProject/DP3_OakInk_training_data)
38
+ >
39
+ > The DexYCB README also documents the new **combined 369-ep training run**
40
+ > on A6000.
41
 
42
  ---
43
 
44
+ ## What's in this archived package
45
 
46
  | file | size | purpose |
47
  |------|------|---------|
48
+ | `episodes_g.tar.gz` | 1.2 GB | 900 retargeted DexYCB hdf5 (collector INPUT for the sim collection that ran on the dev box). Includes ycb_dex_01–20 minus the no-data ones; specifically the **newly retargeted dex_11 (pitcher) + dex_14 (mug)** missing from previous runs. |
49
  | `obj_usd_cad_ycb.tar.gz` | 489 MB | YCB CAD USDs (17 files, Z-up tagged) + textures. Includes the **new dex_11/14/19 USDs** generated this round. |
50
+ | `episodes_b3_v4_15obj_3yaw_2026-05-25.tar.gz` | 266 MB | Already-collected sim hdf5 for 6 objects (tuna 06, tomato 04, pudding 07, gelatin 08, marker 18, potted_meat 09) at the time the partial results log was snapshotted. |
51
+ | `v4_full15_results_2026-05-25.txt` | 1.5 KB | Partial results log with 6 DONE_RETRY entries (point-in-time snapshot before the run continued on the dev box). |
52
+ | `v4_full15_queue_resume.sh` | 4.6 KB | Resume-aware orchestrator (2-parallel). Repo canonical version under `scripts/baseline_3_v4/`. |
53
+ | `v4_chunked_with_retry.sh` | 4.6 KB | Per-object chunk-5+retry wrapper. Repo canonical version under `scripts/baseline_3_v4/`. |
54
 
55
+ **Source code (canonical)**:
56
+ [`stzabl-png/UCB_Project @ gate3-curobo-ik`](https://github.com/stzabl-png/UCB_Project/tree/gate3-curobo-ik)
57
+ — `sim/run_grasp_sim_baseline3_v4.py` and `scripts/baseline_3_v4/*.sh`.
58
 
59
+ The OakInk-specific orchestrator (added 2026-05-26) lives at
60
+ `scripts/baseline_3_v4/oakink_full89_queue_resume.sh` in the same repo.
61
 
62
+ ---
63
 
64
+ ## How sim collection actually ran (2026-05-25 + 2026-05-26)
 
 
65
 
66
+ All on the dev box (RTX 5090, Ubuntu 24.04, glibc 2.35):
 
 
 
 
 
67
 
68
+ | Run | Date | Result |
69
+ |------|------|--------|
70
+ | DexYCB resume — 15 obj, 2-parallel chunked-5 | 2026-05-25 | **162 successful trajectories** across 10 objects → `UCBProject/DP3_DexYCB_training_data` |
71
+ | OakInk full — 89 obj, 2-parallel chunked-5 | 2026-05-26 | **207 successful trajectories** across 45 objects (44 obj contributed 0 due to obj geometry / Franka kinematic limits) → `UCBProject/DP3_OakInk_training_data` |
72
 
73
+ ---
 
 
74
 
75
+ ## Why the A6000 was dropped from the collection pipeline
 
 
 
 
 
 
76
 
77
+ Diagnosed 2026-05-25:
78
 
79
+ ```
80
+ $ python -c "from isaacsim import SimulationApp"
81
+ ImportError: /lib/x86_64-linux-gnu/libc.so.6: version 'GLIBC_2.35' not found
82
+ (required by .../isaacsim-5.1.0/_build/lib/libomni.kit.app.so)
 
83
  ```
84
 
85
+ A6000 system glibc 2.31 is fixed by the Ubuntu 20.04 base; bumping the
86
+ system libc to 2.35 in-place is not safe. Containerizing IsaacSim would
87
+ work but adds a deployment burden we decided wasn't worth it for sim
88
+ collection that runs on the dev box anyway. The A6000 stays on training.
 
89
 
90
  ---
91
 
92
+ ## Original "resume on A6000" instructions (DEPRECATED kept for reference)
93
 
94
+ <details>
95
+ <summary>Click to expand the original A6000 sim-collection guide.
96
+ This was written before the glibc issue was diagnosed; it is no longer the
97
+ plan. Follow the new training instructions in the DexYCB dataset README instead.</summary>
98
 
99
+ The instructions below describe how the A6000 sim collection *would* have
100
+ worked if glibc had been compatible. They are kept verbatim for
101
+ reproducibility; do not follow them on the current A6000.
 
102
 
103
+ ### env_isaaclab install (requires glibc 2.35)
 
 
 
104
 
 
 
 
 
 
 
 
 
105
  ```bash
106
+ conda create -n env_isaaclab python=3.11 -y
107
+ conda activate env_isaaclab
108
+ pip install --upgrade --extra-index-url=https://pypi.nvidia.com isaacsim==5.1.0
109
+ pip install --extra-index-url=https://pypi.nvidia.com nvidia-curobo
110
+ pip install h5py scipy 'numpy<2' termcolor pyyaml requests usd-core
111
  ```
112
 
113
+ ### Download + extract from this archive
114
 
115
+ ```bash
116
+ cd UCB_Project
117
+ pip install huggingface_hub
118
+ mkdir -p Baseline1/data output
119
+ huggingface-cli download UCBProject/baseline_3_v4_collection_assets \
120
+ --repo-type dataset --local-dir /tmp/v4_pkg
121
+ tar xzf /tmp/v4_pkg/episodes_g.tar.gz
122
+ tar xzf /tmp/v4_pkg/obj_usd_cad_ycb.tar.gz
123
+ tar xzf /tmp/v4_pkg/episodes_b3_v4_15obj_3yaw_2026-05-25.tar.gz
124
+ cp /tmp/v4_pkg/v4_full15_results_2026-05-25.txt /tmp/
125
+ ```
126
 
127
+ ### Run the resume
128
 
129
  ```bash
130
+ cd UCB_Project
 
 
131
  PROJ=$HOME/UCB_Project \
132
  PY=$HOME/miniconda3/envs/env_isaaclab/bin/python \
133
  OUT=Baseline1/data/episodes_b3_v4_15obj_3yaw_2026-05-25 \
 
136
  bash scripts/baseline_3_v4/v4_full15_queue_resume.sh
137
  ```
138
 
139
+ For PAR tuning, gotcha list, troubleshooting, and per-object expected yield,
140
+ see the original 10-gotcha table that previously appeared here the
141
+ canonical version is now in the repo's `Baseline1/RETRAIN_V4_FULL12.md` and
142
+ the inline comments in `scripts/baseline_3_v4/v4_*.sh`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
 
144
+ </details>
 
 
 
 
145
 
146
  ---
147