summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt5
-rw-r--r--src/components/settings/Settings.h31
-rw-r--r--src/displayapp/Apps.h3
-rw-r--r--src/displayapp/DisplayApp.cpp5
-rw-r--r--src/displayapp/fonts/open_sans_light.c1261
-rw-r--r--src/displayapp/fonts/open_sans_light.ttfbin0 -> 222412 bytes
-rw-r--r--src/displayapp/screens/Clock.cpp14
-rw-r--r--src/displayapp/screens/Clock.h1
-rw-r--r--src/displayapp/screens/PineTimeStyle.cpp340
-rw-r--r--src/displayapp/screens/PineTimeStyle.h86
-rw-r--r--src/displayapp/screens/settings/SettingPineTimeStyle.cpp261
-rw-r--r--src/displayapp/screens/settings/SettingPineTimeStyle.h56
-rw-r--r--src/displayapp/screens/settings/SettingWatchFace.cpp9
-rw-r--r--src/displayapp/screens/settings/Settings.cpp15
-rw-r--r--src/displayapp/screens/settings/Settings.h3
-rw-r--r--src/libs/lv_conf.h1
16 files changed, 2089 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 7721d6b8..caf015b0 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -235,6 +235,7 @@ set(LVGL_SRC
libs/lvgl/src/lv_widgets/lv_cont.h
libs/lvgl/src/lv_widgets/lv_cpicker.h
libs/lvgl/src/lv_widgets/lv_dropdown.h
+ libs/lvgl/src/lv_widgets/lv_gauge.h
libs/lvgl/src/lv_widgets/lv_img.h
libs/lvgl/src/lv_widgets/lv_imgbtn.h
libs/lvgl/src/lv_widgets/lv_keyboard.h
@@ -321,6 +322,7 @@ set(LVGL_SRC
libs/lvgl/src/lv_widgets/lv_cont.c
libs/lvgl/src/lv_widgets/lv_cpicker.c
libs/lvgl/src/lv_widgets/lv_dropdown.c
+ libs/lvgl/src/lv_widgets/lv_gauge.c
libs/lvgl/src/lv_widgets/lv_img.c
libs/lvgl/src/lv_widgets/lv_imgbtn.c
libs/lvgl/src/lv_widgets/lv_keyboard.c
@@ -418,11 +420,13 @@ list(APPEND SOURCE_FILES
displayapp/screens/settings/SettingWakeUp.cpp
displayapp/screens/settings/SettingDisplay.cpp
displayapp/screens/settings/SettingSteps.cpp
+ displayapp/screens/settings/SettingPineTimeStyle.cpp
## Watch faces
displayapp/icons/bg_clock.c
displayapp/screens/WatchFaceAnalog.cpp
displayapp/screens/WatchFaceDigital.cpp
+ displayapp/screens/PineTimeStyle.cpp
##
@@ -473,6 +477,7 @@ list(APPEND SOURCE_FILES
displayapp/fonts/jetbrains_mono_76.c
displayapp/fonts/jetbrains_mono_42.c
displayapp/fonts/lv_font_sys_48.c
+ displayapp/fonts/open_sans_light.c
displayapp/lv_pinetime_theme.c
systemtask/SystemTask.cpp
diff --git a/src/components/settings/Settings.h b/src/components/settings/Settings.h
index 4409425b..69e28e5b 100644
--- a/src/components/settings/Settings.h
+++ b/src/components/settings/Settings.h
@@ -27,6 +27,33 @@ namespace Pinetime {
return settings.clockFace;
};
+ void SetPTSColorTime(uint8_t colorTime) {
+ if (colorTime != settings.PTSColorTime)
+ settingsChanged = true;
+ settings.PTSColorTime = colorTime;
+ };
+ uint8_t GetPTSColorTime() const {
+ return settings.PTSColorTime;
+ };
+
+ void SetPTSColorBar(uint8_t colorBar) {
+ if (colorBar != settings.PTSColorBar)
+ settingsChanged = true;
+ settings.PTSColorBar = colorBar;
+ };
+ uint8_t GetPTSColorBar() const {
+ return settings.PTSColorBar;
+ };
+
+ void SetPTSColorBG(uint8_t colorBG) {
+ if (colorBG != settings.PTSColorBG)
+ settingsChanged = true;
+ settings.PTSColorBG = colorBG;
+ };
+ uint8_t GetPTSColorBG() const {
+ return settings.PTSColorBG;
+ };
+
void SetAppMenu(uint8_t menu) {
appMenu = menu;
};
@@ -103,6 +130,10 @@ namespace Pinetime {
uint8_t clockFace = 0;
+ uint8_t PTSColorTime = 11;
+ uint8_t PTSColorBar = 11;
+ uint8_t PTSColorBG = 3;
+
uint32_t stepsGoal = 10000;
uint32_t screenTimeOut = 15000;
diff --git a/src/displayapp/Apps.h b/src/displayapp/Apps.h
index 684e3a46..dd51fdb4 100644
--- a/src/displayapp/Apps.h
+++ b/src/displayapp/Apps.h
@@ -30,7 +30,8 @@ namespace Pinetime {
SettingTimeFormat,
SettingDisplay,
SettingWakeUp,
- SettingSteps
+ SettingSteps,
+ SettingPineTimeStyle
};
}
}
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp
index de93428c..48a012a8 100644
--- a/src/displayapp/DisplayApp.cpp
+++ b/src/displayapp/DisplayApp.cpp
@@ -42,6 +42,7 @@
#include "displayapp/screens/settings/SettingWakeUp.h"
#include "displayapp/screens/settings/SettingDisplay.h"
#include "displayapp/screens/settings/SettingSteps.h"
+#include "displayapp/screens/settings/SettingPineTimeStyle.h"
using namespace Pinetime::Applications;
using namespace Pinetime::Applications::Display;
@@ -323,6 +324,10 @@ void DisplayApp::LoadApp(Apps app, DisplayApp::FullRefreshDirections direction)
currentScreen = std::make_unique<Screens::SettingSteps>(this, settingsController);
ReturnApp(Apps::Settings, FullRefreshDirections::Down, TouchEvents::SwipeDown);
break;
+ case Apps::SettingPineTimeStyle:
+ currentScreen = std::make_unique<Screens::SettingPineTimeStyle>(this, settingsController);
+ ReturnApp(Apps::Settings, FullRefreshDirections::Down, TouchEvents::SwipeDown);
+ break;
case Apps::BatteryInfo:
currentScreen = std::make_unique<Screens::BatteryInfo>(this, batteryController);
ReturnApp(Apps::Settings, FullRefreshDirections::Down, TouchEvents::SwipeDown);
diff --git a/src/displayapp/fonts/open_sans_light.c b/src/displayapp/fonts/open_sans_light.c
new file mode 100644
index 00000000..15f0ddf6
--- /dev/null
+++ b/src/displayapp/fonts/open_sans_light.c
@@ -0,0 +1,1261 @@
+/*******************************************************************************
+ * Size: 150 px
+ * Bpp: 1
+ * Opts:
+ ******************************************************************************/
+
+#ifdef LV_LVGL_H_INCLUDE_SIMPLE
+#include "lvgl.h"
+#else
+#include "lvgl/lvgl.h"
+#endif
+
+#ifndef OPEN_SANS_LIGHT
+#define OPEN_SANS_LIGHT 1
+#endif
+
+#if OPEN_SANS_LIGHT
+
+/*-----------------
+ * BITMAPS
+ *----------------*/
+
+/*Store the image of the glyphs*/
+static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
+ /* U+0030 "0" */
+ 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
+ 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0,
+ 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8,
+ 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfe,
+ 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff,
+ 0xe0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x7,
+ 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
+ 0x7f, 0xc0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
+ 0x7, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
+ 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xf8,
+ 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xc0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xfc, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xe0, 0x0, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x80, 0xf, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x0, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xe0, 0x3, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x3f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0xf,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc,
+ 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x81, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xfc, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xe0, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x87, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x3f, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x1f, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x3f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf9,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xcf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xfe, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0xbf, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfd, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfc,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfe, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xe7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf9, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xcf, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xfe, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xf3, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x9f, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x7f,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x87, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xfc, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xe0, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xfe, 0x7, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xf0, 0x3f, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x80, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xfc, 0x7, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x3f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x7,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
+ 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0x80, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xe0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfe, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xf0, 0x0, 0x1f, 0xf0, 0x0, 0x0,
+ 0x0, 0x1, 0xff, 0x0, 0x0, 0x7f, 0xc0, 0x0,
+ 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x1, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0xf, 0xf8,
+ 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x3f,
+ 0xf0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
+ 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
+ 0x3, 0xff, 0x80, 0x0, 0x3, 0xff, 0x80, 0x0,
+ 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0,
+ 0x0, 0x0, 0x3f, 0xff, 0x0, 0x1f, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8,
+ 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
+ 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xff, 0xc0, 0x0, 0x0, 0x0,
+
+ /* U+0031 "1" */
+ 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
+ 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
+ 0xf, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xf8, 0x0,
+ 0x0, 0xff, 0xbf, 0x0, 0x0, 0x7f, 0xe7, 0xe0,
+ 0x0, 0x1f, 0xf8, 0xfc, 0x0, 0x7, 0xfe, 0x1f,
+ 0x80, 0x3, 0xff, 0x83, 0xf0, 0x0, 0xff, 0xc0,
+ 0xfe, 0x0, 0x3f, 0xf0, 0x1f, 0xc0, 0x1f, 0xfc,
+ 0x3, 0xf8, 0x7, 0xff, 0x0, 0x7f, 0x1, 0xff,
+ 0x80, 0xf, 0xe0, 0xff, 0xe0, 0x1, 0xfc, 0x3f,
+ 0xf8, 0x0, 0x3f, 0x8f, 0xfc, 0x0, 0x7, 0xf7,
+ 0xff, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x1f,
+ 0xff, 0xf0, 0x0, 0x3, 0xfb, 0xf8, 0x0, 0x0,
+ 0x7f, 0x3e, 0x0, 0x0, 0xf, 0xe3, 0x80, 0x0,
+ 0x1, 0xfc, 0x20, 0x0, 0x0, 0x3f, 0x80, 0x0,
+ 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0xfe, 0x0,
+ 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x3, 0xf8,
+ 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0xf,
+ 0xe0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0,
+ 0x3f, 0x80, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0,
+ 0x0, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0,
+ 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0x0,
+ 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x1, 0xfc,
+ 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x7,
+ 0xf0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0,
+ 0x1f, 0xc0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0,
+ 0x0, 0x7f, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
+ 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0x80,
+ 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0xfe,
+ 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x3,
+ 0xf8, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0,
+ 0xf, 0xe0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0,
+ 0x0, 0x3f, 0x80, 0x0, 0x0, 0x7, 0xf0, 0x0,
+ 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xc0,
+ 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x7f,
+ 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x1,
+ 0xfc, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0,
+ 0x7, 0xf0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0,
+ 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x3, 0xf8, 0x0,
+ 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0xf, 0xe0,
+ 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x3f,
+ 0x80, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0,
+ 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0,
+ 0x3, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0,
+ 0x0, 0xf, 0xe0, 0x0, 0x0, 0x1, 0xfc, 0x0,
+ 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x7, 0xf0,
+ 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x1f,
+ 0xc0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
+ 0x7f, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
+ 0x1, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0,
+ 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0xfe, 0x0,
+ 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x3, 0xf8,
+ 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0xf,
+ 0xe0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0,
+ 0x3f, 0x80, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0,
+ 0x0, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0,
+ 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0x0,
+ 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x1, 0xfc,
+ 0x0, 0x0, 0x0, 0x3f, 0x80,
+
+ /* U+0032 "2" */
+ 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0,
+ 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc,
+ 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
+ 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x1, 0xff,
+ 0xfe, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x3,
+ 0xff, 0xe0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
+ 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
+ 0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
+ 0x0, 0xf, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0xc0, 0x0, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0xc0, 0x1, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x10, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xf0,
+
+ /* U+0033 "3" */
+ 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
+ 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
+ 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0,
+ 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
+ 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xe0, 0x0,
+ 0x0, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0x0,
+ 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x3f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0xe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
+ 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
+ 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
+ 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xf8, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xff, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xff, 0xe0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0xfc, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0,
+ 0x7f, 0xff, 0x80, 0xf, 0xff, 0xff, 0x80, 0x0,
+ 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff,
+ 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7,
+ 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
+
+ /* U+0034 "4" */
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfb, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfd, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfc, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xfe, 0x3f, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x1f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe,
+ 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x3, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x1, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0x80, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0x80, 0x7e, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x3f, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x1f,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xc0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xc0, 0x7, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x3, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x1,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xe0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x7e, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x3f, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
+ 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xf8, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xf8, 0x0, 0x7, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x3, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
+ 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfc, 0x0, 0x0, 0x7e, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x3f,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
+ 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xfe, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xfe, 0x0, 0x0, 0x7, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x3,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
+ 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x7e, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
+ 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0x80, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x7, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
+ 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
+ 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x7e,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
+ 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
+ 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x7,
+ 0xe0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0,
+ 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
+ 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0,
+ 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x7e, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x3, 0xfc,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
+ 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0,
+ 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xe0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
+ 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc,
+ 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7e, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
+ 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xc0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xe0, 0x0, 0x0, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x3f,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
+ 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xfc, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1f, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0,
+
+ /* U+0035 "5" */
+ 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
+ 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
+ 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
+ 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xf8, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xfe, 0x0, 0x7f, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x3f, 0x8f, 0xff, 0xff, 0xff,
+ 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
+ 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xf0, 0x0,
+ 0x3f, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0, 0x0,
+ 0x0, 0x7f, 0xff, 0x80, 0x0, 0x18, 0x0, 0x0,
+ 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
+ 0x3f, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
+ 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf8,
+ 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xfc,
+ 0x0, 0x3f, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xfc,
+ 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
+ 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
+ 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe,
+ 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0,
+ 0x0, 0x0, 0x0,
+
+ /* U+0036 "6" */
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
+ 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
+ 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
+ 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff,
+ 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0xff,
+ 0xfe, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0xf,
+ 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x3, 0xff,
+ 0xe0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x1, 0xff,
+ 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x7f,
+ 0xff, 0xff, 0xf0, 0x0, 0x0, 0xfe, 0x0, 0xf,
+ 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0, 0x1,
+ 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0x0,
+ 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xf8,
+ 0x3, 0xff, 0xf0, 0x1, 0xff, 0xfe, 0x0, 0x1f,
+ 0xc0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf8, 0x0,
+ 0xfe, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0,
+ 0x7, 0xf0, 0x7f, 0xc0, 0x0, 0x0, 0x3, 0xff,
+ 0x80, 0x3f, 0x87, 0xf8, 0x0, 0x0, 0x0, 0x7,
+ 0xfe, 0x1, 0xfc, 0x7f, 0x80, 0x0, 0x0, 0x0,
+ 0x1f, 0xf8, 0xf, 0xe7, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0xe0, 0x7f, 0x7f, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xff, 0x3, 0xff, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xfc, 0x1f, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xff, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x8f, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x7f, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf3, 0xff,
+ 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x9f,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc,
+ 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xf3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x9f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3, 0xfc, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xe7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0xbf, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfd, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xef, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xfb, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xdf, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0x9f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xf8, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xc7, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x3f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x7, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x3f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x7,
+ 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
+ 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xf0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0x80, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xfc, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x3f, 0xc0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x3, 0xfe, 0x0, 0x1f, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xc0, 0x0,
+ 0x0, 0x0, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfc,
+ 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3f,
+ 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
+ 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
+ 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
+ 0x0, 0xf, 0xff, 0x80, 0x0, 0x1f, 0xff, 0x0,
+ 0x0, 0x0, 0x1f, 0xff, 0xc0, 0xf, 0xff, 0xf0,
+ 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
+ 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
+ 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
+ 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xff, 0xe0, 0x0, 0x0, 0x0,
+
+ /* U+0037 "7" */
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0,
+
+ /* U+0038 "8" */
+ 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfc,
+ 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
+ 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
+ 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x1,
+ 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
+ 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
+ 0x0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xfe, 0x0,
+ 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0xff, 0xc0,
+ 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x1f, 0xf8,
+ 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3f,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x7,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0,
+ 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0,
+ 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xe0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xfe, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xff, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x1, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xf0, 0x1f, 0xe0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0x1, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xf0, 0x1f, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x1, 0xfe, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x1f, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x1f,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
+ 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0xc0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xf8, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x80, 0x1, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xf0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
+ 0x0, 0x3, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0,
+ 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x7, 0xff, 0x0,
+ 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x3f, 0xf8,
+ 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x1, 0xff,
+ 0xe0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0xf,
+ 0xff, 0x80, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
+ 0x7f, 0xfe, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
+ 0x1, 0xff, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x0,
+ 0x0, 0xf, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xff, 0x9f, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe7,
+ 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
+ 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
+ 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
+ 0x80, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff,
+ 0xe0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x3f,
+ 0xf8, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7,
+ 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
+ 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
+ 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
+ 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
+ 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0xe0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xff, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xf0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0x81, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf8, 0x3f, 0xe0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0xc3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x7f, 0xc0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xe7, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xfe, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe7, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1, 0xfe, 0x7f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1f, 0xe7, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x1, 0xfe, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe7, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x3f, 0xc0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc3, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x1f,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x81,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0,
+ 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
+ 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0xe0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1,
+ 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
+ 0x7f, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
+ 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0,
+ 0xf, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xfe, 0x0,
+ 0xf, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff,
+ 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff,
+ 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
+ 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7,
+ 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
+
+ /* U+0039 "9" */
+ 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
+ 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x3,
+ 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
+ 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
+ 0x0, 0xf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0x0,
+ 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x7f, 0xc0,
+ 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0xf, 0xf8,
+ 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x1, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x3f,
+ 0xe0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
+ 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8,
+ 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
+ 0xc0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xfc, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1f, 0xe0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xfe, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7f, 0x3, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x7, 0xf0, 0x7f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0x87, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xf8, 0x7f, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3f, 0x87, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xcf, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0xff,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xcf,
+ 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xef, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xfe, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0xf, 0xef, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xfe, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xef, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xfe, 0xff, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf7, 0xf8, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x7f, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf7, 0xf8,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x7f,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
+ 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
+ 0xf3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
+ 0xff, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
+ 0xff, 0xf1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xff, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xf7, 0xf0, 0xff, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0xfe, 0x7f, 0x7, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xc7, 0xf0, 0x7f, 0xe0, 0x0, 0x0,
+ 0x0, 0x3, 0xf8, 0x7f, 0x3, 0xff, 0x80, 0x0,
+ 0x0, 0x0, 0xff, 0xf, 0xf0, 0x1f, 0xfc, 0x0,
+ 0x0, 0x0, 0x1f, 0xe0, 0xff, 0x0, 0xff, 0xf0,
+ 0x0, 0x0, 0x7, 0xfc, 0xf, 0xf0, 0x7, 0xff,
+ 0xc0, 0x0, 0x3, 0xff, 0x80, 0xfe, 0x0, 0x3f,
+ 0xff, 0xc0, 0x3, 0xff, 0xf0, 0xf, 0xe0, 0x1,
+ 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xfe, 0x0,
+ 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xe0,
+ 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xfe,
+ 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0xf,
+ 0xe0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x1,
+ 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
+ 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
+ 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
+ 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
+ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
+ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
+ 0xf8, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0xff,
+ 0xff, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0xff,
+ 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
+ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
+ 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
+ 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
+ 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
+ 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
+ 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0
+};
+
+
+/*---------------------
+ * GLYPH DESCRIPTION
+ *--------------------*/
+
+static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
+ {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */,
+ {.bitmap_index = 0, .adv_w = 1370, .box_w = 69, .box_h = 110, .ofs_x = 8, .ofs_y = -1},
+ {.bitmap_index = 949, .adv_w = 1370, .box_w = 35, .box_h = 107, .ofs_x = 15, .ofs_y = 0},
+ {.bitmap_index = 1418, .adv_w = 1370, .box_w = 67, .box_h = 108, .ofs_x = 8, .ofs_y = 0},
+ {.bitmap_index = 2323, .adv_w = 1370, .box_w = 68, .box_h = 110, .ofs_x = 7, .ofs_y = -1},
+ {.bitmap_index = 3258, .adv_w = 1370, .box_w = 81, .box_h = 108, .ofs_x = 3, .ofs_y = -1},
+ {.bitmap_index = 4352, .adv_w = 1370, .box_w = 66, .box_h = 108, .ofs_x = 10, .ofs_y = -1},
+ {.bitmap_index = 5243, .adv_w = 1370, .box_w = 69, .box_h = 110, .ofs_x = 9, .ofs_y = -1},
+ {.bitmap_index = 6192, .adv_w = 1370, .box_w = 69, .box_h = 106, .ofs_x = 8, .ofs_y = 0},
+ {.bitmap_index = 7107, .adv_w = 1370, .box_w = 68, .box_h = 110, .ofs_x = 9, .ofs_y = -1},
+ {.bitmap_index = 8042, .adv_w = 1370, .box_w = 68, .box_h = 110, .ofs_x = 8, .ofs_y = -1}
+};
+
+/*---------------------
+ * CHARACTER MAPPING
+ *--------------------*/
+
+
+
+/*Collect the unicode lists and glyph_id offsets*/
+static const lv_font_fmt_txt_cmap_t cmaps[] =
+{
+ {
+ .range_start = 48, .range_length = 10, .glyph_id_start = 1,
+ .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
+ }
+};
+
+
+
+/*--------------------
+ * ALL CUSTOM DATA
+ *--------------------*/
+
+#if LV_VERSION_CHECK(8, 0, 0)
+/*Store all the custom data of the font*/
+static lv_font_fmt_txt_glyph_cache_t cache;
+static const lv_font_fmt_txt_dsc_t font_dsc = {
+#else
+static lv_font_fmt_txt_dsc_t font_dsc = {
+#endif
+ .glyph_bitmap = glyph_bitmap,
+ .glyph_dsc = glyph_dsc,
+ .cmaps = cmaps,
+ .kern_dsc = NULL,
+ .kern_scale = 0,
+ .cmap_num = 1,
+ .bpp = 1,
+ .kern_classes = 0,
+ .bitmap_format = 0,
+#if LV_VERSION_CHECK(8, 0, 0)
+ .cache = &cache
+#endif
+};
+
+
+/*-----------------
+ * PUBLIC FONT
+ *----------------*/
+
+/*Initialize a public general font descriptor*/
+#if LV_VERSION_CHECK(8, 0, 0)
+const lv_font_t open_sans_light = {
+#else
+lv_font_t open_sans_light = {
+#endif
+ .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/
+ .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/
+ .line_height = 110, /*The maximum line height required by the font*/
+ .base_line = 1, /*Baseline measured from the bottom of the line*/
+#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0)
+ .subpx = LV_FONT_SUBPX_NONE,
+#endif
+#if LV_VERSION_CHECK(7, 4, 0)
+ .underline_position = -11,
+ .underline_thickness = 7,
+#endif
+ .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
+};
+
+
+
+#endif /*#if OPEN_SANS_LIGHT*/
+
diff --git a/src/displayapp/fonts/open_sans_light.ttf b/src/displayapp/fonts/open_sans_light.ttf
new file mode 100644
index 00000000..0d381897
--- /dev/null
+++ b/src/displayapp/fonts/open_sans_light.ttf
Binary files differ
diff --git a/src/displayapp/screens/Clock.cpp b/src/displayapp/screens/Clock.cpp
index 05e47a39..e0684976 100644
--- a/src/displayapp/screens/Clock.cpp
+++ b/src/displayapp/screens/Clock.cpp
@@ -14,6 +14,7 @@
#include "../DisplayApp.h"
#include "WatchFaceDigital.h"
#include "WatchFaceAnalog.h"
+#include "PineTimeStyle.h"
using namespace Pinetime::Applications::Screens;
@@ -41,6 +42,9 @@ Clock::Clock(DisplayApp* app,
case 1:
return WatchFaceAnalogScreen();
break;
+ case 2:
+ return PineTimeStyleScreen();
+ break;
}
return WatchFaceDigitalScreen();
}()} {
@@ -76,6 +80,16 @@ std::unique_ptr<Screen> Clock::WatchFaceAnalogScreen() {
app, dateTimeController, batteryController, bleController, notificatioManager, settingsController);
}
+std::unique_ptr<Screen> Clock::PineTimeStyleScreen() {
+ return std::make_unique<Screens::PineTimeStyle>(app,
+ dateTimeController,
+ batteryController,
+ bleController,
+ notificatioManager,
+ settingsController,
+ motionController);
+}
+
/*
// Examples for more watch faces
std::unique_ptr<Screen> Clock::WatchFaceMinimalScreen() {
diff --git a/src/displayapp/screens/Clock.h b/src/displayapp/screens/Clock.h
index 174c73b7..a48feea1 100644
--- a/src/displayapp/screens/Clock.h
+++ b/src/displayapp/screens/Clock.h
@@ -50,6 +50,7 @@ namespace Pinetime {
std::unique_ptr<Screen> screen;
std::unique_ptr<Screen> WatchFaceDigitalScreen();
std::unique_ptr<Screen> WatchFaceAnalogScreen();
+ std::unique_ptr<Screen> PineTimeStyleScreen();
// Examples for more watch faces
// std::unique_ptr<Screen> WatchFaceMinimalScreen();
diff --git a/src/displayapp/screens/PineTimeStyle.cpp b/src/displayapp/screens/PineTimeStyle.cpp
new file mode 100644
index 00000000..678099c0
--- /dev/null
+++ b/src/displayapp/screens/PineTimeStyle.cpp
@@ -0,0 +1,340 @@
+/*
+ * This file is part of the Infinitime distribution (https://github.com/JF002/Infinitime).
+ * Copyright (c) 2021 Kieran Cawthray.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, version 3.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * PineTimeStyle watchface for Infinitime created by Kieran Cawthray
+ * Based on WatchFaceDigital
+ * Style/layout copied from TimeStyle for Pebble by Dan Tilden (github.com/tilden)
+ */
+
+#include "PineTimeStyle.h"
+#include <date/date.h>
+#include <lvgl/lvgl.h>
+#include <cstdio>
+#include "BatteryIcon.h"
+#include "BleIcon.h"
+#include "NotificationIcon.h"
+#include "Symbols.h"
+#include "components/battery/BatteryController.h"
+#include "components/ble/BleController.h"
+#include "components/ble/NotificationManager.h"
+#include "components/motion/MotionController.h"
+#include "components/settings/Settings.h"
+#include "../DisplayApp.h"
+
+using namespace Pinetime::Applications::Screens;
+
+PineTimeStyle::PineTimeStyle(DisplayApp* app,
+ Controllers::DateTime& dateTimeController,
+ Controllers::Battery& batteryController,
+ Controllers::Ble& bleController,
+ Controllers::NotificationManager& notificatioManager,
+ Controllers::Settings& settingsController,
+ Controllers::MotionController& motionController)
+ : Screen(app),
+ currentDateTime {{}},
+ dateTimeController {dateTimeController},
+ batteryController {batteryController},
+ bleController {bleController},
+ notificatioManager {notificatioManager},
+ settingsController {settingsController},
+ motionController {motionController} {
+
+ /* This sets the watchface number to return to after leaving the menu */
+ settingsController.SetClockFace(2);
+
+ displayedChar[0] = 0;
+ displayedChar[1] = 0;
+ displayedChar[2] = 0;
+ displayedChar[3] = 0;
+ displayedChar[4] = 0;
+
+ /* Create a 200px wide background rectangle */
+
+ timebar = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(timebar, 200, 240);
+ lv_obj_align(timebar, lv_scr_act(), LV_ALIGN_IN_TOP_LEFT, 5, 0);
+
+ /* Display the time */
+
+ timeDD1 = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_font(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &open_sans_light);
+ lv_obj_set_style_local_text_color(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x008080));
+ lv_label_set_text(timeDD1, "12");
+ lv_obj_align(timeDD1, timebar, LV_ALIGN_IN_TOP_MID, 5, 5);
+
+ timeDD2 = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_font(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &open_sans_light);
+ lv_obj_set_style_local_text_color(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x008080));
+ lv_label_set_text(timeDD2, "34");
+ lv_obj_align(timeDD2, timebar, LV_ALIGN_IN_BOTTOM_MID, 5, -5);
+
+ timeAMPM = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(timeAMPM, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x008080));
+ lv_obj_set_style_local_text_line_space(timeAMPM, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, -3);
+ lv_label_set_text(timeAMPM, "");
+ lv_obj_align(timeAMPM, timebar, LV_ALIGN_IN_BOTTOM_LEFT, 2, -20);
+
+ /* Create a 40px wide bar down the right side of the screen */
+
+ sidebar = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(sidebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x008080));
+ lv_obj_set_style_local_radius(sidebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(sidebar, 40, 240);
+ lv_obj_align(sidebar, lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0);
+
+ /* Display icons */
+
+ batteryIcon = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(batteryIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(batteryIcon, Symbols::batteryFull);
+ lv_obj_align(batteryIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 2);
+
+ batteryPlug = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(batteryPlug, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_align(batteryPlug, sidebar, LV_ALIGN_IN_TOP_MID, 0, 2);
+
+ bleIcon = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_align(bleIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 25);
+
+ notificationIcon = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_align(notificationIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 40);
+
+ /* Calendar icon */
+
+ calendarOuter = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarOuter, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarOuter, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarOuter, 34, 34);
+ lv_obj_align(calendarOuter, sidebar, LV_ALIGN_CENTER, 0, 0);
+
+ calendarInner = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarInner, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xffffff));
+ lv_obj_set_style_local_radius(calendarInner, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarInner, 27, 27);
+ lv_obj_align(calendarInner, calendarOuter, LV_ALIGN_CENTER, 0, 0);
+
+ calendarBar1 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarBar1, 3, 12);
+ lv_obj_align(calendarBar1, calendarOuter, LV_ALIGN_IN_TOP_MID, -6, -3);
+
+ calendarBar2 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarBar2, 3, 12);
+ lv_obj_align(calendarBar2, calendarOuter, LV_ALIGN_IN_TOP_MID, 6, -3);
+
+ calendarCrossBar1 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarCrossBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarCrossBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarCrossBar1, 8, 3);
+ lv_obj_align(calendarCrossBar1, calendarBar1, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
+
+ calendarCrossBar2 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarCrossBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarCrossBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarCrossBar2, 8, 3);
+ lv_obj_align(calendarCrossBar2, calendarBar2, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
+
+ /* Display date */
+
+ dateDayOfWeek = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(dateDayOfWeek, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(dateDayOfWeek, "THU");
+ lv_obj_align(dateDayOfWeek, sidebar, LV_ALIGN_CENTER, 0, -34);
+
+ dateDay = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(dateDay, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(dateDay, "25");
+ lv_obj_align(dateDay, sidebar, LV_ALIGN_CENTER, 0, 3);
+
+ dateMonth = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(dateMonth, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(dateMonth, "MAR");
+ lv_obj_align(dateMonth, sidebar, LV_ALIGN_CENTER, 0, 32);
+
+ // Step count gauge
+ needle_colors[0] = LV_COLOR_WHITE;
+ stepGauge = lv_gauge_create(lv_scr_act(), nullptr);
+ lv_gauge_set_needle_count(stepGauge, 1, needle_colors);
+ lv_obj_set_size(stepGauge, 40, 40);
+ lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
+ lv_gauge_set_scale(stepGauge, 360, 11, 0);
+ lv_gauge_set_angle_offset(stepGauge, 180);
+ lv_gauge_set_critical_value(stepGauge, (settingsController.GetStepsGoal() / 100));
+ lv_gauge_set_range(stepGauge, 0, (settingsController.GetStepsGoal() / 100));
+ lv_gauge_set_value(stepGauge, 0, 0);
+
+ lv_obj_set_style_local_pad_right(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
+ lv_obj_set_style_local_pad_left(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
+ lv_obj_set_style_local_pad_bottom(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
+ lv_obj_set_style_local_line_opa(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_COVER);
+ lv_obj_set_style_local_scale_width(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 4);
+ lv_obj_set_style_local_line_width(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 4);
+ lv_obj_set_style_local_line_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
+ lv_obj_set_style_local_line_opa(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, LV_OPA_COVER);
+ lv_obj_set_style_local_line_width(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
+ lv_obj_set_style_local_pad_inner(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
+
+ backgroundLabel = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_click(backgroundLabel, true);
+ lv_label_set_long_mode(backgroundLabel, LV_LABEL_LONG_CROP);
+ lv_obj_set_size(backgroundLabel, 240, 240);
+ lv_obj_set_pos(backgroundLabel, 0, 0);
+ lv_label_set_text(backgroundLabel, "");
+}
+
+PineTimeStyle::~PineTimeStyle() {
+ lv_obj_clean(lv_scr_act());
+}
+
+bool PineTimeStyle::Refresh() {
+ batteryPercentRemaining = batteryController.PercentRemaining();
+ if (batteryPercentRemaining.IsUpdated()) {
+ auto batteryPercent = batteryPercentRemaining.Get();
+ if (batteryController.IsCharging()) {
+ auto isCharging = batteryController.IsCharging() || batteryController.IsPowerPresent();
+ lv_label_set_text(batteryPlug, BatteryIcon::GetPlugIcon(isCharging));
+ lv_obj_realign(batteryPlug);
+ lv_label_set_text(batteryIcon, "");
+ } else {
+ lv_label_set_text(batteryIcon, BatteryIcon::GetBatteryIcon(batteryPercent));
+ lv_label_set_text(batteryPlug, "");
+ }
+ }
+
+ bleState = bleController.IsConnected();
+ if (bleState.IsUpdated()) {
+ if (bleState.Get() == true) {
+ lv_label_set_text(bleIcon, BleIcon::GetIcon(true));
+ lv_obj_realign(bleIcon);
+ } else {
+ lv_label_set_text(bleIcon, BleIcon::GetIcon(false));
+ }
+ }
+
+ notificationState = notificatioManager.AreNewNotificationsAvailable();
+ if (notificationState.IsUpdated()) {
+ if (notificationState.Get() == true) {
+ lv_label_set_text(notificationIcon, NotificationIcon::GetIcon(true));
+ lv_obj_realign(notificationIcon);
+ } else {
+ lv_label_set_text(notificationIcon, NotificationIcon::GetIcon(false));
+ }
+ }
+
+ currentDateTime = dateTimeController.CurrentDateTime();
+
+ if (currentDateTime.IsUpdated()) {
+ auto newDateTime = currentDateTime.Get();
+
+ auto dp = date::floor<date::days>(newDateTime);
+ auto time = date::make_time(newDateTime - dp);
+ auto yearMonthDay = date::year_month_day(dp);
+
+ auto year = (int) yearMonthDay.year();
+ auto month = static_cast<Pinetime::Controllers::DateTime::Months>((unsigned) yearMonthDay.month());
+ auto day = (unsigned) yearMonthDay.day();
+ auto dayOfWeek = static_cast<Pinetime::Controllers::DateTime::Days>(date::weekday(yearMonthDay).iso_encoding());
+
+ int hour = time.hours().count();
+ auto minute = time.minutes().count();
+
+ char minutesChar[3];
+ sprintf(minutesChar, "%02d", static_cast<int>(minute));
+
+ char hoursChar[3];
+ char ampmChar[5];
+
+ if (settingsController.GetClockType() == Controllers::Settings::ClockType::H24) {
+ sprintf(hoursChar, "%02d", hour);
+ } else {
+ if (hour == 0 && hour != 12) {
+ hour = 12;
+ sprintf(ampmChar, "A\nM");
+ } else if (hour == 12 && hour != 0) {
+ hour = 12;
+ sprintf(ampmChar, "P\nM");
+ } else if (hour < 12 && hour != 0) {
+ sprintf(ampmChar, "A\nM");
+ } else if (hour > 12 && hour != 0) {
+ hour = hour - 12;
+ sprintf(ampmChar, "P\nM");
+ }
+ sprintf(hoursChar, "%02d", hour);
+ }
+
+ if (hoursChar[0] != displayedChar[0] || hoursChar[1] != displayedChar[1] || minutesChar[0] != displayedChar[2] ||
+ minutesChar[1] != displayedChar[3]) {
+ displayedChar[0] = hoursChar[0];
+ displayedChar[1] = hoursChar[1];
+ displayedChar[2] = minutesChar[0];
+ displayedChar[3] = minutesChar[1];
+
+ char hourStr[3];
+ char minStr[3];
+
+ if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) {
+ lv_label_set_text(timeAMPM, ampmChar);
+ }
+
+ /* Display the time as 2 pairs of digits */
+ sprintf(hourStr, "%c%c", hoursChar[0], hoursChar[1]);
+ lv_label_set_text(timeDD1, hourStr);
+
+ sprintf(minStr, "%c%c", minutesChar[0], minutesChar[1]);
+ lv_label_set_text(timeDD2, minStr);
+ }
+
+ if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {
+ char dayOfWeekStr[4];
+ char dayStr[3];
+ char monthStr[4];
+
+ sprintf(dayOfWeekStr, "%s", dateTimeController.DayOfWeekShortToString());
+ sprintf(dayStr, "%d", day);
+ sprintf(monthStr, "%s", dateTimeController.MonthShortToString());
+
+ lv_label_set_text(dateDayOfWeek, dayOfWeekStr);
+ lv_label_set_text(dateDay, dayStr);
+ lv_obj_realign(dateDay);
+ lv_label_set_text(dateMonth, monthStr);
+
+ currentYear = year;
+ currentMonth = month;
+ currentDayOfWeek = dayOfWeek;
+ currentDay = day;
+ }
+ }
+
+ stepCount = motionController.NbSteps();
+ motionSensorOk = motionController.IsSensorOk();
+ if (stepCount.IsUpdated() || motionSensorOk.IsUpdated()) {
+ lv_gauge_set_value(stepGauge, 0, (stepCount.Get() / 100));
+ lv_obj_realign(stepGauge);
+ if (stepCount.Get() > settingsController.GetStepsGoal()) {
+ lv_obj_set_style_local_line_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
+ lv_obj_set_style_local_scale_grad_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
+ }
+ }
+
+ return running;
+} \ No newline at end of file
diff --git a/src/displayapp/screens/PineTimeStyle.h b/src/displayapp/screens/PineTimeStyle.h
new file mode 100644
index 00000000..70794cc5
--- /dev/null
+++ b/src/displayapp/screens/PineTimeStyle.h
@@ -0,0 +1,86 @@
+#pragma once
+
+#include <lvgl/src/lv_core/lv_obj.h>
+#include <chrono>
+#include <cstdint>
+#include <memory>
+#include "Screen.h"
+#include "ScreenList.h"
+#include "components/datetime/DateTimeController.h"
+
+namespace Pinetime {
+ namespace Controllers {
+ class Settings;
+ class Battery;
+ class Ble;
+ class NotificationManager;
+ class HeartRateController;
+ }
+
+ namespace Applications {
+ namespace Screens {
+ class PineTimeStyle : public Screen {
+ public:
+ PineTimeStyle(DisplayApp* app,
+ Controllers::DateTime& dateTimeController,
+ Controllers::Battery& batteryController,
+ Controllers::Ble& bleController,
+ Controllers::NotificationManager& notificatioManager,
+ Controllers::Settings& settingsController,
+ Controllers::MotionController& motionController);
+ ~PineTimeStyle() override;
+
+ bool Refresh() override;
+
+ void OnObjectEvent(lv_obj_t* pObj, lv_event_t i);
+
+ private:
+ char displayedChar[5];
+
+ uint16_t currentYear = 1970;
+ Pinetime::Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
+ Pinetime::Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown;
+ uint8_t currentDay = 0;
+
+ DirtyValue<int> batteryPercentRemaining {};
+ DirtyValue<bool> bleState {};
+ DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime {};
+ DirtyValue<bool> motionSensorOk {};
+ DirtyValue<uint32_t> stepCount {};
+ DirtyValue<bool> notificationState {};
+
+ lv_obj_t* timebar;
+ lv_obj_t* sidebar;
+ lv_obj_t* timeDD1;
+ lv_obj_t* timeDD2;
+ lv_obj_t* timeAMPM;
+ lv_obj_t* dateDayOfWeek;
+ lv_obj_t* dateDay;
+ lv_obj_t* dateMonth;
+ lv_obj_t* backgroundLabel;
+ lv_obj_t* batteryIcon;
+ lv_obj_t* bleIcon;
+ lv_obj_t* batteryPlug;
+ lv_obj_t* calendarOuter;
+ lv_obj_t* calendarInner;
+ lv_obj_t* calendarBar1;
+ lv_obj_t* calendarBar2;
+ lv_obj_t* calendarCrossBar1;
+ lv_obj_t* calendarCrossBar2;
+ lv_obj_t* heartbeatIcon;
+ lv_obj_t* heartbeatValue;
+ lv_obj_t* heartbeatBpm;
+ lv_obj_t* notificationIcon;
+ lv_obj_t* stepGauge;
+ lv_color_t needle_colors[1];
+
+ Controllers::DateTime& dateTimeController;
+ Controllers::Battery& batteryController;
+ Controllers::Ble& bleController;
+ Controllers::NotificationManager& notificatioManager;
+ Controllers::Settings& settingsController;
+ Controllers::MotionController& motionController;
+ };
+ }
+ }
+}
diff --git a/src/displayapp/screens/settings/SettingPineTimeStyle.cpp b/src/displayapp/screens/settings/SettingPineTimeStyle.cpp
new file mode 100644
index 00000000..dcdd6700
--- /dev/null
+++ b/src/displayapp/screens/settings/SettingPineTimeStyle.cpp
@@ -0,0 +1,261 @@
+#include "SettingPineTimeStyle.h"
+#include <lvgl/lvgl.h>
+#include "displayapp/DisplayApp.h"
+#include "displayapp/screens/Symbols.h"
+
+using namespace Pinetime::Applications::Screens;
+
+namespace {
+ static void event_handler(lv_obj_t * obj, lv_event_t event) {
+ SettingPineTimeStyle* screen = static_cast<SettingPineTimeStyle *>(obj->user_data);
+ screen->UpdateSelected(obj, event);
+ }
+}
+
+lv_color_t pts_colors[17] = {LV_COLOR_WHITE, LV_COLOR_SILVER, LV_COLOR_GRAY, LV_COLOR_BLACK,
+ LV_COLOR_RED, LV_COLOR_MAROON, LV_COLOR_YELLOW, LV_COLOR_OLIVE,
+ LV_COLOR_LIME, LV_COLOR_GREEN, LV_COLOR_CYAN, LV_COLOR_TEAL,
+ LV_COLOR_BLUE, LV_COLOR_NAVY, LV_COLOR_MAGENTA, LV_COLOR_PURPLE,
+ LV_COLOR_ORANGE};
+
+SettingPineTimeStyle::SettingPineTimeStyle(
+ Pinetime::Applications::DisplayApp *app, Pinetime::Controllers::Settings &settingsController) :
+ Screen(app),
+ settingsController{settingsController}
+{
+
+ timebar = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
+ lv_obj_set_style_local_radius(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(timebar, 200, 240);
+ lv_obj_align(timebar, lv_scr_act(), LV_ALIGN_IN_TOP_LEFT, 5, 0);
+
+ // Display the time
+
+ timeDD1 = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_font(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &open_sans_light);
+ lv_obj_set_style_local_text_color(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_TEAL);
+ lv_label_set_text(timeDD1, "12");
+ lv_obj_align(timeDD1, timebar, LV_ALIGN_IN_TOP_MID, 5, 5);
+
+ timeDD2 = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_font(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &open_sans_light);
+ lv_obj_set_style_local_text_color(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_TEAL);
+ lv_label_set_text(timeDD2, "34");
+ lv_obj_align(timeDD2, timebar, LV_ALIGN_IN_BOTTOM_MID, 5, -5);
+
+ timeAMPM = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(timeAMPM, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_TEAL);
+ lv_obj_set_style_local_text_line_space(timeAMPM, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, -3);
+ lv_label_set_text(timeAMPM, "A\nM");
+ lv_obj_align(timeAMPM, timebar, LV_ALIGN_IN_BOTTOM_LEFT, 2, -20);
+
+ // Create a 40px wide bar down the right side of the screen
+
+ sidebar = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(sidebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_TEAL);
+ lv_obj_set_style_local_radius(sidebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(sidebar, 40, 240);
+ lv_obj_align(sidebar, lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0);
+
+ // Display icons
+
+ batteryIcon = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(batteryIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(batteryIcon, Symbols::batteryFull);
+ lv_obj_align(batteryIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 2);
+
+ bleIcon = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(bleIcon, Symbols::bluetooth);
+ lv_obj_align(bleIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 25);
+
+ // Calendar icon
+
+ calendarOuter = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarOuter, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarOuter, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarOuter, 34, 34);
+ lv_obj_align(calendarOuter, sidebar, LV_ALIGN_CENTER, 0, 0);
+
+ calendarInner = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarInner, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xffffff));
+ lv_obj_set_style_local_radius(calendarInner, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarInner, 27, 27);
+ lv_obj_align(calendarInner, calendarOuter, LV_ALIGN_CENTER, 0, 0);
+
+ calendarBar1 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarBar1, 3, 12);
+ lv_obj_align(calendarBar1, calendarOuter, LV_ALIGN_IN_TOP_MID, -6, -3);
+
+ calendarBar2 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarBar2, 3, 12);
+ lv_obj_align(calendarBar2, calendarOuter, LV_ALIGN_IN_TOP_MID, 6, -3);
+
+ calendarCrossBar1 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarCrossBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarCrossBar1, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarCrossBar1, 8, 3);
+ lv_obj_align(calendarCrossBar1, calendarBar1, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
+
+ calendarCrossBar2 = lv_obj_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_bg_color(calendarCrossBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_obj_set_style_local_radius(calendarCrossBar2, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 0);
+ lv_obj_set_size(calendarCrossBar2, 8, 3);
+ lv_obj_align(calendarCrossBar2, calendarBar2, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
+
+ // Display date
+
+ dateDayOfWeek = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(dateDayOfWeek, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(dateDayOfWeek, "THU");
+ lv_obj_align(dateDayOfWeek, sidebar, LV_ALIGN_CENTER, 0, -34);
+
+ dateDay = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(dateDay, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(dateDay, "25");
+ lv_obj_align(dateDay, sidebar, LV_ALIGN_CENTER, 0, 3);
+
+ dateMonth = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(dateMonth, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+ lv_label_set_text(dateMonth, "MAR");
+ lv_obj_align(dateMonth, sidebar, LV_ALIGN_CENTER, 0, 32);
+
+ // Step count gauge
+ needle_colors[0] = LV_COLOR_WHITE;
+ stepGauge = lv_gauge_create(lv_scr_act(), nullptr);
+ lv_gauge_set_needle_count(stepGauge, 1, needle_colors);
+ lv_obj_set_size(stepGauge, 40, 40);
+ lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
+ lv_gauge_set_scale(stepGauge, 360, 11, 0);
+ lv_gauge_set_angle_offset(stepGauge, 180);
+ lv_gauge_set_critical_value(stepGauge, (100));
+ lv_gauge_set_range(stepGauge, 0, (100));
+ lv_gauge_set_value(stepGauge, 0, 0);
+
+ lv_obj_set_style_local_pad_right(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
+ lv_obj_set_style_local_pad_left(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
+ lv_obj_set_style_local_pad_bottom(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
+ lv_obj_set_style_local_line_opa(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_COVER);
+ lv_obj_set_style_local_scale_width(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 4);
+ lv_obj_set_style_local_line_width(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 4);
+ lv_obj_set_style_local_line_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
+ lv_obj_set_style_local_line_opa(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, LV_OPA_COVER);
+ lv_obj_set_style_local_line_width(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
+ lv_obj_set_style_local_pad_inner(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
+
+ backgroundLabel = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_click(backgroundLabel, true);
+ lv_label_set_long_mode(backgroundLabel, LV_LABEL_LONG_CROP);
+ lv_obj_set_size(backgroundLabel, 240, 240);
+ lv_obj_set_pos(backgroundLabel, 0, 0);
+ lv_label_set_text(backgroundLabel, "");
+
+ btnNextTime = lv_btn_create(lv_scr_act(), nullptr);
+ btnNextTime->user_data = this;
+ lv_obj_set_size(btnNextTime, 50, 50);
+ lv_obj_align(btnNextTime, lv_scr_act(), LV_ALIGN_CENTER, 55, -80);
+ lv_obj_set_style_local_value_str(btnNextTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, ">");
+ lv_obj_set_event_cb(btnNextTime, event_handler);
+
+ btnPrevTime = lv_btn_create(lv_scr_act(), nullptr);
+ btnPrevTime->user_data = this;
+ lv_obj_set_size(btnPrevTime, 50, 50);
+ lv_obj_align(btnPrevTime, lv_scr_act(), LV_ALIGN_CENTER, -55, -80);
+ lv_obj_set_style_local_value_str(btnPrevTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "<");
+ lv_obj_set_event_cb(btnPrevTime, event_handler);
+
+ btnNextBar = lv_btn_create(lv_scr_act(), nullptr);
+ btnNextBar->user_data = this;
+ lv_obj_set_size(btnNextBar, 50, 50);
+ lv_obj_align(btnNextBar, lv_scr_act(), LV_ALIGN_CENTER, 55, 0);
+ lv_obj_set_style_local_value_str(btnNextBar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, ">");
+ lv_obj_set_event_cb(btnNextBar, event_handler);
+
+ btnPrevBar = lv_btn_create(lv_scr_act(), nullptr);
+ btnPrevBar->user_data = this;
+ lv_obj_set_size(btnPrevBar, 50, 50);
+ lv_obj_align(btnPrevBar, lv_scr_act(), LV_ALIGN_CENTER, -55, 0);
+ lv_obj_set_style_local_value_str(btnPrevBar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "<");
+ lv_obj_set_event_cb(btnPrevBar, event_handler);
+
+ btnNextBG = lv_btn_create(lv_scr_act(), nullptr);
+ btnNextBG->user_data = this;
+ lv_obj_set_size(btnNextBG, 50, 50);
+ lv_obj_align(btnNextBG, lv_scr_act(), LV_ALIGN_CENTER, 55, 80);
+ lv_obj_set_style_local_value_str(btnNextBG, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, ">");
+ lv_obj_set_event_cb(btnNextBG, event_handler);
+
+ btnPrevBG = lv_btn_create(lv_scr_act(), nullptr);
+ btnPrevBG->user_data = this;
+ lv_obj_set_size(btnPrevBG, 50, 50);
+ lv_obj_align(btnPrevBG, lv_scr_act(), LV_ALIGN_CENTER, -55, 80);
+ lv_obj_set_style_local_value_str(btnPrevBG, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "<");
+ lv_obj_set_event_cb(btnPrevBG, event_handler);
+}
+
+SettingPineTimeStyle::~SettingPineTimeStyle() {
+ lv_obj_clean(lv_scr_act());
+ settingsController.SaveSettings();
+}
+
+bool SettingPineTimeStyle::Refresh() {
+ return running;
+}
+
+void SettingPineTimeStyle::UpdateSelected(lv_obj_t *object, lv_event_t event) {
+ uint8_t valueTime = settingsController.GetPTSColorTime();
+ uint8_t valueBar = settingsController.GetPTSColorBar();
+ uint8_t valueBG = settingsController.GetPTSColorBG();
+
+ if((object == btnNextTime) && (event == LV_EVENT_PRESSED)) {
+ if ( valueTime < 17 ) {
+ valueTime += 1;
+ settingsController.SetPTSColorTime(valueTime);
+ lv_obj_set_style_local_text_color(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueTime]);
+ lv_obj_set_style_local_text_color(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueTime]);
+ lv_obj_set_style_local_text_color(timeAMPM, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueTime]);
+ }
+ }
+ if((object == btnPrevTime) && (event == LV_EVENT_PRESSED)) {
+ if ( valueTime > 0 ) {
+ valueTime -= 1;
+ settingsController.SetPTSColorTime(valueTime);
+ lv_obj_set_style_local_text_color(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueTime]);
+ lv_obj_set_style_local_text_color(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueTime]);
+ lv_obj_set_style_local_text_color(timeAMPM, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueTime]);
+ }
+ }
+ if((object == btnNextBar) && (event == LV_EVENT_PRESSED)) {
+ if ( valueBar < 17 ) {
+ valueBar += 1;
+ settingsController.SetPTSColorBar(valueBar);
+ lv_obj_set_style_local_bg_color(sidebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueBar]);
+ }
+ }
+ if((object == btnPrevBar) && (event == LV_EVENT_PRESSED)) {
+ if ( valueBar > 0 ) {
+ valueBar -= 1;
+ settingsController.SetPTSColorBar(valueBar);
+ lv_obj_set_style_local_bg_color(sidebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueBar]);
+ }
+ }
+ if((object == btnNextBG) && (event == LV_EVENT_PRESSED)) {
+ if ( valueBG < 17 ) {
+ valueBG += 1;
+ settingsController.SetPTSColorBG(valueBG);
+ lv_obj_set_style_local_bg_color(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueBG]);
+ }
+ }
+ if((object == btnPrevBG) && (event == LV_EVENT_PRESSED)) {
+ if ( valueBG > 0 ) {
+ valueBG -= 1;
+ settingsController.SetPTSColorBG(valueBG);
+ lv_obj_set_style_local_bg_color(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, pts_colors[valueBG]);
+ }
+ }
+} \ No newline at end of file
diff --git a/src/displayapp/screens/settings/SettingPineTimeStyle.h b/src/displayapp/screens/settings/SettingPineTimeStyle.h
new file mode 100644
index 00000000..b8ec9e9e
--- /dev/null
+++ b/src/displayapp/screens/settings/SettingPineTimeStyle.h
@@ -0,0 +1,56 @@
+#pragma once
+
+#include <cstdint>
+#include <lvgl/lvgl.h>
+#include "components/settings/Settings.h"
+#include "displayapp/screens/Screen.h"
+
+namespace Pinetime {
+
+ namespace Applications {
+ namespace Screens {
+
+ class SettingPineTimeStyle : public Screen{
+ public:
+ SettingPineTimeStyle(DisplayApp* app, Pinetime::Controllers::Settings &settingsController);
+ ~SettingPineTimeStyle() override;
+
+ bool Refresh() override;
+ void UpdateSelected(lv_obj_t *object, lv_event_t event);
+
+ private:
+ Controllers::Settings& settingsController;
+
+ lv_obj_t * btnNextTime;
+ lv_obj_t * btnPrevTime;
+ lv_obj_t * btnNextBar;
+ lv_obj_t * btnPrevBar;
+ lv_obj_t * btnNextBG;
+ lv_obj_t * btnPrevBG;
+ lv_obj_t * timeColor;
+ lv_obj_t * barColor;
+ lv_obj_t * bgColor;
+ lv_obj_t * timebar;
+ lv_obj_t * sidebar;
+ lv_obj_t * timeDD1;
+ lv_obj_t * timeDD2;
+ lv_obj_t * timeAMPM;
+ lv_obj_t * dateDayOfWeek;
+ lv_obj_t * dateDay;
+ lv_obj_t * dateMonth;
+ lv_obj_t * backgroundLabel;
+ lv_obj_t * batteryIcon;
+ lv_obj_t * bleIcon;
+ lv_obj_t * calendarOuter;
+ lv_obj_t * calendarInner;
+ lv_obj_t * calendarBar1;
+ lv_obj_t * calendarBar2;
+ lv_obj_t * calendarCrossBar1;
+ lv_obj_t * calendarCrossBar2;
+ lv_obj_t * stepGauge;
+ lv_color_t needle_colors[1];
+ lv_color_t pts_colors[17];
+ };
+ }
+ }
+}
diff --git a/src/displayapp/screens/settings/SettingWatchFace.cpp b/src/displayapp/screens/settings/SettingWatchFace.cpp
index 457cebf6..3e73489d 100644
--- a/src/displayapp/screens/settings/SettingWatchFace.cpp
+++ b/src/displayapp/screens/settings/SettingWatchFace.cpp
@@ -59,6 +59,15 @@ SettingWatchFace::SettingWatchFace(Pinetime::Applications::DisplayApp* app, Pine
}
optionsTotal++;
+ cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr);
+ lv_checkbox_set_text_static(cbOption[optionsTotal], " PineTimeStyle");
+ cbOption[optionsTotal]->user_data = this;
+ lv_obj_set_event_cb(cbOption[optionsTotal], event_handler);
+ if (settingsController.GetClockFace() == 2) {
+ lv_checkbox_set_checked(cbOption[optionsTotal], true);
+ }
+
+ optionsTotal++;
}
SettingWatchFace::~SettingWatchFace() {
diff --git a/src/displayapp/screens/settings/Settings.cpp b/src/displayapp/screens/settings/Settings.cpp
index e63a3584..73347804 100644
--- a/src/displayapp/screens/settings/Settings.cpp
+++ b/src/displayapp/screens/settings/Settings.cpp
@@ -18,6 +18,9 @@ Settings::Settings(Pinetime::Applications::DisplayApp* app, Pinetime::Controller
},
[this]() -> std::unique_ptr<Screen> {
return CreateScreen2();
+ },
+ [this]() -> std::unique_ptr<Screen> {
+ return CreateScreen3();
}},
Screens::ScreenListModes::UpDown} {
}
@@ -60,3 +63,15 @@ std::unique_ptr<Screen> Settings::CreateScreen2() {
return std::make_unique<Screens::List>(1, 2, app, settingsController, applications);
}
+
+std::unique_ptr<Screen> Settings::CreateScreen3() {
+
+ std::array<Screens::List::Applications, 4> applications {{
+ {Symbols::paintbrush, "PTS Colors", Apps::SettingPineTimeStyle},
+ {Symbols::none, "None", Apps::None},
+ {Symbols::none, "None", Apps::None},
+ {Symbols::none, "None", Apps::None},
+ }};
+
+ return std::make_unique<Screens::List>(2, 2, app, settingsController, applications);
+}
diff --git a/src/displayapp/screens/settings/Settings.h b/src/displayapp/screens/settings/Settings.h
index 711a6be6..12dd0514 100644
--- a/src/displayapp/screens/settings/Settings.h
+++ b/src/displayapp/screens/settings/Settings.h
@@ -21,10 +21,11 @@ namespace Pinetime {
private:
Controllers::Settings& settingsController;
- ScreenList<2> screens;
+ ScreenList<3> screens;
std::unique_ptr<Screen> CreateScreen1();
std::unique_ptr<Screen> CreateScreen2();
+ std::unique_ptr<Screen> CreateScreen3();
};
}
}
diff --git a/src/libs/lv_conf.h b/src/libs/lv_conf.h
index 761baba2..a03a4833 100644
--- a/src/libs/lv_conf.h
+++ b/src/libs/lv_conf.h
@@ -417,6 +417,7 @@ typedef void* lv_indev_drv_user_data_t; /*Type of user data in the in
LV_FONT_DECLARE(jetbrains_mono_extrabold_compressed) \
LV_FONT_DECLARE(jetbrains_mono_42) \
LV_FONT_DECLARE(jetbrains_mono_76) \
+ LV_FONT_DECLARE(open_sans_light) \
LV_FONT_DECLARE(lv_font_sys_48)
/* Enable it if you have fonts with a lot of characters.