/*********************************
Certainly! Creating custom animations for an OLED display (such as the SSD1306) involves a few steps. Let’s break it down:
Understand the Basics:
An OLED display consists of individual pixels that can be turned on or off.
To create animations, you’ll manipulate these pixels to display different frames over time.
Choose an Animation Tool:
There are online tools that help you generate animation frames. For example:
Walkway Animator: This free online tool allows you to create animations for various displays, including SSD1306. You can design frames and generate code for your animations 1.
Generate Animation Frames:
Use an image-to-byte-array converter (like image2cpp) to create frames.
Each frame represents a specific state of your animation.
Write Code:
Define your frames as byte arrays in your Arduino sketch.
Use loops and timing to display frames sequentially on the OLED display.
Adjust parameters like frame delay and animation speed.
Test and Iterate:
Upload your code to your Arduino board.
Observe the animation on the OLED display.
Tweak frame order, timing, and other parameters as needed.
Advanced Techniques:
You can create more complex animations by combining multiple frames,
adding transitions, and adjusting pixel positions.
Explore libraries like Adafruit_GFX or u8g2 for additional
features and functions.
Remember that creating animations is a creative process,
so feel free to experiment and have fun!
by arvind
*******************************************************/
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#define SCREEN_I2C_ADDR 0x3C // or 0x3C
#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
#define OLED_RST_PIN -1 // Reset pin (-1 if not available)
Adafruit_SSD1306 display(128, 64, &Wire, OLED_RST_PIN);
// OLED Animation: alarm clock
// Code auto-generated by https://wokwi.com/animator, graphics by icons8.com
#define FRAME_DELAY (42)
#define FRAME_WIDTH (64)
#define FRAME_HEIGHT (64)
#define FRAME_COUNT (sizeof(frames) / sizeof(frames[0]))
const byte PROGMEM frames[][512] = {
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,0,0,0,0,28,56,8,112,0,0,0,0,14,16,0,112,56,0,0,0,14,0,0,224,60,0,0,0,7,0,0,192,30,0,0,0,3,0,1,192,15,0,0,0,3,128,1,128,7,128,0,0,1,128,3,128,3,192,0,0,1,192,3,128,1,224,0,0,1,192,3,128,0,240,0,0,1,192,3,0,0,120,0,0,0,192,3,0,0,60,0,0,0,192,7,0,0,30,0,0,0,224,7,0,0,15,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,8,0,0,0,28,56,8,112,28,0,0,0,14,16,0,112,14,0,0,0,14,0,0,224,15,0,0,0,7,0,0,192,7,128,0,0,3,0,1,192,3,128,0,0,3,128,1,128,1,192,0,0,1,128,3,128,0,224,0,0,1,192,3,128,0,112,0,0,1,192,3,128,0,120,0,0,1,192,3,0,0,56,0,0,0,192,3,0,0,28,0,0,0,192,7,0,0,14,0,0,0,224,7,0,0,7,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,6,0,0,0,56,120,28,56,7,0,0,0,28,56,8,112,7,0,0,0,14,16,0,112,3,128,0,0,14,0,0,224,3,192,0,0,7,0,0,192,1,192,0,0,3,0,1,192,0,224,0,0,3,128,1,128,0,240,0,0,1,128,3,128,0,112,0,0,1,192,3,128,0,56,0,0,1,192,3,128,0,60,0,0,1,192,3,0,0,28,0,0,0,192,3,0,0,14,0,0,0,192,7,0,0,15,0,0,0,224,7,0,0,7,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,1,0,0,0,120,248,30,28,3,128,0,0,56,120,28,56,1,192,0,0,28,56,8,112,1,192,0,0,14,16,0,112,0,224,0,0,14,0,0,224,0,224,0,0,7,0,0,192,0,112,0,0,3,0,1,192,0,112,0,0,3,128,1,128,0,56,0,0,1,128,3,128,0,56,0,0,1,192,3,128,0,28,0,0,1,192,3,128,0,28,0,0,1,192,3,0,0,14,0,0,0,192,3,0,0,14,0,0,0,192,7,0,0,7,0,0,0,224,7,0,0,7,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,224,0,0,120,248,30,28,0,224,0,0,56,120,28,56,0,96,0,0,28,56,8,112,0,112,0,0,14,16,0,112,0,112,0,0,14,0,0,224,0,56,0,0,7,0,0,192,0,56,0,0,3,0,1,192,0,24,0,0,3,128,1,128,0,28,0,0,1,128,3,128,0,28,0,0,1,192,3,128,0,14,0,0,1,192,3,128,0,14,0,0,1,192,3,0,0,6,0,0,0,192,3,0,0,7,0,0,0,192,7,0,0,7,0,0,0,224,7,0,0,3,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,48,0,0,241,216,31,30,0,48,0,0,120,248,30,28,0,56,0,0,56,120,28,56,0,56,0,0,28,56,8,112,0,24,0,0,14,16,0,112,0,28,0,0,14,0,0,224,0,28,0,0,7,0,0,192,0,28,0,0,3,0,1,192,0,12,0,0,3,128,1,128,0,14,0,0,1,128,3,128,0,14,0,0,1,192,3,128,0,6,0,0,1,192,3,128,0,7,0,0,1,192,3,0,0,7,0,0,0,192,3,0,0,7,0,0,0,192,7,0,0,3,0,0,0,224,7,0,0,3,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,127,248,0,0,0,0,0,0,248,126,0,0,127,192,0,0,56,15,0,1,255,192,0,0,28,3,128,3,195,192,0,0,15,3,192,7,3,128,7,224,7,129,192,14,7,0,255,255,3,192,224,28,14,7,255,255,224,224,224,24,28,31,192,3,248,112,96,56,56,62,0,0,124,60,96,48,120,248,0,0,31,30,112,112,113,224,0,0,7,143,112,112,227,192,0,0,3,195,240,97,199,0,8,0,0,225,224,99,142,0,28,0,0,112,224,103,28,0,28,0,0,56,96,127,56,0,12,0,0,28,0,126,120,0,12,0,0,30,0,60,112,0,14,0,0,14,0,56,224,0,14,0,0,7,0,48,224,0,14,0,0,7,0,1,192,0,6,0,0,3,128,1,192,0,6,0,0,3,128,1,128,0,7,0,0,1,128,3,128,0,7,0,0,1,192,3,128,0,7,0,0,1,192,3,0,0,3,0,0,0,192,3,0,0,3,0,0,0,192,7,0,0,3,128,0,0,224,7,0,0,3,128,0,0,224,7,0,0,3,128,0,0,224,7,0,7,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,1,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,120,0,0,0,0,30,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,31,224,0,0,7,248,0,0,60,248,0,0,31,60,0,0,120,126,0,0,126,30,0,0,240,31,192,3,248,15,0,1,224,7,255,255,224,7,128,3,192,0,255,255,0,3,192,1,128,0,31,248,0,1,128,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,255,240,0,0,0,0,0,3,224,248,0,0,0,0,0,0,224,30,0,0,0,0,0,0,120,15,0,0,255,128,0,0,60,7,128,3,255,128,0,0,14,3,128,7,135,0,15,240,7,129,192,14,14,0,255,255,3,193,192,28,28,7,255,255,224,224,192,56,28,31,192,3,248,120,192,48,56,126,0,0,126,60,224,112,112,248,0,0,31,14,224,96,225,224,0,0,7,135,192,224,227,192,0,0,3,195,192,225,199,0,6,0,0,224,192,195,142,0,6,0,0,112,64,231,28,0,6,0,0,56,0,231,56,0,6,0,0,28,0,238,120,0,7,0,0,30,0,124,112,0,7,0,0,14,0,120,224,0,7,0,0,7,0,120,224,0,7,0,0,7,0,49,192,0,7,0,0,3,128,33,192,0,3,0,0,3,128,1,128,0,3,0,0,1,128,3,128,0,3,0,0,1,192,3,128,0,3,0,0,1,192,3,0,0,3,128,0,0,192,3,0,0,3,128,0,0,192,7,0,0,3,128,0,0,224,7,0,0,3,128,0,0,224,7,0,0,3,128,0,0,224,7,0,7,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,120,0,0,0,0,30,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,192,0,0,3,240,0,0,31,224,0,0,7,248,0,0,60,248,0,0,31,60,0,0,120,126,0,0,126,30,0,0,240,31,192,3,248,15,0,1,224,7,255,255,224,7,128,3,192,0,255,255,0,3,192,1,128,0,7,224,0,1,128},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,2,0,1,227,152,27,143,0,3,0,0,241,216,31,30,0,3,0,0,120,248,30,28,0,3,0,0,56,120,28,56,0,3,0,0,28,56,8,112,0,3,0,0,14,16,0,112,0,3,0,0,14,0,0,224,0,3,128,0,7,0,0,192,0,3,128,0,3,0,1,192,0,3,128,0,3,128,1,128,0,3,128,0,1,128,3,128,0,3,128,0,1,192,3,128,0,3,128,0,1,192,3,128,0,3,128,0,1,192,3,0,0,3,128,0,0,192,3,0,0,3,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,248,0,0,0,0,0,0,7,255,0,0,0,0,0,0,31,255,192,0,0,0,0,0,60,7,128,0,0,0,0,0,112,15,0,0,0,0,0,0,224,60,0,0,1,255,0,1,192,120,0,0,1,255,128,1,128,240,1,128,0,231,224,3,131,192,127,254,0,112,240,3,7,135,255,255,224,112,56,3,15,15,224,7,240,56,28,7,60,63,0,0,252,28,28,7,120,248,0,0,31,14,14,3,241,224,0,0,7,142,6,3,195,192,0,0,3,199,7,3,135,128,1,128,1,227,135,3,14,0,3,128,0,113,195,0,28,0,3,128,0,57,199,0,60,0,3,128,0,60,231,0,56,0,3,128,0,28,119,0,112,0,3,128,0,14,63,0,224,0,1,128,0,7,62,0,224,0,1,128,0,7,30,1,192,0,1,128,0,3,140,1,192,0,1,128,0,3,132,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,31,224,0,0,7,248,0,0,60,240,0,0,15,60,0,0,120,124,0,0,62,30,0,0,240,31,128,1,248,15,0,1,224,7,254,127,224,7,128,3,192,1,255,255,128,3,192,1,128,0,63,252,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,1,128,1,227,152,27,143,0,1,128,0,241,216,31,30,0,1,128,0,120,248,30,28,0,1,128,0,56,120,28,56,0,1,128,0,28,56,8,112,0,1,128,0,14,16,0,112,0,1,128,0,14,0,0,224,0,1,128,0,7,0,0,192,0,1,128,0,3,0,1,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,255,240,0,0,0,0,0,3,224,248,0,0,0,0,0,0,224,30,0,0,0,0,0,0,120,15,0,0,255,128,0,0,60,7,128,3,255,128,0,0,14,3,128,7,135,0,15,240,7,129,192,14,14,0,255,255,3,193,192,28,28,7,255,255,224,224,192,56,28,31,192,3,248,120,192,48,56,126,0,0,126,60,224,112,112,248,0,0,31,14,224,96,225,224,0,0,7,135,192,224,227,192,0,0,3,195,192,225,199,0,1,128,0,224,192,195,142,0,1,128,0,112,64,231,28,0,1,128,0,56,0,231,56,0,1,128,0,28,0,238,120,0,1,128,0,30,0,124,112,0,1,128,0,14,0,120,224,0,1,128,0,7,0,120,224,0,1,128,0,7,0,49,192,0,1,128,0,3,128,33,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,0,3,128,0,0,224,7,0,7,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,120,0,0,0,0,30,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,192,0,0,3,240,0,0,31,224,0,0,7,248,0,0,60,248,0,0,31,60,0,0,120,126,0,0,126,30,0,0,240,31,192,3,248,15,0,1,224,7,255,255,224,7,128,3,192,0,255,255,0,3,192,1,128,0,7,224,0,1,128},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,1,128,1,227,152,27,143,0,1,128,0,241,216,31,30,0,1,128,0,120,248,30,28,0,1,128,0,56,120,28,56,0,1,128,0,28,56,8,112,0,1,128,0,14,16,0,112,0,1,128,0,14,0,0,224,0,1,128,0,7,0,0,192,0,1,128,0,3,0,1,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,248,0,0,0,0,0,0,7,255,0,0,0,0,0,0,31,255,192,0,0,0,0,0,60,7,128,0,0,0,0,0,112,15,0,0,0,0,0,0,224,60,0,0,1,255,0,1,192,120,0,0,1,255,128,1,128,240,1,128,0,231,224,3,131,192,127,254,0,112,240,3,7,135,255,255,224,112,56,3,15,15,224,7,240,56,28,7,60,63,0,0,252,28,28,7,120,248,0,0,31,14,14,3,241,224,0,0,7,142,6,3,195,192,0,0,3,199,7,3,135,128,1,128,1,227,135,3,14,0,1,128,0,113,195,0,28,0,1,128,0,57,199,0,60,0,1,128,0,60,231,0,56,0,1,128,0,28,119,0,112,0,1,128,0,14,63,0,224,0,1,128,0,7,62,0,224,0,1,128,0,7,30,1,192,0,1,128,0,3,140,1,192,0,1,128,0,3,132,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,31,224,0,0,7,248,0,0,60,240,0,0,15,60,0,0,120,124,0,0,62,30,0,0,240,31,128,1,248,15,0,1,224,7,254,127,224,7,128,3,192,1,255,255,128,3,192,1,128,0,63,252,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,1,128,1,227,152,27,143,0,1,128,0,241,216,31,30,0,1,128,0,120,248,30,28,0,1,128,0,56,120,28,56,0,1,128,0,28,56,8,112,0,1,128,0,14,16,0,112,0,1,128,0,14,0,0,224,0,1,128,0,7,0,0,192,0,1,128,0,3,0,1,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,255,240,0,0,0,0,0,3,224,248,0,0,0,0,0,0,224,30,0,0,0,0,0,0,120,15,0,0,255,128,0,0,60,7,128,3,255,128,0,0,14,3,128,7,135,0,15,240,7,129,192,14,14,0,255,255,3,193,192,28,28,7,255,255,224,224,192,56,28,31,192,3,248,120,192,48,56,126,0,0,126,60,224,112,112,248,0,0,31,14,224,96,225,224,0,0,7,135,192,224,227,192,0,0,3,195,192,225,199,0,1,128,0,224,192,195,142,0,1,128,0,112,64,231,28,0,1,128,0,56,0,231,56,0,1,128,0,28,0,238,120,0,1,128,0,30,0,124,112,0,1,128,0,14,0,120,224,0,1,128,0,7,0,120,224,0,1,128,0,7,0,49,192,0,1,128,0,3,128,33,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,0,3,128,0,0,224,7,0,7,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,120,0,0,0,0,30,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,192,0,0,3,240,0,0,31,224,0,0,7,248,0,0,60,248,0,0,31,60,0,0,120,126,0,0,126,30,0,0,240,31,192,3,248,15,0,1,224,7,255,255,224,7,128,3,192,0,255,255,0,3,192,1,128,0,7,224,0,1,128},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,1,128,1,227,152,27,143,0,1,128,0,241,216,31,30,0,1,128,0,120,248,30,28,0,1,128,0,56,120,28,56,0,1,128,0,28,56,8,112,0,1,128,0,14,16,0,112,0,1,128,0,14,0,0,224,0,1,128,0,7,0,0,192,0,1,128,0,3,0,1,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,248,0,0,0,0,0,0,7,255,0,0,0,0,0,0,31,255,192,0,0,0,0,0,60,7,128,0,0,0,0,0,112,15,0,0,0,0,0,0,224,60,0,0,1,255,0,1,192,120,0,0,1,255,128,1,128,240,1,128,0,231,224,3,131,192,127,254,0,112,240,3,7,135,255,255,224,112,56,3,15,15,224,7,240,56,28,7,60,63,0,0,252,28,28,7,120,248,0,0,31,14,14,3,241,224,0,0,7,142,6,3,195,192,0,0,3,199,7,3,135,128,1,128,1,227,135,3,14,0,1,128,0,113,195,0,28,0,1,128,0,57,199,0,60,0,1,128,0,60,231,0,56,0,1,128,0,28,119,0,112,0,1,128,0,14,63,0,224,0,1,128,0,7,62,0,224,0,1,128,0,7,30,1,192,0,1,128,0,3,140,1,192,0,1,128,0,3,132,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,31,224,0,0,7,248,0,0,60,240,0,0,15,60,0,0,120,124,0,0,62,30,0,0,240,31,128,1,248,15,0,1,224,7,254,127,224,7,128,3,192,1,255,255,128,3,192,1,128,0,63,252,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,1,128,1,227,152,27,143,0,1,128,0,241,216,31,30,0,1,128,0,120,248,30,28,0,1,128,0,56,120,28,56,0,1,128,0,28,56,8,112,0,1,128,0,14,16,0,112,0,1,128,0,14,0,0,224,0,1,128,0,7,0,0,192,0,1,128,0,3,0,1,192,0,1,128,0,3,128,1,128,0,1,128,0,1,128,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,128,0,1,128,0,1,192,3,0,0,1,128,0,0,192,3,0,0,1,128,0,0,192,7,0,0,1,128,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,128,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,255,240,0,0,0,0,0,3,224,248,0,0,0,0,0,0,224,30,0,0,0,0,0,0,120,15,0,0,255,128,0,0,60,7,128,3,255,128,0,0,14,3,128,7,135,0,15,240,7,129,192,14,14,0,255,255,3,193,192,28,28,7,255,255,224,224,192,56,28,31,192,3,248,120,192,48,56,126,0,0,126,60,224,112,112,248,0,0,31,14,224,96,225,224,0,0,7,135,192,224,227,192,0,0,3,195,192,225,199,0,0,96,0,224,192,195,142,0,0,96,0,112,64,231,28,0,0,96,0,56,0,231,56,0,0,96,0,28,0,238,120,0,0,224,0,30,0,124,112,0,0,224,0,14,0,120,224,0,0,224,0,7,0,120,224,0,0,224,0,7,0,49,192,0,0,224,0,3,128,33,192,0,0,192,0,3,128,1,128,0,0,192,0,1,128,3,128,0,0,192,0,1,192,3,128,0,1,192,0,1,192,3,0,0,1,192,0,0,192,3,0,0,1,192,0,0,192,7,0,0,1,192,0,0,224,7,0,0,1,192,0,0,224,7,0,0,1,128,0,0,224,7,0,7,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,120,0,0,0,0,30,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,192,0,0,3,240,0,0,31,224,0,0,7,248,0,0,60,248,0,0,31,60,0,0,120,126,0,0,126,30,0,0,240,31,192,3,248,15,0,1,224,7,255,255,224,7,128,3,192,0,255,255,0,3,192,1,128,0,7,224,0,1,128},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,0,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,1,255,255,128,224,112,12,14,15,252,63,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,112,240,0,0,15,14,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,3,0,120,248,30,28,0,0,3,128,56,120,28,56,0,0,7,0,28,56,8,112,0,0,7,0,14,16,0,112,0,0,14,0,14,0,0,224,0,0,14,0,7,0,0,192,0,0,12,0,3,0,1,192,0,0,28,0,3,128,1,128,0,0,24,0,1,128,3,128,0,0,56,0,1,192,3,128,0,0,56,0,1,192,3,128,0,0,112,0,1,192,3,0,0,0,112,0,0,192,3,0,0,0,224,0,0,192,7,0,0,0,224,0,0,224,7,0,0,0,192,0,0,224,7,0,7,255,192,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,252,0,0,63,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0},
{0,0,248,0,0,0,0,0,0,7,255,0,0,0,0,0,0,31,255,192,0,0,0,0,0,60,7,128,0,0,0,0,0,112,15,0,0,0,0,0,0,224,60,0,0,1,255,0,1,192,120,0,0,1,255,128,1,128,240,1,128,0,231,224,3,131,192,127,254,0,112,240,3,7,135,255,255,224,112,56,3,15,15,224,7,240,56,28,7,60,63,0,0,252,28,28,7,120,248,0,0,31,14,14,3,241,224,0,0,7,142,6,3,195,192,0,0,3,199,7,3,135,128,0,0,1,227,135,3,14,0,0,0,0,113,195,0,28,0,0,0,0,57,199,0,60,0,0,0,0,60,231,0,56,0,0,0,0,28,119,0,112,0,0,0,0,14,63,0,224,0,0,0,4,7,62,0,224,0,0,0,14,7,30,1,192,0,0,0,60,3,140,1,192,0,0,0,120,3,132,1,128,0,0,0,240,1,128,3,128,0,0,1,224,1,192,3,128,0,0,3,192,1,192,3,0,0,0,7,128,0,192,3,0,0,0,14,0,0,192,7,0,0,0,60,0,0,224,7,0,0,0,120,0,0,224,7,0,0,0,240,0,0,224,7,0,7,255,224,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,31,224,0,0,7,248,0,0,60,240,0,0,15,60,0,0,120,124,0,0,62,30,0,0,240,31,128,1,248,15,0,1,224,7,254,127,224,7,128,3,192,1,255,255,128,3,192,1,128,0,63,252,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,31,254,0,0,0,0,0,0,62,31,0,0,0,0,0,0,240,30,0,0,3,254,0,1,224,56,0,0,3,255,128,3,192,240,0,0,3,199,192,3,129,224,3,192,1,193,224,7,3,192,127,254,0,224,112,7,7,135,255,255,224,112,56,6,15,15,224,7,240,56,24,6,60,62,0,0,124,28,28,14,120,248,0,0,31,30,12,14,241,224,0,0,7,142,14,7,227,192,0,0,3,199,14,7,199,128,0,0,1,227,134,7,14,0,0,0,0,113,198,6,28,0,0,0,0,56,230,4,60,0,0,0,0,60,254,0,56,0,0,0,0,28,126,0,112,0,0,0,0,14,60,0,224,0,0,0,0,7,28,0,224,0,0,0,0,7,12,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,1,128,0,0,0,0,1,128,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,7,0,0,0,0,7,224,224,7,0,0,0,0,255,224,224,7,0,0,0,63,255,0,224,7,0,7,255,255,224,0,224,7,0,7,255,248,0,0,224,7,0,0,1,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,224,0,0,0,0,7,0,0,112,0,0,0,0,14,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,28,0,0,0,0,56,0,0,14,0,0,0,0,112,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,31,224,0,0,7,248,0,0,60,248,0,0,31,60,0,0,120,124,0,0,62,30,0,0,240,31,128,1,248,15,0,1,224,7,255,255,224,7,128,3,192,1,255,255,128,3,192,1,128,0,63,252,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,0,0,0,0,28,56,8,112,0,0,0,0,14,16,0,112,0,0,0,0,14,0,0,224,0,0,0,0,7,0,0,192,0,0,0,0,3,0,1,192,0,0,0,0,3,128,1,128,0,0,0,0,1,128,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,224,0,0,224,7,0,7,255,248,0,0,224,7,0,0,0,126,0,0,224,7,0,0,0,31,192,0,224,3,0,0,0,3,240,0,192,3,0,0,0,0,252,0,192,3,128,0,0,0,63,1,192,3,128,0,0,0,15,193,192,3,128,0,0,0,3,129,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,0,0,0,0,28,56,8,112,0,0,0,0,14,16,0,112,0,0,0,0,14,0,0,224,0,0,0,0,7,0,0,192,0,0,0,0,3,0,1,192,0,0,0,0,3,128,1,128,0,0,0,0,1,128,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,192,0,0,224,7,0,0,0,192,0,0,224,7,0,0,0,224,0,0,224,3,0,0,0,96,0,0,192,3,0,0,0,112,0,0,192,3,128,0,0,56,0,1,192,3,128,0,0,56,0,1,192,3,128,0,0,28,0,1,192,1,128,0,0,28,0,1,128,1,192,0,0,14,0,3,128,1,192,0,0,14,0,3,128,0,224,0,0,7,0,7,0,0,96,0,0,7,0,6,0,0,112,0,0,3,128,14,0,0,56,0,0,3,128,28,0,0,60,0,0,1,192,60,0,0,30,0,0,1,128,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,0,0,0,0,28,56,8,112,0,0,0,0,14,16,0,112,0,0,0,0,14,0,0,224,0,0,0,0,7,0,0,192,0,0,0,0,3,0,1,192,0,0,0,0,3,128,1,128,0,0,0,0,1,128,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,3,128,0,0,224,7,0,0,3,128,0,0,224,3,0,0,3,0,0,0,192,3,0,0,3,0,0,0,192,3,128,0,7,0,0,1,192,3,128,0,7,0,0,1,192,3,128,0,6,0,0,1,192,1,128,0,6,0,0,1,128,1,192,0,14,0,0,3,128,1,192,0,14,0,0,3,128,0,224,0,14,0,0,7,0,0,96,0,12,0,0,6,0,0,112,0,28,0,0,14,0,0,56,0,28,0,0,28,0,0,60,0,28,0,0,60,0,0,30,0,24,0,0,120,0,0,15,0,24,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,0,0,0,0,28,56,8,112,0,0,0,0,14,16,0,112,0,0,0,0,14,0,0,224,0,0,0,0,7,0,0,192,0,0,0,0,3,0,1,192,0,0,0,0,3,128,1,128,0,0,0,0,1,128,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,7,0,7,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,30,0,0,0,224,7,0,0,60,0,0,0,224,3,0,0,248,0,0,0,192,3,0,1,224,0,0,0,192,3,128,7,192,0,0,1,192,3,128,15,0,0,0,1,192,3,128,62,0,0,0,1,192,1,128,120,0,0,0,1,128,1,192,240,0,0,0,3,128,1,192,224,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,240,0,0,15,248,0,0,127,248,0,0,31,254,0,1,240,112,0,0,14,15,0,3,192,224,0,0,7,3,192,7,129,192,0,0,3,129,224,7,3,128,63,252,1,192,224,14,7,3,255,255,192,224,112,28,14,15,248,31,240,112,48,28,28,63,128,1,252,56,56,24,56,124,0,0,62,28,24,24,113,240,0,0,15,142,24,24,227,192,0,0,3,199,24,25,199,128,0,0,1,227,152,27,143,0,0,0,0,241,216,31,30,0,0,0,0,120,248,30,28,0,0,0,0,56,120,28,56,0,0,0,0,28,56,8,112,0,0,0,0,14,16,0,112,0,0,0,0,14,0,0,224,0,0,0,0,7,0,0,192,0,0,0,0,3,0,1,192,0,0,0,0,3,128,1,128,0,0,0,0,1,128,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,7,7,192,0,0,0,0,224,7,7,255,192,0,0,0,224,7,3,255,255,128,0,0,224,7,0,15,255,192,0,0,224,7,0,7,255,128,0,0,224,7,0,0,0,0,0,0,224,7,0,0,0,0,0,0,224,3,0,0,0,0,0,0,192,3,0,0,0,0,0,0,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,3,128,0,0,0,0,1,192,1,128,0,0,0,0,1,128,1,192,0,0,0,0,3,128,1,192,0,0,0,0,3,128,0,224,0,0,0,0,7,0,0,96,0,0,0,0,6,0,0,112,0,0,0,0,14,0,0,56,0,0,0,0,28,0,0,60,0,0,0,0,60,0,0,30,0,0,0,0,120,0,0,15,0,0,0,0,240,0,0,15,128,0,0,1,240,0,0,15,192,0,0,3,240,0,0,29,240,0,0,15,184,0,0,56,124,0,0,62,28,0,0,112,63,0,0,252,14,0,0,224,15,240,15,240,7,0,1,192,3,255,255,192,3,128,3,128,0,127,254,0,1,192,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}
};
void setup() {
display.begin(SSD1306_SWITCHCAPVCC, SCREEN_I2C_ADDR);
}
int frame = 0;
void loop() {
display.clearDisplay();
display.drawBitmap(32, 0, frames[frame], FRAME_WIDTH, FRAME_HEIGHT, 1);
display.display();
frame = (frame + 1) % FRAME_COUNT;
delay(FRAME_DELAY);
}