diff --git a/cube1/data/C005.json b/cube1/data/C005.json new file mode 100644 index 0000000000000000000000000000000000000000..5ccd0d1d9857bbb12b6576252c70d174a677ecca --- /dev/null +++ b/cube1/data/C005.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C005", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: W -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "W", + "N" + ], + "observed_path_faces": [ + { + "patternId": "arrow_left", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "M", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C005_path_sequence.png" + }, + "metadata": { + "level_id": 5, + "name": "Reconstruct 005", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-005.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "arrow_right", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "9", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_right", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "M", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_left", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "N", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "arrow_right", + "9", + "arrow_right", + "M", + "arrow_left", + "N" + ], + "start_x": 2, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "arrow_right", + "rotation": 180 + }, + "BOTTOM": { + "patternId": "N", + "rotation": 270 + }, + "FRONT": { + "patternId": "9", + "rotation": 270 + }, + "BACK": { + "patternId": "M", + "rotation": 180 + }, + "LEFT": { + "patternId": "arrow_left", + "rotation": 180 + }, + "RIGHT": { + "patternId": "arrow_right", + "rotation": 180 + } + }, + "bottom_faces": [ + { + "patternId": "N", + "rotation": 270, + "x": 2, + "y": 2 + }, + { + "patternId": "arrow_left", + "rotation": 90, + "x": 1, + "y": 2 + }, + { + "patternId": "M", + "rotation": 90, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "LEFT", + "BACK" + ], + "required_slots": [ + "LEFT", + "BACK" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "M", + "rotation": 0 + }, + "LEFT": { + "patternId": "arrow_left", + "rotation": 270 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "M", + "rotation": 0 + }, + "LEFT": { + "patternId": "arrow_left", + "rotation": 270 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C005\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): W -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=arrow_left, rotation=90, flipVertical=true\n- step 2: patternId=M, rotation=90, flipVertical=true\n- allowed patternId values for this task: arrow_left, M, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C009.json b/cube1/data/C009.json new file mode 100644 index 0000000000000000000000000000000000000000..a4b12649cdc89b9aee9eee52eae4f577eee515a9 --- /dev/null +++ b/cube1/data/C009.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C009", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: E -> W -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "E", + "W", + "N" + ], + "observed_path_faces": [ + { + "patternId": "A", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "heart", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "Z", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C009_path_sequence.png" + }, + "metadata": { + "level_id": 9, + "name": "Reconstruct 009", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-009.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "B", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "F", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "A", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "Z", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "8", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "heart", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "B", + "F", + "A", + "Z", + "8", + "heart" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "B", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "heart", + "rotation": 180 + }, + "FRONT": { + "patternId": "F", + "rotation": 270 + }, + "BACK": { + "patternId": "Z", + "rotation": 0 + }, + "LEFT": { + "patternId": "8", + "rotation": 180 + }, + "RIGHT": { + "patternId": "A", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "heart", + "rotation": 180, + "x": 1, + "y": 2 + }, + { + "patternId": "A", + "rotation": 90, + "x": 2, + "y": 2 + }, + { + "patternId": "heart", + "rotation": 180, + "x": 1, + "y": 2 + }, + { + "patternId": "Z", + "rotation": 180, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "RIGHT", + "BOTTOM", + "BACK" + ], + "required_slots": [ + "RIGHT", + "BOTTOM", + "BACK" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "heart", + "rotation": 180 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "Z", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "A", + "rotation": 270 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "heart", + "rotation": 180 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "Z", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "A", + "rotation": 270 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C009\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): E -> W -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=A, rotation=90, flipVertical=true\n- step 2: patternId=heart, rotation=180, flipVertical=true\n- step 3: patternId=Z, rotation=180, flipVertical=true\n- allowed patternId values for this task: A, heart, Z, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C010.json b/cube1/data/C010.json new file mode 100644 index 0000000000000000000000000000000000000000..60b41e5bd4070a4add63e4864fc468a8645f9650 --- /dev/null +++ b/cube1/data/C010.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C010", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "W" + ], + "observed_path_faces": [ + { + "patternId": "T", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "2", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C010_path_sequence.png" + }, + "metadata": { + "level_id": 10, + "name": "Reconstruct 010", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-010.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_up", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "U", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "T", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "2", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "square", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "smile", + "arrow_up", + "U", + "T", + "2", + "square" + ], + "start_x": 2, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "smile", + "rotation": 180 + }, + "BOTTOM": { + "patternId": "square", + "rotation": 90 + }, + "FRONT": { + "patternId": "arrow_up", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 270 + }, + "LEFT": { + "patternId": "2", + "rotation": 90 + }, + "RIGHT": { + "patternId": "U", + "rotation": 180 + } + }, + "bottom_faces": [ + { + "patternId": "square", + "rotation": 90, + "x": 2, + "y": 2 + }, + { + "patternId": "T", + "rotation": 90, + "x": 2, + "y": 1 + }, + { + "patternId": "2", + "rotation": 270, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "BACK", + "LEFT" + ], + "required_slots": [ + "BACK", + "LEFT" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 90 + }, + "LEFT": { + "patternId": "2", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 90 + }, + "LEFT": { + "patternId": "2", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C010\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): N -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=T, rotation=90, flipVertical=true\n- step 2: patternId=2, rotation=270, flipVertical=true\n- allowed patternId values for this task: T, 2, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C011.json b/cube1/data/C011.json new file mode 100644 index 0000000000000000000000000000000000000000..3d93bd36472abb39e50846940d2ec77eb3e45fae --- /dev/null +++ b/cube1/data/C011.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C011", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "W" + ], + "observed_path_faces": [ + { + "patternId": "H", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "plus", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C011_path_sequence.png" + }, + "metadata": { + "level_id": 11, + "name": "Reconstruct 011", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-011.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "star", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "H", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "1", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "triangle", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "plus", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "star", + "H", + "1", + "triangle", + "plus", + "W" + ], + "start_x": 2, + "start_y": 1, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "star", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "W", + "rotation": 90 + }, + "FRONT": { + "patternId": "H", + "rotation": 180 + }, + "BACK": { + "patternId": "triangle", + "rotation": 270 + }, + "LEFT": { + "patternId": "plus", + "rotation": 90 + }, + "RIGHT": { + "patternId": "1", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "W", + "rotation": 90, + "x": 2, + "y": 1 + }, + { + "patternId": "H", + "rotation": 180, + "x": 2, + "y": 2 + }, + { + "patternId": "plus", + "rotation": 90, + "x": 1, + "y": 2 + } + ], + "slot_sequence": [ + "FRONT", + "LEFT" + ], + "required_slots": [ + "FRONT", + "LEFT" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "H", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "plus", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "H", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "plus", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C011\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): S -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=H, rotation=180, flipVertical=true\n- step 2: patternId=plus, rotation=90, flipVertical=true\n- allowed patternId values for this task: H, plus, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C012.json b/cube1/data/C012.json new file mode 100644 index 0000000000000000000000000000000000000000..dcab857bbdb6f8b77dc23d8c8128949d0501b235 --- /dev/null +++ b/cube1/data/C012.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C012", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "N" + ], + "observed_path_faces": [ + { + "patternId": "2", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "plus", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C012_path_sequence.png" + }, + "metadata": { + "level_id": 12, + "name": "Reconstruct 012", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-012.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "triangle", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "2", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "L", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "5", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "Z", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "plus", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "triangle", + "2", + "L", + "5", + "Z", + "plus" + ], + "start_x": 1, + "start_y": 1, + "grid_width": 3, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "triangle", + "rotation": 180 + }, + "BOTTOM": { + "patternId": "plus", + "rotation": 0 + }, + "FRONT": { + "patternId": "2", + "rotation": 270 + }, + "BACK": { + "patternId": "5", + "rotation": 90 + }, + "LEFT": { + "patternId": "Z", + "rotation": 90 + }, + "RIGHT": { + "patternId": "L", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "plus", + "rotation": 0, + "x": 1, + "y": 1 + }, + { + "patternId": "2", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "plus", + "rotation": 0, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "FRONT", + "BOTTOM" + ], + "required_slots": [ + "FRONT", + "BOTTOM" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "plus", + "rotation": 0 + }, + "FRONT": { + "patternId": "2", + "rotation": 270 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "plus", + "rotation": 0 + }, + "FRONT": { + "patternId": "2", + "rotation": 270 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C012\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): S -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=2, rotation=270, flipVertical=true\n- step 2: patternId=plus, rotation=0, flipVertical=true\n- allowed patternId values for this task: 2, plus, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C013.json b/cube1/data/C013.json new file mode 100644 index 0000000000000000000000000000000000000000..050eccbaf0a6388f6c0cdc2fe63d34a6e5962ed8 --- /dev/null +++ b/cube1/data/C013.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C013", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: W -> S -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "W", + "S", + "W" + ], + "observed_path_faces": [ + { + "patternId": "R", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "W", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "W", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C013_path_sequence.png" + }, + "metadata": { + "level_id": 13, + "name": "Reconstruct 013", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-013.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "W", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "T", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "P", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "R", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "K", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "W", + "W", + "T", + "P", + "R", + "K" + ], + "start_x": 3, + "start_y": 1, + "grid_width": 5, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "W", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "K", + "rotation": 90 + }, + "FRONT": { + "patternId": "W", + "rotation": 90 + }, + "BACK": { + "patternId": "P", + "rotation": 270 + }, + "LEFT": { + "patternId": "R", + "rotation": 270 + }, + "RIGHT": { + "patternId": "T", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "K", + "rotation": 90, + "x": 3, + "y": 1 + }, + { + "patternId": "R", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "W", + "rotation": 0, + "x": 2, + "y": 2 + }, + { + "patternId": "W", + "rotation": 180, + "x": 1, + "y": 2 + } + ], + "slot_sequence": [ + "LEFT", + "FRONT", + "TOP" + ], + "required_slots": [ + "LEFT", + "FRONT", + "TOP" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "W", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "W", + "rotation": 90 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "R", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "W", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "W", + "rotation": 90 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "R", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C013\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): W -> S -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=R, rotation=180, flipVertical=true\n- step 2: patternId=W, rotation=0, flipVertical=true\n- step 3: patternId=W, rotation=180, flipVertical=true\n- allowed patternId values for this task: R, W, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C014.json b/cube1/data/C014.json new file mode 100644 index 0000000000000000000000000000000000000000..cd3cb503d76e4bf60b1a7c77a71a33a0ab5a98d2 --- /dev/null +++ b/cube1/data/C014.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C014", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: E -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "E", + "N" + ], + "observed_path_faces": [ + { + "patternId": "arrow_left", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "Y", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C014_path_sequence.png" + }, + "metadata": { + "level_id": 14, + "name": "Reconstruct 014", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-014.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "arrow_right", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "diamond", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_left", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "Y", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "H", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_right", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "arrow_right", + "diamond", + "arrow_left", + "Y", + "H", + "arrow_right" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "arrow_right", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "arrow_right", + "rotation": 270 + }, + "FRONT": { + "patternId": "diamond", + "rotation": 180 + }, + "BACK": { + "patternId": "Y", + "rotation": 0 + }, + "LEFT": { + "patternId": "H", + "rotation": 180 + }, + "RIGHT": { + "patternId": "arrow_left", + "rotation": 270 + } + }, + "bottom_faces": [ + { + "patternId": "arrow_right", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "arrow_left", + "rotation": 0, + "x": 2, + "y": 2 + }, + { + "patternId": "Y", + "rotation": 90, + "x": 2, + "y": 1 + } + ], + "slot_sequence": [ + "RIGHT", + "BACK" + ], + "required_slots": [ + "RIGHT", + "BACK" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "Y", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "arrow_left", + "rotation": 180 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "Y", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "arrow_left", + "rotation": 180 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C014\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): E -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=arrow_left, rotation=0, flipVertical=true\n- step 2: patternId=Y, rotation=90, flipVertical=true\n- allowed patternId values for this task: arrow_left, Y, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C015.json b/cube1/data/C015.json new file mode 100644 index 0000000000000000000000000000000000000000..92e93c3bed11c6e4c14642b703b46dc4655475bb --- /dev/null +++ b/cube1/data/C015.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C015", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> N -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "N", + "N" + ], + "observed_path_faces": [ + { + "patternId": "4", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "O", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "6", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C015_path_sequence.png" + }, + "metadata": { + "level_id": 15, + "name": "Reconstruct 015", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-015.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "J", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "4", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "2", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "6", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "6", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "O", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "J", + "4", + "2", + "6", + "6", + "O" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 3, + "grid_height": 5, + "true_solution_faces": { + "TOP": { + "patternId": "J", + "rotation": 180 + }, + "BOTTOM": { + "patternId": "O", + "rotation": 90 + }, + "FRONT": { + "patternId": "4", + "rotation": 90 + }, + "BACK": { + "patternId": "6", + "rotation": 180 + }, + "LEFT": { + "patternId": "6", + "rotation": 90 + }, + "RIGHT": { + "patternId": "2", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "O", + "rotation": 90, + "x": 1, + "y": 2 + }, + { + "patternId": "4", + "rotation": 90, + "x": 1, + "y": 3 + }, + { + "patternId": "O", + "rotation": 90, + "x": 1, + "y": 2 + }, + { + "patternId": "6", + "rotation": 0, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "FRONT", + "BOTTOM", + "BACK" + ], + "required_slots": [ + "FRONT", + "BOTTOM", + "BACK" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "O", + "rotation": 90 + }, + "FRONT": { + "patternId": "4", + "rotation": 90 + }, + "BACK": { + "patternId": "6", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "O", + "rotation": 90 + }, + "FRONT": { + "patternId": "4", + "rotation": 90 + }, + "BACK": { + "patternId": "6", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C015\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): S -> N -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=4, rotation=90, flipVertical=true\n- step 2: patternId=O, rotation=90, flipVertical=true\n- step 3: patternId=6, rotation=0, flipVertical=true\n- allowed patternId values for this task: 4, O, 6, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C016.json b/cube1/data/C016.json new file mode 100644 index 0000000000000000000000000000000000000000..e19a8b1b309e8fd8efb284230a4f2850589e29e4 --- /dev/null +++ b/cube1/data/C016.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C016", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "W" + ], + "observed_path_faces": [ + { + "patternId": "H", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "arrow_left", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C016_path_sequence.png" + }, + "metadata": { + "level_id": 16, + "name": "Reconstruct 016", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-016.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "N", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "H", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "G", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "triangle", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_left", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "N", + "H", + "G", + "triangle", + "arrow_left", + "smile" + ], + "start_x": 2, + "start_y": 1, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "N", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "smile", + "rotation": 180 + }, + "FRONT": { + "patternId": "H", + "rotation": 180 + }, + "BACK": { + "patternId": "triangle", + "rotation": 180 + }, + "LEFT": { + "patternId": "arrow_left", + "rotation": 180 + }, + "RIGHT": { + "patternId": "G", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "smile", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "H", + "rotation": 180, + "x": 2, + "y": 2 + }, + { + "patternId": "arrow_left", + "rotation": 180, + "x": 1, + "y": 2 + } + ], + "slot_sequence": [ + "FRONT", + "LEFT" + ], + "required_slots": [ + "FRONT", + "LEFT" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "H", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "arrow_left", + "rotation": 270 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "H", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "arrow_left", + "rotation": 270 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C016\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): S -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=H, rotation=180, flipVertical=true\n- step 2: patternId=arrow_left, rotation=180, flipVertical=true\n- allowed patternId values for this task: H, arrow_left, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C017.json b/cube1/data/C017.json new file mode 100644 index 0000000000000000000000000000000000000000..74a9e8d179b0417fae69e06aa8824711f493ffc2 --- /dev/null +++ b/cube1/data/C017.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C017", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: E -> N -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "E", + "N", + "W" + ], + "observed_path_faces": [ + { + "patternId": "M", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "T", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "J", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C017_path_sequence.png" + }, + "metadata": { + "level_id": 17, + "name": "Reconstruct 017", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-017.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "A", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "M", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "M", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "T", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "D", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "J", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "A", + "M", + "M", + "T", + "D", + "J" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "A", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "J", + "rotation": 0 + }, + "FRONT": { + "patternId": "M", + "rotation": 180 + }, + "BACK": { + "patternId": "T", + "rotation": 0 + }, + "LEFT": { + "patternId": "D", + "rotation": 0 + }, + "RIGHT": { + "patternId": "M", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "J", + "rotation": 0, + "x": 1, + "y": 2 + }, + { + "patternId": "M", + "rotation": 180, + "x": 2, + "y": 2 + }, + { + "patternId": "T", + "rotation": 90, + "x": 2, + "y": 1 + }, + { + "patternId": "J", + "rotation": 270, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "RIGHT", + "BACK", + "BOTTOM" + ], + "required_slots": [ + "RIGHT", + "BACK", + "BOTTOM" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "J", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "M", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "J", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "M", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C017\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): E -> N -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=M, rotation=180, flipVertical=true\n- step 2: patternId=T, rotation=90, flipVertical=true\n- step 3: patternId=J, rotation=270, flipVertical=true\n- allowed patternId values for this task: M, T, J, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C018.json b/cube1/data/C018.json new file mode 100644 index 0000000000000000000000000000000000000000..b71b6d867d5febd603054adc176842a94ab7344a --- /dev/null +++ b/cube1/data/C018.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C018", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> W -> S\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "W", + "S" + ], + "observed_path_faces": [ + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "9", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "4", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C018_path_sequence.png" + }, + "metadata": { + "level_id": 18, + "name": "Reconstruct 018", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-018.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "N", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "triangle", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "F", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "9", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "4", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "N", + "triangle", + "F", + "smile", + "9", + "4" + ], + "start_x": 2, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "N", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "4", + "rotation": 0 + }, + "FRONT": { + "patternId": "triangle", + "rotation": 0 + }, + "BACK": { + "patternId": "smile", + "rotation": 0 + }, + "LEFT": { + "patternId": "9", + "rotation": 90 + }, + "RIGHT": { + "patternId": "F", + "rotation": 180 + } + }, + "bottom_faces": [ + { + "patternId": "4", + "rotation": 0, + "x": 2, + "y": 2 + }, + { + "patternId": "smile", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "9", + "rotation": 270, + "x": 1, + "y": 1 + }, + { + "patternId": "4", + "rotation": 270, + "x": 1, + "y": 2 + } + ], + "slot_sequence": [ + "BACK", + "LEFT", + "BOTTOM" + ], + "required_slots": [ + "BACK", + "LEFT", + "BOTTOM" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "4", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "smile", + "rotation": 180 + }, + "LEFT": { + "patternId": "9", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "4", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "smile", + "rotation": 180 + }, + "LEFT": { + "patternId": "9", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C018\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): N -> W -> S\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=smile, rotation=180, flipVertical=true\n- step 2: patternId=9, rotation=270, flipVertical=true\n- step 3: patternId=4, rotation=270, flipVertical=true\n- allowed patternId values for this task: smile, 9, 4, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C019.json b/cube1/data/C019.json new file mode 100644 index 0000000000000000000000000000000000000000..023c681045684aaa5e547028c9b2292eb94b0a88 --- /dev/null +++ b/cube1/data/C019.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C019", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: E -> E\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "E", + "E" + ], + "observed_path_faces": [ + { + "patternId": "H", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "8", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C019_path_sequence.png" + }, + "metadata": { + "level_id": 19, + "name": "Reconstruct 019", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-019.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "8", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "5", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "H", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "square", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "H", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "Z", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "8", + "5", + "H", + "square", + "H", + "Z" + ], + "start_x": 1, + "start_y": 1, + "grid_width": 5, + "grid_height": 3, + "true_solution_faces": { + "TOP": { + "patternId": "8", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "Z", + "rotation": 270 + }, + "FRONT": { + "patternId": "5", + "rotation": 180 + }, + "BACK": { + "patternId": "square", + "rotation": 0 + }, + "LEFT": { + "patternId": "H", + "rotation": 270 + }, + "RIGHT": { + "patternId": "H", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "Z", + "rotation": 270, + "x": 1, + "y": 1 + }, + { + "patternId": "H", + "rotation": 90, + "x": 2, + "y": 1 + }, + { + "patternId": "8", + "rotation": 270, + "x": 3, + "y": 1 + } + ], + "slot_sequence": [ + "RIGHT", + "TOP" + ], + "required_slots": [ + "RIGHT", + "TOP" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "8", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "H", + "rotation": 270 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "8", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "H", + "rotation": 270 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C019\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): E -> E\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=H, rotation=90, flipVertical=true\n- step 2: patternId=8, rotation=270, flipVertical=true\n- allowed patternId values for this task: H, 8, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C020.json b/cube1/data/C020.json new file mode 100644 index 0000000000000000000000000000000000000000..501abd02681511f89a2a0d30029bd514516ae217 --- /dev/null +++ b/cube1/data/C020.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C020", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: W -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "W", + "N" + ], + "observed_path_faces": [ + { + "patternId": "A", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "9", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C020_path_sequence.png" + }, + "metadata": { + "level_id": 20, + "name": "Reconstruct 020", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-020.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "B", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "9", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "A", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "S", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "B", + "smile", + "W", + "9", + "A", + "S" + ], + "start_x": 2, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "B", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "S", + "rotation": 0 + }, + "FRONT": { + "patternId": "smile", + "rotation": 180 + }, + "BACK": { + "patternId": "9", + "rotation": 270 + }, + "LEFT": { + "patternId": "A", + "rotation": 180 + }, + "RIGHT": { + "patternId": "W", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "S", + "rotation": 0, + "x": 2, + "y": 2 + }, + { + "patternId": "A", + "rotation": 90, + "x": 1, + "y": 2 + }, + { + "patternId": "9", + "rotation": 180, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "LEFT", + "BACK" + ], + "required_slots": [ + "LEFT", + "BACK" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "9", + "rotation": 90 + }, + "LEFT": { + "patternId": "A", + "rotation": 270 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "9", + "rotation": 90 + }, + "LEFT": { + "patternId": "A", + "rotation": 270 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C020\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): W -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=A, rotation=90, flipVertical=true\n- step 2: patternId=9, rotation=180, flipVertical=true\n- allowed patternId values for this task: A, 9, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C021.json b/cube1/data/C021.json new file mode 100644 index 0000000000000000000000000000000000000000..f5373e9e304d9bb240ecd84962d35f2e7a38d382 --- /dev/null +++ b/cube1/data/C021.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C021", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> S -> E\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "S", + "E" + ], + "observed_path_faces": [ + { + "patternId": "V", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "4", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "N", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C021_path_sequence.png" + }, + "metadata": { + "level_id": 21, + "name": "Reconstruct 021", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-021.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "square", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "circle", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "N", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "V", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "circle", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "4", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "square", + "circle", + "N", + "V", + "circle", + "4" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "square", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "4", + "rotation": 270 + }, + "FRONT": { + "patternId": "circle", + "rotation": 270 + }, + "BACK": { + "patternId": "V", + "rotation": 90 + }, + "LEFT": { + "patternId": "circle", + "rotation": 180 + }, + "RIGHT": { + "patternId": "N", + "rotation": 180 + } + }, + "bottom_faces": [ + { + "patternId": "4", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "V", + "rotation": 270, + "x": 1, + "y": 1 + }, + { + "patternId": "4", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "N", + "rotation": 270, + "x": 2, + "y": 2 + } + ], + "slot_sequence": [ + "BACK", + "BOTTOM", + "RIGHT" + ], + "required_slots": [ + "BACK", + "BOTTOM", + "RIGHT" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "4", + "rotation": 270 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "V", + "rotation": 270 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "N", + "rotation": 90 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "4", + "rotation": 270 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "V", + "rotation": 270 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "N", + "rotation": 90 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C021\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): N -> S -> E\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=V, rotation=270, flipVertical=true\n- step 2: patternId=4, rotation=270, flipVertical=true\n- step 3: patternId=N, rotation=270, flipVertical=true\n- allowed patternId values for this task: V, 4, N, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C022.json b/cube1/data/C022.json new file mode 100644 index 0000000000000000000000000000000000000000..b3b6aede6e4557e28c2d007efaaab47aecc5f12b --- /dev/null +++ b/cube1/data/C022.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C022", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: W -> E -> S\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "W", + "E", + "S" + ], + "observed_path_faces": [ + { + "patternId": "I", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "W", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "W", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C022_path_sequence.png" + }, + "metadata": { + "level_id": 22, + "name": "Reconstruct 022", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-022.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "F", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "2", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "G", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "I", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "F", + "W", + "2", + "G", + "I", + "W" + ], + "start_x": 2, + "start_y": 1, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "F", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "W", + "rotation": 180 + }, + "FRONT": { + "patternId": "W", + "rotation": 180 + }, + "BACK": { + "patternId": "G", + "rotation": 180 + }, + "LEFT": { + "patternId": "I", + "rotation": 90 + }, + "RIGHT": { + "patternId": "2", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "W", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "I", + "rotation": 0, + "x": 1, + "y": 1 + }, + { + "patternId": "W", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "W", + "rotation": 180, + "x": 2, + "y": 2 + } + ], + "slot_sequence": [ + "LEFT", + "BOTTOM", + "FRONT" + ], + "required_slots": [ + "LEFT", + "BOTTOM", + "FRONT" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "W", + "rotation": 180 + }, + "FRONT": { + "patternId": "W", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "I", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "W", + "rotation": 180 + }, + "FRONT": { + "patternId": "W", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "I", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C022\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): W -> E -> S\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=I, rotation=0, flipVertical=true\n- step 2: patternId=W, rotation=180, flipVertical=true\n- step 3: patternId=W, rotation=180, flipVertical=true\n- allowed patternId values for this task: I, W, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C023.json b/cube1/data/C023.json new file mode 100644 index 0000000000000000000000000000000000000000..18a465f4163441265ac9f1524d225f34a63e8511 --- /dev/null +++ b/cube1/data/C023.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C023", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "N" + ], + "observed_path_faces": [ + { + "patternId": "G", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "C", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C023_path_sequence.png" + }, + "metadata": { + "level_id": 23, + "name": "Reconstruct 023", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-023.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "C", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "B", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "T", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "G", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "4", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "L", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "C", + "B", + "T", + "G", + "4", + "L" + ], + "start_x": 1, + "start_y": 3, + "grid_width": 3, + "grid_height": 5, + "true_solution_faces": { + "TOP": { + "patternId": "C", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "L", + "rotation": 90 + }, + "FRONT": { + "patternId": "B", + "rotation": 270 + }, + "BACK": { + "patternId": "G", + "rotation": 180 + }, + "LEFT": { + "patternId": "4", + "rotation": 0 + }, + "RIGHT": { + "patternId": "T", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "L", + "rotation": 90, + "x": 1, + "y": 3 + }, + { + "patternId": "G", + "rotation": 0, + "x": 1, + "y": 2 + }, + { + "patternId": "C", + "rotation": 90, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "BACK", + "TOP" + ], + "required_slots": [ + "BACK", + "TOP" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "C", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "G", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "C", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "G", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C023\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): N -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=G, rotation=0, flipVertical=true\n- step 2: patternId=C, rotation=90, flipVertical=true\n- allowed patternId values for this task: G, C, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C024.json b/cube1/data/C024.json new file mode 100644 index 0000000000000000000000000000000000000000..cc563437bb6bd12dc7e7bd3500621fa2b62ed19e --- /dev/null +++ b/cube1/data/C024.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C024", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "W" + ], + "observed_path_faces": [ + { + "patternId": "1", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "3", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C024_path_sequence.png" + }, + "metadata": { + "level_id": 24, + "name": "Reconstruct 024", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-024.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "9", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "1", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "P", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "A", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "3", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "9", + "1", + "P", + "A", + "3", + "smile" + ], + "start_x": 2, + "start_y": 1, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "9", + "rotation": 180 + }, + "BOTTOM": { + "patternId": "smile", + "rotation": 180 + }, + "FRONT": { + "patternId": "1", + "rotation": 180 + }, + "BACK": { + "patternId": "A", + "rotation": 90 + }, + "LEFT": { + "patternId": "3", + "rotation": 90 + }, + "RIGHT": { + "patternId": "P", + "rotation": 0 + } + }, + "bottom_faces": [ + { + "patternId": "smile", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "1", + "rotation": 180, + "x": 2, + "y": 2 + }, + { + "patternId": "3", + "rotation": 90, + "x": 1, + "y": 2 + } + ], + "slot_sequence": [ + "FRONT", + "LEFT" + ], + "required_slots": [ + "FRONT", + "LEFT" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "1", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "3", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "1", + "rotation": 180 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "3", + "rotation": 180 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C024\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): S -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=1, rotation=180, flipVertical=true\n- step 2: patternId=3, rotation=90, flipVertical=true\n- allowed patternId values for this task: 1, 3, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C025.json b/cube1/data/C025.json new file mode 100644 index 0000000000000000000000000000000000000000..082916291af1303deb639a6be887cda080a5be30 --- /dev/null +++ b/cube1/data/C025.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C025", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> E\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "E" + ], + "observed_path_faces": [ + { + "patternId": "arrow_down", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "arrow_right", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C025_path_sequence.png" + }, + "metadata": { + "level_id": 25, + "name": "Reconstruct 025", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-025.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "9", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "square", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_right", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "arrow_down", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "2", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "circle", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "9", + "square", + "arrow_right", + "arrow_down", + "2", + "circle" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "9", + "rotation": 270 + }, + "BOTTOM": { + "patternId": "circle", + "rotation": 180 + }, + "FRONT": { + "patternId": "square", + "rotation": 180 + }, + "BACK": { + "patternId": "arrow_down", + "rotation": 0 + }, + "LEFT": { + "patternId": "2", + "rotation": 0 + }, + "RIGHT": { + "patternId": "arrow_right", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "circle", + "rotation": 180, + "x": 1, + "y": 2 + }, + { + "patternId": "arrow_down", + "rotation": 180, + "x": 1, + "y": 1 + }, + { + "patternId": "arrow_right", + "rotation": 270, + "x": 2, + "y": 1 + } + ], + "slot_sequence": [ + "BACK", + "RIGHT" + ], + "required_slots": [ + "BACK", + "RIGHT" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "arrow_down", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "arrow_right", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "arrow_down", + "rotation": 180 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "arrow_right", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C025\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): N -> E\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=arrow_down, rotation=180, flipVertical=true\n- step 2: patternId=arrow_right, rotation=270, flipVertical=true\n- allowed patternId values for this task: arrow_down, arrow_right, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C026.json b/cube1/data/C026.json new file mode 100644 index 0000000000000000000000000000000000000000..8c28408aada2e06aaa40a806880698878a581cb4 --- /dev/null +++ b/cube1/data/C026.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C026", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: W -> S -> S\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "W", + "S", + "S" + ], + "observed_path_faces": [ + { + "patternId": "R", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "D", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "K", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C026_path_sequence.png" + }, + "metadata": { + "level_id": 26, + "name": "Reconstruct 026", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-026.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "square", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "D", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "K", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "triangle", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "R", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "smile", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "square", + "D", + "K", + "triangle", + "R", + "smile" + ], + "start_x": 2, + "start_y": 1, + "grid_width": 4, + "grid_height": 5, + "true_solution_faces": { + "TOP": { + "patternId": "square", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "smile", + "rotation": 180 + }, + "FRONT": { + "patternId": "D", + "rotation": 270 + }, + "BACK": { + "patternId": "triangle", + "rotation": 0 + }, + "LEFT": { + "patternId": "R", + "rotation": 0 + }, + "RIGHT": { + "patternId": "K", + "rotation": 180 + } + }, + "bottom_faces": [ + { + "patternId": "smile", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "R", + "rotation": 270, + "x": 1, + "y": 1 + }, + { + "patternId": "D", + "rotation": 180, + "x": 1, + "y": 2 + }, + { + "patternId": "K", + "rotation": 90, + "x": 1, + "y": 3 + } + ], + "slot_sequence": [ + "LEFT", + "FRONT", + "RIGHT" + ], + "required_slots": [ + "LEFT", + "FRONT", + "RIGHT" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "D", + "rotation": 270 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "R", + "rotation": 90 + }, + "RIGHT": { + "patternId": "K", + "rotation": 90 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "D", + "rotation": 270 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "R", + "rotation": 90 + }, + "RIGHT": { + "patternId": "K", + "rotation": 90 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C026\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): W -> S -> S\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=R, rotation=270, flipVertical=true\n- step 2: patternId=D, rotation=180, flipVertical=true\n- step 3: patternId=K, rotation=90, flipVertical=true\n- allowed patternId values for this task: R, D, K, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C027.json b/cube1/data/C027.json new file mode 100644 index 0000000000000000000000000000000000000000..fb7bc0e18dd0d484d512cec6fab6d5cb79487977 --- /dev/null +++ b/cube1/data/C027.json @@ -0,0 +1,214 @@ +{ + "sample_id": "C027", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> S -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "S", + "N" + ], + "observed_path_faces": [ + { + "patternId": "P", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "8", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "P", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C027_path_sequence.png" + }, + "metadata": { + "level_id": 27, + "name": "Reconstruct 027", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-027.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "Y", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "diamond", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "G", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "P", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "D", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "8", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "Y", + "diamond", + "G", + "P", + "D", + "8" + ], + "start_x": 1, + "start_y": 2, + "grid_width": 3, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "Y", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "8", + "rotation": 270 + }, + "FRONT": { + "patternId": "diamond", + "rotation": 90 + }, + "BACK": { + "patternId": "P", + "rotation": 270 + }, + "LEFT": { + "patternId": "D", + "rotation": 180 + }, + "RIGHT": { + "patternId": "G", + "rotation": 270 + } + }, + "bottom_faces": [ + { + "patternId": "8", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "P", + "rotation": 90, + "x": 1, + "y": 1 + }, + { + "patternId": "8", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "P", + "rotation": 90, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "BACK", + "BOTTOM", + "BACK" + ], + "required_slots": [ + "BACK", + "BOTTOM" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "8", + "rotation": 270 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "P", + "rotation": 90 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "8", + "rotation": 270 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "P", + "rotation": 90 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C027\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): N -> S -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=P, rotation=90, flipVertical=true\n- step 2: patternId=8, rotation=270, flipVertical=true\n- step 3: patternId=P, rotation=90, flipVertical=true\n- allowed patternId values for this task: P, 8, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C028.json b/cube1/data/C028.json new file mode 100644 index 0000000000000000000000000000000000000000..6557d836ab49e58acae902ddb7a1212e5b5cab52 --- /dev/null +++ b/cube1/data/C028.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C028", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "N" + ], + "observed_path_faces": [ + { + "patternId": "circle", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "star", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C028_path_sequence.png" + }, + "metadata": { + "level_id": 28, + "name": "Reconstruct 028", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-028.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "9", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "circle", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "6", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "M", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "P", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "star", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "9", + "circle", + "6", + "M", + "P", + "star" + ], + "start_x": 1, + "start_y": 1, + "grid_width": 3, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "9", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "star", + "rotation": 90 + }, + "FRONT": { + "patternId": "circle", + "rotation": 270 + }, + "BACK": { + "patternId": "M", + "rotation": 90 + }, + "LEFT": { + "patternId": "P", + "rotation": 270 + }, + "RIGHT": { + "patternId": "6", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "star", + "rotation": 90, + "x": 1, + "y": 1 + }, + { + "patternId": "circle", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "star", + "rotation": 90, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "FRONT", + "BOTTOM" + ], + "required_slots": [ + "FRONT", + "BOTTOM" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "star", + "rotation": 90 + }, + "FRONT": { + "patternId": "circle", + "rotation": 270 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "star", + "rotation": 90 + }, + "FRONT": { + "patternId": "circle", + "rotation": 270 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C028\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): S -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=circle, rotation=270, flipVertical=true\n- step 2: patternId=star, rotation=90, flipVertical=true\n- allowed patternId values for this task: circle, star, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C030.json b/cube1/data/C030.json new file mode 100644 index 0000000000000000000000000000000000000000..3493fb51e6af23dd74ecf3d84bda49b664041485 --- /dev/null +++ b/cube1/data/C030.json @@ -0,0 +1,215 @@ +{ + "sample_id": "C030", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> W -> W\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "N", + "W", + "W" + ], + "observed_path_faces": [ + { + "patternId": "H", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "R", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "N", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C030_path_sequence.png" + }, + "metadata": { + "level_id": 30, + "name": "Reconstruct 030", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-030.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "smile", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "N", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "B", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "H", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "R", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "I", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "smile", + "N", + "B", + "H", + "R", + "I" + ], + "start_x": 3, + "start_y": 2, + "grid_width": 5, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "smile", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "I", + "rotation": 90 + }, + "FRONT": { + "patternId": "N", + "rotation": 90 + }, + "BACK": { + "patternId": "H", + "rotation": 270 + }, + "LEFT": { + "patternId": "R", + "rotation": 0 + }, + "RIGHT": { + "patternId": "B", + "rotation": 90 + } + }, + "bottom_faces": [ + { + "patternId": "I", + "rotation": 90, + "x": 3, + "y": 2 + }, + { + "patternId": "H", + "rotation": 90, + "x": 3, + "y": 1 + }, + { + "patternId": "R", + "rotation": 180, + "x": 2, + "y": 1 + }, + { + "patternId": "N", + "rotation": 270, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "BACK", + "LEFT", + "FRONT" + ], + "required_slots": [ + "BACK", + "LEFT", + "FRONT" + ], + "required_count": 3, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "N", + "rotation": 90 + }, + "BACK": { + "patternId": "H", + "rotation": 90 + }, + "LEFT": { + "patternId": "R", + "rotation": 90 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "N", + "rotation": 90 + }, + "BACK": { + "patternId": "H", + "rotation": 90 + }, + "LEFT": { + "patternId": "R", + "rotation": 90 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C030\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): N -> W -> W\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=H, rotation=90, flipVertical=true\n- step 2: patternId=R, rotation=180, flipVertical=true\n- step 3: patternId=N, rotation=270, flipVertical=true\n- allowed patternId values for this task: H, R, N, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C031.json b/cube1/data/C031.json new file mode 100644 index 0000000000000000000000000000000000000000..301f9adf6c4db159c6e7c6461c7863611c869c49 --- /dev/null +++ b/cube1/data/C031.json @@ -0,0 +1,200 @@ +{ + "sample_id": "C031", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: W -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "W", + "N" + ], + "observed_path_faces": [ + { + "patternId": "G", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "T", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C031_path_sequence.png" + }, + "metadata": { + "level_id": 31, + "name": "Reconstruct 031", + "difficulty": 1, + "move_count": 2, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-031.json", + "tier_label": "Difficulty 1" + }, + "description": "2-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "C", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "star", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "T", + "rotation": 270, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "G", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "N", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "C", + "W", + "star", + "T", + "G", + "N" + ], + "start_x": 2, + "start_y": 2, + "grid_width": 4, + "grid_height": 4, + "true_solution_faces": { + "TOP": { + "patternId": "C", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "N", + "rotation": 90 + }, + "FRONT": { + "patternId": "W", + "rotation": 270 + }, + "BACK": { + "patternId": "T", + "rotation": 90 + }, + "LEFT": { + "patternId": "G", + "rotation": 0 + }, + "RIGHT": { + "patternId": "star", + "rotation": 270 + } + }, + "bottom_faces": [ + { + "patternId": "N", + "rotation": 90, + "x": 2, + "y": 2 + }, + { + "patternId": "G", + "rotation": 270, + "x": 1, + "y": 2 + }, + { + "patternId": "T", + "rotation": 0, + "x": 1, + "y": 1 + } + ], + "slot_sequence": [ + "LEFT", + "BACK" + ], + "required_slots": [ + "LEFT", + "BACK" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 270 + }, + "LEFT": { + "patternId": "G", + "rotation": 90 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "?", + "rotation": 0 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "?", + "rotation": 0 + }, + "BACK": { + "patternId": "T", + "rotation": 270 + }, + "LEFT": { + "patternId": "G", + "rotation": 90 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C031\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): W -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=G, rotation=270, flipVertical=true\n- step 2: patternId=T, rotation=0, flipVertical=true\n- allowed patternId values for this task: G, T, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/cube1/data/C032.json b/cube1/data/C032.json new file mode 100644 index 0000000000000000000000000000000000000000..cbd319595f5525ca92ca77905a40b0b5d998c7f3 --- /dev/null +++ b/cube1/data/C032.json @@ -0,0 +1,214 @@ +{ + "sample_id": "C032", + "text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> S -> N\nThe puzzle images already show the roll path and the observed path-face states.", + "net_layout": "standard_cross", + "roll_sequence": [ + "S", + "S", + "N" + ], + "observed_path_faces": [ + { + "patternId": "6", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "9", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + }, + { + "patternId": "6", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": true + } + ], + "image_paths": { + "blank_net_image": "images/blank_nets/open.png", + "path_sequence_image": "images/path_sequences/C032_path_sequence.png" + }, + "metadata": { + "level_id": 32, + "name": "Reconstruct 032", + "difficulty": 1, + "move_count": 3, + "tier": 1, + "source_level_path": "levels/reconstruct/generated-032.json", + "tier_label": "Difficulty 1" + }, + "description": "3-move reconstruct puzzle", + "net_faces": [ + { + "patternId": "9", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "6", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "7", + "rotation": 180, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "W", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "M", + "rotation": 0, + "flipHorizontal": false, + "flipVertical": false + }, + { + "patternId": "X", + "rotation": 90, + "flipHorizontal": false, + "flipVertical": false + } + ], + "net_patterns": [ + "9", + "6", + "7", + "W", + "M", + "X" + ], + "start_x": 1, + "start_y": 1, + "grid_width": 3, + "grid_height": 5, + "true_solution_faces": { + "TOP": { + "patternId": "9", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "X", + "rotation": 90 + }, + "FRONT": { + "patternId": "6", + "rotation": 90 + }, + "BACK": { + "patternId": "W", + "rotation": 270 + }, + "LEFT": { + "patternId": "M", + "rotation": 270 + }, + "RIGHT": { + "patternId": "7", + "rotation": 270 + } + }, + "bottom_faces": [ + { + "patternId": "X", + "rotation": 90, + "x": 1, + "y": 1 + }, + { + "patternId": "6", + "rotation": 90, + "x": 1, + "y": 2 + }, + { + "patternId": "9", + "rotation": 90, + "x": 1, + "y": 3 + }, + { + "patternId": "6", + "rotation": 90, + "x": 1, + "y": 2 + } + ], + "slot_sequence": [ + "FRONT", + "TOP", + "FRONT" + ], + "required_slots": [ + "FRONT", + "TOP" + ], + "required_count": 2, + "answer": { + "faces": { + "TOP": { + "patternId": "9", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "6", + "rotation": 90 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + } + }, + "legacy_answer": { + "TOP": { + "patternId": "9", + "rotation": 90 + }, + "BOTTOM": { + "patternId": "?", + "rotation": 0 + }, + "FRONT": { + "patternId": "6", + "rotation": 90 + }, + "BACK": { + "patternId": "?", + "rotation": 0 + }, + "LEFT": { + "patternId": "?", + "rotation": 0 + }, + "RIGHT": { + "patternId": "?", + "rotation": 0 + } + }, + "prompt": { + "system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: \n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.", + "user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C032\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): S -> S -> N\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=6, rotation=90, flipVertical=true\n- step 2: patternId=9, rotation=90, flipVertical=true\n- step 3: patternId=6, rotation=90, flipVertical=true\n- allowed patternId values for this task: 6, 9, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":,\"rotation\":},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it." + } +} diff --git a/voi/images/voi-467/shape_S3.png b/voi/images/voi-467/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccf200282dc5ed18f4f7d5c3864de98c1786512a --- /dev/null +++ b/voi/images/voi-467/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90854851b7e144b66ea30627c026f8a276e0d5e1254734b3cd58535173c2a002 +size 5306 diff --git a/voi/images/voi-467/shape_S4.png b/voi/images/voi-467/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..d92ee27019551d2b4c88e0750e384decb3a7dedb --- /dev/null +++ b/voi/images/voi-467/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214963a24947f3ab19e1e371813c7daa0ee16910baff121897ec8f62208b95fd +size 5246 diff --git a/voi/images/voi-467/shape_S5.png b/voi/images/voi-467/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..d19456cd1ff2e8dcd732cda3a3757e83f07a501b --- /dev/null +++ b/voi/images/voi-467/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c171cd76066f83c2bc99548ef3aa198eed2d4042c011727f5a0022605f3158e5 +size 5316 diff --git a/voi/images/voi-467/shape_S6.png b/voi/images/voi-467/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..794879ca6d8c731937e2fc4e0c2b0a04a9afc949 --- /dev/null +++ b/voi/images/voi-467/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f2ed0aedf3f3483b130b4968a4f5d5f40c95fd164ebfb18f901f0149aea5e2 +size 5414 diff --git a/voi/images/voi-467/shape_S7.png b/voi/images/voi-467/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..f5d3d2d3e48d9ac7a7ec325b27590b82c1899b64 --- /dev/null +++ b/voi/images/voi-467/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48647d869f046e69f291da74de07b90044b627d2f97bee280de52b3b76259443 +size 5441 diff --git a/voi/images/voi-467/target.png b/voi/images/voi-467/target.png new file mode 100644 index 0000000000000000000000000000000000000000..8afec6f3376730f1bb606d26b07e6d7b11059994 --- /dev/null +++ b/voi/images/voi-467/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d70ae788c56df065a97b98ae3304f4bf8730cdc03188a4a11006f806fdf391 +size 7824 diff --git a/voi/images/voi-468/shape_S1.png b/voi/images/voi-468/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d8b3390a6560bfb826724b0acab106ded3502f --- /dev/null +++ b/voi/images/voi-468/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046552596e9d916cb343a2cfdc92fe802a98979e319b8ba8f89574401a605771 +size 5146 diff --git a/voi/images/voi-468/shape_S2.png b/voi/images/voi-468/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..da9a225a5375fe8567868acfac3b9d64722768ee --- /dev/null +++ b/voi/images/voi-468/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c58c8712bff989a55dfabae6d44bd3898820e243e7adc1b24e5619edc2ca953 +size 5366 diff --git a/voi/images/voi-468/shape_S3.png b/voi/images/voi-468/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccec69306c088b5b6b4b14938aad32a47636c330 --- /dev/null +++ b/voi/images/voi-468/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee294b8f95895294d78092ce8d2b44a3c81c3fb9634d4fcc37842a1e2995a49 +size 5372 diff --git a/voi/images/voi-468/shape_S4.png b/voi/images/voi-468/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..759649739b00c5c95aa39a4116ccd4f55c631f03 --- /dev/null +++ b/voi/images/voi-468/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84b03c4a3e3c37dd21dada398efdf07295f0668d13c95c31ccf2d8710e99fcb +size 5299 diff --git a/voi/images/voi-468/shape_S5.png b/voi/images/voi-468/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..d19456cd1ff2e8dcd732cda3a3757e83f07a501b --- /dev/null +++ b/voi/images/voi-468/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c171cd76066f83c2bc99548ef3aa198eed2d4042c011727f5a0022605f3158e5 +size 5316 diff --git a/voi/images/voi-468/shape_S6.png b/voi/images/voi-468/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..77210bbdabef667577f51d1b1372a864450ceefe --- /dev/null +++ b/voi/images/voi-468/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2774af282be9c55f9ed54bf3ea0ae6eb5d3c7fc4f40d807d671d65c8e7bbcf13 +size 5417 diff --git a/voi/images/voi-468/shape_S7.png b/voi/images/voi-468/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..f5d3d2d3e48d9ac7a7ec325b27590b82c1899b64 --- /dev/null +++ b/voi/images/voi-468/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48647d869f046e69f291da74de07b90044b627d2f97bee280de52b3b76259443 +size 5441 diff --git a/voi/images/voi-468/target.png b/voi/images/voi-468/target.png new file mode 100644 index 0000000000000000000000000000000000000000..fd108c76c1b2011d139aa8f9954c69f3d9677241 --- /dev/null +++ b/voi/images/voi-468/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd100a15bf8b92d05ce81790722deea201bf5552255dccb9c10bd6391cf54d1 +size 7932 diff --git a/voi/images/voi-469/shape_S1.png b/voi/images/voi-469/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-469/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-469/shape_S2.png b/voi/images/voi-469/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..da9a225a5375fe8567868acfac3b9d64722768ee --- /dev/null +++ b/voi/images/voi-469/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c58c8712bff989a55dfabae6d44bd3898820e243e7adc1b24e5619edc2ca953 +size 5366 diff --git a/voi/images/voi-469/shape_S3.png b/voi/images/voi-469/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..e312e27e26d677cba3e94bcf404ffe1a51ee7f7d --- /dev/null +++ b/voi/images/voi-469/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15acf25f2b7b790a4eed1d12060f10e1c8aa7b0eb765ee100a29afbc87e88b39 +size 5384 diff --git a/voi/images/voi-469/shape_S4.png b/voi/images/voi-469/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e35f789a4dcabc6dae0013b26172fac47d9619c --- /dev/null +++ b/voi/images/voi-469/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327140a6e7dbdf0a2609a05bfd47c4a469b1e88c77838e13bfab4cb3fddbd113 +size 5224 diff --git a/voi/images/voi-469/shape_S5.png b/voi/images/voi-469/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..cae94fddf3294768b27b168c2498598f8c1f0617 --- /dev/null +++ b/voi/images/voi-469/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8aec9e34ba78be2470a31286622462f44115911ceaa7e7f8cfaf2204a6a72e3 +size 5446 diff --git a/voi/images/voi-469/shape_S6.png b/voi/images/voi-469/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..a894e4cdcad3afb320764ebc8b8f26213266c205 --- /dev/null +++ b/voi/images/voi-469/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81bcb41ac55cb0e7fa58a394c0eedf2ec0bd70ea1be40550a94eed6ff4e113c +size 6140 diff --git a/voi/images/voi-469/shape_S7.png b/voi/images/voi-469/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..332bc2befe25ac3a5856fbc55ca8cdc2a8859b46 --- /dev/null +++ b/voi/images/voi-469/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eac20aa651fa4a91b3de54021ce997f011809feaacae50da4ed014c7ef7bb29 +size 5208 diff --git a/voi/images/voi-469/target.png b/voi/images/voi-469/target.png new file mode 100644 index 0000000000000000000000000000000000000000..91ac20c0f2d02e028fe504f805264956e2726d6a --- /dev/null +++ b/voi/images/voi-469/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480d1e4d533ef11707eb3579d0267c0fe29c332937434f41f53ecb1a44ae5dd8 +size 7934 diff --git a/voi/images/voi-470/shape_S1.png b/voi/images/voi-470/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..73cabb8dc21314053d939c2d4572cae83039b424 --- /dev/null +++ b/voi/images/voi-470/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c0150b6daee678b55e3e006cc38396334eb5142b25fb75134375291de777be +size 5073 diff --git a/voi/images/voi-470/shape_S2.png b/voi/images/voi-470/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-470/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-470/shape_S3.png b/voi/images/voi-470/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..e312e27e26d677cba3e94bcf404ffe1a51ee7f7d --- /dev/null +++ b/voi/images/voi-470/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15acf25f2b7b790a4eed1d12060f10e1c8aa7b0eb765ee100a29afbc87e88b39 +size 5384 diff --git a/voi/images/voi-470/shape_S4.png b/voi/images/voi-470/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e35f789a4dcabc6dae0013b26172fac47d9619c --- /dev/null +++ b/voi/images/voi-470/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327140a6e7dbdf0a2609a05bfd47c4a469b1e88c77838e13bfab4cb3fddbd113 +size 5224 diff --git a/voi/images/voi-470/shape_S5.png b/voi/images/voi-470/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..cae94fddf3294768b27b168c2498598f8c1f0617 --- /dev/null +++ b/voi/images/voi-470/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8aec9e34ba78be2470a31286622462f44115911ceaa7e7f8cfaf2204a6a72e3 +size 5446 diff --git a/voi/images/voi-470/shape_S6.png b/voi/images/voi-470/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..77210bbdabef667577f51d1b1372a864450ceefe --- /dev/null +++ b/voi/images/voi-470/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2774af282be9c55f9ed54bf3ea0ae6eb5d3c7fc4f40d807d671d65c8e7bbcf13 +size 5417 diff --git a/voi/images/voi-470/shape_S7.png b/voi/images/voi-470/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..e754f6e37d960e9b48ad974290953d0a7340a45d --- /dev/null +++ b/voi/images/voi-470/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0939cc42c30b23a6a7ae1472c7b6662f2d987451ad57c68300157a0c19c15e8 +size 5275 diff --git a/voi/images/voi-470/target.png b/voi/images/voi-470/target.png new file mode 100644 index 0000000000000000000000000000000000000000..a5047b649825bca85f030e52164ea1cf64bd3c96 --- /dev/null +++ b/voi/images/voi-470/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:885339abcc23b1f66953aefa057069864ec4199cbc1694fbf8d48bbfeac601cb +size 7767 diff --git a/voi/images/voi-471/shape_S1.png b/voi/images/voi-471/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..301d2d307727324dad577238f320f3a502ee4e81 --- /dev/null +++ b/voi/images/voi-471/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb0234d7536bf1602560270e3de477c0faa0e6d2634290f0e6a5702569452f3 +size 5152 diff --git a/voi/images/voi-471/shape_S2.png b/voi/images/voi-471/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd088031292fe5a53ff769c6b299a59dd553301 --- /dev/null +++ b/voi/images/voi-471/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80bb5211bd114b581614783b32913a57ebe570786539f1bd0de4e739dba90ae8 +size 6091 diff --git a/voi/images/voi-471/shape_S3.png b/voi/images/voi-471/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb2b644bb9c0aeda1649c7da02420e383a53253 --- /dev/null +++ b/voi/images/voi-471/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674ab7454005a058d3a041dda65df3dd545bd13305ae61acc92c233a119a4fd3 +size 5539 diff --git a/voi/images/voi-471/shape_S4.png b/voi/images/voi-471/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..d92ee27019551d2b4c88e0750e384decb3a7dedb --- /dev/null +++ b/voi/images/voi-471/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214963a24947f3ab19e1e371813c7daa0ee16910baff121897ec8f62208b95fd +size 5246 diff --git a/voi/images/voi-471/shape_S5.png b/voi/images/voi-471/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..6d27b403044b1822b0adba84f01323d518543edd --- /dev/null +++ b/voi/images/voi-471/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cf140f7369f6da2adb7873bf0906aff594a42e91b0cb507e839907f299a0ee8 +size 6043 diff --git a/voi/images/voi-471/shape_S6.png b/voi/images/voi-471/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..92c8e3a37e28272419ca8e50324e69165a02ebd9 --- /dev/null +++ b/voi/images/voi-471/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9296aead0e3f9ab8abd1ef4544fe2a21efa92db8ef3aad1b6ea61c6da1f99b +size 5406 diff --git a/voi/images/voi-471/shape_S7.png b/voi/images/voi-471/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..e754f6e37d960e9b48ad974290953d0a7340a45d --- /dev/null +++ b/voi/images/voi-471/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0939cc42c30b23a6a7ae1472c7b6662f2d987451ad57c68300157a0c19c15e8 +size 5275 diff --git a/voi/images/voi-471/target.png b/voi/images/voi-471/target.png new file mode 100644 index 0000000000000000000000000000000000000000..14c24db71f7a6818871b4aafd46ed15637851f3d --- /dev/null +++ b/voi/images/voi-471/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bdcafc371e195d832d41b6e654354be65c7bb5f23e32e26a86d8b3ea58e8a7 +size 7734 diff --git a/voi/images/voi-472/shape_S1.png b/voi/images/voi-472/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..c9d47d55088e85ec4aa816541bbc84ababe87fb6 --- /dev/null +++ b/voi/images/voi-472/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60309a1ee37a19e807ae048600082ace3304b4441edc3299cdb2e6bd90f10a8 +size 5313 diff --git a/voi/images/voi-472/shape_S2.png b/voi/images/voi-472/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..13e53be4c670a2fbed0a21108aab4ef1dbd04579 --- /dev/null +++ b/voi/images/voi-472/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c689b1046e8e6375fd6e504087e0abebef6565050a418c9630ed4afddf1a354 +size 5286 diff --git a/voi/images/voi-472/shape_S3.png b/voi/images/voi-472/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..744ea831d19507b14f4fb4e638137c73cfdf0221 --- /dev/null +++ b/voi/images/voi-472/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd973206216e95f65f6b237bd7fb94e9f8412f733a31155957c970bd50a9176 +size 6109 diff --git a/voi/images/voi-472/shape_S4.png b/voi/images/voi-472/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e35f789a4dcabc6dae0013b26172fac47d9619c --- /dev/null +++ b/voi/images/voi-472/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327140a6e7dbdf0a2609a05bfd47c4a469b1e88c77838e13bfab4cb3fddbd113 +size 5224 diff --git a/voi/images/voi-472/shape_S5.png b/voi/images/voi-472/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..d19456cd1ff2e8dcd732cda3a3757e83f07a501b --- /dev/null +++ b/voi/images/voi-472/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c171cd76066f83c2bc99548ef3aa198eed2d4042c011727f5a0022605f3158e5 +size 5316 diff --git a/voi/images/voi-479/shape_S6.png b/voi/images/voi-479/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..3c760714529d17cbcd3462745b808748fb6f8f8e --- /dev/null +++ b/voi/images/voi-479/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502ae9250c5e33cb1ca2c5628319dd3c694976fb10e516469a81c7b480884bc2 +size 5419 diff --git a/voi/images/voi-479/shape_S7.png b/voi/images/voi-479/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..59213566103ccb7d5ca9092aaadef843d434d5be --- /dev/null +++ b/voi/images/voi-479/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd4ff2e68970dd4a508c92bfe7680636e0b946c97c6d59fb7a62cb7cbf3cb8b +size 6013 diff --git a/voi/images/voi-479/target.png b/voi/images/voi-479/target.png new file mode 100644 index 0000000000000000000000000000000000000000..70c1d546d4ffdae8ec4addfe60546ecdcc2f8c65 --- /dev/null +++ b/voi/images/voi-479/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4351c72b8e5653677342caea671b469b6648533dce5f4663050dab8d10b3bd6b +size 7714 diff --git a/voi/images/voi-480/shape_S1.png b/voi/images/voi-480/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d8b3390a6560bfb826724b0acab106ded3502f --- /dev/null +++ b/voi/images/voi-480/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046552596e9d916cb343a2cfdc92fe802a98979e319b8ba8f89574401a605771 +size 5146 diff --git a/voi/images/voi-480/shape_S2.png b/voi/images/voi-480/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd088031292fe5a53ff769c6b299a59dd553301 --- /dev/null +++ b/voi/images/voi-480/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80bb5211bd114b581614783b32913a57ebe570786539f1bd0de4e739dba90ae8 +size 6091 diff --git a/voi/images/voi-480/shape_S3.png b/voi/images/voi-480/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..744ea831d19507b14f4fb4e638137c73cfdf0221 --- /dev/null +++ b/voi/images/voi-480/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd973206216e95f65f6b237bd7fb94e9f8412f733a31155957c970bd50a9176 +size 6109 diff --git a/voi/images/voi-480/shape_S4.png b/voi/images/voi-480/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..1efdf8e8cf4c139427e10ab6089d4c587720703c --- /dev/null +++ b/voi/images/voi-480/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df498e9faf8d3a8f42725ec022ba4f7ab92c0af1e65fcf303dc4b5d1dd884261 +size 5986 diff --git a/voi/images/voi-480/shape_S5.png b/voi/images/voi-480/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..cdcee57e02a34cd6db9ed786d192339cd8812082 --- /dev/null +++ b/voi/images/voi-480/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61049165db29c857db5dd9b151dfe379ad97c00f2b719e72af4010d5d92870df +size 5356 diff --git a/voi/images/voi-480/shape_S6.png b/voi/images/voi-480/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..77210bbdabef667577f51d1b1372a864450ceefe --- /dev/null +++ b/voi/images/voi-480/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2774af282be9c55f9ed54bf3ea0ae6eb5d3c7fc4f40d807d671d65c8e7bbcf13 +size 5417 diff --git a/voi/images/voi-480/shape_S7.png b/voi/images/voi-480/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..994bf25aa86cb651245951c7f8338ab38d2320ae --- /dev/null +++ b/voi/images/voi-480/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dedb146008598cd5ee8ac9bc8f07747093d33feaf41b077b7673771eba22baf +size 5280 diff --git a/voi/images/voi-480/target.png b/voi/images/voi-480/target.png new file mode 100644 index 0000000000000000000000000000000000000000..fcb24a55f4f1f011b7cd7f6df045b312cec81736 --- /dev/null +++ b/voi/images/voi-480/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f6d3f87a91177b2b49a0729f289d7f6948d0b0aa4b7e5c67cdc8076e275910 +size 7798 diff --git a/voi/images/voi-481/shape_S1.png b/voi/images/voi-481/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6c70bf574a8003ed6a5bd7d7bdc471f63e9ea4 --- /dev/null +++ b/voi/images/voi-481/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b2a761d2e384d07ff516284e8341460a35f665f698224023f75c49eeb6fca +size 5888 diff --git a/voi/images/voi-481/shape_S2.png b/voi/images/voi-481/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-481/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-481/shape_S3.png b/voi/images/voi-481/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..5a01aef9c1f2c89ac5195364b71549f11269c653 --- /dev/null +++ b/voi/images/voi-481/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d713c935947153cf17eabb215e08e8a348b06f92b41a5dabe2da675cdf79ec2f +size 5353 diff --git a/voi/images/voi-481/shape_S4.png b/voi/images/voi-481/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..0ebb763eb620eadc08e8617e01e0191254ab63e2 --- /dev/null +++ b/voi/images/voi-481/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e56efe4ce17e98d89cf33a7e07a1c618de50830e964d9dd6d9dfb84e2fc8e90 +size 5250 diff --git a/voi/images/voi-481/shape_S5.png b/voi/images/voi-481/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..596b098dd0d27b5d3a30a3d0be8f1820640fc6e9 --- /dev/null +++ b/voi/images/voi-481/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846072ed24c892adc25f96f279e0b2a9d2e7c770a08f5a295826dfa777254f92 +size 5303 diff --git a/voi/images/voi-481/shape_S6.png b/voi/images/voi-481/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..10f49c0f2cf7031e6b195af69f2330c052635450 --- /dev/null +++ b/voi/images/voi-481/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fa182884f895f43fffffb8577b80ab332f87776493cc6f70e851247b7b39ee +size 5573 diff --git a/voi/images/voi-481/shape_S7.png b/voi/images/voi-481/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..5a1af9e482c3b5126355e079071a9bd0444ecda1 --- /dev/null +++ b/voi/images/voi-481/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a2f70f56e5d23ed3d24f2d9a1693eca9c74427610360deb8dc37a3f1fd8edd +size 5326 diff --git a/voi/images/voi-481/target.png b/voi/images/voi-481/target.png new file mode 100644 index 0000000000000000000000000000000000000000..db171c48a8a67c06e18028abae2afeb98d0c65c2 --- /dev/null +++ b/voi/images/voi-481/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f371fa690a3c12fdb117ef4d64fba11262e9395b45aeae15ca029b23638ca94 +size 7889 diff --git a/voi/images/voi-482/shape_S1.png b/voi/images/voi-482/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d8b3390a6560bfb826724b0acab106ded3502f --- /dev/null +++ b/voi/images/voi-482/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046552596e9d916cb343a2cfdc92fe802a98979e319b8ba8f89574401a605771 +size 5146 diff --git a/voi/images/voi-482/shape_S2.png b/voi/images/voi-482/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-482/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-482/shape_S3.png b/voi/images/voi-482/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..e312e27e26d677cba3e94bcf404ffe1a51ee7f7d --- /dev/null +++ b/voi/images/voi-482/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15acf25f2b7b790a4eed1d12060f10e1c8aa7b0eb765ee100a29afbc87e88b39 +size 5384 diff --git a/voi/images/voi-482/shape_S4.png b/voi/images/voi-482/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..306e581be6b7bffdfcf4f99ecc0f6a4008cff23e --- /dev/null +++ b/voi/images/voi-482/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2a0296a6a66af3341a8e041c188f7029f894381b19527c3f649313491b3600 +size 5270 diff --git a/voi/images/voi-482/shape_S5.png b/voi/images/voi-482/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..dc087c8911fac6699b8d67939ae23524ecad89a1 --- /dev/null +++ b/voi/images/voi-482/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33f7a902308b5cf33cd915ba375b4dada2f2c60451f5f5046750263a2a1ea95 +size 5285 diff --git a/voi/images/voi-482/shape_S6.png b/voi/images/voi-482/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..3c760714529d17cbcd3462745b808748fb6f8f8e --- /dev/null +++ b/voi/images/voi-482/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502ae9250c5e33cb1ca2c5628319dd3c694976fb10e516469a81c7b480884bc2 +size 5419 diff --git a/voi/images/voi-482/shape_S7.png b/voi/images/voi-482/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..008e9e6bad8ac8d56379bd8bdf5adfe373bd8ff8 --- /dev/null +++ b/voi/images/voi-482/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a314cf584c3751d9415ad59efc3f2d55b39552358c4e0cd430a43302eedebb +size 5299 diff --git a/voi/images/voi-482/target.png b/voi/images/voi-482/target.png new file mode 100644 index 0000000000000000000000000000000000000000..eac7ae41f7ff8bd72fe8ec743e9995d2d21fde7f --- /dev/null +++ b/voi/images/voi-482/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56900952de979d9d5dcc9788c9b1b20219d2002a5299c691725546e63b32a827 +size 7765 diff --git a/voi/images/voi-483/shape_S1.png b/voi/images/voi-483/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..73cabb8dc21314053d939c2d4572cae83039b424 --- /dev/null +++ b/voi/images/voi-483/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c0150b6daee678b55e3e006cc38396334eb5142b25fb75134375291de777be +size 5073 diff --git a/voi/images/voi-483/shape_S2.png b/voi/images/voi-483/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-483/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-483/shape_S3.png b/voi/images/voi-483/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4f10c8380f79ea1af51218a659aad251c7ab8d --- /dev/null +++ b/voi/images/voi-483/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6b49f49aa419bf42ea60404dadc774c3ca1e29c3bd21827243240046bfb610 +size 5516 diff --git a/voi/images/voi-483/shape_S4.png b/voi/images/voi-483/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..1efdf8e8cf4c139427e10ab6089d4c587720703c --- /dev/null +++ b/voi/images/voi-483/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df498e9faf8d3a8f42725ec022ba4f7ab92c0af1e65fcf303dc4b5d1dd884261 +size 5986 diff --git a/voi/images/voi-483/shape_S5.png b/voi/images/voi-483/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..3a7abc3f48b721d247ff3d0470bcf14fe5e901dc --- /dev/null +++ b/voi/images/voi-483/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa067d1b88e3e5ed02965c059686f511dfc4e9e1067458341252c2dd07c5535 +size 5240 diff --git a/voi/images/voi-483/shape_S6.png b/voi/images/voi-483/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..a894e4cdcad3afb320764ebc8b8f26213266c205 --- /dev/null +++ b/voi/images/voi-483/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81bcb41ac55cb0e7fa58a394c0eedf2ec0bd70ea1be40550a94eed6ff4e113c +size 6140 diff --git a/voi/images/voi-483/shape_S7.png b/voi/images/voi-483/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..008e9e6bad8ac8d56379bd8bdf5adfe373bd8ff8 --- /dev/null +++ b/voi/images/voi-483/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a314cf584c3751d9415ad59efc3f2d55b39552358c4e0cd430a43302eedebb +size 5299 diff --git a/voi/images/voi-483/target.png b/voi/images/voi-483/target.png new file mode 100644 index 0000000000000000000000000000000000000000..cbd6ef66a6ec17af1b4dd596d89d5d02dd29ebb4 --- /dev/null +++ b/voi/images/voi-483/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9101751a3ea8e9d420a662a807c8dd6cbe90f123545c5c44ad10963f4a991fc9 +size 8011 diff --git a/voi/images/voi-484/shape_S1.png b/voi/images/voi-484/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d8b3390a6560bfb826724b0acab106ded3502f --- /dev/null +++ b/voi/images/voi-484/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046552596e9d916cb343a2cfdc92fe802a98979e319b8ba8f89574401a605771 +size 5146 diff --git a/voi/images/voi-484/shape_S2.png b/voi/images/voi-484/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b116aa517527f645d8824b1f147c28ffdb4aa2a --- /dev/null +++ b/voi/images/voi-484/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77958b638af7f99c16f4fd7814691c9c863a7f0a221815903118fa8845f72371 +size 5366 diff --git a/voi/images/voi-484/shape_S3.png b/voi/images/voi-484/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..d54c23d640ddf3206a4f0f7e3b05b1e2259da7c3 --- /dev/null +++ b/voi/images/voi-484/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7daee9defb99c6883e4e3ae68bf6253bf09bac97d3bc83115b6cca1a5b41e4bf +size 5426 diff --git a/voi/images/voi-484/shape_S4.png b/voi/images/voi-484/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa27d8bd046d757e2434523ea4bcdbcd4901635 --- /dev/null +++ b/voi/images/voi-484/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9db0ca1cfdf00c04a01133c064aef2a5a43bcf2c3774de5387fefc505141ec6 +size 5386 diff --git a/voi/images/voi-484/shape_S5.png b/voi/images/voi-484/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..2738bd5c45b95ab562e01685bce90a842783e938 --- /dev/null +++ b/voi/images/voi-484/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44daab1f8fcd32b62312880700e9715db1de28e30f0b53b6d8e5b6e80bc36de6 +size 5313 diff --git a/voi/images/voi-484/shape_S6.png b/voi/images/voi-484/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..3c760714529d17cbcd3462745b808748fb6f8f8e --- /dev/null +++ b/voi/images/voi-484/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502ae9250c5e33cb1ca2c5628319dd3c694976fb10e516469a81c7b480884bc2 +size 5419 diff --git a/voi/images/voi-484/shape_S7.png b/voi/images/voi-484/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..5a1af9e482c3b5126355e079071a9bd0444ecda1 --- /dev/null +++ b/voi/images/voi-484/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a2f70f56e5d23ed3d24f2d9a1693eca9c74427610360deb8dc37a3f1fd8edd +size 5326 diff --git a/voi/images/voi-484/target.png b/voi/images/voi-484/target.png new file mode 100644 index 0000000000000000000000000000000000000000..919d455973c2b0cafe7c1f9553b33d4b983294e6 --- /dev/null +++ b/voi/images/voi-484/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e867dc87ac4d4c5f07c50d23226c0f2ff0843a357e8ce8768dd58e1639ad244 +size 7811 diff --git a/voi/images/voi-485/shape_S1.png b/voi/images/voi-485/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..73cabb8dc21314053d939c2d4572cae83039b424 --- /dev/null +++ b/voi/images/voi-485/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c0150b6daee678b55e3e006cc38396334eb5142b25fb75134375291de777be +size 5073 diff --git a/voi/images/voi-497/shape_S6.png b/voi/images/voi-497/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..40bdc616dc35097622526e60d8f15a3e2b3fc53e --- /dev/null +++ b/voi/images/voi-497/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f45b8ab7b67182e53680e662cddfffd1b653532379e58eb6abb235ea18c07a +size 5428 diff --git a/voi/images/voi-497/shape_S7.png b/voi/images/voi-497/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..10fd45fd896b3a20e3224fbf1d6dc9697f3e3df4 --- /dev/null +++ b/voi/images/voi-497/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e96f01fd5eb3bdcd2ebe45d4941b45488dc76446c245d4a64f764ed20e175c +size 5290 diff --git a/voi/images/voi-497/target.png b/voi/images/voi-497/target.png new file mode 100644 index 0000000000000000000000000000000000000000..1dc6f75308acb5200551bbdf8e24954d0bdae07e --- /dev/null +++ b/voi/images/voi-497/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694f77cb95dbae7b12dbfbcabf5157eb13b0e82e95e353630527d5b7450a1872 +size 7817 diff --git a/voi/images/voi-498/shape_S1.png b/voi/images/voi-498/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..53621ad8f5dcd69665731110068af821490184d8 --- /dev/null +++ b/voi/images/voi-498/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524d82a4fbadbdbafbf013e3d8927a6679b7452f4baca9e2a307cf6185a07e00 +size 5119 diff --git a/voi/images/voi-498/shape_S2.png b/voi/images/voi-498/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..dffaa1a83f4c9e617676f509649e7515234875aa --- /dev/null +++ b/voi/images/voi-498/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7cad447e6146c256daea02fa919c589dd2888db9adaad5b548e23c8b46c53d +size 5408 diff --git a/voi/images/voi-498/shape_S3.png b/voi/images/voi-498/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccf200282dc5ed18f4f7d5c3864de98c1786512a --- /dev/null +++ b/voi/images/voi-498/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90854851b7e144b66ea30627c026f8a276e0d5e1254734b3cd58535173c2a002 +size 5306 diff --git a/voi/images/voi-498/shape_S4.png b/voi/images/voi-498/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..d92ee27019551d2b4c88e0750e384decb3a7dedb --- /dev/null +++ b/voi/images/voi-498/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214963a24947f3ab19e1e371813c7daa0ee16910baff121897ec8f62208b95fd +size 5246 diff --git a/voi/images/voi-498/shape_S5.png b/voi/images/voi-498/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..596b098dd0d27b5d3a30a3d0be8f1820640fc6e9 --- /dev/null +++ b/voi/images/voi-498/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846072ed24c892adc25f96f279e0b2a9d2e7c770a08f5a295826dfa777254f92 +size 5303 diff --git a/voi/images/voi-498/shape_S6.png b/voi/images/voi-498/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..32550a649aa0677803b8a231be752211060b1212 --- /dev/null +++ b/voi/images/voi-498/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d785f82d16e6272b56232d83c7b1bb42d6d0cbf1f9b4fe694764d0bb05c0c2d +size 5387 diff --git a/voi/images/voi-498/shape_S7.png b/voi/images/voi-498/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..10fd45fd896b3a20e3224fbf1d6dc9697f3e3df4 --- /dev/null +++ b/voi/images/voi-498/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e96f01fd5eb3bdcd2ebe45d4941b45488dc76446c245d4a64f764ed20e175c +size 5290 diff --git a/voi/images/voi-498/target.png b/voi/images/voi-498/target.png new file mode 100644 index 0000000000000000000000000000000000000000..d900857c2a2e313b93adbc852a0996b2aa74bd91 --- /dev/null +++ b/voi/images/voi-498/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb93b00ac5df7b23e13e30f9e6794fcccc7e558edec08d40ab6a64d04e86cfe +size 7774 diff --git a/voi/images/voi-499/shape_S1.png b/voi/images/voi-499/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6c70bf574a8003ed6a5bd7d7bdc471f63e9ea4 --- /dev/null +++ b/voi/images/voi-499/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b2a761d2e384d07ff516284e8341460a35f665f698224023f75c49eeb6fca +size 5888 diff --git a/voi/images/voi-499/shape_S2.png b/voi/images/voi-499/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-499/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-499/shape_S3.png b/voi/images/voi-499/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4f10c8380f79ea1af51218a659aad251c7ab8d --- /dev/null +++ b/voi/images/voi-499/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6b49f49aa419bf42ea60404dadc774c3ca1e29c3bd21827243240046bfb610 +size 5516 diff --git a/voi/images/voi-499/shape_S4.png b/voi/images/voi-499/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..d92ee27019551d2b4c88e0750e384decb3a7dedb --- /dev/null +++ b/voi/images/voi-499/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214963a24947f3ab19e1e371813c7daa0ee16910baff121897ec8f62208b95fd +size 5246 diff --git a/voi/images/voi-499/shape_S5.png b/voi/images/voi-499/shape_S5.png new file mode 100644 index 0000000000000000000000000000000000000000..243bda5896158002fb32c3f59a67f1899d8cee5a --- /dev/null +++ b/voi/images/voi-499/shape_S5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07eb13ed4ce7104841a6ec3ea1de82cc7f2028beb5b10f727c61b5a864fd7ec9 +size 5328 diff --git a/voi/images/voi-499/shape_S6.png b/voi/images/voi-499/shape_S6.png new file mode 100644 index 0000000000000000000000000000000000000000..a894e4cdcad3afb320764ebc8b8f26213266c205 --- /dev/null +++ b/voi/images/voi-499/shape_S6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81bcb41ac55cb0e7fa58a394c0eedf2ec0bd70ea1be40550a94eed6ff4e113c +size 6140 diff --git a/voi/images/voi-499/shape_S7.png b/voi/images/voi-499/shape_S7.png new file mode 100644 index 0000000000000000000000000000000000000000..5a1af9e482c3b5126355e079071a9bd0444ecda1 --- /dev/null +++ b/voi/images/voi-499/shape_S7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a2f70f56e5d23ed3d24f2d9a1693eca9c74427610360deb8dc37a3f1fd8edd +size 5326 diff --git a/voi/images/voi-499/target.png b/voi/images/voi-499/target.png new file mode 100644 index 0000000000000000000000000000000000000000..daa9733e11caaf5f37b36063ca255cb925cf48ed --- /dev/null +++ b/voi/images/voi-499/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08868451b8ef04067ea5f19f3d562bc36f80c9a6931f05ba60b531189b18065f +size 7974 diff --git a/voi/images/voi-500/shape_S1.png b/voi/images/voi-500/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-500/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-500/shape_S2.png b/voi/images/voi-500/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-500/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-500/target.png b/voi/images/voi-500/target.png new file mode 100644 index 0000000000000000000000000000000000000000..6ee69e30e36a1dd4409c4aab1ae716b0410d34f2 --- /dev/null +++ b/voi/images/voi-500/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e98fe89e5b84a2fb55306a571a773eae266c8d3a07b602e285b19d5a2a77afb +size 5404 diff --git a/voi/images/voi-501/shape_S1.png b/voi/images/voi-501/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-501/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-501/shape_S2.png b/voi/images/voi-501/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed227481ab102086688ec74b6b1970f2aab779b --- /dev/null +++ b/voi/images/voi-501/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0e9d6a4a120210c2c5ad01056843c906fab586b73d201c1559b5bf828a1d32 +size 5334 diff --git a/voi/images/voi-501/target.png b/voi/images/voi-501/target.png new file mode 100644 index 0000000000000000000000000000000000000000..f9ed66458333480f049eb815e5753903fb6f885b --- /dev/null +++ b/voi/images/voi-501/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e49ddd7a69af263b95fa3d20818719c31f4b23fa79a9b26af91a325f384c659 +size 5305 diff --git a/voi/images/voi-502/shape_S1.png b/voi/images/voi-502/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-502/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-502/shape_S2.png b/voi/images/voi-502/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed227481ab102086688ec74b6b1970f2aab779b --- /dev/null +++ b/voi/images/voi-502/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0e9d6a4a120210c2c5ad01056843c906fab586b73d201c1559b5bf828a1d32 +size 5334 diff --git a/voi/images/voi-502/target.png b/voi/images/voi-502/target.png new file mode 100644 index 0000000000000000000000000000000000000000..116ad87dd0200f79ef71263a8194c2a59012aecf --- /dev/null +++ b/voi/images/voi-502/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82e912055fd6b7d851125dbb4f5308c1c1f88c73402fc7f5745e8513f3fea31 +size 5259 diff --git a/voi/images/voi-503/shape_S1.png b/voi/images/voi-503/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-503/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-503/shape_S2.png b/voi/images/voi-503/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-503/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-503/target.png b/voi/images/voi-503/target.png new file mode 100644 index 0000000000000000000000000000000000000000..259419975fd2c0e13f0b09f0779eb6776da8ba73 --- /dev/null +++ b/voi/images/voi-503/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a455d97e1a9471a320dc769c77ed1691300717ee610a6c348626c52270d0a187 +size 5371 diff --git a/voi/images/voi-504/shape_S1.png b/voi/images/voi-504/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-504/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-504/shape_S2.png b/voi/images/voi-504/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed227481ab102086688ec74b6b1970f2aab779b --- /dev/null +++ b/voi/images/voi-504/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0e9d6a4a120210c2c5ad01056843c906fab586b73d201c1559b5bf828a1d32 +size 5334 diff --git a/voi/images/voi-504/target.png b/voi/images/voi-504/target.png new file mode 100644 index 0000000000000000000000000000000000000000..6b2717159c3a2f4107de4290ceab4f22c553ba60 --- /dev/null +++ b/voi/images/voi-504/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83f371e87dfbc55a8ea3e7bfec22330698685173f082bc1484c516292760c5e +size 5271 diff --git a/voi/images/voi-505/shape_S1.png b/voi/images/voi-505/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-505/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-505/shape_S2.png b/voi/images/voi-505/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-505/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-505/target.png b/voi/images/voi-505/target.png new file mode 100644 index 0000000000000000000000000000000000000000..4788faa076ab2bdd91b5e91a72baaffc6d90e09f --- /dev/null +++ b/voi/images/voi-505/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52cefc371269458ca62832e65de4ca5157647ae7b4dccd3e55a0264a8f5c61e +size 5401 diff --git a/voi/images/voi-506/shape_S1.png b/voi/images/voi-506/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-506/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-506/shape_S2.png b/voi/images/voi-506/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-506/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-506/target.png b/voi/images/voi-506/target.png new file mode 100644 index 0000000000000000000000000000000000000000..1101d41d8fe1b79109c8e10187b5e80d207444f7 --- /dev/null +++ b/voi/images/voi-506/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1021e8f919186ca7d4da8b8dc7c0bfcb60dc93f9dc79735b03b13e1b9d135fa +size 5355 diff --git a/voi/images/voi-507/shape_S1.png b/voi/images/voi-507/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-507/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-507/shape_S2.png b/voi/images/voi-507/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-507/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-507/target.png b/voi/images/voi-507/target.png new file mode 100644 index 0000000000000000000000000000000000000000..f3ed24991ec4e697c9e2cfc382fde079d04a32b3 --- /dev/null +++ b/voi/images/voi-507/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9869e0a6ffc3a678045001d13cd8e519c92878e1296cf52b2238cfef1c210de +size 5579 diff --git a/voi/images/voi-508/shape_S1.png b/voi/images/voi-508/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-508/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-508/shape_S2.png b/voi/images/voi-508/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-508/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-508/target.png b/voi/images/voi-508/target.png new file mode 100644 index 0000000000000000000000000000000000000000..e3c8900d096b220c599535d893119bfb7a3969e1 --- /dev/null +++ b/voi/images/voi-508/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a60981f4f96e0b3ccb5269672257bca3c108274c6bf04a52ed1ea77326f1d46 +size 5373 diff --git a/voi/images/voi-509/shape_S1.png b/voi/images/voi-509/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-509/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-509/shape_S2.png b/voi/images/voi-509/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-509/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-509/target.png b/voi/images/voi-509/target.png new file mode 100644 index 0000000000000000000000000000000000000000..1062b3ffe41dbde80e8808fe104107934239912f --- /dev/null +++ b/voi/images/voi-509/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ba735678269c86dca6effa33fcb1d10e67fbe6b68686836319e6eb77399c3f +size 5431 diff --git a/voi/images/voi-510/shape_S1.png b/voi/images/voi-510/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..53621ad8f5dcd69665731110068af821490184d8 --- /dev/null +++ b/voi/images/voi-510/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524d82a4fbadbdbafbf013e3d8927a6679b7452f4baca9e2a307cf6185a07e00 +size 5119 diff --git a/voi/images/voi-510/shape_S2.png b/voi/images/voi-510/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-510/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-510/target.png b/voi/images/voi-510/target.png new file mode 100644 index 0000000000000000000000000000000000000000..2dbc52acda610cd229d22206d6dc1134fff332b5 --- /dev/null +++ b/voi/images/voi-510/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:879815ce30d7a0fd34d58dbd209e6227467dc13fc6631bfddc1bfa977679a9f3 +size 5326 diff --git a/voi/images/voi-511/shape_S1.png b/voi/images/voi-511/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-511/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-511/shape_S2.png b/voi/images/voi-511/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-511/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-511/target.png b/voi/images/voi-511/target.png new file mode 100644 index 0000000000000000000000000000000000000000..2956a3fd2821f9745c51349424535e0b7f7e5830 --- /dev/null +++ b/voi/images/voi-511/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502881d31bbfc45e85e4ea35ef158ee8519a5a0d9cbf7c6e31107c60f0cade94 +size 5418 diff --git a/voi/images/voi-512/shape_S1.png b/voi/images/voi-512/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-512/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-512/shape_S2.png b/voi/images/voi-512/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-512/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-512/target.png b/voi/images/voi-512/target.png new file mode 100644 index 0000000000000000000000000000000000000000..a770d183543585c94cbfa9a0f024dc860cdb0ac5 --- /dev/null +++ b/voi/images/voi-512/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b6a4e067b6d4cd3572c41ae0c93ea4ced0e5a8aea16e5642f2af733bce926 +size 5420 diff --git a/voi/images/voi-513/shape_S1.png b/voi/images/voi-513/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-513/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-513/shape_S2.png b/voi/images/voi-513/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-513/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-513/target.png b/voi/images/voi-513/target.png new file mode 100644 index 0000000000000000000000000000000000000000..af31e2b3455c662ffa4ccbbb1ba09d934f72f6cf --- /dev/null +++ b/voi/images/voi-513/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0b345f8c101b9ec400a86b489df194bf5927fcf2502ed998fa8909dccd5386 +size 5408 diff --git a/voi/images/voi-514/shape_S1.png b/voi/images/voi-514/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-514/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-514/shape_S2.png b/voi/images/voi-514/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-514/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-514/target.png b/voi/images/voi-514/target.png new file mode 100644 index 0000000000000000000000000000000000000000..c151e6f5700f266223fc8106bb498e995056c07c --- /dev/null +++ b/voi/images/voi-514/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e339eba954fc30b73aefe222d27a290cca2c3aedcbf5c68ebb8777298ee66d +size 5374 diff --git a/voi/images/voi-515/shape_S1.png b/voi/images/voi-515/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-515/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-515/shape_S2.png b/voi/images/voi-515/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-515/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-515/target.png b/voi/images/voi-515/target.png new file mode 100644 index 0000000000000000000000000000000000000000..ccf49bdda909caef14b6a79d7d3bcc3d7be2e1e4 --- /dev/null +++ b/voi/images/voi-515/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0657a11280de2db83f84e0692d29a0da582b8dacc8005aa8bf6a7f6cb4657cc9 +size 5386 diff --git a/voi/images/voi-516/shape_S1.png b/voi/images/voi-516/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-516/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-516/shape_S2.png b/voi/images/voi-516/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..01fa89a409c4128db9dbb9d22db81b68185338d1 --- /dev/null +++ b/voi/images/voi-516/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d25885dfc2c31e82bf7b8f7b0f9bb2281dc1a66b0fa3b8085e0ea7664a3fdf +size 5496 diff --git a/voi/images/voi-516/target.png b/voi/images/voi-516/target.png new file mode 100644 index 0000000000000000000000000000000000000000..055e21f913195e31eba9e673433b576e2a62523b --- /dev/null +++ b/voi/images/voi-516/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264b21ca15f1ed4c2f0826af2e3046fd5b2e2b517da97e2193f106a5cae747b0 +size 5364 diff --git a/voi/images/voi-517/shape_S1.png b/voi/images/voi-517/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-517/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-517/shape_S2.png b/voi/images/voi-517/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-517/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-517/target.png b/voi/images/voi-517/target.png new file mode 100644 index 0000000000000000000000000000000000000000..64237ea3b521cf6615ec172ae79c66df1945eea7 --- /dev/null +++ b/voi/images/voi-517/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c19f57bce1331ee4d7d3dc5a1f534a424f6dbfa63ea1002cabc2f508eaea9b +size 5399 diff --git a/voi/images/voi-518/shape_S1.png b/voi/images/voi-518/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-518/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-518/shape_S2.png b/voi/images/voi-518/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-518/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-518/target.png b/voi/images/voi-518/target.png new file mode 100644 index 0000000000000000000000000000000000000000..9407ea2950dc60aa1146513d5af21dbcd4c5039b --- /dev/null +++ b/voi/images/voi-518/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ea99dc77ad9092252766347ae29f88681c3a062f985cb3ad79868306172b65 +size 5378 diff --git a/voi/images/voi-519/shape_S1.png b/voi/images/voi-519/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-519/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-519/shape_S2.png b/voi/images/voi-519/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-519/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-519/target.png b/voi/images/voi-519/target.png new file mode 100644 index 0000000000000000000000000000000000000000..14fa38d3033cf81a4cf1c956bbceb3d36bb127b0 --- /dev/null +++ b/voi/images/voi-519/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc13fae9636f6dbbac8447250d8ce5803f5f0d44f2b83c8137ce2cc588678bc8 +size 5347 diff --git a/voi/images/voi-520/shape_S1.png b/voi/images/voi-520/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5806bb36d21c32682cc368072b96f8fe01a5974 --- /dev/null +++ b/voi/images/voi-520/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b0f2aeaff5de77feca4a6d7731bebdb5d600f0bc6b36ceeaf459c65abe812b +size 5278 diff --git a/voi/images/voi-545/shape_S1.png b/voi/images/voi-545/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6c70bf574a8003ed6a5bd7d7bdc471f63e9ea4 --- /dev/null +++ b/voi/images/voi-545/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b2a761d2e384d07ff516284e8341460a35f665f698224023f75c49eeb6fca +size 5888 diff --git a/voi/images/voi-545/shape_S2.png b/voi/images/voi-545/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b116aa517527f645d8824b1f147c28ffdb4aa2a --- /dev/null +++ b/voi/images/voi-545/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77958b638af7f99c16f4fd7814691c9c863a7f0a221815903118fa8845f72371 +size 5366 diff --git a/voi/images/voi-545/shape_S3.png b/voi/images/voi-545/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccec69306c088b5b6b4b14938aad32a47636c330 --- /dev/null +++ b/voi/images/voi-545/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee294b8f95895294d78092ce8d2b44a3c81c3fb9634d4fcc37842a1e2995a49 +size 5372 diff --git a/voi/images/voi-545/shape_S4.png b/voi/images/voi-545/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..306e581be6b7bffdfcf4f99ecc0f6a4008cff23e --- /dev/null +++ b/voi/images/voi-545/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2a0296a6a66af3341a8e041c188f7029f894381b19527c3f649313491b3600 +size 5270 diff --git a/voi/images/voi-545/target.png b/voi/images/voi-545/target.png new file mode 100644 index 0000000000000000000000000000000000000000..7ae18a63b6417f220cc379e7399266cc1c2ff2ef --- /dev/null +++ b/voi/images/voi-545/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699262918733d9cb2bbec9da8c2e551d081ccd3caa835a1377f09850ae7ea9b0 +size 6508 diff --git a/voi/images/voi-546/shape_S1.png b/voi/images/voi-546/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d884fe32779f9652c022e6375461d45e9156f7 --- /dev/null +++ b/voi/images/voi-546/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c407c7e338d68a807eb7455fa3f819319f15c2d9c551266868a6250be637a5 +size 5164 diff --git a/voi/images/voi-546/shape_S2.png b/voi/images/voi-546/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b4345fc16047098743d115249ad2cd33c52e56de --- /dev/null +++ b/voi/images/voi-546/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db34b9e0d858b2a71b67df35cb53fc19aae88cf1e5a80feaf670fbd598facc9 +size 5375 diff --git a/voi/images/voi-546/shape_S3.png b/voi/images/voi-546/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..d54c23d640ddf3206a4f0f7e3b05b1e2259da7c3 --- /dev/null +++ b/voi/images/voi-546/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7daee9defb99c6883e4e3ae68bf6253bf09bac97d3bc83115b6cca1a5b41e4bf +size 5426 diff --git a/voi/images/voi-546/shape_S4.png b/voi/images/voi-546/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..d92ee27019551d2b4c88e0750e384decb3a7dedb --- /dev/null +++ b/voi/images/voi-546/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214963a24947f3ab19e1e371813c7daa0ee16910baff121897ec8f62208b95fd +size 5246 diff --git a/voi/images/voi-546/target.png b/voi/images/voi-546/target.png new file mode 100644 index 0000000000000000000000000000000000000000..832d56b60f9ada900191f44a64ef927f7dc74670 --- /dev/null +++ b/voi/images/voi-546/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823a4a873d9eb1491bc9b830dbd0115bdc568a7c65da028410a175b8408a0aba +size 6604 diff --git a/voi/images/voi-547/shape_S1.png b/voi/images/voi-547/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..76e7ef3e9e69752a87779c6b6b249fb0f657d5c2 --- /dev/null +++ b/voi/images/voi-547/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39deb85fe15786a8af7f550cb7151ed08d41b4679f6379eb5b2e708f7a72eea3 +size 5193 diff --git a/voi/images/voi-547/shape_S2.png b/voi/images/voi-547/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd088031292fe5a53ff769c6b299a59dd553301 --- /dev/null +++ b/voi/images/voi-547/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80bb5211bd114b581614783b32913a57ebe570786539f1bd0de4e739dba90ae8 +size 6091 diff --git a/voi/images/voi-547/shape_S3.png b/voi/images/voi-547/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..e312e27e26d677cba3e94bcf404ffe1a51ee7f7d --- /dev/null +++ b/voi/images/voi-547/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15acf25f2b7b790a4eed1d12060f10e1c8aa7b0eb765ee100a29afbc87e88b39 +size 5384 diff --git a/voi/images/voi-547/shape_S4.png b/voi/images/voi-547/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..1efdf8e8cf4c139427e10ab6089d4c587720703c --- /dev/null +++ b/voi/images/voi-547/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df498e9faf8d3a8f42725ec022ba4f7ab92c0af1e65fcf303dc4b5d1dd884261 +size 5986 diff --git a/voi/images/voi-547/target.png b/voi/images/voi-547/target.png new file mode 100644 index 0000000000000000000000000000000000000000..b0677abf88275438c84f366c6260b08bdc327221 --- /dev/null +++ b/voi/images/voi-547/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4b070a9acc6c9d877fd621e32feb6ac279287c05781ce01f80df4812a8070e +size 6491 diff --git a/voi/images/voi-548/shape_S1.png b/voi/images/voi-548/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..73cabb8dc21314053d939c2d4572cae83039b424 --- /dev/null +++ b/voi/images/voi-548/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c0150b6daee678b55e3e006cc38396334eb5142b25fb75134375291de777be +size 5073 diff --git a/voi/images/voi-548/shape_S2.png b/voi/images/voi-548/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-548/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-548/shape_S3.png b/voi/images/voi-548/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4f10c8380f79ea1af51218a659aad251c7ab8d --- /dev/null +++ b/voi/images/voi-548/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6b49f49aa419bf42ea60404dadc774c3ca1e29c3bd21827243240046bfb610 +size 5516 diff --git a/voi/images/voi-548/shape_S4.png b/voi/images/voi-548/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e35f789a4dcabc6dae0013b26172fac47d9619c --- /dev/null +++ b/voi/images/voi-548/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327140a6e7dbdf0a2609a05bfd47c4a469b1e88c77838e13bfab4cb3fddbd113 +size 5224 diff --git a/voi/images/voi-548/target.png b/voi/images/voi-548/target.png new file mode 100644 index 0000000000000000000000000000000000000000..22a5043a3e6683634c1dcf6018db9b0eb3ab58a0 --- /dev/null +++ b/voi/images/voi-548/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a0f7e8d2c4f9ff62ff32c0df3e8a2e8d3810600e70b60d0b0db763128cd8b1 +size 6774 diff --git a/voi/images/voi-549/shape_S1.png b/voi/images/voi-549/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d8b3390a6560bfb826724b0acab106ded3502f --- /dev/null +++ b/voi/images/voi-549/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046552596e9d916cb343a2cfdc92fe802a98979e319b8ba8f89574401a605771 +size 5146 diff --git a/voi/images/voi-549/shape_S2.png b/voi/images/voi-549/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b4345fc16047098743d115249ad2cd33c52e56de --- /dev/null +++ b/voi/images/voi-549/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db34b9e0d858b2a71b67df35cb53fc19aae88cf1e5a80feaf670fbd598facc9 +size 5375 diff --git a/voi/images/voi-549/shape_S3.png b/voi/images/voi-549/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4f10c8380f79ea1af51218a659aad251c7ab8d --- /dev/null +++ b/voi/images/voi-549/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6b49f49aa419bf42ea60404dadc774c3ca1e29c3bd21827243240046bfb610 +size 5516 diff --git a/voi/images/voi-549/shape_S4.png b/voi/images/voi-549/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..1efdf8e8cf4c139427e10ab6089d4c587720703c --- /dev/null +++ b/voi/images/voi-549/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df498e9faf8d3a8f42725ec022ba4f7ab92c0af1e65fcf303dc4b5d1dd884261 +size 5986 diff --git a/voi/images/voi-549/target.png b/voi/images/voi-549/target.png new file mode 100644 index 0000000000000000000000000000000000000000..ccff38bec3f081b1b14e8cfe6737072a40561e8b --- /dev/null +++ b/voi/images/voi-549/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576dc69e725beb8eeb3d714559046d41da5238ec5cf6305924e1b5fbf952dba2 +size 6818 diff --git a/voi/images/voi-550/shape_S1.png b/voi/images/voi-550/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..7bfb02457f510038e058ac6cfb799b76250f8e8a --- /dev/null +++ b/voi/images/voi-550/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e968626d75508a198b8630c0cd1d414cbe87da964fb942c9a492eafba1460f +size 5154 diff --git a/voi/images/voi-550/shape_S2.png b/voi/images/voi-550/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-550/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-550/shape_S3.png b/voi/images/voi-550/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..744ea831d19507b14f4fb4e638137c73cfdf0221 --- /dev/null +++ b/voi/images/voi-550/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd973206216e95f65f6b237bd7fb94e9f8412f733a31155957c970bd50a9176 +size 6109 diff --git a/voi/images/voi-550/shape_S4.png b/voi/images/voi-550/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..d92ee27019551d2b4c88e0750e384decb3a7dedb --- /dev/null +++ b/voi/images/voi-550/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214963a24947f3ab19e1e371813c7daa0ee16910baff121897ec8f62208b95fd +size 5246 diff --git a/voi/images/voi-550/target.png b/voi/images/voi-550/target.png new file mode 100644 index 0000000000000000000000000000000000000000..a4fe6a3295d54885ec193604746f32e11953c4db --- /dev/null +++ b/voi/images/voi-550/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71442507ba057758b73e3681b0c1725952167a6532cb60b947307960a6bc250 +size 6552 diff --git a/voi/images/voi-551/shape_S1.png b/voi/images/voi-551/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..c9d47d55088e85ec4aa816541bbc84ababe87fb6 --- /dev/null +++ b/voi/images/voi-551/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60309a1ee37a19e807ae048600082ace3304b4441edc3299cdb2e6bd90f10a8 +size 5313 diff --git a/voi/images/voi-551/shape_S2.png b/voi/images/voi-551/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b66859fa86f67512518b3b151c379f068842d5 --- /dev/null +++ b/voi/images/voi-551/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa8775aef4e5f9bf133e9e129757fa30d5aa3d3d8c10b28740095e5a524fbed +size 5362 diff --git a/voi/images/voi-551/shape_S3.png b/voi/images/voi-551/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..e312e27e26d677cba3e94bcf404ffe1a51ee7f7d --- /dev/null +++ b/voi/images/voi-551/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15acf25f2b7b790a4eed1d12060f10e1c8aa7b0eb765ee100a29afbc87e88b39 +size 5384 diff --git a/voi/images/voi-551/shape_S4.png b/voi/images/voi-551/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa27d8bd046d757e2434523ea4bcdbcd4901635 --- /dev/null +++ b/voi/images/voi-551/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9db0ca1cfdf00c04a01133c064aef2a5a43bcf2c3774de5387fefc505141ec6 +size 5386 diff --git a/voi/images/voi-551/target.png b/voi/images/voi-551/target.png new file mode 100644 index 0000000000000000000000000000000000000000..d9a364f547badf72430b94776b0814b0bc60071c --- /dev/null +++ b/voi/images/voi-551/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0d5956ab8133bacb8f47ecf13dffd027633f9b1d836870a04b6ba416701ca9 +size 6719 diff --git a/voi/images/voi-552/shape_S1.png b/voi/images/voi-552/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-552/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-552/shape_S2.png b/voi/images/voi-552/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b116aa517527f645d8824b1f147c28ffdb4aa2a --- /dev/null +++ b/voi/images/voi-552/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77958b638af7f99c16f4fd7814691c9c863a7f0a221815903118fa8845f72371 +size 5366 diff --git a/voi/images/voi-552/shape_S3.png b/voi/images/voi-552/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccec69306c088b5b6b4b14938aad32a47636c330 --- /dev/null +++ b/voi/images/voi-552/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee294b8f95895294d78092ce8d2b44a3c81c3fb9634d4fcc37842a1e2995a49 +size 5372 diff --git a/voi/images/voi-552/shape_S4.png b/voi/images/voi-552/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..36bc49e6879be117df4a914f583dcc617043cf93 --- /dev/null +++ b/voi/images/voi-552/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e36b418894383bf0dadfd02cf580e5bb70743a06439a40aed5ffc752f53a9e +size 5169 diff --git a/voi/images/voi-552/target.png b/voi/images/voi-552/target.png new file mode 100644 index 0000000000000000000000000000000000000000..3ca59e0b09d39fc9a6a9e769d51156a32619c443 --- /dev/null +++ b/voi/images/voi-552/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb080068650c5a75b774ed63f76bd41fc994c08bd879c091fe1f5c09011f6e3 +size 6562 diff --git a/voi/images/voi-553/shape_S1.png b/voi/images/voi-553/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6c70bf574a8003ed6a5bd7d7bdc471f63e9ea4 --- /dev/null +++ b/voi/images/voi-553/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b2a761d2e384d07ff516284e8341460a35f665f698224023f75c49eeb6fca +size 5888 diff --git a/voi/images/voi-553/shape_S2.png b/voi/images/voi-553/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..da9a225a5375fe8567868acfac3b9d64722768ee --- /dev/null +++ b/voi/images/voi-553/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c58c8712bff989a55dfabae6d44bd3898820e243e7adc1b24e5619edc2ca953 +size 5366 diff --git a/voi/images/voi-553/shape_S3.png b/voi/images/voi-553/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c17e959d988de3fb9793ffd81e35de1f1fa1d8d --- /dev/null +++ b/voi/images/voi-553/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b63dcdb25123df96c941bf6954383f232c9183dac58101638ddfa8a30c71e01 +size 5387 diff --git a/voi/images/voi-553/shape_S4.png b/voi/images/voi-553/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..71f9d29f295c3d4885a57aff56b45bc5c1438eb0 --- /dev/null +++ b/voi/images/voi-553/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fc790bd5a4920a0daed389fca46a811ff6b6e88140f208e626b24300faa0f0 +size 5236 diff --git a/voi/images/voi-553/target.png b/voi/images/voi-553/target.png new file mode 100644 index 0000000000000000000000000000000000000000..9958286f8ebd1d6961e701bdc59014eb031194ea --- /dev/null +++ b/voi/images/voi-553/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432cb3d5ceff7d215f74b7b4d9bea2216c6fe8086dce7175c456d450ff1c7d70 +size 6568 diff --git a/voi/images/voi-554/shape_S1.png b/voi/images/voi-554/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..c9d47d55088e85ec4aa816541bbc84ababe87fb6 --- /dev/null +++ b/voi/images/voi-554/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60309a1ee37a19e807ae048600082ace3304b4441edc3299cdb2e6bd90f10a8 +size 5313 diff --git a/voi/images/voi-554/shape_S2.png b/voi/images/voi-554/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb901ec49b06dcf394a6d7c417c9ca12f1fd8f1 --- /dev/null +++ b/voi/images/voi-554/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e498c468783f5787b2cc2859c7aa54695980a22813dfa3e1c2b8ec5e8a9913 +size 5352 diff --git a/voi/images/voi-554/shape_S3.png b/voi/images/voi-554/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..d54c23d640ddf3206a4f0f7e3b05b1e2259da7c3 --- /dev/null +++ b/voi/images/voi-554/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7daee9defb99c6883e4e3ae68bf6253bf09bac97d3bc83115b6cca1a5b41e4bf +size 5426 diff --git a/voi/images/voi-554/shape_S4.png b/voi/images/voi-554/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa27d8bd046d757e2434523ea4bcdbcd4901635 --- /dev/null +++ b/voi/images/voi-554/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9db0ca1cfdf00c04a01133c064aef2a5a43bcf2c3774de5387fefc505141ec6 +size 5386 diff --git a/voi/images/voi-554/target.png b/voi/images/voi-554/target.png new file mode 100644 index 0000000000000000000000000000000000000000..c9f26b81070f060f35c11375597b030db7869e28 --- /dev/null +++ b/voi/images/voi-554/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa92156b3ad29c5e7dfab0a2c6dfdc10f95b9e49be0b0f6d79049d6c5ac0dfb3 +size 6839 diff --git a/voi/images/voi-555/shape_S1.png b/voi/images/voi-555/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6c70bf574a8003ed6a5bd7d7bdc471f63e9ea4 --- /dev/null +++ b/voi/images/voi-555/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b2a761d2e384d07ff516284e8341460a35f665f698224023f75c49eeb6fca +size 5888 diff --git a/voi/images/voi-555/shape_S2.png b/voi/images/voi-555/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..dffaa1a83f4c9e617676f509649e7515234875aa --- /dev/null +++ b/voi/images/voi-555/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7cad447e6146c256daea02fa919c589dd2888db9adaad5b548e23c8b46c53d +size 5408 diff --git a/voi/images/voi-555/shape_S3.png b/voi/images/voi-555/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..e312e27e26d677cba3e94bcf404ffe1a51ee7f7d --- /dev/null +++ b/voi/images/voi-555/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15acf25f2b7b790a4eed1d12060f10e1c8aa7b0eb765ee100a29afbc87e88b39 +size 5384 diff --git a/voi/images/voi-555/shape_S4.png b/voi/images/voi-555/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..1efdf8e8cf4c139427e10ab6089d4c587720703c --- /dev/null +++ b/voi/images/voi-555/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df498e9faf8d3a8f42725ec022ba4f7ab92c0af1e65fcf303dc4b5d1dd884261 +size 5986 diff --git a/voi/images/voi-555/target.png b/voi/images/voi-555/target.png new file mode 100644 index 0000000000000000000000000000000000000000..c4551cefcf93c6c0f69f0eb859fe8dbaeef19063 --- /dev/null +++ b/voi/images/voi-555/target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d919f1b90bd3dfc8cd9f540da7ef3fa742e68ce2e9f2b8fae1991ab7c652b9eb +size 6508 diff --git a/voi/images/voi-556/shape_S1.png b/voi/images/voi-556/shape_S1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7ac98b8b73cc3c9bb8bfb4c866681962d14c6 --- /dev/null +++ b/voi/images/voi-556/shape_S1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7317fb818a39addf65a5f787a373c43d9ca05d757b7f8103ae90940f6cd4bef1 +size 5139 diff --git a/voi/images/voi-556/shape_S2.png b/voi/images/voi-556/shape_S2.png new file mode 100644 index 0000000000000000000000000000000000000000..dffaa1a83f4c9e617676f509649e7515234875aa --- /dev/null +++ b/voi/images/voi-556/shape_S2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7cad447e6146c256daea02fa919c589dd2888db9adaad5b548e23c8b46c53d +size 5408 diff --git a/voi/images/voi-556/shape_S3.png b/voi/images/voi-556/shape_S3.png new file mode 100644 index 0000000000000000000000000000000000000000..d54c23d640ddf3206a4f0f7e3b05b1e2259da7c3 --- /dev/null +++ b/voi/images/voi-556/shape_S3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7daee9defb99c6883e4e3ae68bf6253bf09bac97d3bc83115b6cca1a5b41e4bf +size 5426 diff --git a/voi/images/voi-556/shape_S4.png b/voi/images/voi-556/shape_S4.png new file mode 100644 index 0000000000000000000000000000000000000000..0ebb763eb620eadc08e8617e01e0191254ab63e2 --- /dev/null +++ b/voi/images/voi-556/shape_S4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e56efe4ce17e98d89cf33a7e07a1c618de50830e964d9dd6d9dfb84e2fc8e90 +size 5250