Skip to content

Commit

Permalink
add export option to skip unchanged positions
Browse files Browse the repository at this point in the history
  • Loading branch information
timhendriks93 committed Jan 19, 2024
1 parent 018936c commit 7e9c7b6
Show file tree
Hide file tree
Showing 6 changed files with 254 additions and 131 deletions.
39 changes: 27 additions & 12 deletions addon/ops/base_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ class BaseExport:
COMMAND_END = 0x3E
LINE_BREAK = 10

skip_duplicates: bpy.props.BoolProperty(
name="Skip unchanged positions",
description="Skip positions which haven't changed since the last frame",
default=True
)

@classmethod
def poll(cls, context):
if not context.object or context.object.type != 'ARMATURE':
Expand Down Expand Up @@ -47,28 +53,37 @@ def execute(self, context):

return {'FINISHED'}

@classmethod
def get_command(cls, servo_id, position):
command = [cls.COMMAND_START, servo_id]
command += position.to_bytes(2, 'big')
command += [cls.COMMAND_END]

return command

@classmethod
def get_commands(cls, frames, positions):
def get_commands(self, frames, positions):
commands = []
last_positions = {}

for frame in range(frames):
for servo_id in range(255):
if servo_id not in positions:
continue

if servo_id not in last_positions:
last_positions[servo_id] = None

position = positions[servo_id][frame]
commands += cls.get_command(servo_id, position)
commands.append(cls.LINE_BREAK)

if self.skip_duplicates and last_positions[servo_id] == position:
continue

commands += self.get_command(servo_id, position)
last_positions[servo_id] = position

commands.append(self.LINE_BREAK)

return commands

def get_command(self, servo_id, position):
command = [self.COMMAND_START, servo_id]
command += position.to_bytes(2, 'big')
command += [self.COMMAND_END]

return command

@staticmethod
def get_time_meta(scene):
fps = scene.render.fps
Expand Down
2 changes: 2 additions & 0 deletions addon/ops/json_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class JsonExport(Operator, BaseExport, ExportHelper):
maxlen=255
)

skip_duplicates: None

def export(self, positions, filepath, context):
fps, frames, seconds = self.get_time_meta(context.scene)
filename = self.get_blend_filename()
Expand Down
2 changes: 1 addition & 1 deletion addon/utils/live_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def handler(cls, _scene, _depsgraph):
servo_animation = bpy.context.window_manager.servo_animation

for pose_bone in get_active_pose_bones(bpy.context.scene):
position, _angle, in_range = calculate_position(pose_bone, None)
position, _angle, in_range = calculate_position(pose_bone)

if not in_range:
continue
Expand Down
157 changes: 76 additions & 81 deletions examples/IK/ik.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

const byte FPS = 30;
const int FRAMES = 100;
const int LENGTH = 1100;
const int LENGTH = 1040;

const byte PROGMEM ANIMATION_DATA[LENGTH] = {
0x3c, 0x00, 0x01, 0x77, 0x3e, 0x3c, 0x01, 0x01, 0x77, 0x3e, 0x0a, 0x3c,
Expand All @@ -29,84 +29,79 @@ const byte PROGMEM ANIMATION_DATA[LENGTH] = {
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x96, 0x3e, 0x3c, 0x01, 0x01, 0xb2, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x98, 0x3e, 0x3c, 0x01, 0x01, 0xbb, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x9a, 0x3e, 0x3c, 0x01, 0x01, 0xc2, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x9a, 0x3e, 0x3c, 0x01, 0x01, 0xc9, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x99, 0x3e, 0x3c, 0x01, 0x01, 0xcf, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x96, 0x3e, 0x3c, 0x01, 0x01, 0xd4, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x92,
0x3e, 0x3c, 0x01, 0x01, 0xd7, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x8c, 0x3e,
0x3c, 0x01, 0x01, 0xd8, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x86, 0x3e, 0x3c,
0x01, 0x01, 0xd7, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x7e, 0x3e, 0x3c, 0x01,
0x01, 0xd5, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x75, 0x3e, 0x3c, 0x01, 0x01,
0xd2, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x6c, 0x3e, 0x3c, 0x01, 0x01, 0xce,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x63, 0x3e, 0x3c, 0x01, 0x01, 0xc9, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x5a, 0x3e, 0x3c, 0x01, 0x01, 0xc4, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x52, 0x3e, 0x3c, 0x01, 0x01, 0xbf, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x4a, 0x3e, 0x3c, 0x01, 0x01, 0xb9, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x43, 0x3e, 0x3c, 0x01, 0x01, 0xb5, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x3e, 0x3e, 0x3c, 0x01, 0x01, 0xb0, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x3a,
0x3e, 0x3c, 0x01, 0x01, 0xac, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x37, 0x3e,
0x3c, 0x01, 0x01, 0xa8, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x35, 0x3e, 0x3c,
0x01, 0x01, 0xa4, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x33, 0x3e, 0x3c, 0x01,
0x01, 0xa0, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x31, 0x3e, 0x3c, 0x01, 0x01,
0x9b, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x31, 0x3e, 0x3c, 0x01, 0x01, 0x97,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x31, 0x3e, 0x3c, 0x01, 0x01, 0x92, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x31, 0x3e, 0x3c, 0x01, 0x01, 0x8e, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x32, 0x3e, 0x3c, 0x01, 0x01, 0x8a, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x33, 0x3e, 0x3c, 0x01, 0x01, 0x85, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x35, 0x3e, 0x3c, 0x01, 0x01, 0x80, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x37, 0x3e, 0x3c, 0x01, 0x01, 0x7c, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x3a,
0x3e, 0x3c, 0x01, 0x01, 0x77, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x3d, 0x3e,
0x3c, 0x01, 0x01, 0x72, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x40, 0x3e, 0x3c,
0x01, 0x01, 0x6e, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x43, 0x3e, 0x3c, 0x01,
0x01, 0x69, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x47, 0x3e, 0x3c, 0x01, 0x01,
0x64, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x4b, 0x3e, 0x3c, 0x01, 0x01, 0x60,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x4f, 0x3e, 0x3c, 0x01, 0x01, 0x5b, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x53, 0x3e, 0x3c, 0x01, 0x01, 0x56, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x57, 0x3e, 0x3c, 0x01, 0x01, 0x51, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x5b, 0x3e, 0x3c, 0x01, 0x01, 0x4d, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x5f, 0x3e, 0x3c, 0x01, 0x01, 0x48, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x64, 0x3e, 0x3c, 0x01, 0x01, 0x44, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x68,
0x3e, 0x3c, 0x01, 0x01, 0x3f, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x6c, 0x3e,
0x3c, 0x01, 0x01, 0x3b, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x71, 0x3e, 0x3c,
0x01, 0x01, 0x38, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x76, 0x3e, 0x3c, 0x01,
0x01, 0x35, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x7c, 0x3e, 0x3c, 0x01, 0x01,
0x34, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x82, 0x3e, 0x3c, 0x01, 0x01, 0x33,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x88, 0x3e, 0x3c, 0x01, 0x01, 0x32, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x8e, 0x3e, 0x3c, 0x01, 0x01, 0x32, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x94, 0x3e, 0x3c, 0x01, 0x01, 0x32, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x9a, 0x3e, 0x3c, 0x01, 0x01, 0x33, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x9f, 0x3e, 0x3c, 0x01, 0x01, 0x34, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0xa4, 0x3e, 0x3c, 0x01, 0x01, 0x35, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa9,
0x3e, 0x3c, 0x01, 0x01, 0x36, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xad, 0x3e,
0x3c, 0x01, 0x01, 0x37, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb0, 0x3e, 0x3c,
0x01, 0x01, 0x38, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb3, 0x3e, 0x3c, 0x01,
0x01, 0x39, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb4, 0x3e, 0x3c, 0x01, 0x01,
0x39, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb5, 0x3e, 0x3c, 0x01, 0x01, 0x39,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb5, 0x3e, 0x3c, 0x01, 0x01, 0x39, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0xb4, 0x3e, 0x3c, 0x01, 0x01, 0x3a, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0xb3, 0x3e, 0x3c, 0x01, 0x01, 0x3b, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0xb2, 0x3e, 0x3c, 0x01, 0x01, 0x3c, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0xb0, 0x3e, 0x3c, 0x01, 0x01, 0x3e, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0xae, 0x3e, 0x3c, 0x01, 0x01, 0x40, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xac,
0x3e, 0x3c, 0x01, 0x01, 0x42, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xaa, 0x3e,
0x3c, 0x01, 0x01, 0x44, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa7, 0x3e, 0x3c,
0x01, 0x01, 0x47, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa5, 0x3e, 0x3c, 0x01,
0x01, 0x49, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa2, 0x3e, 0x3c, 0x01, 0x01,
0x4c, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x9f, 0x3e, 0x3c, 0x01, 0x01, 0x4f,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x9c, 0x3e, 0x3c, 0x01, 0x01, 0x52, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x99, 0x3e, 0x3c, 0x01, 0x01, 0x55, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x96, 0x3e, 0x3c, 0x01, 0x01, 0x58, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x93, 0x3e, 0x3c, 0x01, 0x01, 0x5b, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x90, 0x3e, 0x3c, 0x01, 0x01, 0x5e, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x8d, 0x3e, 0x3c, 0x01, 0x01, 0x61, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x8a,
0x3e, 0x3c, 0x01, 0x01, 0x64, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x87, 0x3e,
0x3c, 0x01, 0x01, 0x67, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x84, 0x3e, 0x3c,
0x01, 0x01, 0x6a, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x82, 0x3e, 0x3c, 0x01,
0x01, 0x6c, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x80, 0x3e, 0x3c, 0x01, 0x01,
0x6e, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x7d, 0x3e, 0x3c, 0x01, 0x01, 0x71,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x7c, 0x3e, 0x3c, 0x01, 0x01, 0x72, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x7a, 0x3e, 0x3c, 0x01, 0x01, 0x74, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x79, 0x3e, 0x3c, 0x01, 0x01, 0x75, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x78, 0x3e, 0x3c, 0x01, 0x01, 0x76, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x77, 0x3e, 0x3c, 0x01, 0x01, 0x77, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x77, 0x3e, 0x3c, 0x01, 0x01, 0x77, 0x3e, 0x0a,
0x01, 0x01, 0xc9, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x99, 0x3e, 0x3c, 0x01,
0x01, 0xcf, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x96, 0x3e, 0x3c, 0x01, 0x01,
0xd4, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x92, 0x3e, 0x3c, 0x01, 0x01, 0xd7,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x8c, 0x3e, 0x3c, 0x01, 0x01, 0xd8, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x86, 0x3e, 0x3c, 0x01, 0x01, 0xd7, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x7e, 0x3e, 0x3c, 0x01, 0x01, 0xd5, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x75, 0x3e, 0x3c, 0x01, 0x01, 0xd2, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x6c, 0x3e, 0x3c, 0x01, 0x01, 0xce, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x63, 0x3e, 0x3c, 0x01, 0x01, 0xc9, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x5a,
0x3e, 0x3c, 0x01, 0x01, 0xc4, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x52, 0x3e,
0x3c, 0x01, 0x01, 0xbf, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x4a, 0x3e, 0x3c,
0x01, 0x01, 0xb9, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x43, 0x3e, 0x3c, 0x01,
0x01, 0xb5, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x3e, 0x3e, 0x3c, 0x01, 0x01,
0xb0, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x3a, 0x3e, 0x3c, 0x01, 0x01, 0xac,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x37, 0x3e, 0x3c, 0x01, 0x01, 0xa8, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x35, 0x3e, 0x3c, 0x01, 0x01, 0xa4, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x33, 0x3e, 0x3c, 0x01, 0x01, 0xa0, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x31, 0x3e, 0x3c, 0x01, 0x01, 0x9b, 0x3e, 0x0a, 0x3c, 0x01,
0x01, 0x97, 0x3e, 0x0a, 0x3c, 0x01, 0x01, 0x92, 0x3e, 0x0a, 0x3c, 0x01,
0x01, 0x8e, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x32, 0x3e, 0x3c, 0x01, 0x01,
0x8a, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x33, 0x3e, 0x3c, 0x01, 0x01, 0x85,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x35, 0x3e, 0x3c, 0x01, 0x01, 0x80, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x37, 0x3e, 0x3c, 0x01, 0x01, 0x7c, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x3a, 0x3e, 0x3c, 0x01, 0x01, 0x77, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x3d, 0x3e, 0x3c, 0x01, 0x01, 0x72, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x40, 0x3e, 0x3c, 0x01, 0x01, 0x6e, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x43, 0x3e, 0x3c, 0x01, 0x01, 0x69, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x47,
0x3e, 0x3c, 0x01, 0x01, 0x64, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x4b, 0x3e,
0x3c, 0x01, 0x01, 0x60, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x4f, 0x3e, 0x3c,
0x01, 0x01, 0x5b, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x53, 0x3e, 0x3c, 0x01,
0x01, 0x56, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x57, 0x3e, 0x3c, 0x01, 0x01,
0x51, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x5b, 0x3e, 0x3c, 0x01, 0x01, 0x4d,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x5f, 0x3e, 0x3c, 0x01, 0x01, 0x48, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x64, 0x3e, 0x3c, 0x01, 0x01, 0x44, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x68, 0x3e, 0x3c, 0x01, 0x01, 0x3f, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x6c, 0x3e, 0x3c, 0x01, 0x01, 0x3b, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x71, 0x3e, 0x3c, 0x01, 0x01, 0x38, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x76, 0x3e, 0x3c, 0x01, 0x01, 0x35, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x7c,
0x3e, 0x3c, 0x01, 0x01, 0x34, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x82, 0x3e,
0x3c, 0x01, 0x01, 0x33, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x88, 0x3e, 0x3c,
0x01, 0x01, 0x32, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x8e, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x94, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x9a, 0x3e, 0x3c, 0x01,
0x01, 0x33, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x9f, 0x3e, 0x3c, 0x01, 0x01,
0x34, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa4, 0x3e, 0x3c, 0x01, 0x01, 0x35,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa9, 0x3e, 0x3c, 0x01, 0x01, 0x36, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0xad, 0x3e, 0x3c, 0x01, 0x01, 0x37, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0xb0, 0x3e, 0x3c, 0x01, 0x01, 0x38, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0xb3, 0x3e, 0x3c, 0x01, 0x01, 0x39, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0xb4, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb5, 0x3e, 0x0a, 0x0a, 0x3c,
0x00, 0x01, 0xb4, 0x3e, 0x3c, 0x01, 0x01, 0x3a, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0xb3, 0x3e, 0x3c, 0x01, 0x01, 0x3b, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0xb2, 0x3e, 0x3c, 0x01, 0x01, 0x3c, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xb0,
0x3e, 0x3c, 0x01, 0x01, 0x3e, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xae, 0x3e,
0x3c, 0x01, 0x01, 0x40, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xac, 0x3e, 0x3c,
0x01, 0x01, 0x42, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xaa, 0x3e, 0x3c, 0x01,
0x01, 0x44, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa7, 0x3e, 0x3c, 0x01, 0x01,
0x47, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa5, 0x3e, 0x3c, 0x01, 0x01, 0x49,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0xa2, 0x3e, 0x3c, 0x01, 0x01, 0x4c, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x9f, 0x3e, 0x3c, 0x01, 0x01, 0x4f, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x9c, 0x3e, 0x3c, 0x01, 0x01, 0x52, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x99, 0x3e, 0x3c, 0x01, 0x01, 0x55, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x96, 0x3e, 0x3c, 0x01, 0x01, 0x58, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x93, 0x3e, 0x3c, 0x01, 0x01, 0x5b, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x90,
0x3e, 0x3c, 0x01, 0x01, 0x5e, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x8d, 0x3e,
0x3c, 0x01, 0x01, 0x61, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x8a, 0x3e, 0x3c,
0x01, 0x01, 0x64, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x87, 0x3e, 0x3c, 0x01,
0x01, 0x67, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x84, 0x3e, 0x3c, 0x01, 0x01,
0x6a, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x82, 0x3e, 0x3c, 0x01, 0x01, 0x6c,
0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x80, 0x3e, 0x3c, 0x01, 0x01, 0x6e, 0x3e,
0x0a, 0x3c, 0x00, 0x01, 0x7d, 0x3e, 0x3c, 0x01, 0x01, 0x71, 0x3e, 0x0a,
0x3c, 0x00, 0x01, 0x7c, 0x3e, 0x3c, 0x01, 0x01, 0x72, 0x3e, 0x0a, 0x3c,
0x00, 0x01, 0x7a, 0x3e, 0x3c, 0x01, 0x01, 0x74, 0x3e, 0x0a, 0x3c, 0x00,
0x01, 0x79, 0x3e, 0x3c, 0x01, 0x01, 0x75, 0x3e, 0x0a, 0x3c, 0x00, 0x01,
0x78, 0x3e, 0x3c, 0x01, 0x01, 0x76, 0x3e, 0x0a, 0x3c, 0x00, 0x01, 0x77,
0x3e, 0x3c, 0x01, 0x01, 0x77, 0x3e, 0x0a, 0x0a,
};
Loading

0 comments on commit 7e9c7b6

Please sign in to comment.